Show More
@@ -16,9 +16,14 b' checksum = "f26201604c87b1e01bd3d98f8d5d' | |||||
16 |
|
16 | |||
17 | [[package]] |
|
17 | [[package]] | |
18 | name = "ahash" |
|
18 | name = "ahash" | |
19 |
version = "0. |
|
19 | version = "0.8.2" | |
20 | source = "registry+https://github.com/rust-lang/crates.io-index" |
|
20 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
21 | checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e" |
|
21 | checksum = "bf6ccdb167abbf410dcb915cabd428929d7f6a04980b54a11f26a39f1c7f7107" | |
|
22 | dependencies = [ | |||
|
23 | "cfg-if", | |||
|
24 | "once_cell", | |||
|
25 | "version_check", | |||
|
26 | ] | |||
22 |
|
27 | |||
23 | [[package]] |
|
28 | [[package]] | |
24 | name = "aho-corasick" |
|
29 | name = "aho-corasick" | |
@@ -507,9 +512,9 b' dependencies = [' | |||||
507 |
|
512 | |||
508 | [[package]] |
|
513 | [[package]] | |
509 | name = "hashbrown" |
|
514 | name = "hashbrown" | |
510 |
version = "0. |
|
515 | version = "0.13.1" | |
511 | source = "registry+https://github.com/rust-lang/crates.io-index" |
|
516 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
512 | checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" |
|
517 | checksum = "33ff8ae62cd3a9102e5637afc8452c55acf3844001bd5374e0b0bd7b6616c038" | |
513 | dependencies = [ |
|
518 | dependencies = [ | |
514 | "ahash", |
|
519 | "ahash", | |
515 | "rayon", |
|
520 | "rayon", | |
@@ -811,9 +816,9 b' dependencies = [' | |||||
811 |
|
816 | |||
812 | [[package]] |
|
817 | [[package]] | |
813 | name = "once_cell" |
|
818 | name = "once_cell" | |
814 |
version = "1.1 |
|
819 | version = "1.16.0" | |
815 | source = "registry+https://github.com/rust-lang/crates.io-index" |
|
820 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
816 | checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0" |
|
821 | checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" | |
817 |
|
822 | |||
818 | [[package]] |
|
823 | [[package]] | |
819 | name = "opaque-debug" |
|
824 | name = "opaque-debug" |
@@ -13,37 +13,37 b' bitflags = "1.3.2"' | |||||
13 | bytes-cast = "0.2.0" |
|
13 | bytes-cast = "0.2.0" | |
14 | byteorder = "1.4.3" |
|
14 | byteorder = "1.4.3" | |
15 | derive_more = "0.99.17" |
|
15 | derive_more = "0.99.17" | |
16 |
hashbrown = { version = "0. |
|
16 | hashbrown = { version = "0.13.1", features = ["rayon"] } | |
17 |
home = "0.5. |
|
17 | home = "0.5.4" | |
18 | im-rc = "15.0" |
|
18 | im-rc = "15.1.0" | |
19 |
itertools = "0.10. |
|
19 | itertools = "0.10.5" | |
20 | lazy_static = "1.4.0" |
|
20 | lazy_static = "1.4.0" | |
21 | libc = "0.2" |
|
21 | libc = "0.2.137" | |
22 |
ouroboros = "0.15. |
|
22 | ouroboros = "0.15.5" | |
23 |
rand = "0.8. |
|
23 | rand = "0.8.5" | |
24 | rand_pcg = "0.3.1" |
|
24 | rand_pcg = "0.3.1" | |
25 | rand_distr = "0.4.3" |
|
25 | rand_distr = "0.4.3" | |
26 |
rayon = "1.5. |
|
26 | rayon = "1.5.3" | |
27 |
regex = "1. |
|
27 | regex = "1.7.0" | |
28 | sha-1 = "0.10.0" |
|
28 | sha-1 = "0.10.0" | |
29 |
twox-hash = "1.6. |
|
29 | twox-hash = "1.6.3" | |
30 | same-file = "1.0.6" |
|
30 | same-file = "1.0.6" | |
31 |
tempfile = "3. |
|
31 | tempfile = "3.3.0" | |
32 | thread_local = "1.1.4" |
|
32 | thread_local = "1.1.4" | |
33 |
crossbeam-channel = "0.5. |
|
33 | crossbeam-channel = "0.5.6" | |
34 | micro-timer = "0.4.0" |
|
34 | micro-timer = "0.4.0" | |
35 |
log = "0.4. |
|
35 | log = "0.4.17" | |
36 |
memmap2 = { version = "0.5. |
|
36 | memmap2 = { version = "0.5.8", features = ["stable_deref_trait"] } | |
37 | zstd = "0.11.2" |
|
37 | zstd = "0.11.2" | |
38 | format-bytes = "0.3.0" |
|
38 | format-bytes = "0.3.0" | |
39 | # once_cell 1.15 uses edition 2021, while the heptapod CI |
|
39 | # once_cell 1.15 uses edition 2021, while the heptapod CI | |
40 | # uses an old version of Cargo that doesn't support it. |
|
40 | # uses an old version of Cargo that doesn't support it. | |
41 |
once_cell = "1.1 |
|
41 | once_cell = "1.16.0" | |
42 |
|
42 | |||
43 | # 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 | |
44 | # we have a clearer view of which backend is the fastest. |
|
44 | # we have a clearer view of which backend is the fastest. | |
45 | [dependencies.flate2] |
|
45 | [dependencies.flate2] | |
46 |
version = "1.0.2 |
|
46 | version = "1.0.24" | |
47 | features = ["zlib"] |
|
47 | features = ["zlib"] | |
48 | default-features = false |
|
48 | default-features = false | |
49 |
|
49 |
General Comments 0
You need to be logged in to leave comments.
Login now