aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 06d72e0cbdc28213e58e2e0ea63621fc31d2bb8a (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "pdl-compiler"
version = "0.1.6"
authors = [
    "Henri Chataing <henrichataing@google.com>",
    "David de Jesus Duarte <licorne@google.com>",
    "Martin Geisler <mgeisler@google.com>",
]
exclude = [
    ".github/*",
    "editors/*",
]
default-run = "pdlc"
description = "Parser and serializer generator for protocol binary packets"
readme = "README.md"
keywords = [
    "pdl",
    "parser",
    "serializer",
    "grammar",
]
categories = ["parsing"]
license = "Apache-2.0"
repository = "https://github.com/google/pdl/"

[[bin]]
name = "pdlc"
path = "src/main.rs"

[dependencies.argh]
version = "0.1.7"

[dependencies.codespan-reporting]
version = "0.11.1"

[dependencies.heck]
version = "0.4.0"

[dependencies.pest]
version = "2.5.5"

[dependencies.pest_derive]
version = "2.5.5"

[dependencies.prettyplease]
version = "0.2.6"

[dependencies.proc-macro2]
version = "1.0.46"

[dependencies.quote]
version = "1.0.21"

[dependencies.serde]
version = "1.0.145"
features = [
    "default",
    "derive",
    "serde_derive",
    "std",
    "rc",
]
optional = true

[dependencies.serde_json]
version = "1.0.86"

[dependencies.syn]
version = "2.0.16"

[dev-dependencies.bytes]
version = "1.2.1"
features = ["serde"]

[dev-dependencies.googletest]
version = "0.8.0"

[dev-dependencies.num-derive]
version = "0.3.3"

[dev-dependencies.num-traits]
version = "0.2.15"

[dev-dependencies.paste]
version = "1.0.6"

[dev-dependencies.tempfile]
version = "3.3.0"

[dev-dependencies.thiserror]
version = "1.0.37"

[features]
default = ["serde"]