generational-cache 0.2.2

Generational Arena based cache impls. in 100% safe, [no_std] compatible Rust.
Documentation
#![doc = include_str!("../README.md")]
#![no_std]
#![deny(unsafe_code)]

pub mod arena;
pub mod cache;
pub mod collections;
pub mod map;
pub mod vector;

pub mod prelude {
    //! The `generational-cache` prelude.
    //!
    //! This module provides a set of commonly used items to alleviate imports.

    pub use super::{
        arena::{Arena, ArenaError},
        cache::{
            lru_cache::{LRUCache, LRUCacheError},
            Cache, Eviction, Lookup,
        },
        collections::list::{Link, LinkedList, ListError},
        map::{impls::alloc_btree_map::AllocBTreeMap, Map},
        vector::{
            impls::{
                alloc_vec::AllocVec,
                array::{Array, ArrayError},
            },
            Vector,
        },
    };
}