1[package] 2name = "thiserror" 3version = "1.0.40" 4authors = ["David Tolnay <dtolnay@gmail.com>"] 5categories = ["rust-patterns"] 6description = "derive(Error)" 7documentation = "https://docs.rs/thiserror" 8edition = "2018" 9keywords = ["error", "error-handling", "derive"] 10license = "MIT OR Apache-2.0" 11repository = "https://github.com/dtolnay/thiserror" 12rust-version = "1.56" 13 14[dependencies] 15thiserror-impl = { version = "=1.0.40", path = "impl" } 16 17[dev-dependencies] 18anyhow = "1.0.65" 19ref-cast = "1.0" 20rustversion = "1.0" 21trybuild = { version = "1.0.66", features = ["diff"] } 22 23[workspace] 24members = ["impl"] 25 26[package.metadata.docs.rs] 27targets = ["x86_64-unknown-linux-gnu"] 28