mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-12-23 08:21:09 +00:00
11 lines
No EOL
294 B
Bash
11 lines
No EOL
294 B
Bash
#!/usr/bin/env sh
|
|
|
|
set -xe
|
|
|
|
bindgen turso.h -o src/bindings.rs \
|
|
--with-derive-default \
|
|
--allowlist-type "turso_.*_t" \
|
|
--allowlist-function "turso_.*" \
|
|
--rustified-enum "turso_type_t" \
|
|
--rustified-enum "turso_tracing_level_t" \
|
|
--rustified-enum "turso_status_code_t" |