forked from kevinmehall/rust-peg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (29 loc) · 877 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
[workspace]
members = ["./peg-macros", "./peg-runtime"]
[package]
name = "peg"
version = "0.8.4"
authors = [ "Kevin Mehall <[email protected]>" ]
license = "MIT"
repository = "https://github.com/kevinmehall/rust-peg"
description = "A simple Parsing Expression Grammar (PEG) parser generator."
keywords = ["peg", "parser", "parsing", "grammar"]
categories = ["parsing"]
readme = "README.md"
edition = "2018"
rust-version = "1.68.0" # if changed, also update .github/workflows/rust.yml
[dependencies]
peg-macros = { path = "./peg-macros", version = "= 0.8.4" }
peg-runtime = { path = "./peg-runtime", version = "= 0.8.3" }
[dev-dependencies]
trybuild = "1.0.80"
version_check = "0.9"
[[test]]
name = "trybuild"
path = "tests/trybuild.rs"
harness = false
[features]
default = ["std"]
trace = ["peg-macros/trace"]
std = ["peg-runtime/std"]
unstable = ["peg-runtime/unstable"]