fastapi-http 0.3.0

Zero-copy HTTP/1.1 parser for fastapi_rust
Documentation
1
2
3
4
5
6
7
8
9
//! Multipart form data parser.
//!
//! `fastapi-http` re-exports the canonical multipart implementation from `fastapi-core`
//! so both the HTTP server and core extractors share identical behavior.

pub use fastapi_core::multipart::{
    DEFAULT_MAX_FIELDS, DEFAULT_MAX_FILE_SIZE, DEFAULT_MAX_TOTAL_SIZE, MultipartConfig,
    MultipartError, MultipartForm, MultipartParser, Part, UploadFile, parse_boundary,
};