#serialization #protoc #protobuf #proto #buffer #api #protocols

build protoc-rust

protoc --rust_out=... available as API. protoc needs to be in $PATH, protoc-gen-run does not.

81 stable releases

3.0.0-alpha.2 Nov 1, 2021
2.28.0 Sep 26, 2022
2.27.1 Feb 5, 2022
2.25.2 Oct 24, 2021
1.4.1 Jun 24, 2017

#1834 in Encoding

Download history 46343/week @ 2023-11-25 34575/week @ 2023-12-02 36109/week @ 2023-12-09 37265/week @ 2023-12-16 3279/week @ 2023-12-23 17665/week @ 2023-12-30 23529/week @ 2024-01-06 18721/week @ 2024-01-13 27134/week @ 2024-01-20 29601/week @ 2024-01-27 32403/week @ 2024-02-03 35624/week @ 2024-02-10 19328/week @ 2024-02-17 39754/week @ 2024-02-24 27951/week @ 2024-03-02 11368/week @ 2024-03-09

101,611 downloads per month
Used in fewer than 55 crates

MIT license

2MB
41K SLoC

API to generate .rs files

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

Example code:

extern crate protoc_rust;

use protoc_rust::Customize;

fn main() {
    protoc_rust::Codegen::new()
        .out_dir("src/protos")
        .inputs(&["protos/a.proto", "protos/b.proto"])
        .include("protos")
        .run()
        .expect("protoc");
}

And in Cargo.toml:

[build-dependencies]
protoc-rust = "2.0"

Note 1: This API requires protoc command present in $PATH. Although protoc-gen-rust command is not needed.

Note 2: Is advisable that protoc-rust build-dependecy version be the same as protobuf dependency.

The alternative is to use pure-rust .proto parser and code generator.


lib.rs:

API to generate .rs files.

This API requires protoc command present in $PATH or passed explicitly to Codegen object.

extern crate protoc_rust;

fn main() {
    protoc_rust::Codegen::new()
        .out_dir("src/protos")
        .inputs(&["protos/a.proto", "protos/b.proto"])
        .include("protos")
        .run()
        .expect("Running protoc failed.");
}

It is advisable that protoc-rust build-dependecy version be the same as protobuf dependency.

The alternative is to use protobuf-codegen-pure.

Dependencies

~2–13MB
~142K SLoC