mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-05-20 16:08:14 +00:00
19 lines
394 B
TOML
19 lines
394 B
TOML
[package]
|
|
name = "libsql-ffi"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
libsql-wasmtime-bindings = { version = "0.2.1", optional = true }
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.66.1"
|
|
cc = "1.0"
|
|
|
|
[features]
|
|
session = []
|
|
wasmtime-bindings = ["dep:libsql-wasmtime-bindings"]
|