32 lines
846 B
Rust
32 lines
846 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")]
|
|
// Standard lints
|
|
#![warn(missing_docs)]
|
|
#![allow(clippy::try_err)]
|
|
#![deny(clippy::await_holding_lock)]
|
|
#![forbid(unsafe_code)]
|
|
|
|
mod config;
|
|
pub mod constants;
|
|
mod error;
|
|
mod request;
|
|
mod response;
|
|
mod service;
|
|
mod util;
|
|
mod utxo;
|
|
|
|
// 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;
|
|
pub use utxo::Utxo;
|