Cargo.toml 373 B

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