1
0

Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "dioxus-native-core"
  3. version = { workspace = true }
  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. authors = ["Jonathan Kelley", "Evan Almloff"]
  11. [dependencies]
  12. dioxus-core = { workspace = true, optional = true }
  13. keyboard-types = "0.7"
  14. smallvec = "1.6"
  15. rustc-hash = { workspace = true }
  16. anymap = "1.0.0-beta.2"
  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. shipyard = { version = "0.6.2", features = ["proc", "std"], default-features = false }
  23. [dev-dependencies]
  24. rand = "0.8.5"
  25. dioxus = { workspace = true }
  26. tokio = { workspace = true, features = ["full"] }
  27. dioxus-native-core = { workspace = true, features = ["dioxus"] }
  28. dioxus-native-core-macro = { workspace = true }
  29. [features]
  30. default = []
  31. layout-attributes = ["dep:taffy", "dep:lightningcss"]
  32. dioxus = ["dioxus-core"]
  33. parallel = ["shipyard/parallel"]