codlet-core 0.14.5

Core authentication primitives for codlet: code policy, generation, normalization, keyed lookup derivation, lifecycle state machines, and storage traits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! In-memory store implementations (RFC-011 ยง10.3).
//!
//! **Not for production.** These stores are gated behind the `test-utils`
//! feature so they cannot accidentally be used in production builds.
//! They are suitable for deterministic unit tests, integration tests, and
//! local development. They do not persist across process restarts and must not
//! be used in multi-instance deployments.

pub mod code;
pub mod ratelimit;
pub mod session;
pub mod token;

pub use code::MemCodeStore;
pub use ratelimit::MemRateLimitStore;
pub use session::MemSessionStore;
pub use token::MemFormTokenStore;