From 07907b2ce20024c58cb1731e0b2396dc8ec86975 Mon Sep 17 00:00:00 2001 From: Marc Plano-Lesay Date: Wed, 13 Aug 2025 14:33:12 +1000 Subject: [PATCH] chore: allow `renamed_and_removed_lints` until progenitor is updated --- src/actions/fetch_album_assets.rs | 1 + src/main.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/actions/fetch_album_assets.rs b/src/actions/fetch_album_assets.rs index 85ba472..9704b58 100644 --- a/src/actions/fetch_album_assets.rs +++ b/src/actions/fetch_album_assets.rs @@ -7,6 +7,7 @@ use crate::{ use super::action::Action; +#[allow(dead_code)] // Will be used soon. pub struct FetchAlbumAssets { album: Album, } diff --git a/src/main.rs b/src/main.rs index 7226bc5..e311634 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,4 @@ +#![allow(renamed_and_removed_lints)] // https://github.com/oxidecomputer/progenitor/issues/1169 include!(concat!(env!("OUT_DIR"), "/client.rs")); #[cfg(test)]