Cargo.toml 388 B

1234567891011121314
  1. [package]
  2. name = "strust"
  3. version = "0.1.0"
  4. edition = "2024"
  5. [dependencies]
  6. termio = "0.1"
  7. [profile.release]
  8. opt-level = "z" # Optimize for size.
  9. lto = true # Enable Link Time Optimization
  10. codegen-units = 1 # Reduce number of codegen units to increase optimizations.
  11. panic = "abort" # Abort on panic
  12. strip = true # Automatically strip symbols from the binary.