Skip to content

Commit fd1439e

Browse files
committed
change edition to 2021, fix clippy warns
1 parent e1c3313 commit fd1439e

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

src/tools/rust-installer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["The Rust Project Developers"]
33
name = "installer"
44
version = "0.0.0"
5-
edition = "2018"
5+
edition = "2021"
66

77
[[bin]]
88
doc = false

src/tools/rust-installer/src/combiner.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ impl Combiner {
9494
let pkg_name =
9595
input_tarball.trim_end_matches(&format!(".tar.{}", compression.extension()));
9696
let pkg_name = Path::new(pkg_name).file_name().unwrap();
97-
let pkg_dir = Path::new(&self.work_dir).join(&pkg_name);
97+
let pkg_dir = Path::new(&self.work_dir).join(pkg_name);
9898

9999
// Verify the version number.
100100
let mut version = String::new();
@@ -114,9 +114,9 @@ impl Combiner {
114114
// All we need to do is copy the component directory. We could
115115
// move it, but rustbuild wants to reuse the unpacked package
116116
// dir for OS-specific installers on macOS and Windows.
117-
let component_dir = package_dir.join(&component);
117+
let component_dir = package_dir.join(component);
118118
create_dir(&component_dir)?;
119-
copy_recursive(&pkg_dir.join(&component), &component_dir)?;
119+
copy_recursive(&pkg_dir.join(component), &component_dir)?;
120120

121121
// Merge the component name.
122122
writeln!(&components, "{}", component).context("failed to write new components")?;
@@ -158,7 +158,7 @@ impl Combiner {
158158
.input(self.package_name)
159159
.output(path_to_str(&output)?.into())
160160
.compression_profile(self.compression_profile)
161-
.compression_formats(self.compression_formats.clone());
161+
.compression_formats(self.compression_formats);
162162
tarballer.run()?;
163163

164164
Ok(())

src/tools/rust-installer/src/compression.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ impl Default for CompressionFormats {
166166

167167
impl CompressionFormats {
168168
pub(crate) fn iter(&self) -> impl Iterator<Item = CompressionFormat> + '_ {
169-
self.0.iter().map(|i| *i)
169+
self.0.iter().copied()
170170
}
171171
}
172172

src/tools/rust-installer/src/generator.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ impl Generator {
118118
.input(self.package_name)
119119
.output(path_to_str(&output)?.into())
120120
.compression_profile(self.compression_profile)
121-
.compression_formats(self.compression_formats.clone());
121+
.compression_formats(self.compression_formats);
122122
tarballer.run()?;
123123

124124
Ok(())

src/tools/rust-installer/src/scripter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use crate::util::*;
22
use anyhow::{Context, Result};
33
use std::io::Write;
44

5-
const TEMPLATE: &'static str = include_str!("../install-template.sh");
5+
const TEMPLATE: &str = include_str!("../install-template.sh");
66

77
actor! {
88
#[derive(Debug)]

src/tools/rust-installer/src/tarballer.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ fn append_path<W: Write>(builder: &mut Builder<W>, src: &Path, path: &String) ->
9898
if cfg!(windows) {
9999
// Windows doesn't really have a mode, so `tar` never marks files executable.
100100
// Use an extension whitelist to update files that usually should be so.
101-
const EXECUTABLES: [&'static str; 4] = ["exe", "dll", "py", "sh"];
101+
const EXECUTABLES: [&str; 4] = ["exe", "dll", "py", "sh"];
102102
if let Some(ext) = src.extension().and_then(|s| s.to_str()) {
103103
if EXECUTABLES.contains(&ext) {
104104
let mode = header.mode()?;
@@ -134,7 +134,7 @@ where
134134
for entry in WalkDir::new(root.join(name)) {
135135
let entry = entry?;
136136
let path = entry.path().strip_prefix(root)?;
137-
let path = path_to_str(&path)?;
137+
let path = path_to_str(path)?;
138138

139139
if entry.file_type().is_dir() {
140140
dirs.push(path.to_owned());

src/tools/rust-installer/src/util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ where
117117
} else {
118118
copy(entry.path(), dst)?;
119119
}
120-
callback(&path, file_type)?;
120+
callback(path, file_type)?;
121121
}
122122
Ok(())
123123
}

0 commit comments

Comments
 (0)