aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: 4cfd140433bea9c990b0255f469517322993cd24 (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
[package]
name = "protobuf-codegen"
version = "3.2.0"
authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
edition = "2021"
license = "MIT"
homepage = "https://github.com/stepancheg/rust-protobuf/"
repository = "https://github.com/stepancheg/rust-protobuf/"
description = """
Code generator for rust-protobuf.

Includes a library to invoke programmatically (e. g. from `build.rs`) and `protoc-gen-rust` binary.
"""

[lib]
bench = false

[dependencies]
thiserror = "1.0.30"
anyhow    = "1.0.53"
regex     = "1.5.5"
once_cell = "1.10.0"
tempfile  = "3"

protobuf = { path = "../protobuf", version = "=3.2.0" }
protobuf-parse = { path = "../protobuf-parse", version = "=3.2.0" }

[[bin]]

name = "protoc-gen-rust"
path = "src/bin/protoc-gen-rust.rs"
test = false

[package.metadata.docs.rs]
all-features = true