kalker/kalk_cli/Cargo.toml

37 lines
971 B
TOML
Raw Normal View History

[package]
authors = ["PaddiM8"]
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."
edition = "2018"
keywords = ["math", "calculator", "cli", "command-line"]
license = "MIT"
name = "kalk_cli"
readme = "../README.md"
repository = "https://github.com/PaddiM8/kalk"
2021-05-29 14:41:21 +02:00
version = "0.5.3"
2020-06-13 09:16:06 +02:00
[[bin]]
name = "kalk"
path = "src/main.rs"
2020-06-13 09:16:06 +02:00
[dependencies]
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"
regex = "1"
rustyline = "7.1.0"
seahorse = "1.1.1"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[package.metadata.bundle]
icon = ["../res/icon*"]
identifier = "net.strct.kalk"
name = "kalk"
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"