intel_mkl_tool/
lib.rs

1//! Helper crate of `build.rs` in intel-mkl-src crate.
2//!
3//! This crate is responsible for finding static or dynamic library
4//! of Intel MKL installed in user system.
5//!
6
7mod config;
8mod entry;
9
10pub use config::*;
11pub use entry::*;