Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [package]
  2. name = "dioxus-native-core"
  3. version = "0.2.0"
  4. edition = "2021"
  5. license = "MIT OR Apache-2.0"
  6. repository = "https://github.com/DioxusLabs/dioxus/"
  7. homepage = "https://dioxuslabs.com"
  8. description = "Build natively rendered apps with Dioxus"
  9. keywords = ["dom", "ui", "gui", "react"]
  10. [dependencies]
  11. dioxus-core = { workspace = true, optional = true }
  12. keyboard-types = "0.6.2"
  13. smallvec = "1.6"
  14. rustc-hash = { workspace = true }
  15. anymap = "1.0.0-beta.2"
  16. slab = { workspace = true }
  17. parking_lot = { version = "0.12.1", features = ["send_guard"] }
  18. dashmap = "5.4.0"
  19. # for parsing attributes
  20. taffy = { version = "0.3.12", optional = true }
  21. lightningcss = { version = "1.0.0-alpha.39", optional = true }
  22. rayon = "1.6.1"
  23. shipyard = { version = "0.6.2", features = ["proc", "std"], default-features = false }
  24. [dev-dependencies]
  25. rand = "0.8.5"
  26. dioxus = { workspace = true }
  27. tokio = { workspace = true, features = ["full"] }
  28. dioxus-native-core = { workspace = true, features = ["dioxus"] }
  29. dioxus-native-core-macro = { workspace = true }
  30. [features]
  31. default = []
  32. layout-attributes = ["dep:taffy", "dep:lightningcss"]
  33. dioxus = ["dioxus-core"]
  34. parallel = ["shipyard/parallel"]