frontend/Cargo.toml

24 lines
553 B
TOML
Raw Normal View History

2023-09-28 11:08:15 +00:00
[package]
name = "frontend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-10-02 13:53:33 +00:00
# Misc
anyhow = "1.0.75"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures-channel = "0.3.28"
# Yew
2023-09-28 12:23:12 +00:00
yew = { version = "0.20.0", features = ["csr"] }
yew-router = "0.17.0"
2023-10-02 13:53:33 +00:00
# Web
wasm-bindgen = "0.2.87"
2023-10-02 13:53:33 +00:00
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3.64", features = ["HtmlInputElement", "HtmlDocument"] }
gloo = "0.10.0"
2023-10-02 13:53:33 +00:00
gloo-net = "0.4.0"