-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 853 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "files"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.15", features = ["fs", "io-util", "rt", "macros"] }
tokio-stream = { version = "0.1", features = ["fs"] }
tokio-util = { version = "0.7", features = ["io"] }
futures = "0.3"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"], optional = true }
unwrap_or = "1.0"
tree_magic_mini = "3.0"
lazy_static = { version = "1.4", optional = true }
reqwest = { version = "0.11", optional = true, features = ["stream", "json"] }
serde_json = { version = "1.0", optional = true }
fievar = { version = "0.1", optional = true }
async-stream = "0.3.3"
[features]
google_drive = ["lazy_static", "serde", "serde_json", "reqwest", "fievar", "tokio-util/compat"]