deadpool-sqlite 0.13.0

Dead simple async pool for rusqlite
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "deadpool-sqlite"
version = "0.13.0"
authors = ["Michael P. Jung <michael.jung@terreon.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dead simple async pool for rusqlite"
readme = "README.md"
keywords = [
    "async",
    "database",
    "pool",
    "sqlite",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/deadpool-rs/deadpool"

[package.metadata.docs.rs]
all-features = false
features = ["serde"]
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
array = ["rusqlite/array"]
backup = ["rusqlite/backup"]
blob = ["rusqlite/blob"]
buildtime_bindgen = ["rusqlite/buildtime_bindgen"]
bundled = ["rusqlite/bundled"]
bundled-full = ["rusqlite/bundled-full"]
bundled-sqlcipher = ["rusqlite/bundled-sqlcipher"]
bundled-sqlcipher-vendored-openssl = ["rusqlite/bundled-sqlcipher-vendored-openssl"]
bundled-windows = ["rusqlite/bundled-windows"]
cache = ["rusqlite/cache"]
collation = ["rusqlite/collation"]
column_decltype = ["rusqlite/column_decltype"]
column_metadata = ["rusqlite/column_metadata"]
csvtab = ["rusqlite/csvtab"]
default = ["rt_tokio_1"]
extra_check = ["rusqlite/extra_check"]
fallible_uint = ["rusqlite/fallible_uint"]
functions = ["rusqlite/functions"]
hooks = ["rusqlite/hooks"]
i128_blob = ["rusqlite/i128_blob"]
in_gecko = ["rusqlite/in_gecko"]
limits = ["rusqlite/limits"]
load_extension = ["rusqlite/load_extension"]
loadable_extension = ["rusqlite/loadable_extension"]
modern-full = ["rusqlite/modern-full"]
modern_sqlite = ["rusqlite/modern_sqlite"]
preupdate_hook = ["rusqlite/preupdate_hook"]
rt_async-std_1 = ["deadpool/rt_async-std_1"]
rt_tokio_1 = ["deadpool/rt_tokio_1"]
serde = [
    "deadpool/serde",
    "dep:serde",
]
serialize = ["rusqlite/serialize"]
series = ["rusqlite/series"]
session = ["rusqlite/session"]
sqlcipher = ["rusqlite/sqlcipher"]
trace = ["rusqlite/trace"]
tracing = ["deadpool-sync/tracing"]
unlock_notify = ["rusqlite/unlock_notify"]
vtab = ["rusqlite/vtab"]
wasm32-wasi-vfs = ["rusqlite/wasm32-wasi-vfs"]
window = ["rusqlite/window"]
with-asan = ["rusqlite/with-asan"]

[lib]
name = "deadpool_sqlite"
path = "src/lib.rs"

[[test]]
name = "sqlite"
path = "tests/sqlite.rs"

[dependencies.deadpool]
version = "0.13.0"
features = ["managed"]
default-features = false

[dependencies.deadpool-sync]
version = "0.2"

[dependencies.rusqlite]
version = "0.38.0"

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
package = "serde"

[dev-dependencies.config]
version = "0.15"
features = ["json"]

[dev-dependencies.tokio]
version = "1.0"
features = [
    "macros",
    "rt-multi-thread",
]