summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-09-13 21:21:36 -0400
committerAndrew Gallant <jamslam@gmail.com>2016-09-13 21:21:36 -0400
commit983c7fd6f9baa9d5ddb4becfb5d8febd48fbd096 (patch)
tree361237148d09b6bc37f5e84c378cd4f6e4210de2
parent7cd02e9b7e161fb6a85c7391650d5db1f3890aa0 (diff)
We don't use thread_local any more, so remove it.
-rw-r--r--Cargo.lock1
-rw-r--r--Cargo.toml1
-rw-r--r--src/main.rs1
3 files changed, 0 insertions, 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;