26 lines
542 B
TOML
26 lines
542 B
TOML
[package]
|
|
name = "bl-frontend"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# yew and core stuff
|
|
yew = { version = "0.20.0", features = ["csr"] }
|
|
yew-router = "0.17"
|
|
stylist = "0.12.0"
|
|
yew-utils = { path = "../../libs/yew-utils" }
|
|
|
|
# Wasm/js stuff
|
|
wasm-logger = "0.2"
|
|
wasm-bindgen = "0.2.84"
|
|
wasm-bindgen-futures = "0.4.34"
|
|
stdweb = "0.4.20"
|
|
js-sys = "0.3"
|
|
|
|
# Other libs
|
|
thousands = "0.2.0"
|
|
chrono = "0.4.23"
|
|
log = "0.4"
|
|
locales = "0.1.0" |