[package]
edition = "2021"
rust-version = "1.88"
name = "synaptic-qdrant"
version = "0.2.9"
authors = ["Synaptic Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Qdrant vector store integration for Synaptic"
homepage = "https://dnw3.github.io/synaptic/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/dnw3/synaptic"
[lib]
name = "synaptic_qdrant"
path = "src/lib.rs"
[[test]]
name = "vector_store"
path = "tests/vector_store.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.qdrant-client]
version = "1.12"
[dependencies.serde_json]
version = "1.0"
[dependencies.synaptic-core]
version = "0.2"
[dependencies.uuid]
version = "1"
features = [
"v4",
"v5",
]
[dev-dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]