summaryrefslogtreecommitdiff
path: root/build.rs
blob: e8ef3be91f523f924c87fcb715cbd57b14db036c (plain)
1
2
3
4
5
6
7
8
9
10
11
use anyhow::Result;
use protobuf_codegen::Codegen;

fn main() -> Result<()> {
    Codegen::new()
        .protoc()
        .include(".")
        .input("jwebmail.proto")
        .out_dir("src/pb3")
        .run()
}