forked from aerospike/aerospike-client-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (39 loc) · 982 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "aerospike"
version = "0.1.0"
authors = ["Khosrow Afroozeh <khosrow@aerospike.com>", "Jan Hecking <jhecking@aerospike.com>"]
description = "Aerospike Client for Rust"
keywords = ["aerospike", "nosql", "distributed", "database"]
categories = ["database"]
homepage = "https://www.aerospike.com/"
repository = "https://github.com/aerospike/aerospike-client-rust/"
documentation = "https://docs.rs/aerospike/"
license = "Apache-2.0"
readme = "README.md"
exclude = [
".travis.yml",
".travis/*",
]
[badges]
travis-ci = { repository = "aerospike/aerospike-client-rust" }
[dependencies]
log = "^0.3"
byteorder = "^0.5"
rust-crypto = "^0.2"
rustc-serialize = "0.3"
crossbeam = "0.2"
rand = "0.3"
scoped-pool = "^1.0"
pwhash = "0.1"
lazy_static = "^0.2"
error-chain = "^0.7"
parking_lot = "^0.4"
[dev-dependencies]
env_logger = "^0.4"
hex = "^0.2"
rustfmt = "^0.8"
skeptic = "0.9"
[build-dependencies]
skeptic = "0.9"
[workspace]
members = ["tools/benchmark"]