Cargo.toml 934 B

12345678910111213141516171819202122232425262728293031323334
  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"]
  11. [dependencies]
  12. dioxus-core = { path = "../core", version = "^0.3.0" }
  13. dioxus-html = { path = "../html", version = "^0.3.0" }
  14. dioxus-core-macro = { path = "../core-macro", version = "^0.3.0" }
  15. taffy = "0.2.1"
  16. smallvec = "1.6"
  17. rustc-hash = "1.1.0"
  18. anymap = "1.0.0-beta.2"
  19. slab = "0.4"
  20. parking_lot = "0.12.1"
  21. crossbeam-deque = "0.8.2"
  22. dashmap = "5.4.0"
  23. # for parsing attributes
  24. lightningcss = "1.0.0-alpha.39"
  25. [dev-dependencies]
  26. rand = "0.8.5"
  27. dioxus = { path = "../dioxus", version = "^0.3.0" }
  28. dioxus-native-core-macro = { path = "../native-core-macro" }
  29. tokio = { version = "*", features = ["full"] }