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
//! Neptune archival state.
//!
//! This crate holds the node's archival storage: on-disk block files, the
//! block index ([`block_index`]), the archival block MMR
//! ([`rusty_archival_block_mmr`]), the archival mutator set, and the optional
//! UTXO index — together with the
//! [`ArchivalState`](archival_state::ArchivalState) that ties them together.
// enable the unstable "coverage" attribute, so that `#[cfg_attr(coverage_nightly,
// coverage(off))]` compiles under `cargo +nightly llvm-cov` and is a no-op
// otherwise.
pub use shared_tokio_runtime;
}