kalker/cli/Cargo.toml

35 lines
966 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"
2021-06-02 22:32:30 +02:00
name = "kalker"
readme = "../README.md"
2021-06-02 22:32:30 +02:00
repository = "https://github.com/PaddiM8/kalker"
2022-01-01 17:02:11 +01:00
version = "1.1.0"
[dependencies]
ansi_term = "0.12.1"
2022-01-01 17:02:11 +01:00
kalk = { path = "../kalk", version = "^2.2.0" }
2020-12-10 23:40:29 +01:00
lazy_static = "1.4.0"
regex = "1"
rustyline = "7.1.0"
seahorse = "1.1.1"
atty = "0.2.14"
2021-09-04 12:51:31 +02:00
dirs = "3.0.2"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[package.metadata.bundle]
icon = ["../res/icon*"]
2021-06-02 22:32:30 +02:00
identifier = "net.strct.kalker"
name = "kalker"
short_description = "A calculator that supports user-defined functions, variables and units, and can handle fairly ambiguous syntax."
2021-06-02 22:32:30 +02:00
[package.metadata.bundle.bin.kalker]
name = "kalker"