mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-05 12:34:57 -05:00
15 lines
374 B
Rust
15 lines
374 B
Rust
#![warn(missing_debug_implementations, 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))
|
|
))]
|
|
|
|
//! Reth IPC implementation
|
|
|
|
pub mod client;
|
|
pub mod server;
|
|
|
|
/// Json codec implementation
|
|
pub mod stream_codec;
|