iqdb 0.1.0

Embedded vector database for Rust. Lock-free, allocation-free hot path; cross-platform similarity 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"
rust-version = "1.75"
name = "iqdb"
version = "0.1.0"
authors = ["James Gober <me@jamesgober.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded vector database for Rust. Lock-free, allocation-free hot path; cross-platform similarity search."
homepage = "https://github.com/jamesgober/iqdb"
documentation = "https://docs.rs/iqdb"
readme = "README.md"
keywords = [
    "database",
    "embedded",
    "vector",
    "similarity-search",
    "ann",
]
categories = [
    "database-implementations",
    "data-structures",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/jamesgober/iqdb"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = []

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

[[example]]
name = "basic"
path = "examples/basic.rs"

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

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

[dependencies]

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

[dev-dependencies.fastrand]
version = "2"

[profile.bench]
opt-level = 3
lto = "fat"
codegen-units = 1

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"