remember-this 0.1.0

A simple mechanism for caching data to both memory and disk. Uses `tokio`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! A simple tool designed to allow our code to remember results on disk.

extern crate chrono;
extern crate flexbuffers;
#[macro_use]
extern crate log;
extern crate serde;
extern crate tokio;
#[macro_use]
extern crate typed_builder;

mod cache;
mod manager;
mod result;

pub use cache::Cache;
pub use manager::{CacheManager, CacheManagerOptions, CacheOptions};
pub use result::Error;