hf_text-generation-inference/router/build.rs

8 lines
155 B
Rust
Raw Normal View History

use std::error::Error;
use vergen::EmitBuilder;
fn main() -> Result<(), Box<dyn Error>> {
EmitBuilder::builder().git_sha(false).emit()?;
Ok(())
}