[package]
name = "libsql-rusqlite"
version = "0.32.0"
authors = ["The rusqlite developers"]
edition = "2018"
description = "Ergonomic wrapper for SQLite (libsql fork)"
documentation = "http://docs.rs/rusqlite/"
readme = "README.md"
keywords = ["sqlite", "database", "ffi"]
license = "MIT"
categories = ["database"]
exclude = [
"/.github/*",
"/.gitattributes",
"/appveyor.yml",
"/Changelog.md",
"/clippy.toml",
"/codecov.yml",
]
[badges]
appveyor = { repository = "rusqlite/rusqlite" }
codecov = { repository = "rusqlite/rusqlite" }
maintenance = { status = "actively-developed" }
[lib]
name = "rusqlite"
[features]
load_extension = []
backup = []
blob = []
collation = []
functions = []
trace = []
release_memory = []
limits = []
hooks = []
i128_blob = []
sqlcipher = []
libsql-experimental = []
libsql-wasm-experimental = ["libsql-experimental"]
vtab = []
csvtab = ["csv", "vtab"]
array = ["vtab"]
session = ["libsql-ffi/session", "hooks"]
window = ["functions"]
series = ["vtab"]
extra_check = []
modern_sqlite = []
column_decltype = []
unlock_notify = []
bundled = []
modern-full = [
"array",
"backup",
"blob",
"modern_sqlite",
"chrono",
"collation",
"column_decltype",
"csvtab",
"extra_check",
"functions",
"hooks",
"i128_blob",
"limits",
"load_extension",
"serde_json",
"series",
"time",
"trace",
"url",
"uuid",
"vtab",
"window",
]
[dependencies]
time = { version = "0.3.0", features = ["formatting", "macros", "parsing"], optional = true }
bitflags = "2.0"
hashlink = "0.8"
chrono = { version = "0.4", optional = true, default-features = false, features = ["clock"] }
serde_json = { version = "1.0", optional = true }
csv = { version = "1.1", optional = true }
url = { version = "2.1", optional = true }
fallible-iterator = "0.2"
fallible-streaming-iterator = "0.1"
uuid = { version = "1.0", optional = true }
smallvec = "1.6.1"
libsql-ffi = { version = "0.4", path = "../../libsql-ffi" }
[dev-dependencies]
doc-comment = "0.3"
tempfile = "3.1.0"
lazy_static = "1.4"
regex = "1.5.5"
uuid = { version = "1.0", features = ["v4"] }
unicase = "2.6.0"
bencher = "0.1"
[[test]]
name = "config_log"
harness = false
[[test]]
name = "deny_single_threaded_sqlite_config"
[[test]]
name = "vtab"
[[bench]]
name = "cache"
harness = false
[[bench]]
name = "exec"
harness = false
[package.metadata.docs.rs]
features = ["modern-full"]
all-features = false
no-default-features = true
default-target = "x86_64-unknown-linux-gnu"
rustdoc-args = ["--cfg", "docsrs"]
[package.metadata.playground]
features = ["bundled-full"]
all-features = false
[package.metadata.dist]
dist = false