xref: /DragonOS/kernel/src/libs/intertrait/macros/Cargo.toml (revision 34e6d6c80f36494088db3284f85d1a2c63aa18a8)
1[package]
2name = "intertrait-macros"
3description = "Macros for intertrait crate, which allows for direct casting between trait objects"
4version = "0.2.2"
5authors = ["CodeChain Team <hi@codechain.io>"]
6license = "GPLv2(for code modified by dragonos) MIT OR Apache-2.0"
7edition = "2018"
8repository = "https://github.com/CodeChain-io/intertrait"
9include = ["src/**/*", "Cargo.toml", "LICENSE-*"]
10
11[lib]
12proc-macro = true
13
14[dependencies]
15hashbrown = "0.13.2"
16proc-macro2 = "1.0"
17syn = { version = "1.0", features = ["full"] }
18quote = "1.0"
19uuid = { version = "0.8", features = ["v4"] }
20
21[dev-dependencies]
22intertrait = { version = "=0.2.2", path = ".." }
23linkme = "0.2"
24