diff options
author | Christian Duerr <contact@christianduerr.com> | 2023-10-08 05:29:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-08 07:29:57 +0400 |
commit | 59c63d373804fe9d00d92d2dd47174d4e1637333 (patch) | |
tree | 4e80165d62fd632f0a5b5c285845fc9f97ee1e0b /alacritty/src/migrate.rs | |
parent | c2f8abecfbaf6b6388e7746b733b7f22cbb7a750 (diff) | |
download | r-alacritty-59c63d373804fe9d00d92d2dd47174d4e1637333.tar.gz r-alacritty-59c63d373804fe9d00d92d2dd47174d4e1637333.tar.bz2 r-alacritty-59c63d373804fe9d00d92d2dd47174d4e1637333.zip |
Update dependencies
This patch applies all breaking and non-breaking dependency updates
and bumps MSRV to 1.70.0.
Diffstat (limited to 'alacritty/src/migrate.rs')
-rw-r--r-- | alacritty/src/migrate.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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; |