Skip to content

Commit

Permalink
fix: use git directly
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Jan 9, 2024
1 parent c23cdf1 commit 4a3f82f
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ rust.rust_2018_idioms = "deny"
# eth
alloy-sol-types = "0.5"
alloy-primitives = "0.5"
alloy-rpc-types = "0.1"
alloy-rpc-trace-types = "0.1"
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy" }
alloy-rpc-trace-types = { git = "https://github.com/alloy-rs/alloy" }

revm = "3.4"
# revm = "3.4"
revm = { git = "https://github.com/bluealloy/revm", branch = "reth_freeze" }

# js-tracing-inspector
boa_engine = { version = "0.17", optional = true }
Expand All @@ -40,8 +41,3 @@ tokio = { version = "1", features = ["sync"], optional = true }
[features]
default = []
js-tracer = ["boa_engine", "boa_gc", "tokio", "thiserror", "serde_json"]

[patch.crates-io]
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy" }
alloy-rpc-trace-types = { git = "https://github.com/alloy-rs/alloy" }
revm = { git = "https://github.com/bluealloy/revm", branch = "reth_freeze" }

0 comments on commit 4a3f82f

Please sign in to comment.