-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
151 lines (144 loc) · 5.08 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
[workspace]
members = [
"crates/chainio/clients/avsregistry/",
"crates/chainio/clients/elcontracts/",
"crates/chainio/clients/eth/",
"crates/chainio/clients/fireblocks/",
"crates/chainio/txmanager/",
"crates/contracts/bindings/",
"crates/crypto/bls/",
"crates/crypto/bn254/",
"crates/eigen-cli/",
"crates/logging/",
"crates/metrics/",
"crates/metrics/collectors/economic/",
"crates/metrics/collectors/rpc_calls/",
"crates/services/avsregistry/",
"crates/services/bls_aggregation/",
"crates/services/operatorsinfo/",
"crates/signer/",
"crates/types/",
"crates/utils/",
"crates/nodeapi/",
"crates/eigensdk/",
"examples/anvil-utils",
"examples/avsregistry-read",
"examples/avsregistry-write",
"examples/info-operator-service/",
"testing/testing-utils/",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Eigen Layer contributors"]
rust-version = "1.79"
repository = "https://github.com/Layr-Labs/eigensdk-rs"
homepage = ""
license-file = "LICENSE"
[workspace.lints]
rust.missing_debug_implementations = "warn"
rust.missing_docs = "warn"
rust.unreachable_pub = "warn"
rust.unused_must_use = "deny"
rust.rust_2018_idioms = { level = "deny", priority = -1 }
rustdoc.all = "warn"
clippy.unwrap_used = "warn"
clippy.expect_used = "warn"
clippy.todo = "warn"
[workspace.dependencies]
ark-bn254 = "0.5.0"
ark-ec = "0.5.0"
ark-ff = "0.5.0"
ark-serialize = "0.5.0"
async-trait = "0.1.83"
aws-config = "1.5.9"
aws-sdk-kms = "1.49.0"
clap = { version = "4.5.20", features = ["derive"] }
eigen-chainio-txmanager = { path = "crates/chainio/txmanager/" }
eigen-client-avsregistry = { path = "crates/chainio/clients/avsregistry" }
eigen-client-elcontracts = { path = "crates/chainio/clients/elcontracts" }
eigen-client-eth = { path = "crates/chainio/clients/eth" }
eigen-client-fireblocks = { path = "crates/chainio/clients/fireblocks" }
eigen-contract-bindings = { path = "crates/contracts/bindings/" }
eigen-crypto-bls = { path = "crates/crypto/bls/" }
eigen-crypto-bn254 = { path = "crates/crypto/bn254/" }
eigen-logging = { path = "crates/logging/" }
eigen-metrics = { path = "crates/metrics/" }
eigen-metrics-collectors-economic = { path = "crates/metrics/collectors/economic" }
eigen-metrics-collectors-rpc-calls = { path = "crates/metrics/collectors/rpc_calls" }
eigen-services-avsregistry = { path = "crates/services/avsregistry" }
eigen-services-blsaggregation = { path = "crates/services/bls_aggregation" }
eigen-services-operatorsinfo = { path = "crates/services/operatorsinfo" }
eigen-signer = { path = "crates/signer/" }
eigen-testing-utils = { path = "testing/testing-utils" }
eigen-types = { path = "crates/types/" }
eigen-utils = { path = "crates/utils/" }
eigen-nodeapi = { path = "crates/nodeapi/" }
eth-keystore = "0.5.0"
ethers = "2.0.14"
ethers-signers = "2.0.14"
eyre = "0.6.12"
futures-util = "0.3.31"
futures = "0.3.31"
hex = "0.4"
hex-literal = "0.4.3"
hyper = "0.5.0"
info-operator-service = { path = "examples/info-operator-service" }
k256 = "0.13.4"
metrics = "0.24.0"
metrics-exporter-prometheus = "0.16.0"
num-bigint = "0.4.6"
once_cell = "1.20.2"
prometheus-client = "0.22.3"
quote = "1.0.37"
rand = "0.8.5"
rand_core = "0.6.4 "
reqwest = "0.12.9"
rstest = "0.23.0"
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
serial_test = "3.1.1"
syn = "2.0.86"
tempfile = "3.13.0"
testcontainers = "0.23.1"
thiserror = "1.0.66"
tokio = { version = "1.41.0", features = ["test-util", "full", "sync"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["json"] }
url = "2.5.2"
#misc
rust-bls-bn254 = { git = "https://github.com/Layr-Labs/rust-bls-bn254", rev = "ce3313f" ,features = ["std"] }
uuid = { version = "1.11.0", features = ["v4"] }
#misc
parking_lot = "0.12.3"
#alloy
alloy-json-rpc = { version = "0.5.3", default-features = false }
alloy-network = { version = "0.5.3", default-features = false }
alloy-node-bindings = { version = "0.5.3", default-features = false }
alloy-primitives = "0.8.7"
alloy-provider = { version = "0.5.3", default-features = false, features = [
"reqwest",
"ws",
] }
alloy-pubsub = { version = "0.5.3", default-features = false }
alloy-rlp = "0.3.8"
alloy-rpc-client = "0.5.3"
alloy-rpc-types = { version = "0.5.3", default-features = false, features = [
"eth",
] }
alloy-serde = { version = "0.5.3", default-features = false }
alloy-signer = { version = "0.5.3", default-features = false }
alloy-signer-aws = "0.5.3"
alloy-signer-local = { version = "0.5.3", default-features = false }
alloy-sol-types = "0.8.7"
alloy-transport = { version = "0.5.3" }
alloy-transport-http = { version = "0.5.3", features = [
"reqwest-rustls-tls",
], default-features = false }
alloy-transport-ipc = { version = "0.5.3", default-features = false }
alloy-transport-ws = { version = "0.5.3", default-features = false }
alloy = { version = "0.5.3", features = ["sol-types", "contract","full","signer-aws"] }
anvil-utils = { path = "examples/anvil-utils" }
avsregistry-read = { path = "examples/avsregistry-read" }
avsregistry-write = { path = "examples/avsregistry-write" }