fabro/lib/foundation/fabro-db/Cargo.toml
Scott Werner 776e719383 Harden SQLite blob activation safety
Keep VACUUM snapshots private until permissions and durability are established. Refuse to recreate a missing rollback backup after import has begun, and preserve secondary cleanup failures in startup logs.
2026-08-24 14:02:35 -04:00

25 lines
468 B
TOML

[package]
name = "fabro-db"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "SQLite storage foundation for Fabro"
[lib]
doctest = false
[lints]
workspace = true
[dependencies]
anyhow.workspace = true
chrono.workspace = true
sqlx.workspace = true
tempfile = "3"
thiserror.workspace = true
tokio.workspace = true
tracing.workspace = true
[dev-dependencies]
tokio = { workspace = true, features = ["macros"] }