[package]
edition = "2021"
name = "diskann-platform"
version = "0.51.0"
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 = false
license = "MIT"
resolver = "3"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-pc-windows-msvc",
"i686-pc-windows-msvc",
"x86_64-pc-windows-msvc",
]
[lib]
name = "diskann_platform"
path = "src/lib.rs"
[dependencies.tracing]
version = "0.1.40"
[target.'cfg(target_os = "linux")'.dependencies.io-uring]
version = "0.6.4"
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Storage",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
"Win32_System_ProcessStatus",
"Win32_System_SystemInformation",
]
[target."cfg(unix)".dependencies.libc]
version = "0.2.148"
[lints.clippy]
uninlined_format_args = "allow"