//! Build script for SochDB Vector.
//!
//! This build script handles feature detection for the pure Rust SIMD
//! implementations. No C++ compilation is required - all SIMD kernels
//! are now implemented in pure Rust using `core::arch` intrinsics.
//!
//! # SIMD Support
//!
//! - x86_64: AVX2, AVX-512 (runtime detected)
//! - aarch64: NEON (mandatory), SVE (optional)
//! - Other: Scalar fallback