25 lines
618 B
TOML
25 lines
618 B
TOML
|
|
[package]
|
||
|
|
name = "dollhouse-frontend"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
yew = { version = "0.21", features = ["csr"] }
|
||
|
|
validator = { version = "0.20.0", features = ["derive"] }
|
||
|
|
gloo-net = "0.4"
|
||
|
|
gloo-timers = "0.3"
|
||
|
|
wasm-bindgen = "0.2"
|
||
|
|
wasm-bindgen-futures = "0.4"
|
||
|
|
web-sys = "0.3"
|
||
|
|
serde = { version = "1.0", features = ["derive"] }
|
||
|
|
serde_json = "1.0"
|
||
|
|
chrono = { version = "0.4", features = ["serde"] }
|
||
|
|
gloo-storage = "0.3"
|
||
|
|
gloo-events = "0.2"
|
||
|
|
wasm-logger = "0.2"
|
||
|
|
log = "0.4"
|
||
|
|
yew-router = "0.18"
|
||
|
|
once_cell = "1.21.3"
|
||
|
|
dollhouse-api-types = { path = "../dollhouse-api-types" }
|
||
|
|
uuid = { workspace = true }
|