iqdb 1.0.0

Embedded vector database for Rust. Exact and approximate (HNSW/IVF) similarity search with durable storage, over the iqdb crate family.
Documentation
# cargo-deny configuration
#
# Run with `cargo deny check` (install via `cargo install cargo-deny`).
# Enforces license, banned crate, and duplicate-version policies on the
# whole dependency graph. CI gates merges on this passing.

[graph]
# Check the union of features so optional subsystems are visible to
# the audit. Targets the current host triple plus the Tier-1 ones we
# ship to.
all-features = true
targets = [
    "x86_64-unknown-linux-gnu",
    "x86_64-apple-darwin",
    "aarch64-apple-darwin",
    "x86_64-pc-windows-msvc",
]

[output]
feature-depth = 1

# ---------------------------------------------------------------------
# Advisories — RustSec advisory database (vulnerabilities, yanked
# versions, unmaintained crates).
# ---------------------------------------------------------------------
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
yanked = "warn"
# Add `RUSTSEC-YYYY-NNNN` ids here only when a finding is genuinely
# unactionable for this crate (e.g. dev-only path through an
# unmaintained transitive that has no semver-compatible upgrade).
# Every entry must be justified in a comment next to it.
ignore = []

# ---------------------------------------------------------------------
# Licenses — only ship under licenses we can vendor in commercial
# products. Confidence threshold guards against ambiguous SPDX strings.
# ---------------------------------------------------------------------
[licenses]
confidence-threshold = 0.93
allow = [
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "CC0-1.0",
    "ISC",
    "MIT",
    "MIT-0",
    "MPL-2.0",
    "Unicode-3.0",
    "Unicode-DFS-2016",
    "Zlib",
]
exceptions = []

# ---------------------------------------------------------------------
# Bans — banned crates, wildcards, and duplicate versions.
# ---------------------------------------------------------------------
[bans]
multiple-versions = "warn"
wildcards = "deny"
highlight = "all"
allow = []
deny = []
skip = []
skip-tree = []

# ---------------------------------------------------------------------
# Sources — only allow crates from the official registry. Block
# arbitrary git or alternative-registry sources.
# ---------------------------------------------------------------------
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []