skim 4.6.3

Fuzzy Finder in rust!
Documentation
1
2
3
4
5
6
7
8
9
10
11
use cfg_aliases::cfg_aliases;

fn main() {
    // Setup cfg aliases
    cfg_aliases! {
        // Platforms
        frizbee_simd: { any(target_arch = "x86_64", target_arch = "aarch64") },
        // Backends
        frizbee: { all(feature = "frizbee", frizbee_simd) }
    }
}