relay-core 0.2.0-beta.4

The core components of the Relay Protocol.
Documentation
pub mod attachment;
pub mod envelope;
pub mod identity;
pub mod info;
pub mod payload;
pub mod signature;

pub use chrono;
pub use hex;
pub use semver;
pub use serde;
pub use uuid;

pub use identity as id;

pub mod prelude {
    pub use super::attachment::Attachment;
    pub use super::envelope::{DeliveryEnvelope, PrivateEnvelope, RoutingEnvelope};
    pub use super::id::{Address, AgentId, IdentityError, InboxId, UserId};
    pub use super::info::{EncryptionInfo, SignatureInfo};
    pub use super::payload::Payload;
    pub use super::signature::Signature;
}