Cargo.toml 634 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "dioxus-native-core-macro"
  3. version = { workspace = true }
  4. edition = "2021"
  5. description = "Build natively rendered apps with Dioxus"
  6. license = "MIT OR Apache-2.0"
  7. repository = "https://github.com/DioxusLabs/dioxus/"
  8. homepage = "https://dioxuslabs.com"
  9. keywords = ["dom", "ui", "gui", "react"]
  10. authors = ["Jonathan Kelley", "Evan Almloff"]
  11. [lib]
  12. proc-macro = true
  13. [dependencies]
  14. syn = { version = "2.0", features = ["extra-traits", "full"] }
  15. quote = "1.0"
  16. [dev-dependencies]
  17. smallvec = "1.6"
  18. rustc-hash = { workspace = true }
  19. anymap = "0.12.1"
  20. dioxus = { workspace = true }
  21. dioxus-native-core = { workspace = true }