nvs-core 0.1.0

Native Vector Store (Rust) core: bundle format, mmap reader, vector/BM25/hybrid search
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 = "nvs-core"
version = "0.1.0"
build = false
include = [
    "Cargo.toml",
    "README.md",
    "LICENSE*",
    "src/**",
    "benches/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native Vector Store (Rust) core: bundle format, mmap reader, vector/BM25/hybrid search"
readme = "README.md"
keywords = [
    "vector",
    "search",
    "bm25",
    "retrieval",
    "embedding",
]
categories = [
    "algorithms",
    "data-structures",
    "database-implementations",
]
license = "MIT"
repository = "https://github.com/martinboros/native-vector-store"

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

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

[dependencies.anyhow]
version = "1"

[dependencies.bytemuck]
version = "1"
features = ["derive"]

[dependencies.cpufeatures]
version = "0.2"

[dependencies.half]
version = "2"

[dependencies.memmap2]
version = "0.9"

[dependencies.once_cell]
version = "1"

[dependencies.ordered-float]
version = "4"

[dependencies.rayon]
version = "1"

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

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "1"

[dependencies.tokenmonster]
version = "0.1.0"

[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh64"]

[dependencies.zstd]
version = "0.13"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
default-features = false

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.xxhash-rust]
version = "0.8"
features = ["xxh64"]