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.3.27" 24