-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
43 lines (39 loc) · 885 Bytes
/
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
[package]
name = "piz"
version = "0.5.1"
edition = "2021"
authors = ["Matt Kline <[email protected]>"]
license = "Zlib"
repository = "https://github.com/mrkline/piz-rs"
readme = "README.md"
documentation = "https://docs.rs/piz"
description = """
piz (a Parallel Implementation of Zip)
is a ZIP archive reader designed to concurrently decompress files
using a simple API.
"""
keywords = ["zip", "archive", "parallel", "thread", "concurrency"]
categories = ["compression", "concurrency"]
#Profiling!
[profile.release]
debug = true
[dependencies]
camino = "1.0"
codepage-437 = "0.1"
crc32fast = "1.0"
flate2 = "1.0"
log = "0.4"
thiserror = "2.0"
memchr = "2.0"
chrono = "0.4"
[dev-dependencies]
anyhow = "1.0"
env_logger = "0.11"
rayon = "1.0"
memmap2 = "0.9"
stderrlog = "0.6"
structopt = "0.3"
tempfile = "3"
[features]
default = ["check-local-metadata"]
check-local-metadata = []