2023-08-08 10:59:55 -04:00
|
|
|
[package]
|
|
|
|
name = "oink"
|
2024-07-02 13:24:30 -04:00
|
|
|
version = "0.2.0"
|
2023-08-08 10:59:55 -04:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
pico-args = "0.5.0"
|
2023-08-26 00:00:55 -04:00
|
|
|
termion = "2.0.1"
|
2023-08-08 10:59:55 -04:00
|
|
|
toml = "0.7.6"
|
2023-08-25 23:48:43 -04:00
|
|
|
upon = "0.7.1"
|
2023-08-08 11:13:22 -04:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = "s"
|
|
|
|
lto = true
|
|
|
|
debug = false
|
|
|
|
codegen-units = 1
|
|
|
|
panic = "abort"
|
|
|
|
strip = "debuginfo"
|
|
|
|
|