forked from aerospike/aerospike-client-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (49 loc) · 1.63 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (49 loc) · 1.63 KB
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
[package]
name = "aerospike"
version = "1.2.0"
edition = "2018"
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/*",
".appveyor.yml",
]
[badges]
travis-ci = { repository = "aerospike/aerospike-client-rust" }
appveyor = { repository = "aerospike/aerospike-client-rust" }
[dependencies]
aerospike-core = {path = "./aerospike-core", optional = true}
aerospike-sync = {path = "./aerospike-sync", optional = true}
aerospike-macro = {path = "./aerospike-macro", optional = true}
[features]
default = ["async", "serialization", "rt-tokio"]
serialization = ["aerospike-core/serialization"]
async = ["aerospike-core"]
sync = ["aerospike-sync"]
rt-tokio = ["aerospike-core/rt-tokio", "aerospike-macro/rt-tokio"]
rt-async-std = ["aerospike-core/rt-async-std", "aerospike-macro/rt-async-std"]
[[bench]]
name = "client_server"
harness = false
[workspace]
members = ["tools/benchmark", "aerospike-core", "aerospike-rt", "aerospike-sync", "aerospike-macro"]
[dev-dependencies]
env_logger = "0.9"
hex = "0.4"
bencher = "0.1"
serde_json = "1.0"
rand = "0.8"
lazy_static = "1.4"
ripemd = "0.1"
aerospike-macro = {path = "./aerospike-macro"}
aerospike-rt = {path = "./aerospike-rt"}
futures = {version = "0.3.16" }
tokio = { version = "1.10.0", features = ["full"] }