2023-03-18 19:36:15 -07:00
|
|
|
[package]
|
|
|
|
name = "calc"
|
2023-03-27 10:59:11 -07:00
|
|
|
version = "0.0.1"
|
2023-03-18 19:36:15 -07:00
|
|
|
edition = "2021"
|
|
|
|
|
2023-03-19 17:46:42 -07:00
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
debug = 0
|
|
|
|
debug-assertions = false
|
|
|
|
strip = "symbols"
|
|
|
|
lto = "fat"
|
|
|
|
codegen-units = 1
|
|
|
|
panic = "abort"
|
|
|
|
|
2023-03-18 19:36:15 -07:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-03-23 22:10:53 -07:00
|
|
|
signal-hook = "0.3.15"
|
|
|
|
termion = "2.0.1"
|