mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 15:51:06 +01:00
standardize crate level lints
This commit is contained in:
parent
e636af039a
commit
ec66754c0d
@ -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;
|
||||
///
|
||||
|
@ -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")]
|
||||
|
||||
|
@ -45,6 +45,7 @@
|
||||
//! ```
|
||||
|
||||
#![deny(rust_2018_idioms, nonstandard_style)]
|
||||
#![warn(future_incompatible)]
|
||||
|
||||
use std::future::Future;
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
#![forbid(unsafe_code)]
|
||||
#![deny(rust_2018_idioms, nonstandard_style)]
|
||||
#![warn(future_incompatible)]
|
||||
|
||||
use std::{
|
||||
fmt,
|
||||
|
@ -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};
|
||||
|
@ -40,7 +40,7 @@
|
||||
//! ```
|
||||
|
||||
#![deny(rust_2018_idioms, nonstandard_style)]
|
||||
#![warn(missing_docs)]
|
||||
#![warn(future_incompatible, missing_docs)]
|
||||
|
||||
use std::{
|
||||
cell::{Ref, RefCell},
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user