mirror of
https://github.com/tursodatabase/libsql.git
synced 2024-11-11 13:29:25 +00:00
7 lines
156 B
Rust
7 lines
156 B
Rust
use vergen::EmitBuilder;
|
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
EmitBuilder::builder().git_sha(false).all_build().emit()?;
|
|
Ok(())
|
|
}
|