radix64 0.6.2

A base64 library by another name
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Conditionally compile one (and only one) of the files from within the arch
//! directory.
use cfg_if::cfg_if;

cfg_if! {
    if #[cfg(feature = "simd")] {
        cfg_if! {
            if #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] {
                pub(crate) mod x86;
            } else {
                pub(crate) mod other;
            }
        }
    } else {
        pub(crate) mod other;
    }
}