1
0

Cargo.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. dioxus-html = { workspace = true, features = ["serialize"] }
  31. pretty_assertions = "1.3.0"
  32. rand = "0.8.5"
  33. dioxus-ssr = { workspace = true }
  34. trybuild = "1.0"
  35. [features]
  36. default = []
  37. serialize = ["serde"]