comparison rust/hg-core/Cargo.toml @ 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 b78ae134ac92
comparison
equal deleted inserted replaced
49580:08fe5c4d4471 49581:04f1dba53c96
27 regex = "1.5.5" 27 regex = "1.5.5"
28 sha-1 = "0.10.0" 28 sha-1 = "0.10.0"
29 twox-hash = "1.6.2" 29 twox-hash = "1.6.2"
30 same-file = "1.0.6" 30 same-file = "1.0.6"
31 tempfile = "3.1.0" 31 tempfile = "3.1.0"
32 thread_local = "1.1.4"
32 crossbeam-channel = "0.5.0" 33 crossbeam-channel = "0.5.0"
33 micro-timer = "0.4.0" 34 micro-timer = "0.4.0"
34 log = "0.4.8" 35 log = "0.4.8"
35 memmap2 = { version = "0.5.3", features = ["stable_deref_trait"] } 36 memmap2 = { version = "0.5.3", features = ["stable_deref_trait"] }
36 zstd = "0.5.3" 37 zstd = "0.5.3"
37 format-bytes = "0.3.0" 38 format-bytes = "0.3.0"
38 # once_cell 1.15 uses edition 2021, while the heptapod CI 39 # once_cell 1.15 uses edition 2021, while the heptapod CI
39 # uses an old version of Cargo that doesn't support it. 40 # uses an old version of Cargo that doesn't support it.
40 once_cell = "=1.14.0" 41 once_cell = "=1.14.0"
41 42
42 # We don't use the `miniz-oxide` backend to not change rhg benchmarks and until 43 # We don't use the `miniz-oxide` backend to not change rhg benchmarks and until
43 # we have a clearer view of which backend is the fastest. 44 # we have a clearer view of which backend is the fastest.