forked from matter-labs/zksync-withdrawal-finalizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
73 lines (70 loc) · 1.78 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[workspace]
resolver = "1"
members = [
"bin/withdrawal-finalizer",
"bin/delete-db-content-migration",
"bin/delete-finalization-data-migration",
"bin/prepare-calldata-for-withdrawal",
"ethers-log-decode",
"finalizer",
"client",
"chain-events",
"storage",
"tx-sender",
"vlog",
"watcher",
"withdrawals-meterer",
"api"
]
[workspace.package]
version = "0.2.0"
edition = "2021"
homepage = "https://zksync.io/"
license = "MIT OR Apache-2.0"
authors = ["The Matter Labs Team <[email protected]>"]
exclude = ["./github"]
[workspace.dependencies]
auto_impl = "1.1.2"
async-trait = "0.1.77"
ethers = { version = "2.0.13", default-features = false }
tokio = "1.36.0"
clap = "4.5.1"
tracing = "0.1"
tracing-subscriber = "0.3"
sentry = { version = "0", default-features = false }
lazy_static = "1.4.0"
itertools = "0.12.1"
serde = "1.0.197"
thiserror = "1.0.57"
serde_json = "1.0"
color-eyre = "0.6.2"
eyre = "0.6.12"
dotenvy = "0.15.7"
envconfig = "0.10.0"
proc-macro2 = "1.0.78"
bincode = "1.3.3"
futures = "0.3.30"
quote = "1.0.35"
num = "0.4.1"
syn = "2.0.48"
hex = "0.4"
pretty_assertions = "1"
sqlx = "0.6.3"
chrono = { version = "0.4.34", default-features = false }
vise = { git = "https://github.com/matter-labs/vise.git" }
vise-exporter = { git = "https://github.com/matter-labs/vise.git" }
client = { path = "./client" }
api = { path = "./api" }
chain-events = { path = "./chain-events" }
storage = { path = "./storage" }
withdrawals-meterer = { path = "./withdrawals-meterer" }
watcher = { path = "./watcher" }
ethers-log-decode = { path = "./ethers-log-decode" }
tx-sender = { path = "./tx-sender" }
finalizer = { path = "./finalizer" }
tokio-stream = "0.1.14"
tokio-util = "0.7.10"
tower-http = "0.5.1"
url = "2.5.0"
axum = "0.7.4"
vlog = { path = "./vlog" }