sos_search/
lib.rs

1#![deny(missing_docs)]
2#![forbid(unsafe_code)]
3#![cfg_attr(all(doc, CHANNEL_NIGHTLY), feature(doc_auto_cfg))]
4//! Search provides an in-memory index for secret meta data.
5mod error;
6mod search;
7
8pub use error::Error;
9pub use search::*;
10
11/// Result type for the library.
12pub(crate) type Result<T> = std::result::Result<T, Error>;