Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [package]
  2. name = "dioxus-core"
  3. version = "0.4.0"
  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. log = { 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. [features]
  34. default = []
  35. serialize = ["serde"]