[package]
edition = "2021"
rust-version = "1.89"
name = "rhiza-sql"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite materialized state machine for rhiza"
readme = false
license = "MIT"
repository = "https://github.com/mrchypark/rhiza"
[lib]
name = "rhiza_sql"
path = "src/lib.rs"
[[test]]
name = "contracts"
path = "tests/contracts.rs"
[[test]]
name = "qwal_contracts"
path = "tests/qwal_contracts.rs"
[dependencies.fallible-streaming-iterator]
version = "0.1"
[dependencies.postcard]
version = "1"
features = ["alloc"]
[dependencies.rhiza-core]
version = "0.1.0"
[dependencies.rhiza-log]
version = "0.1.0"
[dependencies.rusqlite]
version = "0.40.1"
features = [
"bundled",
"hooks",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3"
[dev-dependencies.proptest]
version = "1"