1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/actix-multipart/src/lib.rs

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 09:08:30 +00:00
#![allow(clippy::borrow_interior_mutable_const)]
mod error;
mod extractor;
mod server;
pub use self::error::MultipartError;
2019-04-13 17:11:07 +00:00
pub use self::server::{Field, Multipart};