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
[package]

description = "A rust-bindgen ffi wrapper around the Cassandra c++ driver plus working examples\n with no additional dependencies.\nYou probably want to use the \"cassandra\" crate that provides a safe wrapper"
license = "Apache-2.0"
name = "cql_bindgen"
version = "0.1.3"
authors = ["Tupshin Harper <tupshin@tupshin.com>"]
build = "build.rs"
homepage = "https://github.com/tupshin/cql-bindgen"
documentation = "https://github.com/tupshin/cql-bindgen"

[lib]
name = "cql_bindgen"

[[bin]]
name="basic"
path="src/examples/basic.rs"

[[bin]]
name="batch"
path="src/examples/batch.rs"

[[bin]]
name="bind_by_name"
path="src/examples/bind_by_name.rs"

# [[bin]]
# name="callbacks"
# path="src/examples/callbacks.rs"

[[bin]]
name="collections"
path="src/examples/collections.rs"

[[bin]]
name="logging"
path="src/examples/logging.rs"

[[bin]]
name="maps"
path="src/examples/maps.rs"

[[bin]]
name="named_parameters"
path="src/examples/named_parameters.rs"

# [[bin]]
# name="perf"
# path="src/examples/perf.rs"

[[bin]]
name="prepared"
path="src/examples/prepared.rs"

[[bin]]
name="paging"
path="src/examples/paging.rs"

[[bin]]
name="schema_meta"
path="src/examples/schema_meta.rs"

[[bin]]
name="simple"
path="src/examples/simple.rs"

[[bin]]
name="ssl"
path="src/examples/ssl.rs"

[[bin]]
name="tuple"
path="src/examples/tuple.rs"

[[bin]]
name="udt"
path="src/examples/udt.rs"

[[bin]]
name="uuid"
path="src/examples/uuid.rs"

[[bin]]
name="async"
path="src/examples/async.rs"

[dependencies]
libc = "*"
# clippy = "*"
num = "*"
log = "*"
env_logger = "*"
# threadpool = "*"