Compare commits

..

No commits in common. "5f36bd41aedc6b852b46e6da75049678d73130be" and "100398953a54bfabb3c83719d22a434702804683" have entirely different histories.

2 changed files with 10 additions and 1 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
Rust/lab_1/target
Rust/lab_2/target

View File

@ -5,5 +5,12 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[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*
[dependencies]
text_io = "0.1.12"