Cargo.toml 585 B

12345678910111213141516171819202122
  1. [package]
  2. name = "dioxus-native-core-macro"
  3. version = "0.2.0"
  4. edition = "2021"
  5. [lib]
  6. proc-macro = true
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [dependencies]
  9. syn = { version = "1.0.11", features = ["extra-traits"] }
  10. quote = "1.0"
  11. dioxus-native-core = { path = "../native-core" }
  12. [dev-dependencies]
  13. dioxus-core = { path = "../core", version = "^0.2.0" }
  14. dioxus-html = { path = "../html", version = "^0.2.0" }
  15. dioxus-core-macro = { path = "../core-macro", version = "^0.2.0" }
  16. smallvec = "1.6"
  17. fxhash = "0.2"
  18. anymap = "0.12.1"