1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
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;