#protoc #protoc-gen-rust #path #grpc #protobuf #api #generate

build protoc-rust-grpc

protoc --rust-grpc_out=... available as API. protoc needs to be in $PATH, protoc-gen-rust-grpc does not.

16 releases

0.8.3 Mar 28, 2021
0.8.2 Sep 20, 2020
0.8.1 May 25, 2020
0.6.2 Jan 14, 2020
0.2.1 Jul 10, 2017

#6 in #protoc-gen-rust

Download history 76/week @ 2024-01-08 69/week @ 2024-01-15 25/week @ 2024-01-22 8/week @ 2024-01-29 30/week @ 2024-02-05 74/week @ 2024-02-12 84/week @ 2024-02-19 187/week @ 2024-02-26 156/week @ 2024-03-04 241/week @ 2024-03-11 154/week @ 2024-03-18 125/week @ 2024-03-25 305/week @ 2024-04-01 124/week @ 2024-04-08 145/week @ 2024-04-15 200/week @ 2024-04-22

789 downloads per month
Used in fewer than 12 crates

MIT/Apache

1.5MB
29K SLoC

API to generate .rs files

API to generate .rs files to be used e. g. from build.rs.

Example code:

fn main() {
    protoc_rust_grpc::run(protoc_rust_grpc::Args {
        out_dir: "src",
        includes: &["proto"],
        input: &["proto/aaa.proto", "proto/bbb.proto"],
        rust_protobuf: true, // also generate protobuf messages, not just services
        ..Default::default()
    }).expect("protoc-rust-grpc");
}

Note this API requires protoc command present in $PATH. Although protoc-gen-rust-grpc command is not needed.


lib.rs:

API to generate .rs files.

Dependencies

~2–12MB
~128K SLoC