1*bd70d2d1SLoGin[package] 2*bd70d2d1SLoGinname = "intertrait-macros" 3*bd70d2d1SLoGindescription = "Macros for intertrait crate, which allows for direct casting between trait objects" 4*bd70d2d1SLoGinversion = "0.2.2" 5*bd70d2d1SLoGinauthors = ["CodeChain Team <hi@codechain.io>"] 6*bd70d2d1SLoGinlicense = "GPLv2(for code modified by dragonos) MIT OR Apache-2.0" 7*bd70d2d1SLoGinedition = "2018" 8*bd70d2d1SLoGinrepository = "https://github.com/CodeChain-io/intertrait" 9*bd70d2d1SLoGininclude = ["src/**/*", "Cargo.toml", "LICENSE-*"] 10*bd70d2d1SLoGin 11*bd70d2d1SLoGin[lib] 12*bd70d2d1SLoGinproc-macro = true 13*bd70d2d1SLoGin 14*bd70d2d1SLoGin[dependencies] 15*bd70d2d1SLoGinhashbrown = "0.13.2" 16*bd70d2d1SLoGinproc-macro2 = "1.0" 17*bd70d2d1SLoGinsyn = { version = "1.0", features = ["full"] } 18*bd70d2d1SLoGinquote = "1.0" 19*bd70d2d1SLoGinuuid = { version = "0.8", features = ["v4"] } 20*bd70d2d1SLoGin 21*bd70d2d1SLoGin[dev-dependencies] 22*bd70d2d1SLoGinintertrait = { version = "=0.2.2", path = ".." } 23*bd70d2d1SLoGinlinkme = "=0.3.27" 24