Skip to content

Commit

Permalink
Merge pull request #1363 from rust-lang/renovate/rust-1.x
Browse files Browse the repository at this point in the history
Update dependency rust to v1.80.0
  • Loading branch information
Turbo87 authored Jul 26, 2024
2 parents 49128b0 + 2338f3f commit 58ceb39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
# renovate: datasource=github-tags depName=rust lookupName=rust-lang/rust
RUST_VERSION: 1.79.0
RUST_VERSION: 1.80.0

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ fn copy_dir(source: impl AsRef<Path>, dest: impl AsRef<Path>) -> Result<(), io::
if entry.file_type()?.is_dir() {
copy_inner(&entry.path(), &new_dest)?;
} else {
fs::copy(&entry.path(), &new_dest)?;
fs::copy(entry.path(), &new_dest)?;
}
}
Ok(())
Expand Down

0 comments on commit 58ceb39

Please sign in to comment.