1[package]
2name = "thiserror-impl"
3version = "2.0.12"
4authors = ["David Tolnay <dtolnay@gmail.com>"]
5description = "Implementation detail of the `thiserror` crate"
6edition = "2021"
7license = "MIT OR Apache-2.0"
8repository = "https://github.com/dtolnay/thiserror"
9rust-version = "1.61"
10
11[lib]
12proc-macro = true
13
14[dependencies]
15proc-macro2 = "1.0.74"
16quote = "1.0.35"
17syn = "2.0.87"
18
19[package.metadata.docs.rs]
20targets = ["x86_64-unknown-linux-gnu"]
21rustdoc-args = [
22 "--generate-link-to-definition",
23 "--extern-html-root-url=core=https://doc.rust-lang.org",
24 "--extern-html-root-url=alloc=https://doc.rust-lang.org",
25 "--extern-html-root-url=std=https://doc.rust-lang.org",
26 "--extern-html-root-url=proc_macro=https://doc.rust-lang.org",
27]
28