cql_bindgen 0.0.8

A trivially modified version of the bindgen created cql bindings plus a working example with no additional dependencies. Now Works with the beta channel
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]

extern crate libc;

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

mod cassandra;
mod ffi_util;