[package]
edition = "2024"
name = "fathomdb-schema"
version = "0.2.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite schema management and migrations for the fathomdb agent datastore"
readme = false
license = "MIT"
repository = "https://github.com/coreyt/fathomdb"
resolver = "2"
[features]
sqlite-vec = ["dep:sqlite-vec"]
tracing = ["dep:tracing"]
[lib]
name = "fathomdb_schema"
path = "src/lib.rs"
[dependencies.rusqlite]
version = "0.32.1"
features = [
"bundled",
"load_extension",
"backup",
]
[dependencies.sqlite-vec]
version = "0.1"
optional = true
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tracing]
version = "0.1"
features = [
"log",
"release_max_level_info",
]
optional = true
[lints.clippy]
dbg_macro = "warn"
expect_used = "warn"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
module_name_repetitions = "allow"
must_use_candidate = "warn"
panic = "warn"
print_stderr = "warn"
print_stdout = "warn"
todo = "warn"
unwrap_used = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"