forked from rust-lang/gll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 791 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (34 loc) · 791 Bytes
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
[package]
name = "gll"
version = "0.0.2"
authors = [
"Ana-Maria <mihalacheana.maria@yahoo.com>",
"Eduard-Mihai Burtescu <edy.burt@gmail.com>"
]
repository = "https://github.com/lykenware/gll"
license = "MIT/Apache-2.0"
keywords = ["grammar", "generator", "GLL", "parser"]
readme = "README.md"
description = "GLL parsing framework."
edition = "2018"
[dependencies]
indexing = "0.3.1"
indexmap = "1"
grammer = "0.0.1"
proc-macro2 = "0.4.0"
proc-quote = "0.2.0"
[build-dependencies]
indexing = "0.3.1"
indexmap = "1"
grammer = "0.0.1"
proc-macro2 = "0.4.0"
proc-quote = "0.2.0"
[lib]
doctest = false
test = false
[patch.'crates-io']
grammer = { git = "https://github.com/lykenware/grammer", rev = "eb47b51a9332c0e82d7c02d988e203d2a01f3654" }
[workspace]
members = [
"macros"
]