config/Cargo.toml

19 lines
305 B
TOML
Raw Normal View History

2022-06-27 19:23:56 -04:00
[package]
name = "config"
version = "0.2.0"
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]
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"