Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(anvil): RPC Types migration #6256

Merged
merged 16 commits into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ alloy-dyn-abi = "0.4.1"
alloy-json-abi = "0.4.1"
alloy-sol-types = "0.4.1"
syn-solidity = "0.4.1"
alloy-providers = { path = "../../alloy-rs/alloy/crates/providers" }
alloy-transports = { path = "../../alloy-rs/alloy/crates/transports" }
alloy-rpc-types = { path = "../../alloy-rs/alloy/crates/rpc-types" }
alloy-providers = { path = "../alloy/crates/providers" }
alloy-transports = { path = "../alloy/crates/transports" }
alloy-rpc-types = { path = "../alloy/crates/rpc-types" }

alloy-rlp = "0.3.3"
solang-parser = "=0.3.3"
Expand Down
4 changes: 4 additions & 0 deletions crates/anvil/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ trie-db = { version = "0.23" }
hash-db = { version = "0.15" }
memory-db = { version = "0.29" }
alloy-primitives = { workspace = true, features = ["serde"] }
alloy-rpc-types.workspace = true
alloy-providers.workspace = true
alloy-transports.workspace = true

# axum related
axum = { version = "0.5", features = ["ws"] }
Expand Down Expand Up @@ -62,6 +65,7 @@ yansi = "0.5"
tempfile = "3"
itertools.workspace = true
rand = "0.8"
eyre.workspace = true

# cli
clap = { version = "4", features = ["derive", "env", "wrap_help"], optional = true }
Expand Down
2 changes: 2 additions & 0 deletions crates/anvil/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ repository.workspace = true
# foundry internal
foundry-evm.workspace = true
foundry-utils.workspace = true
foundry-common.workspace = true
revm = { workspace = true, default-features = false, features = ["std", "serde", "memory_limit"] }

alloy-primitives = { workspace = true, features = ["serde"] }
alloy-rpc-types = { workspace = true }
ethers-core.workspace = true
serde = { workspace = true, optional = true }
serde_json.workspace = true
Expand Down
Loading
Loading