2022-06-07 21:41:24 -04:00
|
|
|
[package]
|
|
|
|
name = "quickmaths"
|
2024-02-16 09:05:00 -05:00
|
|
|
version = "0.2.3"
|
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]
|
2023-06-19 11:03:29 -04:00
|
|
|
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"
|
2024-02-16 09:05:00 -05:00
|
|
|
strip = "symbols"
|
2023-06-19 11:05:47 -04:00
|
|
|
|