[package]
name = "dynomite-vec"
description = "Vector storage + HNSW ANN index engine for the Dynomite Rust port"
version = "0.0.2"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
readme = "README.md"
[lints]
workspace = true
[features]
default = []
noxu = ["dep:noxu"]
http = ["dep:hyper", "dep:hyper-util", "dep:http-body-util"]
[lib]
name = "dynvec"
path = "src/lib.rs"
[dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
tokio = { workspace = true }
parking_lot = { workspace = true }
bytes = { workspace = true }
half = "2.4"
turbovec = "0.8"
hyper = { version = "1.9", features = ["http1", "server"], optional = true }
hyper-util = { version = "0.1", features = ["tokio"], optional = true }
http-body-util = { version = "0.1", optional = true }
noxu = { workspace = true, optional = true }
[dev-dependencies]
tokio = { workspace = true }
tempfile = { workspace = true }
hegeltest = { workspace = true }
criterion = { workspace = true }
hyper = { version = "1.9", features = ["http1", "server", "client"] }
hyper-util = { version = "0.1", features = ["tokio", "client-legacy", "http1"] }
http-body-util = "0.1"
[[bench]]
name = "throughput"
harness = false
[[example]]
name = "quickstart"
required-features = ["http"]