bl-frontend-rs/Cargo.toml

35 lines
904 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"
web-sys = "0.3.61"
stdweb = "0.4.20"
js-sys = "0.3"
# Other libs
thousands = "0.2.0"
chrono = "0.4.23"
log = "0.4"
once_cell = "1.10.0"
rust-i18n = "1"
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"] }