2023-03-18 19:36:15 -07:00
|
|
|
[package]
|
2023-07-28 21:51:38 -07:00
|
|
|
name = "daisycalc"
|
2023-08-01 12:32:58 -07:00
|
|
|
version = "0.2.14"
|
2023-04-07 11:40:52 -07:00
|
|
|
edition = "2021"
|
2023-06-12 15:01:44 -07:00
|
|
|
build = "buildscript/main.rs"
|
2023-07-31 17:01:26 -07:00
|
|
|
license = "GPL-3.0-only"
|
2023-07-28 21:51:38 -07:00
|
|
|
description = "A high-precision terminal scientific calculator."
|
|
|
|
repository = "https://git.betalupi.com/Mark/daisy"
|
|
|
|
homepage = "https://git.betalupi.com/Mark/daisy"
|
|
|
|
readme = "README.md"
|
2023-03-18 19:36:15 -07:00
|
|
|
|
2023-03-19 17:46:42 -07:00
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
debug = 0
|
|
|
|
debug-assertions = false
|
|
|
|
strip = "symbols"
|
|
|
|
lto = "fat"
|
2023-04-07 11:40:24 -07:00
|
|
|
codegen-units = 1
|
2023-03-19 17:46:42 -07:00
|
|
|
panic = "abort"
|
|
|
|
|
2023-04-07 20:36:55 -07:00
|
|
|
|
2023-03-18 19:36:15 -07:00
|
|
|
[dependencies]
|
2023-04-07 20:36:55 -07:00
|
|
|
cfg-if = "1.0.0"
|
|
|
|
|
|
|
|
[target.'cfg(target_family = "unix")'.dependencies]
|
2023-04-01 13:50:52 -07:00
|
|
|
termion = "2.0.1"
|
2023-06-12 15:01:44 -07:00
|
|
|
rug = "1.19.2"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
toml = "0.7.4"
|