123456789101112131415161718192021222324252627 |
- [package]
- name = "dioxus-native-core-macro"
- version = "0.2.0"
- edition = "2021"
- description = "Build natively rendered apps with Dioxus"
- license = "MIT/Apache-2.0"
- repository = "https://github.com/DioxusLabs/dioxus/"
- homepage = "https://dioxuslabs.com"
- documentation = "https://dioxuslabs.com"
- keywords = ["dom", "ui", "gui", "react", "wasm"]
- [lib]
- proc-macro = true
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- syn = { version = "1.0.11", features = ["extra-traits"] }
- quote = "1.0"
- dioxus-native-core = { path = "../native-core", version = "^0.2.0" }
- [dev-dependencies]
- dioxus = { path = "../rsx-prelude", version = "^0.1.0", package = "rsx-prelude" }
- smallvec = "1.6"
- fxhash = "0.2"
- anymap = "0.12.1"
|