omegaupload/web/Cargo.toml

42 lines
857 B
TOML
Raw Normal View History

2021-10-16 09:50:11 -07:00
[package]
name = "omegaupload-web"
version = "0.1.0"
2021-10-21 18:35:54 -07:00
edition = "2021"
2021-10-16 09:50:11 -07:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-10-24 16:16:02 -07:00
omegaupload-common = { path = "../common", features = ["wasm"] }
2021-10-17 14:15:29 -07:00
# Enables wasm support
getrandom = { version = "*", features = ["js"] }
2021-10-24 13:12:14 -07:00
anyhow = "1"
2021-10-19 18:48:32 -07:00
bytes = "1"
2021-10-23 10:10:55 -07:00
byte-unit = "4"
2021-10-19 02:18:33 -07:00
gloo-console = "0.1"
2021-10-17 14:15:29 -07:00
http = "0.2"
2021-10-22 19:15:23 -07:00
image = "0.23"
js-sys = "0.3"
2021-10-23 10:10:55 -07:00
reqwasm = "0.2"
2021-10-24 11:40:19 -07:00
tree_magic_mini = { version = "3", features = ["with-gpl-data"] }
2021-10-22 19:15:23 -07:00
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
2021-10-24 02:25:42 -07:00
[dependencies.web-sys]
version = "0.3"
features = [
"TextDecoder",
"IdbFactory",
"IdbOpenDbRequest",
"IdbRequest",
"IdbDatabase",
"IdbObjectStore",
"IdbTransaction",
"IdbTransactionMode",
"IdbIndex",
"IdbIndexParameters",
"Event",
2021-10-24 12:14:55 -07:00
"EventTarget",
"Window",
"Location",
2021-10-24 02:25:42 -07:00
]