praxis-proxy-filter 0.4.0

Filter pipeline engine and built-in filters for Praxis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: MIT
// Copyright (c) 2024 Praxis Contributors

//! Body access declarations, buffering, and capability computation.

mod access;
mod buffer;
mod builder;
mod limits;
mod mode;

pub use access::BodyAccess;
pub use buffer::{BodyBuffer, BodyBufferOverflow};
pub use builder::BodyCapabilities;
pub use limits::{DEFAULT_JSON_BODY_MAX_BYTES, MAX_JSON_BODY_BYTES};
pub use mode::BodyMode;