diff --git a/deny.toml b/deny.toml new file mode 100644 index 00000000..c26c30e3 --- /dev/null +++ b/deny.toml @@ -0,0 +1,4 @@ +[advisories] +ignore = [ + { id = "RUSTSEC-2026-0097", reason = "rand 0.8.5 is a transitive dep from ark-std/logos-blockchain-*/risc0-* which pin to 0.8.x. Fix is in rand >= 0.9.3, outside the 0.8 semver range. The vulnerability requires custom logger + thread_rng + reseeding which we don't trigger." }, +] diff --git a/indexer/core/src/lib.rs b/indexer/core/src/lib.rs index 29bd50b1..53d0654e 100644 --- a/indexer/core/src/lib.rs +++ b/indexer/core/src/lib.rs @@ -26,7 +26,6 @@ pub struct IndexerCore { pub store: IndexerStore, } -//test #[derive(Clone)] /// This struct represents one L1 block data fetched from backfilling. pub struct BackfillBlockData {