From 72a4784fb3fa1a057dae6e497e41f76794d70da8 Mon Sep 17 00:00:00 2001 From: paullegranddc Date: Thu, 21 Apr 2022 11:51:42 +0200 Subject: [PATCH] Allow mutex_atomic clippy lint https://github.com/rust-lang/rust-clippy/issues/4295 --- ddtelemetry/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ddtelemetry/src/lib.rs b/ddtelemetry/src/lib.rs index 47211bc..f2366c5 100644 --- a/ddtelemetry/src/lib.rs +++ b/ddtelemetry/src/lib.rs @@ -1,5 +1,6 @@ // Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0. // This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present Datadog, Inc. +#![allow(clippy::mutex_atomic)] use std::{ sync::atomic::{AtomicU64, Ordering},