Skip to content

Commit

Permalink
chore: Ignore unknown lints.
Browse files Browse the repository at this point in the history
  • Loading branch information
matheus23 committed Aug 29, 2023
1 parent 6252e84 commit 15a3cb6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions car-mirror/src/common.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(unknown_lints)] // Because the `instrument` macro contains some `#[allow]`s that rust 1.66 doesn't know yet.

use anyhow::anyhow;
use bytes::Bytes;
use deterministic_bloom::runtime_size::BloomFilter;
Expand Down
2 changes: 2 additions & 0 deletions car-mirror/src/incremental_verification.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(unknown_lints)] // Because the `instrument` macro contains some `#[allow]`s that rust 1.66 doesn't know yet.

use crate::{
dag_walk::DagWalk,
error::{Error, IncrementalVerificationError},
Expand Down

0 comments on commit 15a3cb6

Please sign in to comment.