kalker/kalk_cli/Cargo.toml

37 lines
972 B
TOML
Raw Normal View History

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