local_chat/frontend/Cargo.toml

20 lines
553 B
TOML
Raw Permalink Normal View History

2024-10-08 19:54:34 -05:00
[package]
name = "frontend"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-10-08 20:59:42 -05:00
chrono = { version = "0.4.38", features = ["wasmbind"] }
ciborium = "0.2.2"
common = { version = "0.1.0", path = "../common" }
2024-10-08 19:54:34 -05:00
console_error_panic_hook = "0.1.7"
2024-10-09 11:58:49 -05:00
gloo = "0.11.0"
2024-10-08 19:54:34 -05:00
log = "0.4.22"
2024-10-16 15:18:18 -05:00
serde = { version = "1.0.210", features = ["derive"] }
2024-10-19 10:34:57 -05:00
wasm-bindgen = "0.2.95"
2024-10-08 19:54:34 -05:00
wasm-logger = "0.2.0"
2024-10-19 10:34:57 -05:00
web-sys = { version = "0.3.72", features = ["Navigator", "WebSocket", "EventListener"] }
2024-10-08 19:54:34 -05:00
yew = { version = "0.21.0", features = ["csr"] }
yew-hooks = "0.3.2"
2024-10-08 19:54:34 -05:00
yew-router = "0.18.0"