From 59c63d373804fe9d00d92d2dd47174d4e1637333 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Sun, 8 Oct 2023 05:29:57 +0200 Subject: Update dependencies This patch applies all breaking and non-breaking dependency updates and bumps MSRV to 1.70.0. --- alacritty/src/migrate.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'alacritty/src') diff --git a/alacritty/src/migrate.rs b/alacritty/src/migrate.rs index c889bcd0..4d632af4 100644 --- a/alacritty/src/migrate.rs +++ b/alacritty/src/migrate.rs @@ -29,6 +29,7 @@ pub fn migrate(options: MigrateOptions) { // If we're doing a wet run, perform a dry run first for safety. if !options.dry_run { + #[allow(clippy::redundant_clone)] let mut options = options.clone(); options.silent = true; options.dry_run = true; -- cgit