0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-05-18 17:36:57 +00:00
Files
libsql/libsql-sys/Cargo.toml
Piotr Sarna 1557594e35 libsql-server,libsql-sys: move encryption to a feature
It's only enabled with `cargo build -F encryption-at-rest`.
2024-01-09 18:12:02 +01:00

28 lines
826 B
TOML

[package]
name = "libsql-sys"
version = "0.3.0"
edition = "2021"
license = "MIT"
description = "Native bindings to libSQL"
repository = "https://github.com/tursodatabase/libsql"
keywords = ["libsql", "sqlite", "ffi", "bindings", "database"]
categories = ["external-ffi-bindings"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libsql-ffi = { version = "0.1", path = "../libsql-ffi/" }
once_cell = "1.18.0"
rusqlite = { workspace = true, features = ["trace"], optional = true }
tracing = "0.1.37"
zerocopy = { version = "0.7.28", features = ["derive"] }
[features]
default = ["api"]
api = ["wal"]
wal = []
rusqlite = ["dep:rusqlite"]
wasmtime-bindings = ["libsql-ffi/wasmtime-bindings"]
unix-excl-vfs = []
encryption-at-rest = ["libsql-ffi/multiple-ciphers"]