1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-31 19:10:07 +01:00

13 lines
287 B
Rust
Raw Normal View History

2021-02-10 12:10:03 +00:00
//! Multipart form support for Actix Web.
2021-12-08 06:09:56 +00:00
#![deny(rust_2018_idioms, nonstandard_style)]
#![warn(future_incompatible)]
2019-07-17 15:08:30 +06:00
#![allow(clippy::borrow_interior_mutable_const)]
mod error;
mod extractor;
mod server;
pub use self::error::MultipartError;
2019-04-13 10:11:07 -07:00
pub use self::server::{Field, Multipart};