flx/
lib.rs

1// Copyright 2015 Jerome Rasky <jerome@rasky.co>
2//
3// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT
5// or http://opensource.org/licenses/MIT>, at your option. This file may not be
6// copied, modified, or distributed except according to those terms.
7#![cfg_attr(test, feature(test))]
8extern crate unicode_normalization;
9#[cfg(test)]
10extern crate rand;
11#[cfg(test)]
12extern crate test;
13
14mod constants;
15mod search;
16
17pub use search::{SearchBase, LineInfo};