btrfs/
lib.rs

1//! This library contains a partial implementation of a library for operating
2//! with BTRFS filesystems. It is based on the C implementations of the BTRFS
3//! utilities.
4//!
5//! It's home page is at [gitlab.wellbehavedsoftware.com]
6//! (https://gitlab.wellbehavedsoftware.com/well-behaved-software/rust-btrfs).
7
8#![ allow (unused_parens) ]
9
10#[ macro_use ]
11extern crate lazy_static;
12
13#[ macro_use ]
14extern crate nix;
15
16extern crate crc;
17extern crate libc;
18extern crate flate2;
19extern crate minilzo;
20extern crate uuid;
21
22pub mod compress;
23pub mod diskformat;
24pub mod linux;
25
26pub use linux::*;
27
28// ex: noet ts=4 filetype=rust