lan-party-backend/web/Cargo.toml

33 lines
933 B
TOML
Raw Normal View History

2022-09-04 11:13:24 +02:00
[package]
name = "lan_party_web"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
yew = "0.19"
#yew = { git = "https://github.com/yewstack/yew" }
2022-09-04 19:43:16 +02:00
yew-router = "0.16"
#yew-router = { git = "https://github.com/yewstack/yew" }
2022-09-06 16:49:49 +02:00
web-sys = { version = "0.3", features = ["Request", "RequestInit", "RequestMode", "Response", "Headers", "HtmlSelectElement"] }
2022-09-12 09:49:16 +02:00
lan_party_core = { path = "../core", features = ["serde", "sycamore"] }
2022-09-04 19:43:16 +02:00
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4"
serde = "1"
serde_json = "1"
thiserror = "1"
2022-09-05 13:37:38 +02:00
yew-hooks = "0.1"
#yew-hooks = { git = "https://github.com/jetli/yew-hooks.git" }
2022-09-05 13:37:38 +02:00
anyhow = "1.0"
js-sys = "0.3"
2022-09-06 13:06:51 +02:00
paste = "1"
sycamore = { version = "0.8.1", features = ["serde", "suspense"] }
sycamore-router = "0.8.0"
reqwasm = "0.5"
console_log = "0.2"
log = "0.4"