fix: invalid clippy lint name

This commit is contained in:
Ryan Leckey 2020-12-27 17:04:56 -08:00
parent 50e43a8211
commit f613b3c7b5
No known key found for this signature in database
GPG Key ID: F8AA68C235AB08C9
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
#![warn(clippy::string_lit_as_bytes)]
#![warn(clippy::use_self)]
#![warn(clippy::useless_let_if_seq)]
#![allow(clippy::clippy::doc_markdown)]
#![allow(clippy::doc_markdown)]
// crate renames to allow the feature name "tokio" and "async-std" (as features
// can't directly conflict with dependency names)

View File

@ -14,7 +14,7 @@
#![warn(clippy::string_lit_as_bytes)]
#![warn(clippy::use_self)]
#![warn(clippy::useless_let_if_seq)]
#![allow(clippy::clippy::doc_markdown)]
#![allow(clippy::doc_markdown)]
#[cfg(feature = "blocking")]
pub use sqlx_core::{blocking, Blocking};