[package]
edition = "2021"
rust-version = "1.93"
name = "chio-store-sqlite"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite-backed persistence, query, and report implementations for Chio"
readme = false
license = "Apache-2.0"
repository = "https://github.com/backbay/chio"
[lib]
name = "chio_store_sqlite"
path = "src/lib.rs"
[[test]]
name = "approval_store"
path = "tests/approval_store.rs"
[[test]]
name = "execution_nonce_store"
path = "tests/execution_nonce_store.rs"
[[test]]
name = "integration_smoke"
path = "tests/integration_smoke.rs"
[[test]]
name = "memory_provenance_store"
path = "tests/memory_provenance_store.rs"
[[test]]
name = "tenant_isolation"
path = "tests/tenant_isolation.rs"
[dependencies.chio-core]
version = "0.1.0"
package = "chio-core-types"
[dependencies.chio-kernel]
version = "0.1.0"
[dependencies.r2d2]
version = "0.8"
[dependencies.r2d2_sqlite]
version = "0.33.0"
[dependencies.rusqlite]
version = "0.39"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.uuid]
version = "1"
features = ["v7"]
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"