reth_static_file/lib.rs
1//! Static file producer implementation.
2
3#![doc(
4 html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png",
5 html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256",
6 issue_tracker_base_url = "https://github.com/paradigmxyz/reth/issues/"
7)]
8#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
9#![cfg_attr(not(test), warn(unused_crate_dependencies))]
10
11pub mod segments;
12mod static_file_producer;
13
14pub use static_file_producer::{
15 StaticFileProducer, StaticFileProducerInner, StaticFileProducerResult,
16 StaticFileProducerWithResult,
17};
18
19// Re-export for convenience.
20pub use reth_static_file_types::*;