Cargo.toml 397 B

12345678910111213141516171819202122
  1. [package]
  2. name = "helix-macros"
  3. version = "0.1.6"
  4. edition = "2024"
  5. authors = ["HelixDB Team"]
  6. repository = "https://github.com/HelixDB/helix-db"
  7. license = "AGPL-3.0"
  8. description = "Proc macros for HelixDB"
  9. [lib]
  10. proc-macro = true
  11. [dependencies]
  12. syn = { version = "2.0.104", features = ["full"] }
  13. quote = "1.0.40"
  14. proc-macro2 = "1.0.95"
  15. dirs = "5.0.1"
  16. [features]
  17. debug-output = []
  18. default = []