1 unstable release
0.0.0 | Nov 1, 2022 |
---|
#20 in #libsql
4KB
74 lines
Intro
This repository contains a helper library for coding WebAssembly-powered user-defined functions for libSQL.
Marking a native Rust function with #[libsql_bindgen]
macro
and compiling it to wasm32-unknown-unknown
target
is enough to produce a user-defined function definition
callable directly from libSQL.
A generic example: https://github.com/psarna/libsql_bindgen/blob/master/examples/encrypt_decrypt/src/lib.rs
Try it yourself:
cd examples/encrypt_decrypt
./get_sql.sh encrypt
./get_sql.sh decrypt
There are also advanced examples that require WasmEdge to run:
This repository is the foundation of libSQL generate and http://bindgen.libsql.org/