-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
83 lines (66 loc) · 1.44 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[package]
description = "A usable Cassandra CQL driver (this replaces the previous cql-ffi package).\nWraps the DataStax c++ native driver and uses cql-bindgen via rust-bindgen.\nWorks with nightly"
keywords = ["cassandra"]
license = "Apache-2.0"
homepage = "https://github.com/tupshin/cassandra-rust"
repository = "https://github.com/tupshin/cassandra-rust"
name = "cassandra"
version = "0.8.2-pre"
authors = ["Tupshin Harper <[email protected]>"]
build = "build.rs"
[lib]
name = "cassandra"
[dependencies]
clippy = {version = "0.0", optional = true}
libc = "0.2"
num = "0.1"
log = "0.3"
cassandra-sys = "0.8"
decimal = "0.2"
chrono = "0.2"
ip = "1.0"
time = "0.1"
clap = "1"
uuid = "0.1"
error-chain="0.7"
[build-dependencies]
rusty-cheddar = "0.3"
[[bin]]
name="async"
path="src/examples/async.rs"
[[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="collections"
path="src/examples/collections.rs"
# [[bin]]
# name="logging"
# path="src/examples/logging.rs"
[[bin]]
name="maps"
path="src/examples/maps.rs"
[[bin]]
name="paging"
path="src/examples/paging.rs"
[[bin]]
name="prepared"
path="src/examples/prepared.rs"
[[bin]]
name="schema_meta"
path="src/examples/schema_meta.rs"
[[bin]]
name="simple"
path="src/examples/simple.rs"
# [[bin]]
# name="udt"
# path="src/examples/udt.rs"
[[bin]]
name="uuids"
path="src/examples/uuids.rs"