Skip to content

Commit 894752f

Browse files
committed
Make clippy happy
1 parent dc1102e commit 894752f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -279,13 +279,13 @@ impl Artifacts {
279279
pub fn print_cargo_metadata(&self) {
280280
println!("cargo:rustc-link-search=native={}", self.lib_dir.display());
281281
for lib in &self.libs {
282-
println!("cargo:rustc-link-lib=static={}", lib);
282+
println!("cargo:rustc-link-lib=static={lib}");
283283
}
284284
if let Some(ref cpp_stdlib) = self.cpp_stdlib {
285-
println!("cargo:rustc-link-lib={}", cpp_stdlib);
285+
println!("cargo:rustc-link-lib={cpp_stdlib}");
286286
}
287287
if let Some(version) = self.version() {
288-
println!("cargo:rustc-env=LUAU_VERSION={}", version);
288+
println!("cargo:rustc-env=LUAU_VERSION={version}");
289289
}
290290
}
291291

0 commit comments

Comments
 (0)