jl-frontend/Cargo.toml

43 lines
1.0 KiB
TOML
Raw Normal View History

2023-03-15 13:20:17 +00:00
[package]
name = "jl-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"
yew-utils = { path = "../../libs/yew-utils" }
2023-03-15 13:20:17 +00:00
# Wasm/js stuff
wasm-logger = "0.2"
wasm-bindgen = "0.2.84"
wasm-bindgen-futures = "0.4.34"
stdweb = "0.4.20"
2023-03-15 13:20:17 +00:00
js-sys = "0.3"
web-sys = "0.3.61"
2023-03-15 13:20:17 +00:00
# other libs
2023-04-23 16:26:14 +00:00
reqwest = { version = "0.11.11", features = ["rustls-tls", "json", "blocking", "multipart"], default-features = false }
2023-03-15 13:20:17 +00:00
uuid = { version = "1.3.0", features = ["v4", "fast-rng", "macro-diagnostics", "serde", "js"] }
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
2023-03-15 13:20:17 +00:00
serde_json = "1.0.88"
2023-03-20 20:37:16 +00:00
err = { git = "https://git.franklinblanco.dev/franklinblanco/err.git" }
thousands = "0.2.0"
chrono = "0.4.23"
2023-03-15 13:20:17 +00:00
# Core
2023-03-20 20:37:16 +00:00
jl-types = { path = "../jl-types", features = ["wasm"] }
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
opt-level = "z"