hermes-core 1.4.20

Core async search engine library with WASM support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod directory;
#[cfg(feature = "http")]
mod http;
#[cfg(feature = "native")]
mod mmap;
mod slice_cache;

pub use directory::*;
#[cfg(feature = "http")]
pub use http::*;
#[cfg(feature = "native")]
pub use mmap::MmapDirectory;
pub use slice_cache::*;