omegaupload/web/Cargo.toml

22 lines
626 B
TOML
Raw Normal View History

2021-10-16 09:50:11 -07:00
[package]
name = "omegaupload-web"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-10-17 14:15:29 -07:00
omegaupload-common = { path = "../common" }
# Enables wasm support
getrandom = { version = "*", features = ["js"] }
anyhow = "1"
2021-10-19 18:48:32 -07:00
bytes = "1"
2021-10-19 02:18:33 -07:00
downcast-rs = "1"
gloo-console = "0.1"
2021-10-17 14:15:29 -07:00
http = "0.2"
2021-10-19 18:48:32 -07:00
reqwest = { version = "0.11", default_features = false, features = ["tokio-rustls"] }
2021-10-17 14:15:29 -07:00
web-sys = { version = "0.3", features = ["Request", "Window"] }
yew = { version = "0.18", features = ["wasm-bindgen-futures"] }
2021-10-19 18:48:32 -07:00
yew-router = "0.15"
yewtil = "0.4"