Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [package]
  2. name = "dioxus-core"
  3. version = { workspace = true }
  4. authors = ["Jonathan Kelley"]
  5. edition = "2018"
  6. description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
  7. license = "MIT OR Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com"
  10. keywords = ["dom", "ui", "gui", "react"]
  11. [dependencies]
  12. # Bumpalo is used as a micro heap backing each component
  13. bumpalo = { version = "3.6", features = ["collections", "boxed"] }
  14. # faster hashmaps
  15. rustc-hash = { workspace = true }
  16. # Used in diffing
  17. longest-increasing-subsequence = "0.1.0"
  18. futures-util = { workspace = true, default-features = false, features = [
  19. "alloc",
  20. ] }
  21. slab = { workspace = true }
  22. futures-channel = { workspace = true }
  23. smallbox = "0.8.1"
  24. tracing = { workspace = true }
  25. # Serialize the Edits for use in Webview/Liveview instances
  26. serde = { version = "1", features = ["derive"], optional = true }
  27. [dev-dependencies]
  28. tokio = { workspace = true, features = ["full"] }
  29. dioxus = { workspace = true }
  30. pretty_assertions = "1.3.0"
  31. rand = "0.8.5"
  32. dioxus-ssr = { workspace = true }
  33. trybuild = "1.0"
  34. [features]
  35. default = []
  36. serialize = ["serde"]