-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (73 loc) · 2.32 KB
/
Copy pathCargo.toml
File metadata and controls
82 lines (73 loc) · 2.32 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
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
[package]
name = "aerospike"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
description.workspace = true
keywords.workspace = true
categories.workspace = true
homepage.workspace = true
repository.workspace = true
documentation.workspace = true
readme.workspace = true
rust-version.workspace = true
exclude = [
".travis.yml",
".travis/*",
".appveyor.yml",
]
[workspace.package]
version = "2.1.0"
edition = "2018"
rust-version = "1.87"
authors = ["Khosrow Afroozeh <khosrow@aerospike.com>", "Jan Hecking <jhecking@aerospike.com>"]
license = "Apache-2.0"
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/"
readme = "README.md"
[badges]
travis-ci = { repository = "aerospike/aerospike-client-rust" }
appveyor = { repository = "aerospike/aerospike-client-rust" }
[dependencies]
aerospike-core = {path = "aerospike-core", optional = true, version = "2.1.0"}
aerospike-sync = {path = "aerospike-sync", optional = true, version = "2.1.0"}
aerospike-macro = {path = "aerospike-macro", optional = true, version = "2.1.0"}
[features]
default = ["async", "serialization", "rt-tokio", "tls"]
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"]
tls = ["aerospike-core/tls", "aerospike-rt/tls"]
[[bench]]
name = "client_server"
harness = false
[workspace]
members = ["tools/benchmark", "aerospike-core", "aerospike-rt", "aerospike-sync", "aerospike-macro"]
[dev-dependencies]
log = "0.4.29"
env_logger = "0.11.10"
hex = "0.4"
bencher = "0.1"
serde_json = "1.0"
rand = "0.10"
lazy_static = "1.5"
ripemd = "0.2"
aerospike-macro = {path = "./aerospike-macro"}
aerospike-rt = {path = "./aerospike-rt"}
futures = { version = "0.3.32" }
tokio = { version = "1.52.1", features = ["full"] }
proptest = "1.11.0"
tokio-rustls = {version = "0.26.4"}
rustls = {version = "0.23.40"}
webpki-roots = "1"
#console-subscriber = "0.1.5"
[[example]]
name = "crud_sync"
required-features = ["sync", "rt-tokio"]