From eca8e517a788a39718610902869bfb029ecb72ac Mon Sep 17 00:00:00 2001 From: kyutaze <215492008+kyutaze@users.noreply.github.com> Date: Tue, 6 Jan 2026 12:24:53 +0900 Subject: [PATCH] fix: suppress unexpected_cfgs warning in error module --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 58bd0dd..c47a29e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,6 +16,7 @@ pub mod http; mod message; pub mod errors { + #![allow(unexpected_cfgs)] error_chain! { foreign_links { ShellWordsParseError(::shell_words::ParseError);