2023-03-18 19:36:15 -07:00
|
|
|
[package]
|
2023-07-28 21:51:38 -07:00
|
|
|
name = "daisycalc"
|
2023-10-15 11:29:19 -07:00
|
|
|
version = "1.1.6"
|
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-08-02 09:17:42 -07:00
|
|
|
[[bin]]
|
|
|
|
name = "daisy"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2023-09-20 13:18:41 -07:00
|
|
|
[lib]
|
|
|
|
name = "daisycalc"
|
|
|
|
path = "src/lib.rs"
|
2023-09-20 14:23:24 -07:00
|
|
|
crate-type = ["cdylib", "rlib"]
|
2023-09-20 13:18:41 -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"
|
2023-09-20 11:29:50 -07:00
|
|
|
num = "0.4.1"
|
|
|
|
#astro-float = "0.7.1"
|
|
|
|
|
2023-09-20 14:23:24 -07:00
|
|
|
[package.metadata.wasm-pack.profile.release]
|
2023-09-21 14:12:04 -07:00
|
|
|
wasm-opt = true
|
2023-04-07 20:36:55 -07:00
|
|
|
|
|
|
|
[target.'cfg(target_family = "unix")'.dependencies]
|
2023-04-01 13:50:52 -07:00
|
|
|
termion = "2.0.1"
|
2023-09-20 11:29:50 -07:00
|
|
|
|
2023-09-20 14:23:24 -07:00
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
wasm-bindgen = "0.2"
|
|
|
|
|
2023-06-12 15:01:44 -07:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
toml = "0.7.4"
|