Cargo.toml 670 B

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