1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//! 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).

#![ allow (unused_parens) ]

#[ macro_use ]
extern crate lazy_static;

#[ macro_use ]
extern crate nix;

extern crate crc;
extern crate libc;
extern crate flate2;
extern crate minilzo;
extern crate uuid;

pub mod compress;
pub mod diskformat;
pub mod linux;

pub use linux::*;

// ex: noet ts=4 filetype=rust