1[package]
2name = "inventory"
3version = "0.3.20"
4authors = ["David Tolnay <dtolnay@gmail.com>"]
5categories = ["development-tools::build-utils", "development-tools::procedural-macro-helpers", "no-std", "no-std::no-alloc"]
6description = "Typed distributed plugin registration"
7documentation = "https://docs.rs/inventory"
8edition = "2021"
9keywords = ["linkage"]
10license = "MIT OR Apache-2.0"
11repository = "https://github.com/dtolnay/inventory"
12rust-version = "1.62"
13
14[target.'cfg(target_family = "wasm")'.dependencies]
15rustversion = "1.0"
16
17[dev-dependencies]
18rustversion = "1.0"
19trybuild = { version = "1.0.89", features = ["diff"] }
20
21[package.metadata.docs.rs]
22targets = ["x86_64-unknown-linux-gnu"]
23rustdoc-args = [
24 "--generate-link-to-definition",
25 "--extern-html-root-url=core=https://doc.rust-lang.org",
26 "--extern-html-root-url=alloc=https://doc.rust-lang.org",
27 "--extern-html-root-url=std=https://doc.rust-lang.org",
28]
29