[package]
edition = "2021"
rust-version = "1.78"
name = "yugendb-sqlite"
version = "0.1.0"
authors = ["2rkf"]
build = false
exclude = [
"tests/**",
"benches/**",
"examples/**",
"*.sqlite",
"*.zip",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite Rust driver for yugendb key-value and document storage."
homepage = "https://github.com/2rkf/yugendb"
documentation = "https://docs.rs/yugendb-sqlite"
readme = "README.md"
keywords = [
"database",
"key-value",
"document",
"storage",
"typed",
]
categories = [
"database",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/2rkf/yugendb"
[lib]
name = "yugendb_sqlite"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"serde",
]
default-features = false
[dependencies.parking_lot]
version = "0.12"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.yugendb-core]
version = "0.1.0"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
]
[lints.clippy]
all = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"