forked from pest-parser/pest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 735 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 735 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
[package]
name = "pest_grammars"
description = "pest popular grammar implementations"
version = "2.8.2"
edition = "2021"
authors = ["Dragoș Tiselice <dragostiselice@gmail.com>"]
homepage = "https://pest.rs/"
repository = "https://github.com/pest-parser/pest"
documentation = "https://docs.rs/pest"
keywords = ["pest", "parser", "peg", "grammar"]
categories = ["parsing"]
license = "MIT OR Apache-2.0"
readme = "_README.md"
rust-version = "1.81"
[dependencies]
pest = { path = "../pest", version = "2.8.2" }
pest_derive = { path = "../derive", version = "2.8.2" }
[dev-dependencies]
criterion = "0.5"
pretty_assertions = "1.3.0"
lazy_static = "1.4.0"
[[bench]]
name = "json"
harness = false
[[bench]]
name = "http"
harness = false