2020-05-28 23:46:35 +02:00
|
|
|
[package]
|
2020-06-04 19:43:43 +02:00
|
|
|
name = "kalk"
|
2020-06-12 00:08:14 +02:00
|
|
|
version = "0.1.3"
|
2020-06-11 23:47:03 +02:00
|
|
|
authors = ["PaddiM8"]
|
2020-05-28 23:46:35 +02:00
|
|
|
edition = "2018"
|
2020-06-12 00:08:14 +02:00
|
|
|
readme = "README.md"
|
2020-06-11 23:47:03 +02:00
|
|
|
description = "A math evaluator library that supports user-defined functions and variables and can handle fairly ambiguous syntax."
|
|
|
|
repository = "https://github.com/PaddiM8/kalk/tree/master/kalk"
|
|
|
|
license = "MIT"
|
|
|
|
keywords = ["math", "calculator", "evaluator"]
|
2020-06-11 23:52:12 +02:00
|
|
|
categories = ["mathematics", "parser-implementations"]
|
2020-05-28 23:46:35 +02:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
#lto = true
|
|
|
|
#codegen-units = 1
|
|
|
|
#incremental = false
|
|
|
|
|
|
|
|
[dependencies]
|
2020-05-29 21:35:59 +02:00
|
|
|
phf = { version = "0.8", features = ["macros"] }
|
2020-06-04 21:53:45 +02:00
|
|
|
rug = "1.9.0"
|
|
|
|
test-case = "1.0.0"
|
2020-06-07 19:48:52 +02:00
|
|
|
regex = "1"
|