kalker/kalk/Cargo.toml

24 lines
614 B
TOML
Raw Normal View History

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"
authors = ["PaddiM8"]
2020-05-28 23:46:35 +02:00
edition = "2018"
2020-06-12 00:08:14 +02:00
readme = "README.md"
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"]
categories = ["mathematics", "parser-implementations"]
2020-05-28 23:46:35 +02:00
[profile.release]
panic = "abort"
#lto = true
#codegen-units = 1
#incremental = false
[dependencies]
phf = { version = "0.8", features = ["macros"] }
2020-06-04 21:53:45 +02:00
rug = "1.9.0"
test-case = "1.0.0"
regex = "1"