Cargo.toml 1014 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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", optional = true }
  13. keyboard-types = "0.6.2"
  14. taffy = "0.2.1"
  15. smallvec = "1.6"
  16. rustc-hash = "1.1.0"
  17. anymap = "1.0.0-beta.2"
  18. slab = "0.4"
  19. parking_lot = { version = "0.12.1", features = ["send_guard"] }
  20. crossbeam-deque = "0.8.2"
  21. dashmap = "5.4.0"
  22. hashbrown = { version = "0.13.2", features = ["raw"] }
  23. # for parsing attributes
  24. lightningcss = "1.0.0-alpha.39"
  25. rayon = "1.6.1"
  26. [dev-dependencies]
  27. rand = "0.8.5"
  28. dioxus = { path = "../dioxus", version = "^0.3.0" }
  29. tokio = { version = "*", features = ["full"] }
  30. dioxus-native-core = { path = ".", features = ["dioxus"] }
  31. [features]
  32. default = []
  33. dioxus = ["dioxus-core"]