1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-26 10:27:42 +02:00

standardize crate level lints

This commit is contained in:
Rob Ede
2021-12-08 06:11:13 +00:00
parent e636af039a
commit ec66754c0d
7 changed files with 10 additions and 6 deletions

View File

@ -58,7 +58,7 @@ static ALL_METHODS_SET: Lazy<HashSet<Method>> = Lazy::new(|| {
/// server will fail to start up or serve requests.
///
/// # Example
/// ```rust
/// ```
/// use actix_cors::Cors;
/// use actix_web::http::header;
///

View File

@ -7,7 +7,7 @@
//! This CORS middleware automatically handles `OPTIONS` preflight requests.
//!
//! # Example
//! ```rust,no_run
//! ```no_run
//! use actix_cors::Cors;
//! use actix_web::{get, http, web, App, HttpRequest, HttpResponse, HttpServer};
//!
@ -43,7 +43,7 @@
#![forbid(unsafe_code)]
#![deny(rust_2018_idioms, nonstandard_style)]
#![warn(missing_docs, missing_debug_implementations)]
#![warn(future_incompatible, missing_docs, missing_debug_implementations)]
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]