regalade/app/Cargo.toml

25 lines
630 B
TOML
Raw Normal View History

2023-05-19 11:23:44 +02:00
[package]
name = "app"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-05-20 16:53:07 +02:00
anyhow = "1.0.71"
2023-05-19 11:23:44 +02:00
api = { version = "0.1.0", path = "../api" }
console_log = { version = "1.0.0", features = ["color"] }
2023-05-20 16:53:07 +02:00
gloo-net = "0.2.6"
gloo-storage = "0.2.2"
gloo-utils = "0.1.6"
itertools = "0.10.5"
2023-05-19 11:23:44 +02:00
log = "0.4.17"
serde = { version = "1.0.163", features = ["derive"] }
2023-05-20 16:53:07 +02:00
serde_json = "1.0.96"
uuid = "1.3.3"
2023-05-20 16:53:07 +02:00
wasm-bindgen = "0.2.86"
wasm-bindgen-futures = "0.4.36"
web-sys = "0.3.63"
2023-05-19 11:23:44 +02:00
yew = { version = "0.20.0", features = ["csr"] }
yew-router = "0.17.0"