mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-13 00:14:58 -05:00
14 lines
390 B
Rust
14 lines
390 B
Rust
#![warn(missing_docs, unreachable_pub, unused_crate_dependencies)]
|
|
#![deny(unused_must_use, rust_2018_idioms)]
|
|
#![doc(test(
|
|
no_crate_inject,
|
|
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
|
|
))]
|
|
//! Consensus algorithms for Ethereum.
|
|
|
|
/// Beacon consensus implementation.
|
|
pub mod beacon;
|
|
|
|
/// Collection of consensus validation methods.
|
|
pub mod validation;
|