2022-06-27 19:23:56 -04:00
|
|
|
[package]
|
|
|
|
name = "config"
|
2022-09-17 22:48:48 -04:00
|
|
|
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]
|
2022-06-27 21:46:17 -04:00
|
|
|
regex = "1.5.6"
|
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"
|
|
|
|
|