tpcp_core/lib.rs
1//! # tpcp-core
2//!
3//! no_std-compatible core types and cryptography for the Telepathy Communication Protocol.
4//!
5//! Enable the `std` feature (on by default) for full standard library support.
6
7#![cfg_attr(not(feature = "std"), no_std)]
8
9extern crate alloc;
10
11pub mod schema;
12pub mod identity;
13pub mod lwwmap;
14
15pub use schema::*;
16pub use identity::*;
17pub use lwwmap::LWWMap;