[package]
edition = "2024"
rust-version = "1.87"
name = "iqdb-build"
version = "1.0.0"
authors = [
"James Gober <me@jamesgober.com>",
"Matt Callahan <matthewcallahan01@icloud.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parallel index construction, incremental updates, and merging - part of the iQDB family."
homepage = "https://github.com/jamesgober/iqdb-build"
documentation = "https://docs.rs/iqdb-build"
readme = "README.md"
keywords = [
"index",
"vector-search",
"parallel",
"construction",
"iqdb",
]
categories = [
"algorithms",
"concurrency",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/jamesgober/iqdb-build"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
[lib]
name = "iqdb_build"
path = "src/lib.rs"
[[example]]
name = "configured"
path = "examples/configured.rs"
[[example]]
name = "incremental"
path = "examples/incremental.rs"
[[example]]
name = "merge"
path = "examples/merge.rs"
[[example]]
name = "parallel"
path = "examples/parallel.rs"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[[test]]
name = "build"
path = "tests/build.rs"
[[test]]
name = "consumer_simulation"
path = "tests/consumer_simulation.rs"
[[test]]
name = "loom_iqdb_build"
path = "tests/loom_iqdb_build.rs"
[[test]]
name = "merge"
path = "tests/merge.rs"
[[test]]
name = "parallel"
path = "tests/parallel.rs"
[[test]]
name = "proptest_invariants"
path = "tests/proptest_invariants.rs"
[[bench]]
name = "build_bench"
path = "benches/build_bench.rs"
harness = false
[dependencies.iqdb-index]
version = "1.0.0"
[dependencies.iqdb-types]
version = "1.0.0"
[dependencies.rayon]
version = "1"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1"
[target."cfg(loom)".dev-dependencies.loom]
version = "0.7"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"