[package]
edition = "2021"
rust-version = "1.80.0"
name = "flow-db"
version = "0.1.1"
authors = ["Arya <universitybuddyai@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite database layer for Flow feature management with WAL mode and event logging"
readme = "README.md"
keywords = [
"sqlite",
"database",
"features",
"crud",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/aryayt/flow"
[lib]
name = "flow_db"
path = "src/lib.rs"
[dependencies.agentflow-core]
version = "0.1.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.rusqlite]
version = "0.31"
features = [
"bundled",
"backup",
"functions",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"