mirror of
https://github.com/actix/actix-web.git
synced 2025-01-13 18:55:28 +00:00
12 lines
287 B
Rust
12 lines
287 B
Rust
//! Multipart form support for Actix Web.
|
|
|
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
|
#![warn(future_incompatible)]
|
|
#![allow(clippy::borrow_interior_mutable_const)]
|
|
|
|
mod error;
|
|
mod extractor;
|
|
mod server;
|
|
|
|
pub use self::error::MultipartError;
|
|
pub use self::server::{Field, Multipart};
|