jax-common 0.1.11

Core data structures and cryptography for JaxBucket - end-to-end encrypted P2P storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[macro_use]
mod macros;
pub mod ping;

pub use ping::Ping;

// Register all bidirectional message handlers
// To add a new message type, just add a line here:
//   NewMessage(NewMessageHandler),
register_handlers! {
    Ping(Ping),
}