-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (33 loc) · 935 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
[package]
name = "lrpar"
description = "Yacc-compatible parser generator"
repository = "https://github.com/softdevteam/grmtools"
version = "0.12.0"
authors = ["Lukas Diekmann <http://lukasdiekmann.com/>", "Laurence Tratt <http://tratt.net/laurie/>"]
edition = "2021"
readme = "README.md"
license = "Apache-2.0/MIT"
build = "build.rs"
categories = ["parsing"]
keywords = ["parser", "LR", "yacc", "grammar"]
[lib]
name = "lrpar"
path = "src/lib/mod.rs"
[build-dependencies]
vergen = { version = "6", default-features = false, features = ["build"] }
[dependencies]
bincode = "1.2"
cactus = "1.0"
cfgrammar = { version = "0.12.0", features = ["serde"] }
filetime = "0.2"
indexmap = "1.3"
lazy_static = "1.4"
lrtable = { version = "0.12.0", features = ["serde"] }
num-traits = "0.2"
packedvec = "1.2"
serde = { version="1.0", features=["derive"] }
static_assertions = "1.1"
vob = "3.0"
regex = "1.3"
[dev-dependencies]
tempfile = "3.0"