1
0

Cargo.toml 870 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "dioxus-native-core-macro"
  3. version = "0.2.0"
  4. edition = "2021"
  5. description = "Build natively rendered apps with Dioxus"
  6. license = "MIT/Apache-2.0"
  7. repository = "https://github.com/DioxusLabs/dioxus/"
  8. homepage = "https://dioxuslabs.com"
  9. documentation = "https://dioxuslabs.com"
  10. keywords = ["dom", "ui", "gui", "react", "wasm"]
  11. [lib]
  12. proc-macro = true
  13. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  14. [dependencies]
  15. syn = { version = "1.0.11", features = ["extra-traits"] }
  16. quote = "1.0"
  17. dioxus-native-core = { path = "../native-core", version = "^0.2.0" }
  18. [dev-dependencies]
  19. dioxus-core = { path = "../core", version = "^0.2.1" }
  20. dioxus-html = { path = "../html", version = "^0.2.1" }
  21. dioxus-core-macro = { path = "../core-macro", version = "^0.2.1" }
  22. smallvec = "1.6"
  23. fxhash = "0.2"
  24. anymap = "0.12.1"