jl-frontend/Cargo.toml

35 lines
893 B
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"
# other libs
reqwest = { version = "0.11.11", features = ["rustls-tls", "json", "blocking"], 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"] }
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" }
2023-03-15 13:20:17 +00:00
# Core
2023-03-20 20:37:16 +00:00
jl-types = { path = "../jl-types", features = ["wasm"] }