-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
60 lines (54 loc) · 1.78 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
authors = ["marcograss"]
categories = ["command-line-utilities", "compression", "encoding", "parsing", "parser-implementations"]
default-run = "partialzip"
description = "Download single files from online zip archives or list the content"
documentation = "https://docs.rs/partialzip"
edition = "2021"
exclude = ["/testdata", "/.cargo"]
homepage = "https://github.com/marcograss/partialzip"
keywords = ["network", "utility", "io", "tool", "library"]
license = "MPL-2.0"
name = "partialzip"
readme = "README.md"
repository = "https://github.com/marcograss/partialzip"
rust-version = "1.77.2"
version = "5.0.0"
[features]
cmdline = ["dep:anyhow", "dep:clap", "dep:env_logger"]
default = ["cmdline", "progressbar"]
progressbar = ["dep:indicatif"]
rustls = ["curl/rustls"]
[lib]
path = "src/lib.rs"
[[bin]]
name = "partialzip"
path = "src/bin/partialzip.rs"
required-features = ["cmdline"]
[[bench]]
harness = false
name = "pz_benchmark"
[dependencies]
anyhow = {version = "1.0.95", optional = true}
bytesize = "1.3.0"
chrono = { version = "0.4.39", features = ["serde"] }
clap = {version = "4.5.26", features = ["derive"], optional = true}
conv = "0.3.3"
curl = {version = "0.4.47", default-features = false}
env_logger = {version = "0.11.6", optional = true}
indicatif = {version = "0.17.9", optional = true}
log = "0.4.22"
num-traits = "0.2.19"
serde = { version = "1.0.217", features = ["derive"] }
thiserror = "2.0.10"
url = "2.5.4"
zip = {version = "1", default-features = false, features = ["bzip2", "deflate", "zstd"]}
[dev-dependencies]
actix-files = "0.6.6"
actix-web = {version = "4.9.0", default-features = false, features = []}
anyhow = "1.0.95"
assert_cmd = "2.0.16"
criterion = "0.5.1"
predicates = "3.1.3"
tempfile = "3.15.0"
tokio = {version = "1.43.0", features = ["macros", "rt-multi-thread"]}