about summary refs log tree commit diff
path: root/tvix/tools/crunch-v2/build.rs
blob: 25e6d0be21a48a2c7fd3bc0f2b044b650666fe1f (plain) (blame)
1
2
3
4
5
6
use std::io::Result;

fn main() -> Result<()> {
    prost_build::compile_protos(&["protos/flatstore.proto"], &["protos/"])?;
    Ok(())
}