Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. [package]
  2. name = "dioxus-core"
  3. version = "0.3.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/Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com"
  10. documentation = "https://dioxuslabs.com"
  11. keywords = ["dom", "ui", "gui", "react"]
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [dependencies]
  14. # Bumpalo is used as a micro heap backing each component
  15. bumpalo = { version = "3.6", features = ["collections", "boxed"] }
  16. # faster hashmaps
  17. rustc-hash = "1.1.0"
  18. # Used in diffing
  19. longest-increasing-subsequence = "0.1.0"
  20. futures-util = { version = "0.3", default-features = false, features = ["alloc"]}
  21. slab = "0.4"
  22. futures-channel = "0.3.21"
  23. indexmap = "1.7"
  24. smallbox = "0.8.1"
  25. log = "0.4.17"
  26. # Serialize the Edits for use in Webview/Liveview instances
  27. serde = { version = "1", features = ["derive"], optional = true }
  28. [dev-dependencies]
  29. tokio = { version = "1", features = ["full"] }
  30. dioxus = { path = "../dioxus" }
  31. pretty_assertions = "1.3.0"
  32. [features]
  33. default = []
  34. serialize = ["serde"]