uselesskey_core_cache/lib.rs
1//! Deprecated compatibility shim for cache primitives.
2//!
3//! Prefer `uselesskey-core`; cache mechanics are now owned by
4//! `uselesskey_core::srp::cache`.
5
6#![forbid(unsafe_code)]
7#![warn(missing_docs)]
8#![cfg_attr(not(feature = "std"), no_std)]
9
10pub use uselesskey_core::srp::cache::{ArtifactCache, downcast_or_panic};