1
 2
 3
 4
 5
 6
 7
 8
 9
10
11

#![feature(test)]
extern crate test;

pub mod boyer_moore;
mod benchmarks;
mod skip_search;
mod horspool;

pub use boyer_moore::BoyerMoore;
pub use horspool::Horspool;