faster 0.5.2

Explicit SIMD for humans
1
2
3
4
5
6
7
8
9
10
11
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub mod x86;

#[cfg(not(any(target_arch = "x86", target_arch = "x86_64")))]
pub mod unknown;

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub use self::x86 as current;

#[cfg(not(any(target_arch = "x86", target_arch = "x86_64")))]
pub use self::unknown as current;