Skip to content

Commit f8e22ef

Browse files
committed
Fix BLAS (hopefully)
1 parent 5530240 commit f8e22ef

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/lib.rs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
#[cfg(feature = "blas")]
1+
#[cfg(feature = "blas-src")]
22
#[allow(unused_extern_crates)]
33
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+
#[allow(unused_extern_crates)]
9+
extern crate netlib_src;
10+
#[cfg(all(target_os = "macos", feature = "accelerate-src"))]
11+
#[allow(unused_extern_crates)]
12+
extern crate accelerate_src;
413

514
/// Implements Krippendorff's alpha for inter-rater reliability.
615
pub mod alpha;

0 commit comments

Comments
 (0)