25 lines
644 B
TOML
25 lines
644 B
TOML
[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]
|
|
anyhow = "1.0.71"
|
|
api = { version = "0.1.0", path = "../api" }
|
|
console_log = { version = "1.0.0", features = ["color"] }
|
|
gloo-net = "0.2.6"
|
|
gloo-storage = "0.2.2"
|
|
gloo-utils = "0.1.6"
|
|
im = "15.1.0"
|
|
itertools = "0.10.5"
|
|
log = "0.4.17"
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
serde_json = "1.0.96"
|
|
uuid = "1.3.3"
|
|
wasm-bindgen = "0.2.86"
|
|
wasm-bindgen-futures = "0.4.36"
|
|
web-sys = "0.3.63"
|
|
yew = { version = "0.20.0", features = ["csr"] }
|
|
yew-router = "0.17.0"
|