mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-02-01 13:42:38 +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(())
|
|
}
|