1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 23:51:06 +01:00

standardize crate level lints

This commit is contained in:
Rob Ede 2021-12-08 06:11:13 +00:00
parent e636af039a
commit ec66754c0d
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
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")]

View File

@ -45,6 +45,7 @@
//! ```
#![deny(rust_2018_idioms, nonstandard_style)]
#![warn(future_incompatible)]
use std::future::Future;

View File

@ -1,5 +1,6 @@
#![forbid(unsafe_code)]
#![deny(rust_2018_idioms, nonstandard_style)]
#![warn(future_incompatible)]
use std::{
fmt,

View File

@ -1,6 +1,7 @@
//! Redis integration for Actix and session store for Actix Web.
#![deny(rust_2018_idioms)]
#![deny(rust_2018_idioms, nonstandard_style)]
#![warn(future_incompatible)]
mod redis;
pub use redis::{Command, RedisActor};

View File

@ -40,7 +40,7 @@
//! ```
#![deny(rust_2018_idioms, nonstandard_style)]
#![warn(missing_docs)]
#![warn(future_incompatible, missing_docs)]
use std::{
cell::{Ref, RefCell},

View File

@ -16,7 +16,8 @@
//! [Middleware]: ./middleware
#![forbid(unsafe_code)]
#![deny(missing_docs, nonstandard_style, rust_2018_idioms)]
#![deny(rust_2018_idioms, nonstandard_style)]
#![warn(future_incompatible, missing_docs)]
pub mod extractors;
pub mod headers;