Cargo.toml 592 B

1234567891011121314151617181920
  1. [package]
  2. name = "inherit-methods-macro"
  3. version = "0.1.0"
  4. authors = ["Tate, Hongliang Tian <tate.thl@antgroup.com>"]
  5. edition = "2021"
  6. description = "Inherit methods from a field automatically (via procedural macros)"
  7. license-file = "LICENSE"
  8. readme = "README.md"
  9. repository = "https://github.com/asterinas/inherit-methods-macro"
  10. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [lib]
  12. proc-macro = true
  13. [dependencies]
  14. proc-macro2 = "1.0.27"
  15. syn = { version = "1.0.73", features = ["full", "extra-traits"] }
  16. quote = "1.0.9"
  17. darling = "0.13.0"