forked from wasmCloud/capability-providers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 878 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
[package]
name = "wasmcloud-provider-kvredis"
version = "0.21.1"
edition = "2021"
[dependencies]
async-trait = "0.1"
atty = "0.2"
base64 = "0.13"
bytes = "1.0"
chrono = "0.4"
crossbeam = "0.8"
futures = "0.3"
once_cell = "1.8"
redis = { version = "0.23.0", features = ["tokio-comp", "aio", "connection-manager", "rustls"] }
rmp-serde = "1.1.0"
serde_bytes = "0.11"
serde_json = "1.0"
serde = {version = "1.0", features = ["derive"] }
thiserror = "1.0"
tokio = { version = "1", features = ["full"] }
toml = "0.5"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
wasmcloud-interface-keyvalue = "0.10"
wasmbus-rpc = { version = "0.13", features = ["otel"] }
# test dependencies
[dev-dependencies]
wasmcloud-test-util = "0.8"
rand = "0.8"
[[bin]]
name = "kvredis"
path = "src/main.rs"
[profile.release]
strip = true
opt-level = "z"
lto = true