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 encrypted;
10mod schema;
11mod writer;
12
13/// A module for errors relating to the search crate.
14pub mod error;
15/// A module for the search index.
16pub mod index;