2023-06-26 00:15:07 +03:00
|
|
|
[package]
|
|
|
|
name = "rust_tests"
|
|
|
|
version = "0.1.0"
|
|
|
|
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]
|
2023-06-28 00:10:53 +03:00
|
|
|
text_io = "0.1.12"
|
|
|
|
prettytable-rs = "0.10.0"
|
|
|
|
#tabled = "0.12.2"
|