1[package]
2name = "thiserror"
3version = "1.0.58"
4authors = ["David Tolnay <dtolnay@gmail.com>"]
5categories = ["rust-patterns"]
6description = "derive(Error)"
7documentation = "https://docs.rs/thiserror"
8edition = "2021"
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.58", path = "impl" }
16
17[dev-dependencies]
18anyhow = "1.0.73"
19ref-cast = "1.0.18"
20rustversion = "1.0.13"
21trybuild = { version = "1.0.81", features = ["diff"] }
22
23[workspace]
24members = ["impl"]
25
26[package.metadata.docs.rs]
27targets = ["x86_64-unknown-linux-gnu"]
28rustdoc-args = ["--generate-link-to-definition"]
29