2020-06-04 18:19:48 +02:00
|
|
|
[package]
|
2020-06-04 19:43:43 +02:00
|
|
|
name = "kalk_cli"
|
2020-06-04 18:19:48 +02:00
|
|
|
version = "0.1.0"
|
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"
|
|
|
|
description = "A calculator that supports user-defined functions and variables 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-04 18:19:48 +02:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-06-04 19:43:43 +02:00
|
|
|
kalk = { path = "../kalk" }
|
2020-06-04 18:19:48 +02:00
|
|
|
rustyline = "6.1.2"
|
|
|
|
ansi_term = "0.12"
|
2020-06-07 18:56:28 +02:00
|
|
|
regex = "1"
|
|
|
|
phf = { version = "0.8", features = ["macros"] }
|