Cargo.toml 818 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "manganis-macro"
  3. version.workspace = true
  4. edition = "2021"
  5. authors = ["Evan Almloff"]
  6. description = "Ergonomic, automatic, cross crate asset collection and optimization"
  7. license = "MIT OR Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/manganis/"
  9. homepage = "https://dioxuslabs.com"
  10. keywords = ["assets"]
  11. [lib]
  12. proc-macro = true
  13. # be careful with dependencies you add here - these need to get compiled for the proc macro and therefore
  14. # prevent the main code from compiling!
  15. [dependencies]
  16. proc-macro2 = { workspace = true }
  17. quote = { workspace = true }
  18. syn = { workspace = true, features = ["full", "extra-traits"] }
  19. manganis-core = { workspace = true }
  20. dunce = { workspace = true }
  21. macro-string = { workspace = true }
  22. [features]
  23. default = []
  24. [dev-dependencies]
  25. manganis.workspace = true