From 184abc58fc8209993fa73edbf96aea7b7c59540c Mon Sep 17 00:00:00 2001 From: Anand Krishnamoorthi Date: Sat, 27 Jul 2024 23:11:16 +0530 Subject: [PATCH] Fix clippy warning treated as error Signed-off-by: Anand Krishnamoorthi --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 39f84b2e..c7603514 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +#![allow(clippy::doc_lazy_continuation)] // Use README.md as crate documentation. #![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))] // We'll default to building for no_std - use core, alloc instead of std.