Skip to content
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
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/anvil/src/eth/backend/db.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! Helper types for working with [revm](foundry_evm::revm)
//! Helper types for working with [`revm`]

use std::{
collections::BTreeMap,
Expand Down
2 changes: 1 addition & 1 deletion crates/anvil/src/eth/backend/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! blockchain Backend

/// [revm](foundry_evm::revm) related types
/// [`revm`] related types
pub mod db;
/// In-memory Backend
pub mod mem;
Expand Down
6 changes: 6 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ ignore = [
"RUSTSEC-2025-0141",
# proc-macro-error2 is currently still pulled in through alloy's proc-macro stack.
"RUSTSEC-2026-0173",
# quick-xml <0.41 DoS advisories (quadratic dup-attr check / unbounded namespace
# allocation). Pulled in transitively; foundry's dep tree still pins quick-xml
# <0.41, so the fix (>=0.41.0) isn't reachable via `cargo update`. Not exploitable
# in normal CLI usage. Remove once the tree reaches quick-xml >=0.41.
"RUSTSEC-2026-0194",
"RUSTSEC-2026-0195",
]

# This section is considered when running `cargo deny check bans`.
Expand Down
2 changes: 1 addition & 1 deletion testdata/forge-std-rev
Original file line number Diff line number Diff line change
@@ -1 +1 @@
620536fa5277db4e3fd46772d5cbc1ea0696fb43
bf647bd6046f2f7da30d0c2bf435e5c76a780c1b
Loading