remember_this/lib.rs
1//! A simple tool designed to allow our code to remember results on disk.
2
3extern crate chrono;
4extern crate flexbuffers;
5#[macro_use]
6extern crate log;
7extern crate serde;
8extern crate tokio;
9#[macro_use]
10extern crate typed_builder;
11
12mod cache;
13mod manager;
14mod result;
15
16pub use cache::Cache;
17pub use manager::{CacheManager, CacheManagerOptions, CacheOptions};
18pub use result::Error;