2020-06-04 18:19:48 +02:00
|
|
|
[package]
|
2020-06-12 00:13:05 +02:00
|
|
|
authors = ["PaddiM8"]
|
2021-05-18 23:08:38 +02:00
|
|
|
build = "build.rs"
|
|
|
|
categories = ["mathematics", "command-line-utilities"]
|
|
|
|
description = "A calculator that supports user-defined functions, variables and units, and can handle fairly ambiguous syntax."
|
2020-06-04 18:19:48 +02:00
|
|
|
edition = "2018"
|
2021-05-18 23:08:38 +02:00
|
|
|
keywords = ["math", "calculator", "cli", "command-line"]
|
|
|
|
license = "MIT"
|
|
|
|
name = "kalk_cli"
|
2020-06-12 00:13:05 +02:00
|
|
|
readme = "../README.md"
|
|
|
|
repository = "https://github.com/PaddiM8/kalk"
|
2021-05-29 14:41:21 +02:00
|
|
|
version = "0.5.3"
|
2020-06-04 18:19:48 +02:00
|
|
|
|
2020-06-13 09:16:06 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "kalk"
|
2021-05-18 23:08:38 +02:00
|
|
|
path = "src/main.rs"
|
2020-06-13 09:16:06 +02:00
|
|
|
|
2020-06-04 18:19:48 +02:00
|
|
|
[dependencies]
|
2020-12-14 11:25:08 +01:00
|
|
|
ansi_term = "0.12.1"
|
2021-05-29 14:41:21 +02:00
|
|
|
kalk = { path = "../kalk", version = "^2.0.3" }
|
2020-12-10 23:40:29 +01:00
|
|
|
lazy_static = "1.4.0"
|
2021-05-18 23:08:38 +02:00
|
|
|
regex = "1"
|
|
|
|
rustyline = "7.1.0"
|
2020-12-13 20:26:35 +01:00
|
|
|
seahorse = "1.1.1"
|
2020-12-12 21:49:08 +01:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
|
|
winres = "0.1"
|
|
|
|
|
|
|
|
[package.metadata.bundle]
|
|
|
|
icon = ["../res/icon*"]
|
2021-05-18 23:08:38 +02:00
|
|
|
identifier = "net.strct.kalk"
|
|
|
|
name = "kalk"
|
2020-12-12 21:49:08 +01:00
|
|
|
short_description = "A calculator that supports user-defined functions, variables and units, and can handle fairly ambiguous syntax."
|
|
|
|
|
|
|
|
[package.metadata.bundle.bin.kalk]
|
|
|
|
name = "kalk"
|