Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions intel-mkl-src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@

#![cfg_attr(feature = "download", allow(unreachable_code))]

use anyhow::*;
use anyhow::{bail, Result};
use intel_mkl_tool::*;
use std::{env, path::*};
use std::{env, path::PathBuf};

#[cfg(feature = "mkl-static-lp64-iomp")]
const MKL_CONFIG: &str = "mkl-static-lp64-iomp";
Expand Down
2 changes: 1 addition & 1 deletion intel-mkl-tool/src/cli.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use anyhow::*;
use anyhow::{bail, Result};
use intel_mkl_tool::*;
use std::{env, path::PathBuf};
use structopt::StructOpt;
Expand Down
2 changes: 1 addition & 1 deletion intel-mkl-tool/src/config.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::*;
use derive_more::*;
use derive_more::Display;

pub const VALID_CONFIGS: &[&str] = &[
"mkl-dynamic-ilp64-iomp",
Expand Down
4 changes: 2 additions & 2 deletions intel-mkl-tool/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@

#![cfg_attr(not(feature = "archive"), allow(dead_code))]

use anyhow::*;
use std::path::*;
use anyhow::{bail, Result};
use std::path::{Path, PathBuf};

mod config;
mod entry;
Expand Down