qm/Cargo.toml

20 lines
332 B
TOML
Raw Normal View History

2022-06-07 21:41:24 -04:00
[package]
name = "quickmaths"
2023-06-19 11:05:47 -04:00
version = "0.2.2"
2022-06-07 21:41:24 -04:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
evalexpr = "11.0.0"
2022-06-07 21:41:24 -04:00
termion = "1.5.6"
2023-06-19 11:05:47 -04:00
[profile.release]
opt-level = 's'
codegen-units = 1
debug = false
lto = true
panic = "abort"
strip = "debuginfo"