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 5530240 commit f8e22efCopy full SHA for f8e22ef
src/lib.rs
@@ -1,6 +1,15 @@
1
-#[cfg(feature = "blas")]
+#[cfg(feature = "blas-src")]
2
#[allow(unused_extern_crates)]
3
extern crate blas_src;
4
+#[cfg(feature = "openblas-src")]
5
+#[allow(unused_extern_crates)]
6
+extern crate openblas_src;
7
+#[cfg(feature = "netlib-src")]
8
9
+extern crate netlib_src;
10
+#[cfg(all(target_os = "macos", feature = "accelerate-src"))]
11
12
+extern crate accelerate_src;
13
14
/// Implements Krippendorff's alpha for inter-rater reliability.
15
pub mod alpha;
0 commit comments