33 lines
933 B
TOML
33 lines
933 B
TOML
[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" }
|
|
yew-router = "0.16"
|
|
#yew-router = { git = "https://github.com/yewstack/yew" }
|
|
web-sys = { version = "0.3", features = ["Request", "RequestInit", "RequestMode", "Response", "Headers", "HtmlSelectElement"] }
|
|
lan_party_core = { path = "../core", features = ["serde", "sycamore"] }
|
|
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
|
|
wasm-bindgen-futures = "0.4"
|
|
serde = "1"
|
|
serde_json = "1"
|
|
thiserror = "1"
|
|
yew-hooks = "0.1"
|
|
#yew-hooks = { git = "https://github.com/jetli/yew-hooks.git" }
|
|
anyhow = "1.0"
|
|
js-sys = "0.3"
|
|
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"
|
|
|
|
|
|
|