bronzedb-protocol 0.1.0

protocol for bronzedb
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(test)]
extern crate matches;

#[cfg(test)]
extern crate speculate;

const MAX_KEY_LEN: usize = 1 << 8;
const MAX_VALUE_LEN: usize = 1 << 12;
const MIN_KEY: &'static [u8] = b"";
const MAX_KEY: &'static [u8] = &[0xff; MAX_KEY_LEN];

pub mod ext;
pub mod request;
pub mod response;