Files
snaferrous/Cargo.toml
pyro57000 e08d19c565 updated the cargo.toml to optimize the binary
also removed some debugging print statements to
clean up the output when running in a real
environment.
2025-10-17 09:40:10 -05:00

18 lines
314 B
TOML

[package]
name = "snaferrous"
version = "0.1.0"
edition = "2024"
[dependencies]
clap = { version = "4.5.41", features = ["derive"] }
colored = "3.0.0"
tokio = { version = "1.48.0", features = ["full"] }
walkdir = "2.5.0"
[profile.release]
opt-level ="z"
lto = true
strip = true
codegen-units = 1
panic = "abort"