Cargo.toml 635 B

123456789101112131415161718192021
  1. [package]
  2. name = "nuttertools"
  3. description = "A collection of crazy CLI tools in Rust"
  4. authors = ["mbrav <mbrav@protonmail.com>"]
  5. version = "0.0.1"
  6. edition = "2021"
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [profile.dev]
  9. opt-level = 2
  10. # Build optimizations: https://github.com/johnthagen/min-sized-rust
  11. [profile.release]
  12. strip = true # Strip symbols from binary
  13. opt-level = "s" # Optimize for size
  14. lto = true # Enable link time optimization
  15. codegen-units = 1 # Maximize size reduction optimizations (takes longer)
  16. [dependencies]
  17. clap = { version = "4", features = ["derive"] }