2021-02-10 13:10:03 +01:00
|
|
|
//! Multipart form support for Actix Web.
|
2020-09-10 13:54:27 +02:00
|
|
|
|
2021-12-08 07:09:56 +01:00
|
|
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
|
|
|
#![warn(future_incompatible)]
|
2023-12-16 11:26:32 +01:00
|
|
|
#![allow(clippy::borrow_interior_mutable_const)]
|
2023-02-26 22:55:25 +01:00
|
|
|
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
|
|
|
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
|
|
|
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
2023-02-26 04:26:06 +01:00
|
|
|
|
|
|
|
// This allows us to use the actix_multipart_derive within this crate's tests
|
|
|
|
#[cfg(test)]
|
|
|
|
extern crate self as actix_multipart;
|
2019-07-17 11:08:30 +02:00
|
|
|
|
2019-04-03 21:28:58 +02:00
|
|
|
mod error;
|
|
|
|
mod extractor;
|
|
|
|
mod server;
|
|
|
|
|
2023-02-26 04:26:06 +01:00
|
|
|
pub mod form;
|
|
|
|
|
2023-07-17 03:38:12 +02:00
|
|
|
pub use self::{
|
|
|
|
error::MultipartError,
|
|
|
|
server::{Field, Multipart},
|
|
|
|
};
|