aboutsummaryrefslogtreecommitdiffstats
path: root/build.rs
blob: fe3b945b7cbc712e17adcde11b1ceebae0b1437e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    protobuf_codegen_pure::run(protobuf_codegen_pure::Args {
        out_dir: "src/pb",
        input: &["proto/termcast.proto"],
        includes: &["proto"],
        customize: protobuf_codegen_pure::Customize {
            ..Default::default()
        },
    })
    .expect("protobuf_codegen_pure");
}