summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-10-11 18:23:49 -0400
committerAndrew Gallant <jamslam@gmail.com>2016-10-11 18:23:49 -0400
commit247a9398f4dd1903ed561aa1bb2ba088a70c5a79 (patch)
tree8a17614dc25dca1a3ae13dec60f660029efa01a2 /Cargo.lock
parent4981991a6e4d1808d54c8d20fc4d93fcf0c1abfe (diff)
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.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock3
1 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f1932c89..a59b6416 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1,6 +1,6 @@
[root]
name = "ripgrep"
-version = "0.2.1"
+version = "0.2.2"
dependencies = [
"deque 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"docopt 0.6.86 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -17,6 +17,7 @@ dependencies = [
"regex 0.1.77 (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.7 (registry+https://github.com/rust-lang/crates.io-index)",
"walkdir 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
]