38 lines
950 B
TOML
38 lines
950 B
TOML
[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" }
|
|
|
|
# Wasm/js stuff
|
|
wasm-logger = "0.2"
|
|
wasm-bindgen = "0.2.84"
|
|
wasm-bindgen-futures = "0.4.34"
|
|
stdweb = "0.4.20"
|
|
js-sys = "0.3"
|
|
web-sys = "0.3.61"
|
|
|
|
# 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"] }
|
|
serde_json = "1.0.88"
|
|
err = { git = "https://git.franklinblanco.dev/franklinblanco/err.git" }
|
|
thousands = "0.2.0"
|
|
chrono = "0.4.23"
|
|
|
|
|
|
# Core
|
|
jl-types = { path = "../jl-types", features = ["wasm"] }
|