34 lines
608 B
TOML
34 lines
608 B
TOML
[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.2"
|
|
features = ["mangen"]
|
|
|
|
[dependencies.indicatif]
|
|
version = "0.17"
|
|
features = ["improved_unicode", "vt100"]
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
strip = true
|