Cargo.toml 753 B

123456789101112131415161718192021222324252627
  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. [features]
  21. default = []
  22. [dev-dependencies]
  23. manganis.workspace = true