#protobuf #codegen #ttrpc

build ttrpc-codegen

Rust codegen for ttrpc using ttrpc-compiler crate

13 releases

0.5.0 Jan 15, 2025
0.4.2 Apr 14, 2023
0.4.1 Sep 14, 2022
0.3.0 Dec 22, 2021
0.1.1 Jul 20, 2020

#802 in Build Utils

Download history 7999/week @ 2024-10-28 6075/week @ 2024-11-04 5504/week @ 2024-11-11 6566/week @ 2024-11-18 4891/week @ 2024-11-25 5805/week @ 2024-12-02 4940/week @ 2024-12-09 4613/week @ 2024-12-16 3237/week @ 2024-12-23 3677/week @ 2024-12-30 6194/week @ 2025-01-06 5212/week @ 2025-01-13 7890/week @ 2025-01-20 7424/week @ 2025-01-27 6187/week @ 2025-02-03 8400/week @ 2025-02-10

30,529 downloads per month
Used in 4 crates (3 directly)

Apache-2.0

180KB
4.5K SLoC

API to generate .rs files for ttrpc from protobuf

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

Example

build.rs:

use ttrpc_codegen::Codegen;
use ttrpc_codegen::{Customize, ProtobufCustomize};

fn main() {
    let protos = vec![
        "protos/a.proto",
        "protos/b.proto",
    ];

    Codegen::new()
        .out_dir("protocols/sync")
        .inputs(&protos)
        .include("protocols/protos")
        .rust_protobuf()
        .customize(Customize {
            ..Default::default()
        })
        .rust_protobuf_customize(ProtobufCustomize {
            ..Default::default()
        }
        .run()
        .expect("Gen code failed.");
}

Cargo.toml:

[build-dependencies]
ttrpc-codegen = "0.2"

Versions

ttrpc-codegen version ttrpc version
0.1.x <= 0.4.x
0.2.x == 0.5.x
0.3.x == 0.6.x
0.4.x >= 0.7.x
0.5.x >= 0.7.x

Alternative

The alternative is to use protoc-rust crate, which relies on protoc command to parse descriptors. Both crates should produce the same result, otherwise please file a bug report.

Dependencies

~11–21MB
~323K SLoC