relay-core 0.2.0-beta.3

The core components of the Relay Protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod attachment;
pub mod crypto_info;
pub mod envelope;
pub mod identity;
pub mod signed;

pub use identity as id;

pub mod prelude {
    pub use super::attachment::Attachment;
    pub use super::crypto_info::CryptoInfo;
    pub use super::envelope::{DeliveryEnvelope, PayloadEnvelope, RoutingEnvelope};
    pub use super::id::{Address, AgentId, IdentityError, InboxId, UserId};
    pub use super::signed::Signed;
}