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