• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "protobuf-codegen"
3version = "3.2.0"
4authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
5edition = "2021"
6license = "MIT"
7homepage = "https://github.com/stepancheg/rust-protobuf/"
8repository = "https://github.com/stepancheg/rust-protobuf/"
9description = """
10Code generator for rust-protobuf.
11
12Includes a library to invoke programmatically (e. g. from `build.rs`) and `protoc-gen-rust` binary.
13"""
14
15[lib]
16bench = false
17
18[dependencies]
19thiserror = "1.0.30"
20anyhow    = "1.0.53"
21regex     = "1.5.5"
22once_cell = "1.10.0"
23tempfile  = "3"
24
25protobuf = { path = "../protobuf", version = "=3.2.0" }
26protobuf-parse = { path = "../protobuf-parse", version = "=3.2.0" }
27
28[[bin]]
29
30name = "protoc-gen-rust"
31path = "src/bin/protoc-gen-rust.rs"
32test = false
33
34[package.metadata.docs.rs]
35all-features = true
36