xref: /DragonOS/kernel/crates/intertrait/Cargo.toml (revision 86ee1395de7c614865236ee15071c3603b794e44)
1[package]
2name = "intertrait"
3version = "0.2.2"
4authors = ["CodeChain Team <hi@codechain.io>"]
5license = "GPLv2(for code modified by dragonos) MIT OR Apache-2.0"
6description = "Allow for inter-trait casting"
7edition = "2018"
8repository = "https://github.com/CodeChain-io/intertrait"
9documentation = "https://docs.rs/intertrait"
10readme = "README.md"
11categories = ["rust-patterns"]
12keywords = ["trait", "cast", "any"]
13include = ["src/**/*", "Cargo.toml", "LICENSE-*", "README.md"]
14
15
16[dependencies]
17linkme = "=0.3.27"
18hashbrown = "0.13.2"
19intertrait-macros = { version = "=0.2.2", path = "macros" }
20
21[target.'cfg(not(target_os = "none"))'.dependencies]
22once_cell = "1.4"
23
24[dev-dependencies]
25trybuild = "1.0"
26doc-comment = "0.3"
27
28