daisy/Cargo.toml

47 lines
875 B
TOML
Raw Normal View History

2023-03-18 19:36:15 -07:00
[package]
2023-07-28 21:51:38 -07:00
name = "daisycalc"
2023-10-15 11:37:51 -07:00
version = "1.1.7"
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
[[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-03-18 19:36:15 -07:00
[dependencies]
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
[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"