We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78bd1d8 commit 48292bcCopy full SHA for 48292bc
build.rs
@@ -5,6 +5,6 @@
5
fn main() {
6
println!("cargo:rerun-if-changed=build.rs");
7
if cfg!(feature = "test-blas-openblas-sys") {
8
- println!("cargo:rustc-link-lib={}=openblas", "dylib");
+ println!("cargo:rustc-link-lib=dylib=openblas");
9
}
10
clippy.toml
@@ -0,0 +1 @@
1
+single-char-binding-names-threshold = 1000
src/lib.rs
@@ -11,7 +11,6 @@
11
clippy::many_single_char_names,
12
clippy::deref_addrof,
13
clippy::unreadable_literal,
14
- clippy::many_single_char_names
15
)]
16
17
//! The `ndarray` crate provides an *n*-dimensional container for general elements
0 commit comments