From 983c7fd6f9baa9d5ddb4becfb5d8febd48fbd096 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Tue, 13 Sep 2016 21:21:36 -0400 Subject: [PATCH] We don't use thread_local any more, so remove it. --- Cargo.lock | 1 - Cargo.toml | 1 - src/main.rs | 1 - 3 files changed, 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6d40e4a2..da2f061c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -17,7 +17,6 @@ dependencies = [ "regex 0.1.76 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", "term 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "thread_local 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "walkdir 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/Cargo.toml b/Cargo.toml index f9ad8b39..78070150 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,6 @@ num_cpus = "1" regex = "0.1.76" rustc-serialize = "0.3" term = "0.4" -thread_local = "0.2" walkdir = "0.1" [target.'cfg(windows)'.dependencies] diff --git a/src/main.rs b/src/main.rs index a8c82d04..fb04188a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,7 +15,6 @@ extern crate num_cpus; extern crate regex; extern crate rustc_serialize; extern crate term; -extern crate thread_local; extern crate walkdir; #[cfg(windows)] extern crate winapi;