aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkjeremy <[email protected]>2021-02-04 19:42:45 +0000
committerkjeremy <[email protected]>2021-02-04 19:42:45 +0000
commit4a722a34f93d56d8a4e9d716d4aa054c88e6b868 (patch)
tree65ea20cd514460bb5a0f0bf4d03486ba2ad5bc75
parent36191543a679d4e01c206d2e98a2d7ae170a25e2 (diff)
Update thread_local
Pulls in https://github.com/Amanieu/thread_local-rs/pull/30 which fixes a leak when dropping ThreadLocal.
-rw-r--r--Cargo.lock4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index fc39269cb..8f1a8401f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1661,9 +1661,9 @@ dependencies = [
1661 1661
1662[[package]] 1662[[package]]
1663name = "thread_local" 1663name = "thread_local"
1664version = "1.1.2" 1664version = "1.1.3"
1665source = "registry+https://github.com/rust-lang/crates.io-index" 1665source = "registry+https://github.com/rust-lang/crates.io-index"
1666checksum = "d8208a331e1cb318dd5bd76951d2b8fc48ca38a69f5f4e4af1b6a9f8c6236915" 1666checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"
1667dependencies = [ 1667dependencies = [
1668 "once_cell", 1668 "once_cell",
1669] 1669]