#![forbid(unsafe_code)]
#![deny(nonstandard_style)]
#![allow(clippy::must_use_candidate, clippy::missing_panics_doc, clippy::missing_errors_doc)]
#![warn(future_incompatible)]
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
use consts::{IGNORED_EXTENSIONS, USER_AGENTS};
mod builder;
mod consts;
mod error;
mod middleware;
pub use builder::Prerender;
pub use error::PrerenderError;
pub use middleware::PrerenderMiddleware;