/// Detect nightly Rust compiler and emit `cfg(nightly)`.
///
/// This allows the `simd` feature to gracefully degrade on stable Rust:
/// - On nightly: `#![feature(portable_simd)]` is enabled, SIMD code compiles.
/// - On stable: `simd` feature is accepted but SIMD code is compiled out.
///
/// This ensures `--all-features` works on both stable and nightly.