disarray-runtime 0.1.20

This crate implements the runtime for the hybrid blockchain network, Disarray
Documentation
/*
   Appellation: disarray <library>
   Creator: FL03 <jo3mccain@icloud.com>
   Description:
       Disarray is a complete toolkit for building efficient EVM compatible Multi-Chain Networks.
*/
// #[cfg(test)]
extern crate hex_literal;
#[cfg(feature = "ledger")]
pub use disarray_ledger as ledger;
#[cfg(feature = "network")]
pub use disarray_network as network;

#[doc(inline)]
pub use crate::{actors::*, components::*, core::*, data::*};

pub(crate) mod actors;
pub(crate) mod components;
pub(crate) mod core;
pub(crate) mod data;