1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14rust-version = "1.39" 15name = "anyhow" 16version = "1.0.79" 17authors = ["David Tolnay <[email protected]>"] 18description = "Flexible concrete Error type built on std::error::Error" 19documentation = "https://docs.rs/anyhow" 20readme = "README.md" 21keywords = [ 22 "error", 23 "error-handling", 24] 25categories = [ 26 "rust-patterns", 27 "no-std", 28] 29license = "MIT OR Apache-2.0" 30repository = "https://github.com/dtolnay/anyhow" 31 32[package.metadata.docs.rs] 33rustdoc-args = [ 34 "--cfg", 35 "doc_cfg", 36 "--generate-link-to-definition", 37] 38targets = ["x86_64-unknown-linux-gnu"] 39 40[lib] 41doc-scrape-examples = false 42 43[dependencies.backtrace] 44version = "0.3.51" 45optional = true 46 47[dev-dependencies.futures] 48version = "0.3" 49default-features = false 50 51[dev-dependencies.rustversion] 52version = "1.0.6" 53 54[dev-dependencies.syn] 55version = "2.0" 56features = ["full"] 57 58[dev-dependencies.thiserror] 59version = "1.0.45" 60 61[dev-dependencies.trybuild] 62version = "1.0.66" 63features = ["diff"] 64 65[features] 66default = ["std"] 67std = [] 68