rig-sqlite 0.2.0

SQLite-based vector store implementation for the rig framework
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "rig-sqlite"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite-based vector store implementation for the rig framework"
readme = "README.md"
license = "MIT"

[lib]
name = "rig_sqlite"
path = "src/lib.rs"
doctest = false

[[example]]
name = "vector_search_sqlite"
path = "examples/vector_search_sqlite.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[dependencies.chrono]
version = "0.4"

[dependencies.rig-core]
version = "0.31.0"
features = ["derive"]
default-features = false

[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]

[dependencies.serde]
version = "1.0.219"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.140"

[dependencies.sqlite-vec]
version = "0.1"

[dependencies.tokio-rusqlite]
version = "0.6.0"
features = ["bundled"]
default-features = false

[dependencies.tracing]
version = "0.1.41"

[dependencies.zerocopy]
version = "0.8.26"

[dev-dependencies.anyhow]
version = "1.0.98"

[dev-dependencies.httpmock]
version = "0.7.0"

[dev-dependencies.tokio]
version = "1.45.1"
features = [
    "macros",
    "rt-multi-thread",
]

[dev-dependencies.tracing-subscriber]
version = "0.3.19"
features = ["env-filter"]

[lints.clippy]
dbg_macro = "forbid"
todo = "forbid"
unimplemented = "forbid"