-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 740 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "num_parser"
version = "1.0.2"
description = "A math interpreter and evaluator"
keywords = ["math", "parser", "evaluator", "complex", "analysis"]
categories = ["mathematics", "parsing"]
edition = "2021"
repository = "https://github.com/BearToCode/num_parser.git"
homepage = "https://github.com/BearToCode/num_parser"
documentation = "https://docs.rs/num_parser"
readme = "README.md"
license = "MIT"
authors = ["BearToCode"]
[lib]
name = "num_parser"
"path" = "src/lib.rs"
[features]
serde_support = ["serde"]
[dependencies]
serde = { version = "1.0", features = ["derive"], optional = true }
num = { version = "0.4.0", features = ["serde"] }
lazy_static = "1.4.0"
itertools = "0.10.3"
tuple-conv = "1.0.1"
rand = "0.8.5"