From 247a9398f4dd1903ed561aa1bb2ba088a70c5a79 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Tue, 11 Oct 2016 18:23:49 -0400 Subject: Switch to thread_local crate in lieu of thread_local!. This is to work around a bug where using a thread_local! was causing a segfault on macos. Fixes #164. --- src/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index c70a3c52..7a6ac021 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,6 +16,7 @@ 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; -- cgit v1.2.3