First of edition fixing

pull/1/head
Bradlee Speice 2018-12-06 22:12:21 -05:00
parent 5232c556ff
commit de2b6700ae
5 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
extern crate qadapt;
use qadapt::allocate_panic;
use qadapt::QADAPT;

View File

@ -1,5 +1,5 @@
extern crate env_logger;
extern crate qadapt;
use env_logger;
use qadapt::allocate_panic;

View File

@ -11,14 +11,14 @@
//! Please also take a look at [qadapt-macro](https://github.com/bspeice/qadapt/tree/master/qadapt-macro)
//! for some helper macros to make working with QADAPT a bit easier.
#![deny(missing_docs)]
extern crate libc;
#[macro_use]
extern crate log;
extern crate qadapt_macro;
extern crate spin;
// thread_id is necessary because `std::thread::current()` panics if we have not yet
// allocated a `thread_local!{}` it depends on.
extern crate thread_id;
use thread_id;
// Re-export the proc macros to use by other code
pub use qadapt_macro::*;

View File

@ -1,4 +1,4 @@
extern crate qadapt;
use qadapt::enter_protected;
use qadapt::exit_protected;

View File

@ -1,4 +1,4 @@
extern crate qadapt;
use std::io;
use qadapt::allocate_panic;