matrix_sdk_search/
lib.rs

1#![doc = include_str!("../README.md")]
2#![forbid(missing_docs)]
3
4/// Monotonically increasing timestamp of operations on the index.
5pub type OpStamp = u64;
6
7pub(crate) const TANTIVY_INDEX_MEMORY_BUDGET: usize = 50_000_000;
8
9mod schema;
10mod writer;
11
12/// A module for errors relating to the search crate.
13pub mod error;
14/// A module for the search index.
15pub mod index;