cassandra_proto/lib.rs
1//! **cdrs** is a native Cassandra DB client written in Rust.
2
3extern crate byteorder;
4#[macro_use]
5pub mod macros;
6
7#[macro_use]
8extern crate log;
9extern crate rand;
10extern crate time;
11extern crate uuid;
12
13pub mod frame;
14pub mod query;
15pub mod types;
16
17pub mod compression;
18pub mod consistency;
19pub mod error;
20
21pub type Error = error::Error;
22pub type Result<T> = error::Result<T>;