From e87bad71abeb4c1e0950eb3fa54aaabeda29fb22 Mon Sep 17 00:00:00 2001 From: erhant Date: Tue, 7 Jul 2026 17:08:02 +0300 Subject: [PATCH] chore: clippy docfix + bump crossbeam-epoch (RUSTSEC-2026-0204) --- Cargo.lock | 4 ++-- lez/indexer/core/src/chain_consistency.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2d4d3dbc..0bd194bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1854,9 +1854,9 @@ dependencies = [ [[package]] name = "crossbeam-epoch" -version = "0.9.18" +version = "0.9.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f" dependencies = [ "crossbeam-utils", ] diff --git a/lez/indexer/core/src/chain_consistency.rs b/lez/indexer/core/src/chain_consistency.rs index 4cfab7f2..4ffa244c 100644 --- a/lez/indexer/core/src/chain_consistency.rs +++ b/lez/indexer/core/src/chain_consistency.rs @@ -99,7 +99,7 @@ impl std::fmt::Display for ChainMismatch { /// parked block while stalled. struct Anchor { slot: Slot, - /// The anchor block's `(id, hash)` + /// The anchor block's `(id, hash)`. /// /// `None` when parked on an undeserializable inscription (no header was recorded). block: Option<(u64, HashType)>,