mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
fix: remove unused depds
This commit is contained in:
parent
b57987cfb1
commit
3873cd1a60
4 changed files with 4 additions and 8 deletions
|
@ -15,7 +15,6 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
once_cell = "1.8"
|
|
||||||
proc-macro-error = "1.0.4"
|
proc-macro-error = "1.0.4"
|
||||||
proc-macro2 = { version = "1.0.6" }
|
proc-macro2 = { version = "1.0.6" }
|
||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
|
|
|
@ -13,12 +13,10 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
dioxus-core = { path = "../core", version = "^0.1.9", features = ["serialize"] }
|
dioxus-core = { path = "../core", version = "^0.1.9", features = ["serialize"] }
|
||||||
argh = "0.1.7"
|
|
||||||
serde = "1.0.136"
|
serde = "1.0.136"
|
||||||
serde_json = "1.0.79"
|
serde_json = "1.0.79"
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.30"
|
||||||
log = "0.4.14"
|
log = "0.4.14"
|
||||||
html-escape = "0.2.9"
|
|
||||||
wry = { version = "0.13.1" }
|
wry = { version = "0.13.1" }
|
||||||
futures-channel = "0.3.21"
|
futures-channel = "0.3.21"
|
||||||
tokio = { version = "1.16.1", features = [
|
tokio = { version = "1.16.1", features = [
|
||||||
|
@ -27,7 +25,6 @@ tokio = { version = "1.16.1", features = [
|
||||||
"rt",
|
"rt",
|
||||||
"time",
|
"time",
|
||||||
], optional = true, default-features = false }
|
], optional = true, default-features = false }
|
||||||
dioxus-core-macro = { path = "../core-macro", version = "^0.1.7" }
|
|
||||||
dioxus-html = { path = "../html", features = ["serialize"], version = "^0.1.6" }
|
dioxus-html = { path = "../html", features = ["serialize"], version = "^0.1.6" }
|
||||||
webbrowser = "0.5.5"
|
webbrowser = "0.5.5"
|
||||||
mime_guess = "2.0.3"
|
mime_guess = "2.0.3"
|
||||||
|
@ -47,5 +44,6 @@ ayatana = ["wry/ayatana"]
|
||||||
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
dioxus-core-macro = { path = "../core-macro", version = "^0.1.7" }
|
||||||
dioxus-hooks = { path = "../hooks" }
|
dioxus-hooks = { path = "../hooks" }
|
||||||
# image = "0.24.0" # enable this when generating a new desktop image
|
# image = "0.24.0" # enable this when generating a new desktop image
|
||||||
|
|
|
@ -16,8 +16,8 @@ dioxus-html = { path = "../html", version = "^0.1.6", default-features = false }
|
||||||
dioxus-core-macro = { path = "../core-macro", version = "^0.1.7" }
|
dioxus-core-macro = { path = "../core-macro", version = "^0.1.7" }
|
||||||
|
|
||||||
serde = "1"
|
serde = "1"
|
||||||
url = "2.2.2"
|
|
||||||
serde_urlencoded = "0.7"
|
serde_urlencoded = "0.7"
|
||||||
|
# url = "2.2.2"
|
||||||
|
|
||||||
# for wasm
|
# for wasm
|
||||||
web-sys = { version = "0.3", features = [
|
web-sys = { version = "0.3", features = [
|
||||||
|
|
|
@ -15,13 +15,10 @@ dioxus-core = { path = "../core", version = "^0.1.9" }
|
||||||
dioxus-html = { path = "../html", version = "^0.1.6" }
|
dioxus-html = { path = "../html", version = "^0.1.6" }
|
||||||
js-sys = "0.3.56"
|
js-sys = "0.3.56"
|
||||||
wasm-bindgen = { version = "0.2.79", features = ["enable-interning"] }
|
wasm-bindgen = { version = "0.2.79", features = ["enable-interning"] }
|
||||||
lazy_static = "1.4.0"
|
|
||||||
wasm-bindgen-futures = "0.4.29"
|
wasm-bindgen-futures = "0.4.29"
|
||||||
log = { version = "0.4.14", features = ["release_max_level_off"] }
|
log = { version = "0.4.14", features = ["release_max_level_off"] }
|
||||||
fxhash = "0.2.1"
|
fxhash = "0.2.1"
|
||||||
wasm-logger = "0.2.0"
|
|
||||||
console_error_panic_hook = { version = "0.1.7", optional = true }
|
console_error_panic_hook = { version = "0.1.7", optional = true }
|
||||||
wasm-bindgen-test = "0.3.29"
|
|
||||||
once_cell = "1.9.0"
|
once_cell = "1.9.0"
|
||||||
anyhow = "1.0.53"
|
anyhow = "1.0.53"
|
||||||
gloo-timers = { version = "0.2.3", features = ["futures"] }
|
gloo-timers = { version = "0.2.3", features = ["futures"] }
|
||||||
|
@ -80,3 +77,5 @@ panic_hook = ["console_error_panic_hook"]
|
||||||
dioxus-core-macro = { path = "../core-macro" }
|
dioxus-core-macro = { path = "../core-macro" }
|
||||||
wasm-bindgen-test = "0.3.29"
|
wasm-bindgen-test = "0.3.29"
|
||||||
dioxus-ssr = { path = "../ssr" }
|
dioxus-ssr = { path = "../ssr" }
|
||||||
|
wasm-logger = "0.2.0"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue