Cleaning frontend/Cargo.toml
This commit is contained in:
parent
424bb7f3a1
commit
d86c8ab6fe
3 changed files with 16 additions and 163 deletions
|
|
@ -7,12 +7,16 @@ edition = "2024"
|
|||
[lib]
|
||||
crate-type = ["cdylib"]
|
||||
|
||||
[features]
|
||||
default = ["console_error_panic_hook"]
|
||||
|
||||
[dependencies]
|
||||
common = { path = "../common" }
|
||||
|
||||
wasm-bindgen = "0.2"
|
||||
wasm-bindgen-futures = "0.4"
|
||||
|
||||
# The `console_error_panic_hook` crate provides better debugging of panics by
|
||||
# logging them with `console.error`.
|
||||
console_error_panic_hook = { version = "0.1" }
|
||||
|
||||
chrono = { version = "0.4", features = ["serde", "unstable-locales"] }
|
||||
|
||||
ron = "0.10"
|
||||
|
|
@ -52,14 +56,13 @@ web-sys = { version = "0.3", features = [
|
|||
"CssStyleDeclaration",
|
||||
] }
|
||||
|
||||
gloo = { version = "0.11", features = ["futures"] }
|
||||
gloo = { version = "0.11", default-features = false, features = [
|
||||
"console",
|
||||
"events",
|
||||
"net",
|
||||
"storage",
|
||||
"timers",
|
||||
"utils",
|
||||
] }
|
||||
|
||||
wasm-cookies = "0.2"
|
||||
|
||||
# The `console_error_panic_hook` crate provides better debugging of panics by
|
||||
# logging them with `console.error`. This is great for development, but requires
|
||||
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
|
||||
# code size when deploying.
|
||||
console_error_panic_hook = { version = "0.1", optional = true }
|
||||
wasm-bindgen = "0.2"
|
||||
wasm-bindgen-futures = "0.4"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue