cql_bindgen 0.1.3

A rust-bindgen ffi wrapper around the Cassandra c++ driver plus working examples with no additional dependencies. You probably want to use the "cassandra" crate that provides a safe wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
#[macro_use]
extern crate log;
extern crate libc;

pub use cassandra::*;
pub use ffi_util::*;

mod cassandra;
mod ffi_util;