1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! A two-level LRU cache
//!
//! We find it useful for networking.
#![feature(test)]
#![deny(missing_docs)]

#[cfg(test)]
extern crate test;
#[cfg(test)]
extern crate rand;

mod register;
mod cache;

pub use cache::Cache as LRU2;
pub use cache::Cacheable;