From 3d16a174250aeaac79c1e98dae7f36cdf9d7bf65 Mon Sep 17 00:00:00 2001 From: Georg Semmler Date: Wed, 16 Oct 2024 17:27:01 +0200 Subject: [PATCH] Add a new `#[allow(missing_docs)]` This commit adds a new `#[allow(missing_docs)]` attribute to supress a new warning on rustc +beta for our test code. We do not really care about doc comments there. --- diesel/src/test_helpers.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/diesel/src/test_helpers.rs b/diesel/src/test_helpers.rs index 2bc0572b31c3..bccdd3bc93d1 100644 --- a/diesel/src/test_helpers.rs +++ b/diesel/src/test_helpers.rs @@ -1,3 +1,4 @@ +#![allow(missing_docs)] // test only module extern crate dotenvy; use crate::prelude::*;