[package]
edition = "2021"
rust-version = "1.83"
name = "synaptic-pgvector"
version = "0.2.4"
authors = ["Synaptic Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL + pgvector integration for Synaptic"
homepage = "https://dnw3.github.io/synaptic/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/dnw3/synaptic"
[lib]
name = "synaptic_pgvector"
path = "src/lib.rs"
[[test]]
name = "pgvector"
path = "tests/pgvector.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.pgvector]
version = "0.4"
features = ["sqlx"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"postgres",
"json",
"uuid",
]
[dependencies.synaptic-core]
version = "0.2"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]