-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
35 lines (32 loc) · 1.1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "file-explorer-plugin"
version = "0.0.0"
authors = ["Esteban Borai <[email protected]>"]
edition = "2021"
publish = false
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
bytes = { workspace = true }
chrono = { workspace = true, features = ["serde"] }
futures = { workspace = true }
http = { workspace = true }
http-body-util = { workspace = true }
humansize = { workspace = true }
hyper = { workspace = true }
mime_guess = { workspace = true }
multer = { workspace = true }
rust-embed = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
percent-encoding = { workspace = true }
tokio = { workspace = true, features = ["fs", "rt-multi-thread", "signal", "macros"] }
tokio-util = { workspace = true, features = ["io"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
http-server-plugin = { workspace = true }
file-explorer = { workspace = true }
file-explorer-proto = { workspace = true }
file-explorer-ui = { workspace = true }