config/Cargo.toml

20 lines
325 B
TOML
Raw Permalink Normal View History

2022-06-27 19:23:56 -04:00
[package]
name = "config"
version = "0.4.2"
2022-06-27 19:23:56 -04:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-07-11 09:44:20 -04:00
pico-args = "0.5.0"
2022-06-27 19:23:56 -04:00
toml = "0.5.9"
2023-06-19 14:23:16 -04:00
[profile.release]
opt-level = 's'
codegen-units = 1
debug = false
lto = true
panic = "abort"
strip = "debuginfo"