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
8 changes: 4 additions & 4 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -475,10 +475,10 @@ reth-ress-provider = { path = "crates/ress/provider" }
# triedb
# Note: To enable io-uring support, add `io-uring = ["rust-eth-triedb/io-uring"]` to the [features] section
# of any crate that depends on rust-eth-triedb. Then enable the io-uring feature at the root (bin/reth).
rust-eth-triedb = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", tag = "v0.0.2" }
rust-eth-triedb-common = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", tag = "v0.0.2", package = "rust-eth-triedb-common" }
rust-eth-triedb-pathdb = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", tag = "v0.0.2", package = "rust-eth-triedb-pathdb" }
rust-eth-triedb-state-trie = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", tag = "v0.0.2", package = "rust-eth-triedb-state-trie" }
rust-eth-triedb = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", branch = "develop" }
rust-eth-triedb-common = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", branch = "develop", package = "rust-eth-triedb-common" }
rust-eth-triedb-pathdb = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", branch = "develop", package = "rust-eth-triedb-pathdb" }
rust-eth-triedb-state-trie = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", branch = "develop", package = "rust-eth-triedb-state-trie" }

# revm
revm = { version = "34.0.0", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions crates/node/builder/src/components/pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ where
V::Transaction:
PoolTransaction<Consensus = TxTy<Node::Types>> + reth_transaction_pool::EthPoolTransaction,
{
/// Consume the ype and build the [`reth_transaction_pool::Pool`] with the given config and blob
/// store.
/// Consume the type and build the [`reth_transaction_pool::Pool`] with the given config and
/// blob store.
pub fn build<BS>(
self,
blob_store: BS,
Expand Down
4 changes: 4 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ ignore = [
"RUSTSEC-2026-0097",
# https://rustsec.org/advisories/RUSTSEC-2026-0105 core2 unmaintained, all versions yanked (no replacement)
"RUSTSEC-2026-0105",
# https://rustsec.org/advisories/RUSTSEC-2026-0118 hickory-proto NSEC3 unbounded loop; transitive via discv5, not reachable from reth's DNS usage
"RUSTSEC-2026-0118",
# https://rustsec.org/advisories/RUSTSEC-2026-0119 hickory-proto O(n²) name compression; transitive via discv5, not reachable from reth's DNS usage
"RUSTSEC-2026-0119",
]

# This section is considered when running `cargo deny check bans`.
Expand Down
Loading