Skip to content

Commit

Permalink
build: bump forge-script version (#148)
Browse files Browse the repository at this point in the history
# Rationale for this change

In order to get `forge-script` to compile, we needed to use various
patches used by foundry. foundry-rs/foundry#8838
removed these. So, we can remove the patches from our `Cargo.toml` file.


# Are these changes tested?

Yes
  • Loading branch information
JayWhite2357 authored Sep 11, 2024
1 parent 3f36a2d commit 6740144
Showing 1 changed file with 1 addition and 25 deletions.
26 changes: 1 addition & 25 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ chrono = { version = "0.4.38", default-features = false }
curve25519-dalek = { version = "4", features = ["rand_core"] }
derive_more = { version = "0.99" }
flexbuffers = { version = "2.0.0" }
forge-script = { git = "https://github.com/foundry-rs/foundry", rev = "nightly-2442e7a5fc165d7d0b022aa8b9f09dcdf675157b" }
forge-script = { git = "https://github.com/foundry-rs/foundry", rev = "d663f38be3114ccb94f08fe3b8ea26e27e2043c1" }
indexmap = { version = "2.1" }
itertools = { version = "0.13.0" }
lalrpop-util = { version = "0.20.0" }
Expand Down Expand Up @@ -64,27 +64,3 @@ zerocopy = { version = "0.7.34" }

[workspace.lints.rust]
missing_docs = "warn"

# These patches are copied from https://github.com/foundry-rs/foundry in order for forge-script to compile.
[patch.crates-io]
alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-contract = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-eips = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-genesis = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-json-rpc = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-network = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-provider = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-pubsub = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-rpc-client = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-serde = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-signer = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-signer-ledger = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-signer-local = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-signer-trezor = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-transport = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-transport-http = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-transport-ipc = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
alloy-transport-ws = { git = "https://github.com/alloy-rs/alloy", rev = "511ae98" }
revm = { git = "https://github.com/bluealloy/revm", rev = "caadc71" }
revm-primitives = { git = "https://github.com/bluealloy/revm", rev = "caadc71" }

0 comments on commit 6740144

Please sign in to comment.