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