-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 1.06 KB
/
Cargo.toml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "xprs"
version = "0.1.0"
edition = "2021"
authors = ["Victor LEFEBVRE <[email protected]>"]
description = "Xprs is a flexible and extensible mathematical expression parser and evaluator for Rust, designed for simplicity and ease of use."
documentation = "https://docs.rs/xprs"
homepage = "https://github.com/vic1707/xprs"
license = "WTFPL"
readme = "README.md"
repository = "https://github.com/vic1707/xprs"
include = [
"src/**/*",
"Cargo.toml",
"Cargo.lock",
"build.rs",
"README.md",
"LICENSE",
]
categories = ["science", "mathematics", "parser-implementations"]
keywords = ["parser", "math", "library"]
rust-version = "1.70.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
miette = { version = "7.2.0", features = ["fancy-no-backtrace"] }
thiserror = "1.0.56"
[build-dependencies]
rustc_version = "0.4.0"
[[bin]]
name = "repl"
path = "src/bin/repl.rs"
[features]
default = ["pemdas", "compile-time-optimizations"]
pemdas = []
pejmdas = []
compile-time-optimizations = []