[package]
edition = "2024"
name = "diskann-wide"
version = "0.50.1"
authors = ["Microsoft"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "DiskANN is a fast approximate nearest neighbor search library for high dimensional data"
documentation = "https://github.com/microsoft/DiskANN"
readme = "README.md"
license = "MIT"
[lib]
name = "diskann_wide"
path = "src/lib.rs"
[[test]]
name = "associative"
path = "tests/associative.rs"
[[test]]
name = "dispatch"
path = "tests/dispatch.rs"
[[test]]
name = "float16_conversion"
path = "tests/float16_conversion.rs"
[[test]]
name = "loop_example"
path = "tests/loop_example.rs"
[dependencies.cfg-if]
version = "1.0.0"
[dependencies.half]
version = "2.6.0"
[dev-dependencies.half]
version = "2.6.0"
features = [
"rand_distr",
"num-traits",
]
[dev-dependencies.paste]
version = "1.0.15"
[dev-dependencies.rand]
version = "0.9.3"
[lints.clippy]
undocumented_unsafe_blocks = "warn"
uninlined_format_args = "allow"