123456789101112131415161718192021222324252627 |
- [package]
- name = "manganis-macro"
- version.workspace = true
- edition = "2021"
- authors = ["Evan Almloff"]
- description = "Ergonomic, automatic, cross crate asset collection and optimization"
- license = "MIT OR Apache-2.0"
- repository = "https://github.com/DioxusLabs/manganis/"
- homepage = "https://dioxuslabs.com"
- keywords = ["assets"]
- [lib]
- proc-macro = true
- # be careful with dependencies you add here - these need to get compiled for the proc macro and therefore
- # prevent the main code from compiling!
- [dependencies]
- proc-macro2 = { workspace = true }
- quote = { workspace = true }
- syn = { workspace = true, features = ["full", "extra-traits"] }
- manganis-core = { workspace = true }
- [features]
- default = []
- [dev-dependencies]
- manganis.workspace = true
|