forked from ERFIFTEEN/rollups-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
42 lines (37 loc) · 1.16 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
36
37
38
39
40
41
42
[package]
name = "authority-claimer"
edition.workspace = true
license.workspace = true
version.workspace = true
[[bin]]
name = "cartesi-rollups-authority-claimer"
path = "src/main.rs"
test = false
[dependencies]
contracts = { path = "../contracts" }
http-server = { path = "../http-server" }
log = { path = "../log" }
rollups-events = { path = "../rollups-events" }
types = { path = "../types" }
redacted = { path = "../redacted" }
async-trait.workspace = true
clap = { workspace = true, features = ["derive", "env"] }
eth-tx-manager.workspace = true
ethabi.workspace = true
ethers-signers = { workspace = true, features = ["aws"] }
ethers.workspace = true
rusoto_core.workspace = true
rusoto_kms.workspace = true
rusoto_sts.workspace = true
serde.workspace = true
serde_json.workspace = true
snafu.workspace = true
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
tracing.workspace = true
url.workspace = true
[dev-dependencies]
test-fixtures = { path = "../test-fixtures" }
backoff = { workspace = true, features = ["tokio"] }
serial_test.workspace = true
testcontainers.workspace = true
tracing-test = { workspace = true, features = ["no-env-filter"] }