1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! **cdrs** is a native Cassandra DB client written in Rust.

extern crate byteorder;
#[macro_use]
pub mod macros;

#[macro_use]
extern crate log;
extern crate rand;
extern crate time;
extern crate uuid;

pub mod frame;
pub mod query;
pub mod types;

pub mod compression;
pub mod consistency;
pub mod error;

pub type Error = error::Error;
pub type Result<T> = error::Result<T>;