From d19e596712ba003a109b91635ec8110989b0876d Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Thu, 6 Dec 2018 23:23:39 -0500 Subject: [PATCH] Remove log crate --- Cargo.toml | 1 - src/lib.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3f81b2a..7b02f17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,6 @@ maintenance = { status = "actively-developed" } [dependencies] libc = "0.2" -log = "0.4" spin = { git = "https://github.com/bspeice/spin-rs.git" } thread-id = "3.3" diff --git a/src/lib.rs b/src/lib.rs index 85acd04..b2bf213 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -50,7 +50,6 @@ //! } #![deny(missing_docs)] -use log::warn; // thread_id is necessary because `std::thread::current()` panics if we have not yet // allocated a `thread_local!{}` it depends on. use thread_id;