2023-04-08 16:31:36 +00:00
|
|
|
[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"
|
2023-04-28 22:09:55 +00:00
|
|
|
web-sys = "0.3.61"
|
2023-04-08 16:31:36 +00:00
|
|
|
stdweb = "0.4.20"
|
|
|
|
js-sys = "0.3"
|
|
|
|
|
|
|
|
# Other libs
|
|
|
|
thousands = "0.2.0"
|
|
|
|
chrono = "0.4.23"
|
|
|
|
log = "0.4"
|
2023-04-27 00:21:14 +00:00
|
|
|
once_cell = "1.10.0"
|
|
|
|
rust-i18n = "1"
|
2023-04-30 16:47:19 +00:00
|
|
|
reqwest = { version = "0.11.11", features = ["rustls-tls", "json", "blocking", "multipart"], default-features = false }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0.88"
|
|
|
|
err = { git = "https://git.franklinblanco.dev/franklinblanco/err.git" }
|
|
|
|
|
|
|
|
|
|
|
|
bl-types = { path = "../bl-types", features = ["wasm"] }
|