0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-09-02 13:20:43 +00:00
Files
libsql/libsql-ffi/Cargo.toml

48 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2023-11-15 11:08:51 +01:00
[package]
name = "libsql-ffi"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Native bindings to libSQL"
build = "build.rs"
2024-03-07 14:33:44 -05:00
exclude = ["bundled/SQLite3MultipleCiphers/build", "bundled/SQLite3MultipleCiphers/test"]
2023-11-15 11:08:51 +01:00
# 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 }
2023-11-15 11:08:51 +01:00
[build-dependencies]
bindgen = "0.66.1"
cc = "1.0"
glob = "0.3"
2023-11-15 11:08:51 +01:00
[features]
session = []
wasmtime-bindings = ["dep:libsql-wasmtime-bindings"]
multiple-ciphers = []
2024-07-31 17:44:16 +02:00
bundled-sqlcipher = []
bundled-sqlcipher-vendored-openssl = []
with-asan = []
wasm32-wasi-vfs = []
unlock_notify = []
preupdate_hook = []
sqlcipher = []
sqlean-extension-uuid = []
sqlean-extension-crypto = []
sqlean-extension-fuzzy = []
sqlean-extension-math = []
sqlean-extension-stats = []
sqlean-extension-text = []
sqlean-extensions = [
"sqlean-extension-uuid",
"sqlean-extension-crypto",
"sqlean-extension-fuzzy",
"sqlean-extension-math",
"sqlean-extension-stats",
"sqlean-extension-text"
]
libsql-disable-checkpoint-downgrade = []