-
Notifications
You must be signed in to change notification settings - Fork 487
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "libsql-sys"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Native bindings to libSQL"
keywords = ["libsql", "sqlite", "ffi", "bindings", "database"]
categories = ["external-ffi-bindings"]
[dependencies]
bytes = "1.5.0"
libsql-ffi = { workspace = true }
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 = ["libsql-ffi/multiple-ciphers"]
sqlean-extension-uuid = ["libsql-ffi/sqlean-extension-uuid"]
sqlean-extension-crypto = ["libsql-ffi/sqlean-extension-crypto"]
sqlean-extension-fuzzy = ["libsql-ffi/sqlean-extension-fuzzy"]
sqlean-extension-math = ["libsql-ffi/sqlean-extension-math"]
sqlean-extension-stats = ["libsql-ffi/sqlean-extension-stats"]
sqlean-extension-text = ["libsql-ffi/sqlean-extension-text"]
sqlean-extensions = ["libsql-ffi/sqlean-extensions"]