Files
ticketsystem/frontend/Cargo.toml
schn33fuchs 50c0b99f20 Update ticket status now possible
Also bugfixes and api is now called over the same url as frontend
2026-04-29 14:22:45 +02:00

27 lines
653 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 = { version = "1.0.228", features = ["derive"] }
wasm-bindgen = "0.2.118"
wasm-bindgen-futures = "0.4.68"
web-sys = { version = "0.3.95", features = [
"Window","Document","Request","Response","Headers", "HtmlSelectElement",
"SubmitEvent","InputEvent","HtmlInputElement","Event", "HtmlFormElement"
] }
gloo-net = "0.7.0"
yew-router = "0.20.0"
serde_json = "1.0.149"
gloo = "0.12.0"
chrono = { version = "0.4.44", features = ["serde"] }