You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
658 B
27 lines
658 B
2 weeks ago
|
From 4c266e662de58bd1dd7a5eb1cbb15982177a99ff Mon Sep 17 00:00:00 2001
|
||
|
From: Fabio Valentini <decathorpe@gmail.com>
|
||
|
Date: Fri, 5 Apr 2024 11:08:53 +0200
|
||
|
Subject: [PATCH 3/3] drop deny(warnings) from doctests
|
||
|
|
||
|
---
|
||
|
src/lib.rs | 3 +--
|
||
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/src/lib.rs b/src/lib.rs
|
||
|
index 8114e79..30f4cd5 100644
|
||
|
--- a/src/lib.rs
|
||
|
+++ b/src/lib.rs
|
||
|
@@ -16,8 +16,7 @@
|
||
|
deny(
|
||
|
rust_2018_idioms,
|
||
|
unused_lifetimes,
|
||
|
- rust_2021_prelude_collisions,
|
||
|
- warnings
|
||
|
+ rust_2021_prelude_collisions
|
||
|
),
|
||
|
allow(unused_variables, unused_assignments, unused_extern_crates)
|
||
|
)))]
|
||
|
--
|
||
|
2.44.0
|
||
|
|