1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![crate_name = "chainbuf"]

#![deny(missing_docs)]
#![deny(warnings)]

#![feature(collections)]

//! The main crate for the Chainbuf library.
//!
//! ... docs are to be written
//!

// Exetrnal dependencies
#[cfg(feature="nix")] extern crate nix;

pub use chainbuf::Chain;

// XXX: for tests only, to remove, probably.
pub use chainbuf::CHB_MIN_SIZE;

// internal
mod chainbuf;