23 lines
323 B
TOML
23 lines
323 B
TOML
[package]
|
|
name = "prettyprompt"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
ansi_term = "0.12"
|
|
|
|
[[bin]]
|
|
name = "prettyprompt"
|
|
path = "src/prettyprompt.rs"
|
|
|
|
[[bin]]
|
|
name = "prettyprompt-pwd"
|
|
path = "src/prettyprompt_pwd.rs"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true
|