Cargo.toml 632 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "dioxus-native-core"
  3. version = "0.2.0"
  4. edition = "2021"
  5. license = "MIT/Apache-2.0"
  6. repository = "https://github.com/DioxusLabs/dioxus/"
  7. homepage = "https://dioxuslabs.com"
  8. description = "Build natively rendered apps with Dioxus"
  9. documentation = "https://dioxuslabs.com"
  10. keywords = ["dom", "ui", "gui", "react", "wasm"]
  11. [dependencies]
  12. dioxus-core = { path = "../core", version = "^0.2.1" }
  13. dioxus-html = { path = "../html", version = "^0.2.1" }
  14. dioxus-core-macro = { path = "../core-macro", version = "^0.2.1" }
  15. taffy = "0.1.0"
  16. smallvec = "1.6"
  17. fxhash = "0.2"
  18. anymap = "0.12.1"
  19. [dev-dependencies]
  20. rand = "0.8.5"