kalker/kalk_cli/Cargo.toml
2021-05-18 23:23:01 +02:00

37 lines
971 B
TOML

[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"
version = "0.4.1"
[[bin]]
name = "kalk"
path = "src/main.rs"
[dependencies]
ansi_term = "0.12.1"
kalk = { path = "../kalk", version = "^1.4.9" }
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"