29 lines
694 B
TOML
29 lines
694 B
TOML
[package]
|
|
name = "frontend"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[[bin]]
|
|
name = "bin"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
yew = { version = "0.23", features = ["csr"] }
|
|
serde = { workspace = true }
|
|
wasm-bindgen-futures = "0.4.70"
|
|
web-sys = { version = "0.3.95", features = [
|
|
"Window","Document","Request","Response","Headers", "HtmlSelectElement", "RequestCredentials",
|
|
"SubmitEvent","InputEvent","HtmlInputElement","Event", "HtmlFormElement", "MouseEvent"
|
|
] }
|
|
gloo-net = "0.7.0"
|
|
gloo-storage = "0.4.0"
|
|
yew-router = "0.20.0"
|
|
serde_json = { workspace = true }
|
|
gloo = "0.12.0"
|
|
chrono = { workspace = true }
|
|
chrono-tz = "0.10.4"
|
|
wasm-bindgen = "0.2.120"
|