hpk/Cargo.toml

31 lines
593 B
TOML
Raw 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
2023-03-24 12:51:54 -04:00
[dependencies]
hpk-package = { git = "https://git.hitchhiker-linux.org/jeang3nie/hpk-package.git" }
2023-03-22 00:01:57 -04:00
rayon = "1.7"
walkdir = "2.3"
2023-03-24 12:51:54 -04:00
zstd = "0.12"
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