Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. [package]
  2. name = "dioxus-core"
  3. version = "0.2.1"
  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", "wasm"]
  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 }
  21. smallvec = "1.6"
  22. slab = "0.4"
  23. futures-channel = "0.3.21"
  24. # internally used
  25. log = "0.4"
  26. # used for noderefs
  27. once_cell = "1.8"
  28. # Serialize the Edits for use in Webview/Liveview instances
  29. serde = { version = "1", features = ["derive"], optional = true }
  30. # todo: I want to get rid of this
  31. backtrace = { version = "0.3" }
  32. # allows cloing trait objects
  33. dyn-clone = "1.0.9"
  34. [features]
  35. default = []
  36. serialize = ["serde"]
  37. debug_vdom = []
  38. hot-reload = []