29 lines
820 B
Rust
29 lines
820 B
Rust
//! State storage code for Zebra. 🦓
|
|
|
|
#![doc(html_favicon_url = "https://www.zfnd.org/images/zebra-favicon-128.png")]
|
|
#![doc(html_logo_url = "https://www.zfnd.org/images/zebra-icon.png")]
|
|
#![doc(html_root_url = "https://doc.zebra.zfnd.org/zebra_state")]
|
|
#![warn(missing_docs)]
|
|
#![allow(clippy::try_err)]
|
|
#![allow(clippy::unknown_clippy_lints)]
|
|
#![allow(clippy::field_reassign_with_default)]
|
|
|
|
mod config;
|
|
mod constants;
|
|
mod error;
|
|
mod request;
|
|
mod response;
|
|
mod service;
|
|
mod util;
|
|
|
|
// TODO: move these to integration tests.
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
pub use config::Config;
|
|
pub use constants::MAX_BLOCK_REORG_HEIGHT;
|
|
pub use error::{BoxError, CloneError, CommitBlockError, ValidateContextError};
|
|
pub use request::{FinalizedBlock, HashOrHeight, PreparedBlock, Request};
|
|
pub use response::Response;
|
|
pub use service::init;
|