forked from cassandra-rs/cassandra-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 971 Bytes
/
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
[package]
description = "A Cassandra CQL driver, built on top of the DataStax C++ driver for performance and functionality."
documentation = "https://docs.rs/cassandra-cpp"
# no homepage yet
repository = "https://github.com/Metaswitch/cassandra-rs"
readme = "README.md"
keywords = [ "Cassandra", "binding", "CQL", "client", "database" ]
categories = [ "api-bindings", "database", "external-ffi-bindings", "asynchronous" ]
license = "Apache-2.0"
name = "cassandra-cpp"
version = "0.15.1-pre"
authors = ["Tupshin Harper <[email protected]>", "Keith Wansbrough <[email protected]>"]
build = "build.rs"
edition = "2018"
[badges]
travis-ci = { repository = "Metaswitch/cassandra-rs" }
[dependencies]
clippy = {version = "0.0", optional = true}
slog = "2"
cassandra-cpp-sys = "0.12"
decimal = "1"
time = "0.1"
uuid = "0.5"
error-chain = "0.12.1"
[dev-dependencies]
tokio = { version = "0.2", features = ["rt-core", "macros", "test-util"] }
futures = "0.3.1"