ockam_node 0.139.0

This crate provides an implementation of an Ockam [Ockam][main-ockam-crate-link] Node and is intended for use by crates that provide features and add-ons to the main [Ockam][main-ockam-crate-link] library. The main [Ockam][main-ockam-crate-link] crate re-exports types defined in this crate, when the `"std"` feature is enabled.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[allow(clippy::module_inception)]
mod context;
mod context_lifecycle;
mod receive_message;
mod register_router;
mod send_message;
mod shutdown;
mod transports;
mod worker_lifecycle;

pub use context::*;
pub use receive_message::*;
pub use send_message::*;