mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-30 05:14:23 +01:00
9 lines
209 B
Rust
9 lines
209 B
Rust
use std::path::Path;
|
|
|
|
fn main() {
|
|
let header_file = Path::new("include").join("mvcc.h");
|
|
cbindgen::generate(".")
|
|
.expect("Failed to generate C bindings")
|
|
.write_to_file(header_file);
|
|
}
|