relay-core 0.2.0-alpha.7

The core components of the Relay Protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub use chrono;
pub use semver::{Version, VersionReq};
pub use serde::{Deserialize, Serialize};
pub use uuid::Uuid;

pub mod crypto_meta;
pub mod envelope;
pub mod identity;
pub mod signed;

pub use identity as id;

pub mod prelude {
    pub use super::crypto_meta::CryptoMeta;
    pub use super::envelope::{MetaEnvelope, PrivateEnvelope, PublicEnvelope};
    pub use super::id::{Address, AgentId, IdentityError, InboxId, UserId};
    pub use super::signed::Signed;
}