Mercurial > hg
diff rust/Cargo.lock @ 49581:04f1dba53c96 stable 6.3
rust: create wrapper struct to reduce `regex` contention issues
Explanations inline.
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Wed, 09 Nov 2022 23:28:01 -0500 |
parents | eb02decdf0ab |
children | a5447a4a8c5d 812a9fbf4380 |
line wrap: on
line diff
--- a/rust/Cargo.lock Sat Nov 12 02:38:53 2022 +0100 +++ b/rust/Cargo.lock Wed Nov 09 23:28:01 2022 -0500 @@ -479,6 +479,7 @@ "same-file", "sha-1 0.10.0", "tempfile", + "thread_local", "twox-hash", "zstd", ] @@ -1120,6 +1121,15 @@ ] [[package]] +name = "thread_local" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" +dependencies = [ + "once_cell", +] + +[[package]] name = "time" version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index"