actix-cloud 0.6.3

Actix Cloud is an all-in-one web framework based on Actix Web.
Documentation
1
2
3
4
5
6
7
8
9
10
//! In-memory key-value database used for sessions, CSRF tokens, etc.
//!
//! Implement the [`MemoryDB`] trait to provide your own backend, or use the
//! built-in [`default`] (demo-grade) / [`redis`] backends.
pub mod interface;
pub use interface::MemoryDB;

pub mod default;
#[cfg(feature = "redis")]
pub mod redis;