[package]
edition = "2021"
rust-version = "1.93"
name = "chio-store-sqlite"
version = "0.1.2"
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite-backed persistence, query, and report implementations for Chio"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/backbay-labs/chio"
[features]
chaos-test-hooks = []
default = []
lineage = []
pq = [
"chio-core/pq",
"chio-kernel/pq",
]
[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 = "formal_projection"
path = "tests/formal_projection.rs"
[[test]]
name = "frost_coordinator"
path = "tests/frost_coordinator.rs"
[[test]]
name = "frost_rotation"
path = "tests/frost_rotation.rs"
[[test]]
name = "frost_rotation_activation"
path = "tests/frost_rotation_activation.rs"
[[test]]
name = "frost_signer"
path = "tests/frost_signer.rs"
[[test]]
name = "integration_smoke"
path = "tests/integration_smoke.rs"
[[test]]
name = "loom_receipt_writer"
path = "tests/loom_receipt_writer.rs"
[[test]]
name = "memory_provenance_store"
path = "tests/memory_provenance_store.rs"
[[test]]
name = "settle_attempts_races"
path = "tests/settle_attempts_races.rs"
[[test]]
name = "tenant_isolation"
path = "tests/tenant_isolation.rs"
[[bench]]
name = "store_receipt_write_throughput"
path = "benches/store_receipt_write_throughput.rs"
harness = false
[dependencies.chacha20poly1305]
version = "0.10"
[dependencies.chio-core]
version = "=0.1.2"
package = "chio-core-types"
[dependencies.chio-credit]
version = "=0.1.2"
[dependencies.chio-federation]
version = "=0.1.2"
[dependencies.chio-federation-authority]
version = "=0.1.2"
[dependencies.chio-fiscal]
version = "=0.1.2"
[dependencies.chio-kernel]
version = "=0.1.2"
[dependencies.chio-settle]
version = "=0.1.2"
[dependencies.chio-supervisor]
version = "=0.1.2"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.libc]
version = "0.2"
[dependencies.nix]
version = "0.31.2"
features = ["user"]
[dependencies.r2d2]
version = "0.8"
[dependencies.r2d2_sqlite]
version = "0.33.0"
[dependencies.rand_core]
version = "0.6"
features = ["getrandom"]
[dependencies.rusqlite]
version = "0.39"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["float_roundtrip"]
[dependencies.sha2]
version = "0.10"
[dependencies.subtle]
version = "2.6"
[dependencies.thiserror]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v7"]
[dependencies.zeroize]
version = "1.8"
features = ["derive"]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.frost-ed25519]
version = "3.0.0"
features = ["serialization"]
default-features = false
[dev-dependencies.loom]
version = "0.7"
[dev-dependencies.proptest]
version = "1.10"
[dev-dependencies.rand_chacha]
version = "0.3"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(loom)",
"cfg(chio_store_sqlite_loom)",
]