Skip to content

Commit 58ceb39

Browse files
authored
Merge pull request #1363 from rust-lang/renovate/rust-1.x
Update dependency rust to v1.80.0
2 parents 49128b0 + 2338f3f commit 58ceb39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
env:
99
# renovate: datasource=github-tags depName=rust lookupName=rust-lang/rust
10-
RUST_VERSION: 1.79.0
10+
RUST_VERSION: 1.80.0
1111

1212
jobs:
1313
lint:

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ fn copy_dir(source: impl AsRef<Path>, dest: impl AsRef<Path>) -> Result<(), io::
262262
if entry.file_type()?.is_dir() {
263263
copy_inner(&entry.path(), &new_dest)?;
264264
} else {
265-
fs::copy(&entry.path(), &new_dest)?;
265+
fs::copy(entry.path(), &new_dest)?;
266266
}
267267
}
268268
Ok(())

0 commit comments

Comments
 (0)