styrene-lxmf 0.1.0

Rust LXMF messaging protocol — message encoding, stamps, delivery, propagation, SDK domain types
Documentation
#![cfg_attr(not(feature = "std"), no_std)]

extern crate alloc;

mod constants;
mod error;

pub mod announce;
pub mod errors;
pub mod identity;
pub mod inbound_decode;
pub mod message;
pub mod payload_fields;
#[cfg(feature = "std")]
pub mod wire_fields;

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

pub use error::LxmfError;
pub use message::{Message, Payload, WireMessage};