[package]
edition = "2021"
name = "azoth-sqlite"
version = "0.2.1"
authors = ["johnny <johnny@empyrealsdk.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite-backed projection store for Azoth"
homepage = "https://github.com/empyrealapp/azoth"
documentation = "https://docs.rs/azoth"
readme = false
keywords = [
"database",
"event-sourcing",
"embedded",
"kv-store",
"lmdb",
]
categories = [
"database-implementations",
"data-structures",
]
license = "MIT"
repository = "https://github.com/empyrealapp/azoth"
[lib]
name = "azoth_sqlite"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.azoth-core]
version = "0.2.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.0"
features = [
"rt",
"sync",
"macros",
"time",
"sync",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3.0"
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]