ironoxide 2.0.0

A pure-Rust SDK for accessing IronCore's privacy platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn main() {
    let name = "transform";
    protobuf_codegen::Codegen::new()
        .cargo_out_dir("proto")
        .input(format!("proto/{}.proto", name))
        .include("proto")
        .customize(
            protobuf_codegen::Customize::default()
                .tokio_bytes(true)
                .tokio_bytes_for_string(true),
        )
        .pure()
        .run()
        .expect("protoc");
}