mirror of
https://github.com/fluencelabs/lalrpop
synced 2025-03-17 17:30:50 +00:00
41 lines
840 B
TOML
41 lines
840 B
TOML
[package]
|
|
name = "lalrpop-snap"
|
|
version = "0.15.0" # LALRPOP
|
|
description = "convenient LR(1) parser generator"
|
|
repository = "https://github.com/lalrpop/lalrpop"
|
|
readme = "../README.md"
|
|
keywords = ["parser", "generator", "LR", "yacc", "grammar"]
|
|
categories = ["parsing"]
|
|
license = "Apache-2.0/MIT"
|
|
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
|
|
# build = "build.rs"
|
|
workspace = ".."
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
ascii-canvas = "1.0"
|
|
atty = "0.1.2"
|
|
bit-set = "0.4.0"
|
|
diff = "0.1.9"
|
|
ena = "0.5"
|
|
itertools = "0.7"
|
|
regex = "0.2.1"
|
|
regex-syntax = "0.4.0"
|
|
petgraph = "0.4.4"
|
|
string_cache = "0.7.1"
|
|
term = "0.4.5"
|
|
unicode-xid = "0.1"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.4"
|
|
|
|
[dependencies.lalrpop-util]
|
|
path = "../lalrpop-util"
|
|
version = "0.15.0" # LALRPOP
|
|
|
|
[dependencies.lalrpop-intern]
|
|
path = "../lalrpop-intern"
|
|
version = "0.15.0" # LALRPOP
|