Skip to content

Commit 227bf72

Browse files
committed
fix: lints in node-types
1 parent 14b1fbc commit 227bf72

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

crates/node-types/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,5 @@ reth-db.workspace = true
1515
reth-node-api.workspace = true
1616
reth-node-ethereum.workspace = true
1717
reth-trie-db.workspace = true
18-
reth-prune-types.workspace = true
1918

2019
tokio.workspace = true

crates/node-types/src/lib.rs

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
//! Types used by the signet node
1+
#![doc = include_str!("../README.md")]
2+
#![warn(
3+
missing_copy_implementations,
4+
missing_debug_implementations,
5+
missing_docs,
6+
unreachable_pub,
7+
clippy::missing_const_for_fn,
8+
rustdoc::all
9+
)]
10+
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
11+
#![deny(unused_must_use, rust_2018_idioms)]
12+
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
13+
214
use reth::{
315
primitives::EthPrimitives,
416
providers::{

0 commit comments

Comments
 (0)