Cargo.toml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. [package]
  2. name = "dioxus-core"
  3. version = "0.1.9"
  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. fxhash = "0.2"
  18. # Used in diffing
  19. longest-increasing-subsequence = "0.1.0"
  20. # internall used
  21. log = { version = "0.4", features = ["release_max_level_off"] }
  22. futures-util = { version = "0.3", default-features = false }
  23. smallvec = "1.6"
  24. slab = "0.4"
  25. futures-channel = "0.3"
  26. # used for noderefs
  27. once_cell = "1.8"
  28. indexmap = "1.7"
  29. # Serialize the Edits for use in Webview/Liveview instances
  30. serde = { version = "1", features = ["derive"], optional = true }
  31. # todo: I want to get rid of this
  32. backtrace = "0.3"
  33. [dev-dependencies]
  34. anyhow = "1.0.42"
  35. fern = { version = "0.6.0", features = ["colored"] }
  36. rand = { version = "0.8.4", features = ["small_rng"] }
  37. dioxus-core-macro = { path = "../core-macro", version ="^0.1.6"}
  38. criterion = "0.3.5"
  39. thiserror = "1.0.30"
  40. dioxus-html = { path = "../html" }
  41. [features]
  42. default = []
  43. serialize = ["serde"]
  44. debug_vdom = []
  45. [[bench]]
  46. name = "create"
  47. harness = false
  48. [[bench]]
  49. name = "jsframework"
  50. harness = false