realtor-lp-frontend/Cargo.toml

42 lines
1021 B
TOML

[package]
name = "realtor-lp-frontend"
version = "0.1.0"
edition = "2021"
authors = [
"Franklin Blanco <me@franklinblanco.dev>"
]
license = "MIT OR Apache-2.0"
[dependencies]
# yew and core stuff
yew = { version = "0.20.0", features = ["csr"] }
yew-router = "0.17"
stylist = "0.12.0"
# Wasm/js stuff
wasm-logger = "0.2"
wasm-bindgen = "0.2.84"
wasm-bindgen-futures = "0.4.34"
#stdweb = "0.4.19"
js-sys = "0.3"
web-sys = "0.3.61"
# other libs
reqwest = { version = "0.11.11", features = ["rustls-tls", "json", "blocking", "multipart"], default-features = false }
uuid = { version = "1.3.0", features = ["v4", "fast-rng", "macro-diagnostics", "serde", "js"] }
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.88"
err = { git = "https://git.franklinblanco.dev/franklinblanco/err.git" }
thousands = "0.2.0"
chrono = "0.4.23"
# Core
realtor-lp-types = { path = "../realtor-lp-types", features = ["wasm"] }
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
opt-level = "z"