removed un-used rug features

This commit is contained in:
PaddiM8 2020-12-11 13:17:33 +01:00
parent 035ecafe7b
commit ac6bf052d7
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ keywords = ["math", "calculator", "evaluator"]
categories = ["mathematics", "parser-implementations"]
[dependencies]
rug = "1.11.0"
rug = { version = "1.11.0", features = ["float"] }
test-case = "1.0.0"
regex = "1"
lazy_static = "1.4.0"

View File

@ -19,5 +19,5 @@ kalk = { path = "../kalk", version = "^0.2.3" }
rustyline = "7.0.0"
ansi_term = "0.12"
regex = "1"
rug = "1.11.0"
rug = { version = "1.11.0", features = ["float"] }
lazy_static = "1.4.0"