pride/Cargo.toml

25 lines
543 B
TOML
Raw Normal View History

2023-04-13 15:04:05 -04:00
[package]
name = "pride"
version = "0.3.0"
2023-04-13 15:04:05 -04:00
edition = "2021"
authors = [ "Valerie Wolfe <sleeplessval@gmail.com>" ]
description = "Pride flags in the terminal."
homepage = "https://git.vwolfe.io/valerie/pride"
repository = "https://git.vwolfe.io/valerie/pride"
license = "MIT"
2023-04-13 15:04:05 -04:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pico-args = "0.5.0"
termion = "2.0.1"
[profile.release]
opt-level = 's'
2023-04-13 15:04:05 -04:00
codegen-units = 1
debug = false
lto = true
panic = "abort"
strip = "debuginfo"
2023-04-13 15:04:05 -04:00