bbqvec 0.0.10

Scalable, embeddable, vector storage for approximate K-nearest-neighbors (AKNN)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "bbqvec"
version = "0.0.10"
authors = ["Barak Michener <me@barakmich.com>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Scalable, embeddable, vector storage for approximate K-nearest-neighbors (AKNN)"
readme = "README.md"
keywords = [
    "vector",
    "database",
    "aknn",
    "search",
    "nearest-neighbor",
]
categories = [
    "algorithms",
    "data-structures",
    "database-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/daxe-ai/bbqvec"

[profile.bench]
debug = 2

[lib]
name = "bbqvec"
path = "src/lib.rs"

[[test]]
name = "basic_test"
path = "tests/basic_test.rs"

[[test]]
name = "search"
path = "tests/search.rs"

[[bench]]
name = "main_benchmark"
path = "benches/main_benchmark.rs"
harness = false

[[bench]]
name = "memory_store"
path = "benches/memory_store.rs"

[[bench]]
name = "micro"
path = "benches/micro.rs"

[dependencies.anyhow]
version = "1.0.86"

[dependencies.argminmax]
version = "0.6.2"
features = ["float"]
default-features = false

[dependencies.bitvec]
version = "1"
features = ["serde"]

[dependencies.bytemuck]
version = "1.16.0"
features = [
    "derive",
    "extern_crate_alloc",
]

[dependencies.byteorder]
version = "1.5.0"

[dependencies.croaring]
version = "1.1.0"

[dependencies.half]
version = "2.4.1"
features = [
    "std",
    "zerocopy",
]

[dependencies.memmap2]
version = "0.9.5"

[dependencies.rand]
version = "0.8.5"

[dependencies.rayon]
version = "1.10.0"

[dependencies.roaring]
version = "0.10.4"
features = ["serde"]

[dependencies.serde]
version = "1.0.203"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.128"

[dependencies.thiserror]
version = "1.0.61"

[dev-dependencies.criterion]
version = "0.5.1"

[dev-dependencies.pprof]
version = "0.13.0"
features = [
    "flamegraph",
    "protobuf-codec",
    "protobuf",
    "criterion",
]