tako-rs-plugins 2.0.0

Internal plugin and concrete-middleware implementations for tako-rs. Use the `tako-rs` umbrella crate instead.
Documentation
1
2
3
4
5
6
7
8
9
//! Plugin/middleware-coupled extractors.
//!
//! These extractors only make sense when paired with a specific middleware
//! that pre-populates request extensions. Putting them next to the producing
//! middleware (instead of in `tako-extractors`) keeps the trust boundary
//! visible: a verified-claims extractor only works after the matching auth
//! middleware ran on the same request.

pub mod jwt;