aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig17
1 files changed, 10 insertions, 7 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 7232d17..952219e 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,15 +1,15 @@
[package]
name = "anyhow"
-version = "1.0.58" # remember to update html_root_url
+version = "1.0.68" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
+categories = ["rust-patterns", "no-std"]
+description = "Flexible concrete Error type built on std::error::Error"
+documentation = "https://docs.rs/anyhow"
edition = "2018"
-rust-version = "1.38"
+keywords = ["error", "error-handling"]
license = "MIT OR Apache-2.0"
-description = "Flexible concrete Error type built on std::error::Error"
repository = "https://github.com/dtolnay/anyhow"
-documentation = "https://docs.rs/anyhow"
-readme = "README.md"
-categories = ["rust-patterns"]
+rust-version = "1.39"
[features]
default = ["std"]
@@ -23,7 +23,10 @@ futures = { version = "0.3", default-features = false }
rustversion = "1.0.6"
syn = { version = "1.0", features = ["full"] }
thiserror = "1.0"
-trybuild = { version = "1.0.49", features = ["diff"] }
+trybuild = { version = "1.0.66", features = ["diff"] }
+
+[lib]
+doc-scrape-examples = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]