Cargo.toml 986 B

123456789101112131415161718192021222324252627282930313233343536
  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 = { version = "0.12.1", features = ["send_guard"] }
  21. crossbeam-deque = "0.8.2"
  22. dashmap = "5.4.0"
  23. hashbrown = { version = "0.13.2", features = ["raw"] }
  24. # for parsing attributes
  25. lightningcss = "1.0.0-alpha.39"
  26. rayon = "1.6.1"
  27. [dev-dependencies]
  28. rand = "0.8.5"
  29. dioxus = { path = "../dioxus", version = "^0.3.0" }
  30. tokio = { version = "*", features = ["full"] }