rust2018: remove extern crate

Signed-off-by: Levente Kurusa <lkurusa@acm.org>
This commit is contained in:
Levente Kurusa
2018-12-23 16:57:41 +01:00
parent 932a6e770f
commit ed1e8162d5
9 changed files with 5 additions and 15 deletions

View File

@@ -5,6 +5,8 @@
use std::io::{Read, Write};
use std::path::PathBuf;
use log::*;
use crate::error::*;
use crate::error::ErrorKind::*;

View File

@@ -8,6 +8,8 @@ use std::io::BufRead;
use std::io::BufReader;
use std::path::{Path, PathBuf};
use log::*;
use crate::blkio::BlkIoController;
use crate::cpu::CpuController;
use crate::cpuacct::CpuAcctController;

View File

@@ -1,5 +1,4 @@
#[macro_use]
extern crate log;
use log::*;
use std::fs::File;
use std::io::{BufRead, BufReader, Write};