Skip to content

Commit 14bb305

Browse files
committed
update deps and fix lints
1 parent 4a86e62 commit 14bb305

File tree

4 files changed

+30
-30
lines changed

4 files changed

+30
-30
lines changed

Cargo.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -487,18 +487,18 @@ reth-ress-protocol = { path = "crates/ress/protocol" }
487487
reth-ress-provider = { path = "crates/ress/provider" }
488488

489489
# revm
490-
revm = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v88", features = ["enable_eip7702", "enable_eip7623"] }
491-
revm-bytecode = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v88" }
492-
revm-database = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v88" }
493-
revm-state = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v88" }
494-
revm-primitives = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v88" }
495-
revm-interpreter = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v88" }
496-
revm-inspector = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v88" }
497-
revm-context = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v88" }
498-
revm-context-interface = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v88" }
499-
revm-database-interface = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v88" }
500-
op-revm = { git = "https://github.com/scroll-tech/revm", default-features = false, branch = "feat/v88" }
501-
revm-scroll = { git = "https://github.com/scroll-tech/scroll-revm", default-features = false, branch = "feat/v88" }
490+
revm = { git = "https://github.com/scroll-tech/revm", default-features = false, features = ["enable_eip7702", "enable_eip7623"] }
491+
revm-bytecode = { git = "https://github.com/scroll-tech/revm", default-features = false }
492+
revm-database = { git = "https://github.com/scroll-tech/revm", default-features = false }
493+
revm-state = { git = "https://github.com/scroll-tech/revm", default-features = false }
494+
revm-primitives = { git = "https://github.com/scroll-tech/revm", default-features = false }
495+
revm-interpreter = { git = "https://github.com/scroll-tech/revm", default-features = false }
496+
revm-inspector = { git = "https://github.com/scroll-tech/revm", default-features = false }
497+
revm-context = { git = "https://github.com/scroll-tech/revm", default-features = false }
498+
revm-context-interface = { git = "https://github.com/scroll-tech/revm", default-features = false }
499+
revm-database-interface = { git = "https://github.com/scroll-tech/revm", default-features = false }
500+
op-revm = { git = "https://github.com/scroll-tech/revm", default-features = false }
501+
revm-scroll = { git = "https://github.com/scroll-tech/scroll-revm", default-features = false }
502502
revm-inspectors = "0.31.0"
503503

504504
# eth
@@ -771,8 +771,8 @@ walkdir = "2.3.3"
771771
vergen-git2 = "1.0.5"
772772

773773
[patch.crates-io]
774-
revm = { git = "https://github.com/scroll-tech/revm", branch = "feat/v88" }
775-
op-revm = { git = "https://github.com/scroll-tech/revm", branch = "feat/v88" }
774+
revm = { git = "https://github.com/scroll-tech/revm" }
775+
op-revm = { git = "https://github.com/scroll-tech/revm" }
776776
# alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "cfb13aa" }
777777
# alloy-contract = { git = "https://github.com/alloy-rs/alloy", rev = "cfb13aa" }
778778
# alloy-eips = { git = "https://github.com/alloy-rs/alloy", rev = "cfb13aa" }

crates/cli/util/src/sigsegv_handler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ pub fn install() {
126126
libc::sigaltstack(&raw const alt_stack, ptr::null_mut());
127127

128128
let mut sa: libc::sigaction = mem::zeroed();
129-
sa.sa_sigaction = print_stack_trace as libc::sighandler_t;
129+
sa.sa_sigaction = print_stack_trace as *const () as libc::sighandler_t;
130130
sa.sa_flags = libc::SA_NODEFER | libc::SA_RESETHAND | libc::SA_ONSTACK;
131131
libc::sigemptyset(&raw mut sa.sa_mask);
132132
libc::sigaction(libc::SIGSEGV, &raw const sa, ptr::null_mut());

crates/scroll/openvm-compat/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ scroll-alloy-consensus = { path = "../alloy/consensus", default-features = false
2828
scroll-alloy-rpc-types = { path = "../alloy/rpc-types", default-features = false }
2929

3030
[patch.crates-io]
31-
revm = { git = "https://github.com/scroll-tech/revm", branch = "feat/v88" }
31+
revm = { git = "https://github.com/scroll-tech/revm" }

0 commit comments

Comments
 (0)