|
@@ -11,10 +11,10 @@ description = "Core functionality for Dioxus - a concurrent renderer-agnostic Vi
|
|
|
|
|
|
[dependencies]
|
|
|
# Bumpalo is used as a micro heap backing each component
|
|
|
-bumpalo = { version = "3.6.0", features = ["collections", "boxed"] }
|
|
|
+bumpalo = { version = "3.6", features = ["collections", "boxed"] }
|
|
|
|
|
|
# faster hashmaps
|
|
|
-fxhash = "0.2.1"
|
|
|
+fxhash = "0.2"
|
|
|
|
|
|
# Used in diffing
|
|
|
longest-increasing-subsequence = "0.1.0"
|
|
@@ -24,22 +24,22 @@ log = { version = "0.4", features = ["release_max_level_off"] }
|
|
|
|
|
|
futures-util = { version = "0.3.15", default-features = false }
|
|
|
|
|
|
-smallvec = "1.6.1"
|
|
|
+smallvec = "1.6"
|
|
|
|
|
|
-slab = "0.4.3"
|
|
|
+slab = "0.4"
|
|
|
|
|
|
-futures-channel = "0.3.18"
|
|
|
+futures-channel = "0.3"
|
|
|
|
|
|
# used for noderefs
|
|
|
-once_cell = "1.8.0"
|
|
|
+once_cell = "1.8"
|
|
|
|
|
|
-indexmap = "1.7.0"
|
|
|
+indexmap = "1.7"
|
|
|
|
|
|
# Serialize the Edits for use in Webview/Liveview instances
|
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
|
|
|
|
|
# todo: I want to get rid of this
|
|
|
-backtrace = "0.3.63"
|
|
|
+backtrace = "0.3"
|
|
|
|
|
|
[dev-dependencies]
|
|
|
anyhow = "1.0.42"
|