Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
rvmz authored Feb 17, 2025
2 parents b93299c + f27eb22 commit a1d3ee8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 21 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Those changes in added, changed or breaking changes, should include usage exampl
### Security 🔒

### Added 🎉
* Added version explicitly in crates in [#322](https://github.com/Layr-Labs/eigensdk-rs/pull/322).

### Breaking Changes 🛠

Expand Down
40 changes: 19 additions & 21 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ clippy.question_mark = "warn"
clippy.implicit_return = "allow"

[workspace.dependencies]
eigen-client-avsregistry = { path = "crates/chainio/clients/avsregistry" }
eigen-client-avsregistry = { version = "0.2.0", path = "crates/chainio/clients/avsregistry" }
ark-bn254 = "0.5.0"
ark-ec = "0.5.0"
ark-ff = "0.5.0"
Expand All @@ -68,24 +68,24 @@ aws-config = "1.5.9"
aws-sdk-kms = "1.49.0"
backoff = { version = "0.4.0", features = ["futures", "tokio"] }
clap = { version = "4.5.20", features = ["derive"] }
eigen-common = { path = "crates/common/" }
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-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/" }
eigen-common = { version = "0.2.0", path = "crates/common/" }
eigen-client-elcontracts = { version = "0.2.0", path = "crates/chainio/clients/elcontracts" }
eigen-client-eth = { version = "0.2.0", path = "crates/chainio/clients/eth" }
eigen-client-fireblocks = { version = "0.2.0", path = "crates/chainio/clients/fireblocks" }
eigen-crypto-bls = { version = "0.2.0", path = "crates/crypto/bls/" }
eigen-crypto-bn254 = { version = "0.2.0", path = "crates/crypto/bn254/" }
eigen-logging = { version = "0.2.0", path = "crates/logging/" }
eigen-metrics = { version = "0.2.0", path = "crates/metrics/" }
eigen-metrics-collectors-economic = { version = "0.2.0", path = "crates/metrics/collectors/economic" }
eigen-metrics-collectors-rpc-calls = { version = "0.2.0", path = "crates/metrics/collectors/rpc_calls" }
eigen-services-avsregistry = { version = "0.2.0", path = "crates/services/avsregistry" }
eigen-services-blsaggregation = { version = "0.2.0", path = "crates/services/bls_aggregation" }
eigen-services-operatorsinfo = { version = "0.2.0", path = "crates/services/operatorsinfo" }
eigen-signer = { version = "0.2.0", path = "crates/signer/" }
eigen-testing-utils = { version = "0.2.0", path = "testing/testing-utils" }
eigen-types = { version = "0.2.0", path = "crates/types/" }
eigen-utils = { version = "0.2.0", path = "crates/utils/" }
eigen-nodeapi = { version = "0.2.0", path = "crates/nodeapi/" }
eth-keystore = "0.5"
ethers = "2.0"
ethers-signers = "2.0"
Expand Down Expand Up @@ -127,7 +127,6 @@ uuid = { version = "1.11", features = ["v4"] }
parking_lot = "0.12"



# alloy
alloy = { version = "0.9", features = [
"sol-types",
Expand All @@ -137,4 +136,3 @@ alloy = { version = "0.9", features = [
"rlp",
"json-rpc",
] }

0 comments on commit a1d3ee8

Please sign in to comment.