2023-03-12 13:11:37 +00:00
|
|
|
[package]
|
|
|
|
name = "remax-template-frontend"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
authors = [
|
|
|
|
"Franklin Blanco <me@franklinblanco.dev>"
|
|
|
|
]
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
# 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"
|
|
|
|
|
|
|
|
#Wasm/js stuff
|
|
|
|
wasm-logger = "0.2"
|
|
|
|
wasm-bindgen = "0.2.84"
|
|
|
|
wasm-bindgen-futures = "0.4.34"
|
|
|
|
js-sys = "0.3"
|
|
|
|
|
|
|
|
#other libs
|
|
|
|
reqwest = { version = "0.11.11", features = ["rustls-tls", "json", "blocking"], default-features = false }
|
2023-03-12 23:17:10 +00:00
|
|
|
uuid = { version = "1.3.0", features = ["v4", "fast-rng", "macro-diagnostics", "serde", "js"] }
|
2023-03-12 13:11:37 +00:00
|
|
|
log = "0.4"
|
|
|
|
serde_json = "1.0.88"
|
|
|
|
|
|
|
|
remax-types = { path = "../remax-types", features = ["wasm"]}
|