2020-06-04 18:19:48 +02:00
|
|
|
[package]
|
2020-06-04 19:43:43 +02:00
|
|
|
name = "kalk_cli"
|
2020-12-09 22:18:00 +01:00
|
|
|
version = "0.3.3"
|
2020-06-12 00:13:05 +02:00
|
|
|
authors = ["PaddiM8"]
|
2020-06-04 18:19:48 +02:00
|
|
|
edition = "2018"
|
2020-06-12 00:13:05 +02:00
|
|
|
readme = "../README.md"
|
2020-06-18 18:03:40 +02:00
|
|
|
description = "A calculator that supports user-defined functions, variables and units, and can handle fairly ambiguous syntax."
|
2020-06-12 00:13:05 +02:00
|
|
|
repository = "https://github.com/PaddiM8/kalk"
|
|
|
|
license = "MIT"
|
|
|
|
keywords = ["math", "calculator", "cli", "command-line"]
|
|
|
|
categories = ["mathematics", "command-line-utilities"]
|
2020-06-04 18:19:48 +02:00
|
|
|
|
2020-06-13 09:16:06 +02:00
|
|
|
[[bin]]
|
|
|
|
path = "src/main.rs"
|
|
|
|
name = "kalk"
|
|
|
|
|
2020-06-04 18:19:48 +02:00
|
|
|
[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"
|
2020-06-04 18:19:48 +02:00
|
|
|
ansi_term = "0.12"
|
2020-06-07 18:56:28 +02:00
|
|
|
regex = "1"
|
|
|
|
phf = { version = "0.8", features = ["macros"] }
|
2020-12-09 11:44:22 +01:00
|
|
|
rug = "1.11.0"
|