-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (31 loc) · 858 Bytes
/
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="cripes"
version="0.0.1"
authors=["Collin J. Sutton"]
[features]
default = ["dot"]
# `pattern_class`: enable the Class pattern element and related variants.
# Classes are a useful abstraction over unions of single-atom patterns because
# they support ranges, but they place additional restrictions on the kinds of
# atoms that can be used with patterns.
pattern_class = []
# `dot`: build binaries for producing state diagrams for grammar automatons in
# GraphViz `dot` format.
[lib]
name="cripes"
path="src/lib.rs"
[[test]]
name="tests"
path="tests/tests.rs"
[dev-dependencies]
compiletest_rs = "0.2.0"
[dependencies]
cripes-macros = { path = "../cripes-macros" }
arrayvec = "0.3.0"
bitflags = "0.7.0"
bit-set = "0.4.0"
char-iter = "0.1"
num-traits = "*"
smallvec = "*"
itertools = "*"
dot = { version = "^0.1.0", optional = true }