1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//! JSON parser which picks up values directly without performing tokenization
extern crate fnv;
#[cfg(feature = "avx-accel")]
extern crate x86intrin;

#[cfg(feature = "avx-accel")]
mod avx;
#[cfg(not(feature = "avx-accel"))]
mod emulated;
mod bit;
mod error;
#[doc(hidden)]
pub mod index_builder;
#[doc(hidden)]
pub mod parser;
mod pikkr;
#[doc(hidden)]
pub mod query;
mod result;
mod utf8;

#[cfg(not(feature = "avx-accel"))]
pub use emulated::avx;

pub use error::{Error, ErrorKind};
pub use pikkr::Pikkr;
pub use result::Result;