omegaupload/web/Cargo.toml

51 lines
1.0 KiB
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
2022-01-18 09:39:56 +00:00
[lib]
crate-type = ["cdylib"]
2021-10-16 16:50:11 +00:00
[dependencies]
2021-10-24 23:16:02 +00:00
omegaupload-common = { path = "../common", features = ["wasm"] }
2021-10-17 21:15:29 +00:00
# Enables wasm support
getrandom = { version = "*", features = ["js"] }
2021-10-24 20:12:14 +00:00
anyhow = "1"
2021-10-20 01:48:32 +00:00
bytes = "1"
2021-10-23 17:10:55 +00:00
byte-unit = "4"
2021-10-25 03:54:49 +00:00
console_error_panic_hook = "0.1"
2021-10-19 09:18:33 +00:00
gloo-console = "0.1"
2021-10-17 21:15:29 +00:00
http = "0.2"
2021-10-23 02:15:23 +00:00
js-sys = "0.3"
mime_guess = "2"
2021-10-23 17:10:55 +00:00
reqwasm = "0.2"
2021-10-24 18:40:19 +00:00
tree_magic_mini = { version = "3", features = ["with-gpl-data"] }
2021-10-27 06:51:05 +00:00
serde = { version = "1.0", features = ["derive"] }
2021-10-27 01:19:14 +00:00
wasm-bindgen = { version = "0.2", features = ["serde-serialize"]}
2021-10-23 02:15:23 +00:00
wasm-bindgen-futures = "0.4"
2021-10-27 01:19:14 +00:00
zip = { version = "0.5", default-features = false, features = ["deflate"] }
2022-01-16 03:47:14 +00:00
flate2 = "1.0.22"
tar = "0.4.38"
2021-10-24 09:25:42 +00:00
[dependencies.web-sys]
version = "0.3"
features = [
2021-10-27 08:49:06 +00:00
"BlobPropertyBag",
2021-10-24 09:25:42 +00:00
"TextDecoder",
"IdbFactory",
"IdbOpenDbRequest",
"IdbRequest",
"IdbDatabase",
"IdbObjectStore",
"IdbTransaction",
"IdbTransactionMode",
"IdbIndex",
"IdbIndexParameters",
"Event",
2021-10-24 19:14:55 +00:00
"EventTarget",
"Window",
2021-10-25 03:54:49 +00:00
"Performance",
2021-10-24 19:14:55 +00:00
"Location",
2021-10-27 01:19:14 +00:00
]