Skip to content
This repository has been archived by the owner on Nov 27, 2020. It is now read-only.

Commit

Permalink
Disable lints for btree code imported from stdlib
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Hughes committed Aug 27, 2020
1 parent 6cd78f4 commit 4bd9fd2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/btree/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#![allow(
explicit_outlives_requirements,
single_use_lifetimes,
trivial_casts,
)]
#![allow(
clippy::pedantic,
clippy::nursery,
clippy::type_complexity
)]
pub mod map;
mod navigate;
mod node;
Expand Down

0 comments on commit 4bd9fd2

Please sign in to comment.