summaryrefslogtreecommitdiff
path: root/webapp/Cargo.toml
blob: 1407fe749a18f129a7d433b37fdb0ada8336d661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "webapp"
version = "0.1.0"
edition = "2021"

[dependencies]
yew = "0.19"
console_error_panic_hook = "0.1"
wasm-logger = "0.2"
log = "0.4"
getrandom = { version = "0.2.7", features = ["js"] }
wee_alloc = "0.4.3"
anyhow = "1.0"
regex = "1.0"
lazy_static = "1.4"
gloo-net = "0.2.4"
wasm-bindgen-futures = "0.4.33"
protocol = { path = "../protocol" }
yew-router = "0.16.0"
web-sys = { version = "0.3.60", features = ["Location", "Document"] }
uuid = { version = "1.2.1", features = ["serde"] }
rand =  "0.8.4"
serde = "1.0.147"
futures = "0.3.25"

[dev-dependencies]
env_logger = "0.10.0"
dotenv = "0.15"