exocore-chain 0.1.23

Storage of Exocore (Distributed applications framework)
Documentation
#[allow(unused_imports)]
#[macro_use]
extern crate log;

#[macro_use]
extern crate anyhow;

pub mod block;
pub mod chain;
pub mod data;
#[cfg(feature = "engine")]
pub mod engine;
pub mod operation;
pub mod pending;

#[cfg(feature = "tests-utils")]
pub mod tests_utils;

#[cfg(feature = "directory-chain")]
pub use crate::chain::directory::{DirectoryChainStore, DirectoryChainStoreConfig};
#[cfg(feature = "engine")]
pub use crate::engine::{
    ChainSyncConfig, CommitManagerConfig, Engine, EngineConfig, EngineHandle,
    EngineOperationStatus, PendingSyncConfig,
};
#[cfg(feature = "memory-pending")]
pub use crate::pending::memory::MemoryPendingStore;