cratestack-core 0.7.8

Rust-native schema-first framework for typed HTTP APIs, generated clients, and backend services.
Documentation
1
2
3
4
5
6
7
8
//! Pluggable storage traits for idempotency and rate limiting, shared
//! between transport and backend-runtime crates.

pub mod idempotency;
pub mod ratelimit;

pub use idempotency::IdempotencyStore;
pub use ratelimit::{RateLimitConfig, RateLimitDecision, RateLimitStore};