oxirs-vec 0.3.2

Vector index abstractions for semantic similarity and AI-augmented querying
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    // Link against libnuma on Linux
    #[cfg(target_os = "linux")]
    {
        println!("cargo:rustc-link-lib=numa");
    }

    // NOTE: CUDA detection/linking has been removed from oxirs-vec. Real NVIDIA
    // CUDA acceleration now lives in the quarantined `oxirs-vec-adapter-cuda`
    // crate (publish = false), keeping oxirs-vec's published --all-features
    // surface free of `cuda-runtime-sys` per the COOLJAPAN Pure Rust Policy v2.
}