1
0

Cargo.toml 722 B

1234567891011121314151617181920212223242526
  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"]
  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. dioxus = { path = "../dioxus" }
  19. [dev-dependencies]
  20. smallvec = "1.6"
  21. rustc-hash = "1.1.0"
  22. anymap = "0.12.1"