fuel_core_sync/lib.rs
1#![deny(clippy::arithmetic_side_effects)]
2#![deny(clippy::cast_possible_truncation)]
3#![deny(unused_crate_dependencies)]
4#![deny(missing_docs)]
5#![deny(warnings)]
6#![allow(clippy::blocks_in_conditions)] // Triggered by tracing macros
7
8//! # Sync Service
9//! Responsible for syncing the blockchain from the network.
10
11pub mod import;
12pub mod ports;
13pub mod service;
14pub mod state;
15pub mod sync;
16
17pub use import::Config;
18
19use rand as _;
20
21#[cfg(test)]
22fuel_core_trace::enable_tracing!();