fix: specify dioxus version in liveview

This commit is contained in:
Jonathan Kelley 2022-05-02 23:45:59 -04:00
parent b8e8e69523
commit 5503aeb7a6

View file

@ -23,8 +23,8 @@ serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
tokio-util = { version = "0.7.0", features = ["full"] }
dioxus-html = { path = "../html", features = ["serialize"] }
dioxus-core = { path = "../core", features = ["serialize"] }
dioxus-html = { path = "../html", features = ["serialize"], version = "^0.2.0" }
dioxus-core = { path = "../core", features = ["serialize"], version = "^0.2.0" }
# warp
@ -42,4 +42,4 @@ axum = { version = "0.5.1", features = ["ws"] }
tower = "0.4.12"
[features]
default = []
default = []