fuel_core_poa/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#![deny(clippy::arithmetic_side_effects)]
#![deny(clippy::cast_possible_truncation)]
#![deny(unused_crate_dependencies)]
#![deny(unused_must_use)]
#![deny(warnings)]
#![allow(clippy::blocks_in_conditions)] // False positives with tracing macros

mod sync;

#[cfg(test)]
mod service_test;

pub mod config;
pub mod ports;
pub mod service;
pub mod signer;
pub mod verifier;

pub use config::{
    Config,
    Trigger,
};
pub use service::{
    new_service,
    Service,
};

#[cfg(test)]
fuel_core_trace::enable_tracing!();