wacore 0.6.0

Core WhatsApp protocol implementation without runtime dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod ab_props;
pub mod cache;
pub mod commands;
pub mod device;
pub mod error;
pub mod in_memory;
pub mod persistence;
pub mod signal_cache;
pub mod traits;

pub use cache::CacheStore;
pub use commands::*;
pub use device::{CachedNoiseCert, CachedServerCertChain, Device, DevicePropsOverride};
pub use in_memory::InMemoryBackend;
pub use persistence::PersistenceManager;
pub use signal_cache::SignalStoreCache;