archivist 0.4.4

Store files in a time or index based directory hierarchy, automatically deleting the oldest files if the size limit is reached
Documentation
1
2
3
4
5
6
7
8
#![crate_type = "lib"]

mod archivist;
pub mod store;
pub mod tree;

pub use crate::archivist::Archivist;
pub use store::Store;