forked from cartesi/rollups-node
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
35 lines (30 loc) · 1.02 KB
/
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
[package]
name = "advance-runner"
edition.workspace = true
license.workspace = true
version.workspace = true
[[bin]]
name = "cartesi-rollups-advance-runner"
path = "src/main.rs"
[dependencies]
grpc-interfaces = { path = "../grpc-interfaces" }
http-health-check = { path = "../http-health-check" }
log = { path = "../log" }
rollups-events = { path = "../rollups-events" }
backoff = { workspace = true, features = ["tokio"] }
clap = { workspace = true, features = ["derive", "env"] }
hex.workspace = true
sha3 = { workspace = true, features = ["std"] }
snafu.workspace = true
tokio = { workspace = true, features = ["macros", "time", "rt-multi-thread"] }
tonic.workspace = true
tracing.workspace = true
uuid = { workspace = true, features = ["v4"] }
[dev-dependencies]
test-fixtures = { path = "../test-fixtures" }
env_logger.workspace = true
rand.workspace = true
tempfile.workspace = true
test-log = { workspace = true, features = ["trace"] }
testcontainers.workspace = true
tracing-subscriber = { workspace = true, features = ["env-filter"] }