We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b89a1d commit a65e8beCopy full SHA for a65e8be
build.rs
@@ -259,7 +259,7 @@ fn download_libs(features: Features, out_dir: &str) {
259
command.arg("-xvf");
260
command
261
};
262
- let tar_status = command.arg("glfw.zip").current_dir(&out_dir).status();
+ let tar_status = command.arg("glfw.zip").current_dir(out_dir).status();
263
assert!(
264
tar_status
265
.expect("failed to run tar/unzip command")
src/lib.rs
@@ -16,6 +16,7 @@ pub use sys::*;
16
17
#[cfg(not(feature = "bindings"))]
18
#[allow(unused)] // for type aliases. type aliases inside extern blocks are not allowed yet.
19
+#[allow(clippy::upper_case_acronyms)]
20
mod native {
21
use super::*;
22
type HWND = *mut std::ffi::c_void;
0 commit comments