lints: move top-level lints to [workspace.lints] manifest table (#5935)

This commit is contained in:
Thomas Coratger
2024-01-04 14:38:02 +01:00
committed by GitHub
parent 17b75dd403
commit 9aa44093cf
128 changed files with 211 additions and 145 deletions

View File

@ -8,6 +8,9 @@ homepage.workspace = true
repository.workspace = true
description = "Support for EIP-1459 Node Discovery via DNS"
[lints]
workspace = true
[dependencies]
# reth
reth-primitives.workspace = true

View File

@ -10,8 +10,6 @@
html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256",
issue_tracker_base_url = "https://github.com/paradigmxyz/reth/issues/"
)]
#![warn(missing_debug_implementations, missing_docs, unreachable_pub, rustdoc::all)]
#![deny(unused_must_use, rust_2018_idioms)]
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
pub use crate::resolver::{DnsResolver, MapResolver, Resolver};
@ -47,7 +45,7 @@ use tokio_stream::{
wrappers::{ReceiverStream, UnboundedReceiverStream},
Stream, StreamExt,
};
use tracing::{debug, trace, warn};
use tracing::{debug, trace};
mod config;
mod error;