12345678910111213141516171819202122 |
- [package]
- name = "dioxus-native-core-macro"
- version = "0.2.0"
- edition = "2021"
- [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" }
- [dev-dependencies]
- dioxus-core = { path = "../core", version = "^0.2.0" }
- dioxus-html = { path = "../html", version = "^0.2.0" }
- dioxus-core-macro = { path = "../core-macro", version = "^0.2.0" }
- smallvec = "1.6"
- fxhash = "0.2"
- anymap = "0.12.1"
|