1234567891011121314151617181920212223 |
- [package]
- name = "intertrait-macros"
- description = "Macros for intertrait crate, which allows for direct casting between trait objects"
- version = "0.2.2"
- authors = ["CodeChain Team <[email protected]>"]
- license = "GPLv2(for code modified by dragonos) MIT OR Apache-2.0"
- edition = "2018"
- repository = "https://github.com/CodeChain-io/intertrait"
- include = ["src/**/*", "Cargo.toml", "LICENSE-*"]
- [lib]
- proc-macro = true
- [dependencies]
- hashbrown = "0.13.2"
- proc-macro2 = "1.0"
- syn = { version = "1.0", features = ["full"] }
- quote = "1.0"
- uuid = { version = "0.8", features = ["v4"] }
- [dev-dependencies]
- intertrait = { version = "=0.2.2", path = ".." }
- linkme = "=0.3.27"
|