bronzedb_protocol/
lib.rs

1#[cfg(test)]
2extern crate matches;
3
4#[cfg(test)]
5extern crate speculate;
6
7const MAX_KEY_LEN: usize = 1 << 8;
8const MAX_VALUE_LEN: usize = 1 << 12;
9const MIN_KEY: &'static [u8] = b"";
10const MAX_KEY: &'static [u8] = &[0xff; MAX_KEY_LEN];
11
12pub mod ext;
13pub mod request;
14pub mod response;