async-sqlite 0.6.0

A library for working with sqlite asynchronously
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 = "2021"
rust-version = "1.95.0"
name = "async-sqlite"
version = "0.6.0"
authors = ["Ryan Fowler"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for working with sqlite asynchronously"
documentation = "https://docs.rs/async-sqlite"
readme = "README.md"
keywords = [
    "sqlite",
    "sqlite3",
    "rusqlite",
    "async",
    "tokio",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/ryanfowler/async-sqlite"

[features]
array = ["rusqlite/array"]
backup = ["rusqlite/backup"]
blob = ["rusqlite/blob"]
bundled = ["rusqlite/bundled"]
bundled-full = ["rusqlite/bundled-full"]
bundled-sqlcipher = ["rusqlite/bundled-sqlcipher"]
bundled-sqlcipher-vendored-openssl = ["rusqlite/bundled-sqlcipher-vendored-openssl"]
cache = ["rusqlite/cache"]
chrono = ["rusqlite/chrono"]
collation = ["rusqlite/collation"]
column_decltype = ["rusqlite/column_decltype"]
column_metadata = ["rusqlite/column_metadata"]
csv = ["rusqlite/csv"]
csvtab = ["rusqlite/csvtab"]
default = [
    "bundled",
    "cache",
    "ffi-sqlite-wasm-rs",
]
fallible_uint = ["rusqlite/fallible_uint"]
ffi-sqlite-wasm-rs = ["rusqlite/ffi-sqlite-wasm-rs"]
functions = ["rusqlite/functions"]
hooks = ["rusqlite/hooks"]
i128_blob = ["rusqlite/i128_blob"]
jiff = ["rusqlite/jiff"]
limits = ["rusqlite/limits"]
load_extension = ["rusqlite/load_extension"]
modern-full = ["rusqlite/modern-full"]
preupdate_hook = ["rusqlite/preupdate_hook"]
serde_json = ["rusqlite/serde_json"]
serialize = ["rusqlite/serialize"]
series = ["rusqlite/series"]
session = ["rusqlite/session"]
sqlcipher = ["rusqlite/sqlcipher"]
time = ["rusqlite/time"]
trace = ["rusqlite/trace"]
unlock_notify = ["rusqlite/unlock_notify"]
url = ["rusqlite/url"]
uuid = ["rusqlite/uuid"]
vtab = ["rusqlite/vtab"]
window = ["rusqlite/window"]

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

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

[dependencies.crossbeam-channel]
version = "0.5"

[dependencies.futures-channel]
version = "0.3"

[dependencies.futures-util]
version = "0.3"

[dependencies.rusqlite]
version = "0.40.0"
default-features = false

[dev-dependencies.paste]
version = "1.0.12"

[dev-dependencies.smol]
version = "2"

[dev-dependencies.tempfile]
version = "3.6.0"

[dev-dependencies.tokio]
version = "1.29.1"
features = ["rt"]