blueprint-networking 0.1.0-alpha.15

Networking utilities for Tangle Blueprints
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![cfg_attr(docsrs, feature(doc_auto_cfg))]

pub mod behaviours;
pub mod blueprint_protocol;
pub mod discovery;
pub mod error;
pub mod service;
pub mod service_handle;
pub mod types;

#[cfg(feature = "testing")]
pub mod test_utils;

#[cfg(test)]
mod tests;

pub use blueprint_crypto::KeyType;
pub use service::{AllowedKeys, NetworkConfig, NetworkEvent, NetworkService};