wasm_cache/
lib.rs

1/// # WebAssembly Cache
2///
3/// This crate provides primitives to build a simple in-memory request cache for WebAssembly
4/// applications. This cache relies on the type system to be able to store responses for any
5/// request type.
6///
7/// It is intended to be used with the Yew framework, although more integrations may be added in
8/// the future.
9mod invalidate;
10mod item;
11mod key;
12mod value;
13#[cfg(feature = "yew")]
14pub mod yew;
15
16pub use crate::{invalidate::*, item::*, key::*, value::*};