forked from ERFIFTEEN/rollups-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
32 lines (27 loc) · 870 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
[package]
name = "indexer"
edition.workspace = true
license.workspace = true
version.workspace = true
[[bin]]
name = "cartesi-rollups-indexer"
path = "src/main.rs"
test = false
[dependencies]
http-health-check = { path = "../http-health-check" }
log = { path = "../log" }
rollups-data = { path = "../data" }
rollups-events = { path = "../rollups-events" }
clap = { workspace = true, features = ["derive", "env"] }
snafu.workspace = true
tokio = { workspace = true, features = ["macros", "time", "rt-multi-thread"] }
tracing.workspace = true
[dev-dependencies]
test-fixtures = { path = "../test-fixtures" }
backoff.workspace = true
env_logger.workspace = true
rand.workspace = true
serial_test.workspace = true
test-log = { workspace = true, features = ["trace"] }
testcontainers.workspace = true
tracing-subscriber = { workspace = true, features = ["env-filter"] }