-
Notifications
You must be signed in to change notification settings - Fork 66
/
Cargo.toml
36 lines (32 loc) · 977 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
[package]
name = "rollups-events"
edition.workspace = true
license.workspace = true
version.workspace = true
[dependencies]
redacted = { path = "../redacted" }
backoff = { workspace = true, features = ["tokio"] }
base64.workspace = true
clap = { workspace = true, features = ["derive", "env"] }
hex.workspace = true
prometheus-client.workspace = true
regex.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
snafu.workspace = true
tokio = { workspace = true, features = ["macros", "time", "rt-multi-thread"] }
tracing.workspace = true
redis = { workspace = true, features = [
"streams",
"tokio-comp",
"connection-manager",
"tls-native-tls",
"tokio-native-tls-comp",
"cluster",
"cluster-async"
] }
[dev-dependencies]
env_logger.workspace = true
test-log = { workspace = true, features = ["trace"] }
testcontainers.workspace = true
tracing-subscriber = { workspace = true, features = ["env-filter"] }