rustfs-erasure-codec 8.0.0

Rust implementation of Reed-Solomon erasure coding
Documentation
#[cfg(all(
    feature = "simd-neon",
    target_arch = "aarch64",
    not(target_env = "msvc"),
    not(any(target_os = "android", target_os = "ios"))
))]
pub(crate) mod neon;

// Reserved extension slot for future aarch64 SIMD backends such as SVE.
// The current phase keeps NEON as the only Rust aarch64 backend while making
// the module layout explicit enough that a future SVE backend will not need to
// re-open the top-level dispatch structure.
#[cfg(all(
    feature = "simd-neon",
    target_arch = "aarch64",
    not(target_env = "msvc"),
    not(any(target_os = "android", target_os = "ios"))
))]
pub(crate) mod sve;

/// Specialized encode functions generated by build.rs for common configurations.
pub(crate) mod codegen;