summaryrefslogtreecommitdiff
path: root/grammar/Cargo.toml
blob: 535b3f517fe2d19d7e693e0d70d74333cc7e1a40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "grammar"
version = "0.1.2"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = []

# This flag exposes the module "test_grammar_helper" which provides
# some grammars for testing.
test-helper = []

# This flag controls whether to print GraphViz files during testing.
test-print-viz = []

[dependencies]
nfa = { path = "../nfa" }
graph = { path = "../graph" }

[dev-dependencies]
grammar = { path = ".",  features = ["test-helper"] }