hpk/Cargo.toml

30 lines
526 B
TOML
Raw Normal View History

2023-03-28 17:12:41 -04:00
[package]
name = "hpk-cli"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-only"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "hpk"
path = "src/hpk.rs"
[[bin]]
name = "bootstrap"
path = "src/bootstrap.rs"
[dependencies]
clap = "4.1"
hpk = { git = "https://git.hitchhiker-linux.org/jeang3nie/hpk.git" }
ron = "0.8"
[dependencies.package-bootstrap]
version = "0.1.0"
features = ["mangen"]
[profile.release]
codegen-units = 1
lto = true
strip = true