forked from google/pdl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (45 loc) · 1.09 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "pdl-compiler"
version = "0.1.1"
edition = "2021"
description = "Parser and serializer generator for protocol binary packets"
repository = "https://github.com/google/pdl/"
license-file = "LICENSE"
readme = "README.md"
keywords = ["pdl", "parser", "serializer", "grammar"]
authors = [
"Henri Chataing <[email protected]>",
"David de Jesus Duarte <[email protected]>",
"Martin Geisler <[email protected]>"
]
exclude = [".github/*"]
categories = ["parsing"]
default-run = "pdlc"
[[bin]]
name = "pdlc"
path = "src/main.rs"
[workspace]
[features]
default = ["serde"]
[dependencies]
codespan-reporting = "0.11.1"
heck = "0.4.0"
pest = "=2.5.5"
pest_derive = "=2.5.5"
proc-macro2 = "1.0.46"
quote = "1.0.21"
serde_json = "1.0.86"
argh = "0.1.7"
syn = "1.0.102"
prettyplease = "0.1.25"
[dependencies.serde]
version = "1.0.145"
features = ["default", "derive", "serde_derive", "std", "rc"]
optional = true
[dev-dependencies]
tempfile = "3.3.0"
bytes = { version = "1.2.1", features = ["serde"] }
num-derive = "0.3.3"
num-traits = "0.2.15"
thiserror = "1.0.37"
paste = "1.0.6"