Skip to content

Commit

Permalink
chore: remove alloy reexported crates from dependencies (#244)
Browse files Browse the repository at this point in the history
Fixes #197 

### What Changed?
This PR introduces the following changes
* Removes all the `alloy-*` reexported crates from the workspace
dependencies, leaving only `alloy`.
* Updates the workspace dependencies on every crate, removing the
`alloy-*.workspace = true` imports and leaving only `alloy.workspace =
true`.

### Reviewer Checklist

- [ ] New features are tested and documented
- [ ] PR has one of the `changelog-X` labels (if applies)
- [ ] Code deprecates any old functionality before removing it
  • Loading branch information
ricomateo authored Jan 21, 2025
1 parent 1a66fc2 commit 1d1b436
Show file tree
Hide file tree
Showing 58 changed files with 96 additions and 283 deletions.
150 changes: 12 additions & 138 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 3 additions & 26 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -128,38 +128,15 @@ parking_lot = "0.12"

anvil-utils = { path = "examples/anvil-utils" }

#alloy
# alloy
alloy = { version = "0.9", features = [
"sol-types",
"contract",
"full",
"signer-aws",
"rlp",
"json-rpc",
] }
alloy-json-rpc = { version = "0.9", default-features = false }
alloy-network = { version = "0.9", default-features = false }
alloy-node-bindings = { version = "0.9", default-features = false }
alloy-primitives = "0.8"
alloy-provider = { version = "0.9", default-features = false, features = [
"reqwest",
"ws",
] }
alloy-pubsub = { version = "0.9", default-features = false }
alloy-rlp = "0.3"
alloy-rpc-client = "0.9"
alloy-rpc-types = { version = "0.9", default-features = false, features = [
"eth",
] }
alloy-serde = { version = "0.9", default-features = false }
alloy-signer = { version = "0.9", default-features = false }
alloy-signer-aws = "0.9"
alloy-signer-local = { version = "0.9", default-features = false }
alloy-sol-types = "0.8"
alloy-transport = { version = "0.9" }
alloy-transport-http = { version = "0.9", features = [
"reqwest-rustls-tls",
], default-features = false }
alloy-transport-ipc = { version = "0.9", default-features = false }
alloy-transport-ws = { version = "0.9", default-features = false }

avsregistry-read = { path = "examples/avsregistry-read" }
avsregistry-write = { path = "examples/avsregistry-write" }
Loading

0 comments on commit 1d1b436

Please sign in to comment.