From 57b29f4b31f3b32d4a96c81fb36bc51000444969 Mon Sep 17 00:00:00 2001 From: Mark Story Date: Fri, 6 Mar 2026 10:51:30 -0500 Subject: [PATCH] chore: Fix lint build with rust 1.94 New clippy release doesn't like the size of figment::Error, but there aren't any newer releases to upgrade to. --- src/config.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config.rs b/src/config.rs index 046de4f7..67b571d2 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,3 +1,4 @@ +#![allow(clippy::result_large_err)] use figment::{ Figment, Metadata, Profile, Provider, providers::{Env, Format, Yaml},