1[package] 2name = "protobuf-codegen" 3version = "2.22.1" 4authors = ["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] 20protobuf = { path = "../protobuf", version = "=2.22.1" } 21 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 36