blob: 3400e66d94cb8ad271e79cec03f47e8b0c4efcd2 [file] [log] [blame]
Chih-Hung Hsieh92ff6052020-06-10 20:18:39 -07001[package]
2name = "protobuf-codegen"
David LeGare316092b2022-03-02 16:21:18 +00003version = "2.27.1"
Chih-Hung Hsieh92ff6052020-06-10 20:18:39 -07004authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"]
5license = "MIT"
6homepage = "https://github.com/stepancheg/rust-protobuf/"
7repository = "https://github.com/stepancheg/rust-protobuf/"
8description = """
9Code generator for rust-protobuf.
10
11Includes a library and `protoc-gen-rust` binary.
12
13See `protoc-rust` and `protobuf-codegen-pure` crates.
14"""
15
16[lib]
17bench = false
18
19[dependencies]
David LeGare316092b2022-03-02 16:21:18 +000020protobuf = { path = "../protobuf", version = "=2.27.1" }
Chih-Hung Hsieh92ff6052020-06-10 20:18:39 -070021
22[[bin]]
23
24name = "protoc-gen-rust"
25path = "src/bin/protoc-gen-rust.rs"
26test = false
27
28[[bin]]
29
30name = "protobuf-bin-gen-rust-do-not-use"
31path = "src/bin/protobuf-bin-gen-rust-do-not-use.rs"
32test = false
33
34[package.metadata.docs.rs]
35all-features = true