1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! GlusterFS API bindings
//! GlusterFS is a scalable network filesystem suitable for data-intensive
//! tasks such as cloud storage and media streaming.
//! This crate exposes the glfs module for low level interaction with the api.
//! It also exposes a set of safe wrappers in the gluster module

extern crate errno;
extern crate libc;
#[macro_use]
extern crate log;
extern crate uuid;

pub mod glfs;
pub mod gluster;