-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
49 lines (46 loc) · 1.14 KB
/
lib.rs
File metadata and controls
49 lines (46 loc) · 1.14 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//! The crate provides common types and traits for building blocks for defining
//! and interacting with subprotocols in an ASM (Anchor State Machine) framework.
mod aux;
mod errors;
mod log;
mod manifest;
mod mmr;
mod msg;
pub mod sorted_vec;
mod spec;
mod state;
mod subprotocol;
mod tx;
#[allow(
clippy::all,
unreachable_pub,
clippy::allow_attributes,
clippy::absolute_paths,
reason = "generated code"
)]
mod ssz_generated {
include!(concat!(env!("OUT_DIR"), "/generated.rs"));
}
pub use aux::*;
pub use errors::*;
pub use log::*;
pub use manifest::*;
pub use mmr::*;
pub use msg::*;
pub use spec::*;
pub use ssz_generated::ssz::{
self as ssz,
pow::{
BtcParams, BtcParamsRef, BtcWork, BtcWorkRef, HeaderVerificationState,
HeaderVerificationStateRef, TimestampStore, TimestampStoreRef,
},
state::{
AnchorState, AnchorStateRef, AsmHistoryAccumulatorState, AsmHistoryAccumulatorStateRef,
ChainViewState, ChainViewStateRef, SectionState, SectionStateRef,
},
};
pub use subprotocol::*;
use tracing as _;
pub use tx::*;
// Re-export the logging module
pub use zkaleido_logging as logging;