Skip to content

Commit 507fb35

Browse files
authored
chore: modify triedb dep (#187)
1 parent ed59a09 commit 507fb35

4 files changed

Lines changed: 14 additions & 10 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -475,10 +475,10 @@ reth-ress-provider = { path = "crates/ress/provider" }
475475
# triedb
476476
# Note: To enable io-uring support, add `io-uring = ["rust-eth-triedb/io-uring"]` to the [features] section
477477
# of any crate that depends on rust-eth-triedb. Then enable the io-uring feature at the root (bin/reth).
478-
rust-eth-triedb = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", tag = "v0.0.2" }
479-
rust-eth-triedb-common = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", tag = "v0.0.2", package = "rust-eth-triedb-common" }
480-
rust-eth-triedb-pathdb = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", tag = "v0.0.2", package = "rust-eth-triedb-pathdb" }
481-
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" }
478+
rust-eth-triedb = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", branch = "develop" }
479+
rust-eth-triedb-common = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", branch = "develop", package = "rust-eth-triedb-common" }
480+
rust-eth-triedb-pathdb = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", branch = "develop", package = "rust-eth-triedb-pathdb" }
481+
rust-eth-triedb-state-trie = { git = "https://github.com/bnb-chain/reth-bsc-triedb.git", branch = "develop", package = "rust-eth-triedb-state-trie" }
482482

483483
# revm
484484
revm = { version = "34.0.0", default-features = false }

crates/node/builder/src/components/pool.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ where
133133
V::Transaction:
134134
PoolTransaction<Consensus = TxTy<Node::Types>> + reth_transaction_pool::EthPoolTransaction,
135135
{
136-
/// Consume the ype and build the [`reth_transaction_pool::Pool`] with the given config and blob
137-
/// store.
136+
/// Consume the type and build the [`reth_transaction_pool::Pool`] with the given config and
137+
/// blob store.
138138
pub fn build<BS>(
139139
self,
140140
blob_store: BS,

deny.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ ignore = [
1818
"RUSTSEC-2026-0097",
1919
# https://rustsec.org/advisories/RUSTSEC-2026-0105 core2 unmaintained, all versions yanked (no replacement)
2020
"RUSTSEC-2026-0105",
21+
# https://rustsec.org/advisories/RUSTSEC-2026-0118 hickory-proto NSEC3 unbounded loop; transitive via discv5, not reachable from reth's DNS usage
22+
"RUSTSEC-2026-0118",
23+
# https://rustsec.org/advisories/RUSTSEC-2026-0119 hickory-proto O(n²) name compression; transitive via discv5, not reachable from reth's DNS usage
24+
"RUSTSEC-2026-0119",
2125
]
2226

2327
# This section is considered when running `cargo deny check bans`.

0 commit comments

Comments
 (0)