Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "dioxus-core"
  3. version = { workspace = true }
  4. authors = ["Jonathan Kelley"]
  5. edition = "2021"
  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. rustc-hash = { workspace = true }
  13. longest-increasing-subsequence = "0.1.0"
  14. futures-util = { workspace = true, default-features = false, features = [
  15. "alloc",
  16. "std",
  17. ] }
  18. slab = { workspace = true }
  19. futures-channel = { workspace = true }
  20. tracing = { workspace = true }
  21. serde = { version = "1", features = ["derive"], optional = true }
  22. tracing-subscriber = "0.3.18"
  23. generational-box = { workspace = true }
  24. [dev-dependencies]
  25. tokio = { workspace = true, features = ["full"] }
  26. tracing-fluent-assertions = "0.3.0"
  27. dioxus = { workspace = true }
  28. pretty_assertions = "1.3.0"
  29. rand = "0.8.5"
  30. dioxus-ssr = { workspace = true }
  31. reqwest = { workspace = true}
  32. [features]
  33. default = []
  34. serialize = ["serde"]