fn main() -> Result<(), Box<dyn std::error::Error>> {
let out_dir = std::path::PathBuf::from(std::env::var("OUT_DIR")?);
tonic_prost_build::configure()
.file_descriptor_set_path(out_dir.join("deepslate_descriptor.bin"))
.compile_protos(&["proto/deepslate.proto"], &["proto"])?;
Ok(())
}