hpk/Cargo.toml

67 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2023-03-21 11:12:20 -04:00
[package]
name = "hpk"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-only"
2023-03-21 11:12:20 -04:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
cli = ["clap", "indicatif", "package-bootstrap"]
bootstrap = ["cli", "package-bootstrap"]
2023-03-28 17:12:41 -04:00
[[bin]]
name = "hpk"
path = "src/hpk.rs"
required-features = ["cli"]
2023-03-28 17:12:41 -04:00
[[bin]]
name = "bootstrap"
path = "src/bootstrap.rs"
required-features = ["bootstrap"]
2023-03-28 17:12:41 -04:00
2023-03-24 12:51:54 -04:00
[dependencies]
deku = "0.16"
libc = "0.2"
2023-03-22 00:01:57 -04:00
rayon = "1.7"
2023-03-28 17:12:41 -04:00
ron = "0.8"
sha2 = "0.10"
thiserror = "1.0"
2023-03-22 00:01:57 -04:00
walkdir = "2.3"
2023-03-24 12:51:54 -04:00
zstd = "0.12"
2023-03-21 11:12:20 -04:00
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.2"
optional = true
2023-03-28 17:12:41 -04:00
2023-03-28 19:28:37 -04:00
[dependencies.indicatif]
version = "0.17"
features = ["improved_unicode", "vt100"]
optional = true
[dependencies.package-bootstrap]
2023-05-07 22:05:57 -04:00
version = "0.3"
features = ["mangen"]
optional = true
2023-03-21 11:12:20 -04:00
[dependencies.serde]
version = "1.0"
features = ["derive"]
2023-03-24 12:51:54 -04:00
[dependencies.url]
version = "2.3"
features = ["serde"]
[dependencies.ureq]
version = "2.6.2"
features = ["tls", "socks-proxy", "native-certs"]
[profile.release]
codegen-units = 1
lto = true
strip = true