vectorlite 0.1.2

A high-performance, in-memory vector database optimized for AI agent workloads
Documentation
[package]
name = "vectorlite"
version = "0.1.2"
edition = "2024"
description = "A high-performance, in-memory vector database optimized for AI agent workloads"
license = "Apache-2.0"
repository = "https://github.com/mmailhos/vectorlite"
homepage = "https://github.com/mmailhos/vectorlite"
documentation = "https://docs.rs/vectorlite"
keywords = ["vector", "database", "embedding", "semantic-search", "ai-agents"]
categories = ["database", "data-structures", "web-programming::http-server"]
authors = ["Mathieu Mailhos"]
readme = "README.md"

[features]
default = ["fast"]
fast = []
memory-optimized = []
high-accuracy = []
docsrs = []

[dependencies]
clap = { version = "4.5.48", features = ["derive"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
hnsw = "0.11.0"
space = "0.17"
rand = "0.8"
thiserror = "1.0"
candle-core = { version = "0.9.1", default-features = false }
candle-nn = "0.9.1"
candle-transformers = "0.9.1"
tokenizers = "0.19"
crossterm = "0.28"
num_cpus = "1.0"
rayon = "1.8"
tokio = { version = "1.0", features = ["full"] }
axum = "0.7"
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.5", features = ["cors", "trace"] }
tracing = "0.1"
tracing-subscriber = "0.3"

[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }

[package.metadata.docs.rs]
features = ["docsrs"]