kalker/kalk_cli/Cargo.toml

24 lines
635 B
TOML
Raw Normal View History

[package]
2020-06-04 19:43:43 +02:00
name = "kalk_cli"
2020-12-09 22:18:00 +01:00
version = "0.3.3"
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"]
2020-06-13 09:16:06 +02:00
[[bin]]
path = "src/main.rs"
name = "kalk"
[dependencies]
2020-12-09 22:18:00 +01:00
kalk = { path = "../kalk", version = "^0.2.3" }
2020-12-10 20:31:07 +01:00
rustyline = "7.0.0"
ansi_term = "0.12"
regex = "1"
phf = { version = "0.8", features = ["macros"] }
rug = "1.11.0"