[package]
edition = "2021"
name = "azoth-vector"
version = "0.2.1"
authors = ["johnny <johnny@empyrealsdk.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Vector similarity search extension for Azoth using sqlite-vector"
homepage = "https://github.com/empyrealapp/azoth"
documentation = "https://docs.rs/azoth"
readme = "README.md"
keywords = [
"database",
"event-sourcing",
"vector",
"similarity-search",
"embeddings",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/empyrealapp/azoth"
[features]
default = []
has-vector-extension = []
[lib]
name = "azoth_vector"
path = "src/lib.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.azoth-core]
version = "0.2.1"
[dependencies.azoth-sqlite]
version = "0.2.1"
[dependencies.rusqlite]
version = "0.31"
features = [
"bundled",
"load_extension",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.azoth]
version = "0.2.1"
[dev-dependencies.flate2]
version = "1.0"
[dev-dependencies.tar]
version = "0.4"
[dev-dependencies.tempfile]
version = "3.0"
[dev-dependencies.tokio]
version = "1.0"
features = [
"rt",
"sync",
"macros",
"rt-multi-thread",
"macros",
]
[dev-dependencies.ureq]
version = "2"
features = ["native-tls"]
default-features = false
[dev-dependencies.zip]
version = "2"