-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (29 loc) · 987 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
[package]
name = "super-gunzip"
version = "0.1.0"
edition = "2021"
authors = ["Maurice Pasternak"]
license = "MIT"
description = "A simple utility for compressing and decompressing files using the Gzip algorithm in a multithreaded manner"
readme = "README.md"
repository = "https://github.com/MauricePasternak/SuperGZip"
categories = ["filesystem"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.24.1", features = [
"rt",
"rt-multi-thread",
"io-util",
"macros",
"fs",
"sync",
] }
clap = { version = "4.0.32", features = ["derive"] }
async-compression = { version = "0.3.15", features = ["tokio", "gzip"] }
glob = "0.3.1"
[dev-dependencies]
tokio-test = "0.4.2"
[profile.release]
codegen-units = 1 # Optimize for small binary size but longer compile time.
strip = true # Automatically strip symbols from the binary.
lto = true # Enable link-time optimization.