bramble-sync 0.1.0

Bramble Synchronization Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Bramble synchronization protocol, version 0
#![warn(missing_docs)]

mod error;

pub use error::{Error, Result};

#[allow(dead_code)]
const CURRENT_VERSION: u8 = 0;
#[allow(dead_code)]
const BETA_VERSION: u8 = 89;