OOP_IO-2x_2023-mirror/Rust/lab_1/Cargo.toml

17 lines
469 B
TOML
Raw Normal View History

2023-05-06 23:18:57 +03:00
[package]
name = "lab_1"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2023-05-07 14:08:43 +03:00
[profile.release]
opt-level = 'z' # Optimize for size
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary*
2023-05-06 23:18:57 +03:00
[dependencies]
text_io = "0.1.12"