tvl-depot/users/edef/crunch-v2/build.rs
Vincent Ambo 398a9b5317 chore(tvix/tools): move crunch-v2 to //users/edef
This is not a core Tvix tool, it's some sort of one-off analysis thing.

Change-Id: I05fcbed45abad27d6b5cfd49db1727249dad3971
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12603
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
Reviewed-by: edef <edef@edef.eu>
2024-10-12 23:02:50 +00:00

6 lines
138 B
Rust

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