Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. # faster hashmaps
  13. rustc-hash = { workspace = true }
  14. # Used in diffing
  15. longest-increasing-subsequence = "0.1.0"
  16. futures-util = { workspace = true, default-features = false, features = [
  17. "alloc",
  18. ] }
  19. slab = { workspace = true }
  20. futures-channel = { workspace = true }
  21. smallbox = "0.8.1"
  22. tracing = { workspace = true }
  23. # Serialize the Edits for use in Webview/Liveview instances
  24. serde = { version = "1", features = ["derive"], optional = true }
  25. [dev-dependencies]
  26. tokio = { workspace = true, features = ["full"] }
  27. dioxus = { workspace = true }
  28. dioxus-core = { workspace = true }
  29. dioxus-html = { workspace = true, features = ["serialize"] }
  30. pretty_assertions = "1.3.0"
  31. rand = "0.8.5"
  32. dioxus-ssr = { workspace = true }
  33. [features]
  34. default = []
  35. serialize = ["serde"]