-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
101 lines (82 loc) · 2 KB
/
Cargo.toml
File metadata and controls
101 lines (82 loc) · 2 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[package]
name = "exprz"
version = "0.0.15"
edition = "2018"
authors = ["Brandon H. Gomes <bh.gomes@rutgers.edu>"]
documentation = "https://docs.rs/exprz"
homepage = "https://github.com/qdeduction/exprz"
repository = "https://github.com/qdeduction/exprz"
readme = "README.md"
license = "ISC"
keywords = ["expressions", "expression-parser", "s-expressions", "s-expr"]
categories = ["data-structures", "no-std", "parsing"]
description = "An Expression Library"
exclude = [""]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[badges]
is-it-maintained-issue-resolution = { repository = "qdeduction/exprz" }
is-it-maintained-open-issues = { repository = "qdeduction/exprz" }
maintenance = { status = "actively-developed" }
[features]
# No default features enabled
default = []
# Adds allocation
alloc = [
"serde/alloc",
]
# [EXPERIMENTAL] Adds standard library features
std = []
# [EXPERIMENTAL] Adds buffered expression
buffered = [
"alloc"
]
# [EXPERIMENTAL] Adds graph algorithms
graph = []
# [EXPERIMENTAL] Adds multi-expressions
multi = []
# Enables Panicking Functions
panic = []
# [EXPERIMENTAL] Adds parsing support
parse = []
# [EXPERIMENTAL] Adds pattern trait
pattern = []
# [EXPERIMENTAL] Adds shape trait
shape = []
# [EXPERIMENTAL] Adds unicode support
unicode = [
"unicode-segmentation",
]
# [EXPERIMENTAL] Adds traversal algorithms
visit = []
# Enables all stable features
stable = [
"alloc",
"panic",
]
# Enables all experimental features
experimental = [
"buffered",
"graph",
"multi",
"parse",
"pattern",
"petgraph",
"rayon",
"serde",
"shape",
"std",
"unicode",
"visit",
]
# Enables all features
all = [
"stable",
"experimental",
]
[dependencies]
petgraph = { version = "0.5.1", optional = true }
rayon = { version = "1.5.1", optional = true }
serde = { version = "1.0.126", default-features = false, features = ["derive"], optional = true }
unicode-segmentation = { version = "1.7.1", optional = true }