2021-06-07 20:44:12 -04:00
|
|
|
[package]
|
|
|
|
name = "open"
|
2023-06-26 18:43:39 -04:00
|
|
|
version = "1.0.0"
|
2021-06-16 21:52:22 -04:00
|
|
|
authors = ["Valerie Wolfe <sleeplessval@gmail.com>"]
|
2021-06-07 20:44:12 -04:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-26 18:43:39 -04:00
|
|
|
pico-args = "0.5.0"
|
|
|
|
toml = "0.7.5"
|
2022-05-24 08:39:06 -04:00
|
|
|
|
|
|
|
[profile.release]
|
2023-06-26 18:44:56 -04:00
|
|
|
opt-level = 's'
|
|
|
|
codegen-units = 1
|
|
|
|
debug = false
|
|
|
|
lto = true
|
|
|
|
panic = "abort"
|
2022-05-24 08:39:06 -04:00
|
|
|
strip = "debuginfo"
|
|
|
|
|