omegaupload/web/Cargo.toml

22 lines
592 B
TOML
Raw Normal View History

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