Cargo.toml 726 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "intertrait"
  3. version = "0.2.2"
  4. authors = ["CodeChain Team <[email protected]>"]
  5. license = "GPLv2(for code modified by dragonos) MIT OR Apache-2.0"
  6. description = "Allow for inter-trait casting"
  7. edition = "2018"
  8. repository = "https://github.com/CodeChain-io/intertrait"
  9. documentation = "https://docs.rs/intertrait"
  10. readme = "README.md"
  11. categories = ["rust-patterns"]
  12. keywords = ["trait", "cast", "any"]
  13. include = ["src/**/*", "Cargo.toml", "LICENSE-*", "README.md"]
  14. [dependencies]
  15. linkme = "=0.3.27"
  16. hashbrown = "0.13.2"
  17. intertrait-macros = { version = "=0.2.2", path = "macros" }
  18. [target.'cfg(not(target_os = "none"))'.dependencies]
  19. once_cell = "1.4"
  20. [dev-dependencies]
  21. trybuild = "1.0"
  22. doc-comment = "0.3"