mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-19 03:04:27 -05:00
19 lines
418 B
Rust
19 lines
418 B
Rust
#![warn(missing_debug_implementations, missing_docs, unreachable_pub)]
|
|
#![deny(unused_must_use, rust_2018_idioms)]
|
|
#![doc(test(
|
|
no_crate_inject,
|
|
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
|
|
))]
|
|
// TODO remove later
|
|
#![allow(dead_code)]
|
|
|
|
//! Reth RPC implementation
|
|
//!
|
|
//! Provides the implementation of all RPC interfaces.
|
|
|
|
mod eth;
|
|
|
|
pub use eth::EthApi;
|
|
|
|
pub(crate) mod result;
|