23 lines
558 B
TOML
23 lines
558 B
TOML
[package]
|
|
name = "oodle-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
byteorder = "1.4.3"
|
|
clap = { version = "4.0.20", features = ["cargo", "color", "unicode", "std", "derive"] }
|
|
color-eyre = "0.6.2"
|
|
libloading = "0.7.4"
|
|
tracing = "0.1.37"
|
|
tracing-error = "0.2.0"
|
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
|
|
|
[profile.release]
|
|
strip = "debuginfo"
|
|
lto = true
|
|
|
|
#debug-assertions = true
|
|
#overflow-checks = true
|
|
#opt-level = 0
|