//! Core types for HydraCache.
//!
//! This crate intentionally contains no database adapter and no distributed runtime.
//! It defines the small set of types shared by the v0 local cache.
pub use ;
pub use CacheError;
pub use ;
pub use CacheOptions;
pub use ;
pub use TagSet;
/// HydraCache result type.
pub type Result<T> = Result;