We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc1102e commit 894752fCopy full SHA for 894752f
src/lib.rs
@@ -279,13 +279,13 @@ impl Artifacts {
279
pub fn print_cargo_metadata(&self) {
280
println!("cargo:rustc-link-search=native={}", self.lib_dir.display());
281
for lib in &self.libs {
282
- println!("cargo:rustc-link-lib=static={}", lib);
+ println!("cargo:rustc-link-lib=static={lib}");
283
}
284
if let Some(ref cpp_stdlib) = self.cpp_stdlib {
285
- println!("cargo:rustc-link-lib={}", cpp_stdlib);
+ println!("cargo:rustc-link-lib={cpp_stdlib}");
286
287
if let Some(version) = self.version() {
288
- println!("cargo:rustc-env=LUAU_VERSION={}", version);
+ println!("cargo:rustc-env=LUAU_VERSION={version}");
289
290
291
0 commit comments