foxstash-core 0.5.0

High-performance local RAG library - SIMD-accelerated vector search, HNSW indexing
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 = "foxstash-core"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance local RAG library - SIMD-accelerated vector search, HNSW indexing"
readme = "README.md"
keywords = [
    "rag",
    "vector-search",
    "hnsw",
    "embeddings",
    "simd",
]
categories = [
    "algorithms",
    "data-structures",
    "science",
]
license = "MIT"
repository = "https://github.com/Narcoleptic-Fox/foxstash"

[features]
compression-all = [
    "lz4",
    "zstd",
]
default = []
lz4 = ["dep:lz4"]
onnx = [
    "ort",
    "tokenizers",
    "lru",
]
zstd = ["dep:zstd"]

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

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

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

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

[dependencies.bincode]
version = "1.3"

[dependencies.crc32fast]
version = "1.4"

[dependencies.flate2]
version = "1.0"

[dependencies.lru]
version = "0.16"
optional = true

[dependencies.lz4]
version = "1.24"
optional = true

[dependencies.ndarray]
version = "0.17"

[dependencies.ort]
version = "2.0.0-rc.11"
features = ["load-dynamic"]
optional = true

[dependencies.parking_lot]
version = "0.12"

[dependencies.pulp]
version = "0.22"

[dependencies.rand]
version = "0.8"

[dependencies.rayon]
version = "1.10"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokenizers]
version = "0.22"
optional = true

[dependencies.zstd]
version = "0.13"
optional = true

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

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