최적화 빌드

Cargo.toml

[profile.release]
codegen-units = 1
# Tell `rustc` to optimize for small code size.
opt-level = "z"
lto = true
debug = false
panic = "abort"
# Opt into extra safety checks on arithmetic operations
overflow-checks = true
# Automatically strip symbols from the binary.
strip = true

cargo build --release

2개의 좋아요