blueprint-clients 0.2.0-alpha.13

Metapackage for Tangle Blueprint clients
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(not(feature = "std"), no_std)]

pub mod error;
pub use error::*;

#[cfg(feature = "evm")]
pub use blueprint_client_evm as evm;

#[cfg(feature = "tangle")]
pub use blueprint_client_tangle as tangle;

pub use blueprint_client_core::*;