//! This library contains a partial implementation of a library for operating
//! with BTRFS filesystems. It is based on the C implementations of the BTRFS
//! utilities.
//!
//! It's home page is at [gitlab.wellbehavedsoftware.com]
//! (https://gitlab.wellbehavedsoftware.com/well-behaved-software/rust-btrfs).
extern crate nix;
extern crate lazy_static;
extern crate crc;
extern crate libc;
extern crate flate2;
extern crate minilzo;
extern crate uuid;
pub use *;
// ex: noet ts=4 filetype=rust