123456789101112131415161718192021222324 |
- [package]
- name = "dioxus-native-core-macro"
- version = { workspace = true }
- edition = "2021"
- description = "Build natively rendered apps with Dioxus"
- license = "MIT OR Apache-2.0"
- repository = "https://github.com/DioxusLabs/dioxus/"
- homepage = "https://dioxuslabs.com"
- keywords = ["dom", "ui", "gui", "react"]
- authors = ["Jonathan Kelley", "Evan Almloff"]
- [lib]
- proc-macro = true
- [dependencies]
- syn = { version = "2.0", features = ["extra-traits", "full"] }
- quote = "1.0"
- [dev-dependencies]
- smallvec = "1.6"
- rustc-hash = { workspace = true }
- anymap = "0.12.1"
- dioxus = { workspace = true }
- dioxus-native-core = { workspace = true }
|