build.rs 128 Bytes
Newer Older
yongshk's avatar
yongshk committed
1
2
3
4
5
6
use std::io::Result;

fn main() -> Result<()> {
    prost_build::compile_protos(&["src/onnx.proto3"], &["src/"])?;
    Ok(())
}