binaryCalculatorPrototype/Cargo.toml

21 lines
612 B
TOML
Raw Permalink Normal View History

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
2023-10-02 15:07:58 +03:00
[profile.dev.package."*"] # +
opt-level = "z" # Optimize library for size
2023-06-26 00:15:07 +03:00
[profile.release]
2023-10-02 15:07:58 +03:00
#opt-level = 'z' # Optimize for size
opt-level = 3 # Optimize for speed
2023-06-26 00:15:07 +03:00
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"
2023-10-02 15:07:58 +03:00
tabled = "0.14.0"