events: Allow clippy::needless_borrow to avoid false positives

This commit is contained in:
Kévin Commaille 2022-07-02 18:49:29 +02:00 committed by Kévin Commaille
parent efc95da6fa
commit 06cd3a3a6c

View File

@ -2,6 +2,9 @@
//!
//! This module also contains types shared by events in its child namespaces.
// https://github.com/rust-lang/rust-clippy/issues/9111
#![allow(clippy::needless_borrow)]
use std::collections::BTreeMap;
use js_int::UInt;