-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
94 lines (84 loc) · 3.64 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
[workspace]
members = [
"crates/aggregator",
"crates/operator",
"bin/incredible-squaring-avs",
"crates/cli",
"crates/config",
"crates/bindings",
"crates/avs",
"crates/challenger",
"crates/chainio",
"crates/testing-utils",
"crates/task_generator",
"crates/operator_2",
]
resolver = "2"
[workspace.package]
version = "0.0.1-alpha"
edition = "2021"
rust-version = "1.79"
repository = "https://github.com/Layr-Labs/incredible-squaring-avs-rust"
homepage = ""
license = "Business Source License 1.1"
[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"
[workspace.dependencies]
clap = "4.5.11"
eyre = "0.6.12"
tokio = { version = "1.21", default-features = false }
thiserror = "1.0.61"
ark-bn254 = { version = "0.4.0", features = [
"curve",
], default-features = false }
futures-util = "0.3.31"
metrics = "0.24.0"
reqwest = "0.12.9"
serde_json = "1.0.120"
#alloy
alloy = { version = "0.9", features = ["full", "signer-keystore", "reqwest"] }
alloy-provider = "0.9"
serde = "1.0.203"
tracing = "0.1.40"
tempfile = "3"
rust-bls-bn254 = { git = "https://github.com/Layr-Labs/rust-bls-bn254.git", rev = "be3ef87", features = [
"std",
] }
rand_core = "0.6"
toml = "0.8"
incredible-operator = { path = "crates/operator/", features = ["default"] }
incredible-aggregator = { path = "crates/aggregator/" }
incredible-squaring-avs = { path = "bin/incredible-squaring-avs/" }
incredible-cli-runner = { path = "crates/cli/" }
incredible-config = { path = "crates/config/" }
incredible-bindings = { path = "crates/bindings/" }
incredible-metrics = { path = "crates/metrics/" }
incredible-avs = { path = "crates/avs/" }
incredible-challenger = { path = "crates/challenger/" }
incredible-chainio = { path = "crates/chainio/" }
incredible-testing-utils = { path = "crates/testing-utils/" }
incredible-task-generator = { path = "crates/task_generator/" }
incredible-operator-2 = { path = "crates/operator_2/", features = ["default"] }
# eigensdk-rs
eigen-common = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-client-avsregistry = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-testing-utils = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-crypto-bls = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-types = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-metrics = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-utils = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-cli = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-logging = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-crypto-bn254 = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-client-elcontracts = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-services-operatorsinfo = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-services-avsregistry = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-services-blsaggregation = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-metrics-collectors-rpc-calls = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-client-eth = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }
eigen-nodeapi = { git = "https://github.com/Layr-Labs/eigensdk-rs", rev = "834b9c7" }