##// END OF EJS Templates
copies-rust: track "overwrites" directly within CopySource...
copies-rust: track "overwrites" directly within CopySource Overwrite are "rare enough" that explicitly keeping track of them is going to be "cheap", or at least much cheaper that issuing many `is_ancestor` calls. Even a simple implementation using no specific optimisation (eg: using the generic HashSet type) yield good result in most cases. They are interesting optimization to can do on top of that. We will implement them in later changesets. We tried different approach to speed up the overwrite detection and this one seems the most promising. Without further optimization, we already see sizable speedup on various cases. Repo Case Source-Rev Dest-Rev # of revisions old time new time Difference Factor time per rev --------------------------------------------------------------------------------------------------------------------------------------------------------------- mozilla-try x00000_revs_x_added_0_copies 6a320851d377 1ebb79acd503 : 363753 revs, 5.138169 s, 4.482399 s, -0.655770 s, × 0.8724, 12 µs/rev mozilla-try x00000_revs_x_added_x_copies 5173c4b6f97c 95d83ee7242d : 362229 revs, 5.127809 s, 4.480366 s, -0.647443 s, × 0.8737, 12 µs/rev mozilla-try x00000_revs_x000_added_x_copies 9126823d0e9c ca82787bb23c : 359344 revs, 4.971136 s, 4.369070 s, -0.602066 s, × 0.8789, 12 µs/rev mozilla-try x00000_revs_x0000_added_x0000_copies 8d3fafa80d4b eb884023b810 : 192665 revs, 1.741678 s, 1.592506 s, -0.149172 s, × 0.9144, 8 µs/rev However, some of the case doing a lot of overwrite get significantly slower. The one with a really problematic slowdown are the special "head reducing" merge in mozilla-try so I am not too worried about them. In addition, further changeset are going to improve the performance of all this. Repo Case Source-Rev Dest-Rev # of revisions old time new time Difference Factor time per rev --------------------------------------------------------------------------------------------------------------------------------------------------------------- mozilla-try x0000_revs_xx000_added_x000_copies 89294cd501d9 7ccb2fc7ccb5 : 97052 revs, 1.343373 s, 2.119204 s, +0.775831 s, × 1.5775, 21 µs/rev mozilla-try x00000_revs_x00000_added_x0000_copies 1b661134e2ca 1ae03d022d6d : 228985 revs, 40.314822 s, 87.824489 s, +47.509667 s, × 2.1785, 383 µs/rev mozilla-try x00000_revs_x00000_added_x000_copies 9b2a99adc05e 8e29777b48e6 : 382065 revs, 20.048029 s, 43.304637 s, +23.256608 s, × 2.1600, 113 µs/rev Full benchmark below: Repo Case Source-Rev Dest-Rev # of revisions old time new time Difference Factor time per rev --------------------------------------------------------------------------------------------------------------------------------------------------------------- mercurial x_revs_x_added_0_copies ad6b123de1c7 39cfcef4f463 : 1 revs, 0.000042 s, 0.000043 s, +0.000001 s, × 1.0238, 43 µs/rev mercurial x_revs_x_added_x_copies 2b1c78674230 0c1d10351869 : 6 revs, 0.000110 s, 0.000114 s, +0.000004 s, × 1.0364, 19 µs/rev mercurial x000_revs_x000_added_x_copies 81f8ff2a9bf2 dd3267698d84 : 1032 revs, 0.004945 s, 0.004937 s, -0.000008 s, × 0.9984, 4 µs/rev pypy x_revs_x_added_0_copies aed021ee8ae8 099ed31b181b : 9 revs, 0.000192 s, 0.000339 s, +0.000147 s, × 1.7656, 37 µs/rev pypy x_revs_x000_added_0_copies 4aa4e1f8e19a 359343b9ac0e : 1 revs, 0.000049 s, 0.000049 s, +0.000000 s, × 1.0000, 49 µs/rev pypy x_revs_x_added_x_copies ac52eb7bbbb0 72e022663155 : 7 revs, 0.000112 s, 0.000202 s, +0.000090 s, × 1.8036, 28 µs/rev pypy x_revs_x00_added_x_copies c3b14617fbd7 ace7255d9a26 : 1 revs, 0.000323 s, 0.000409 s, +0.000086 s, × 1.2663, 409 µs/rev pypy x_revs_x000_added_x000_copies df6f7a526b60 a83dc6a2d56f : 6 revs, 0.010042 s, 0.011984 s, +0.001942 s, × 1.1934, 1997 µs/rev pypy x000_revs_xx00_added_0_copies 89a76aede314 2f22446ff07e : 4785 revs, 0.049813 s, 0.050820 s, +0.001007 s, × 1.0202, 10 µs/rev pypy x000_revs_x000_added_x_copies 8a3b5bfd266e 2c68e87c3efe : 6780 revs, 0.079937 s, 0.087953 s, +0.008016 s, × 1.1003, 12 µs/rev pypy x000_revs_x000_added_x000_copies 89a76aede314 7b3dda341c84 : 5441 revs, 0.059412 s, 0.062902 s, +0.003490 s, × 1.0587, 11 µs/rev pypy x0000_revs_x_added_0_copies d1defd0dc478 c9cb1334cc78 : 43645 revs, 0.533769 s, 0.679234 s, +0.145465 s, × 1.2725, 15 µs/rev pypy x0000_revs_xx000_added_0_copies bf2c629d0071 4ffed77c095c : 2 revs, 0.013147 s, 0.013095 s, -0.000052 s, × 0.9960, 6547 µs/rev pypy x0000_revs_xx000_added_x000_copies 08ea3258278e d9fa043f30c0 : 11316 revs, 0.110680 s, 0.120910 s, +0.010230 s, × 1.0924, 10 µs/rev netbeans x_revs_x_added_0_copies fb0955ffcbcd a01e9239f9e7 : 2 revs, 0.000085 s, 0.000087 s, +0.000002 s, × 1.0235, 43 µs/rev netbeans x_revs_x000_added_0_copies 6f360122949f 20eb231cc7d0 : 2 revs, 0.000107 s, 0.000107 s, +0.000000 s, × 1.0000, 53 µs/rev netbeans x_revs_x_added_x_copies 1ada3faf6fb6 5a39d12eecf4 : 3 revs, 0.000175 s, 0.000186 s, +0.000011 s, × 1.0629, 62 µs/rev netbeans x_revs_x00_added_x_copies 35be93ba1e2c 9eec5e90c05f : 9 revs, 0.000720 s, 0.000754 s, +0.000034 s, × 1.0472, 83 µs/rev netbeans x000_revs_xx00_added_0_copies eac3045b4fdd 51d4ae7f1290 : 1421 revs, 0.010019 s, 0.010443 s, +0.000424 s, × 1.0423, 7 µs/rev netbeans x000_revs_x000_added_x_copies e2063d266acd 6081d72689dc : 1533 revs, 0.015602 s, 0.015697 s, +0.000095 s, × 1.0061, 10 µs/rev netbeans x000_revs_x000_added_x000_copies ff453e9fee32 411350406ec2 : 5750 revs, 0.058759 s, 0.063528 s, +0.004769 s, × 1.0812, 11 µs/rev netbeans x0000_revs_xx000_added_x000_copies 588c2d1ced70 1aad62e59ddd : 66949 revs, 0.491550 s, 0.545515 s, +0.053965 s, × 1.1098, 8 µs/rev mozilla-central x_revs_x_added_0_copies 3697f962bb7b 7015fcdd43a2 : 2 revs, 0.000087 s, 0.000089 s, +0.000002 s, × 1.0230, 44 µs/rev mozilla-central x_revs_x000_added_0_copies dd390860c6c9 40d0c5bed75d : 8 revs, 0.000268 s, 0.000265 s, -0.000003 s, × 0.9888, 33 µs/rev mozilla-central x_revs_x_added_x_copies 8d198483ae3b 14207ffc2b2f : 9 revs, 0.000181 s, 0.000381 s, +0.000200 s, × 2.1050, 42 µs/rev mozilla-central x_revs_x00_added_x_copies 98cbc58cc6bc 446a150332c3 : 7 revs, 0.000661 s, 0.000672 s, +0.000011 s, × 1.0166, 96 µs/rev mozilla-central x_revs_x000_added_x000_copies 3c684b4b8f68 0a5e72d1b479 : 3 revs, 0.003256 s, 0.003497 s, +0.000241 s, × 1.0740, 1165 µs/rev mozilla-central x_revs_x0000_added_x0000_copies effb563bb7e5 c07a39dc4e80 : 6 revs, 0.066749 s, 0.073204 s, +0.006455 s, × 1.0967, 12200 µs/rev mozilla-central x000_revs_xx00_added_0_copies 6100d773079a 04a55431795e : 1593 revs, 0.006462 s, 0.006482 s, +0.000020 s, × 1.0031, 4 µs/rev mozilla-central x000_revs_x000_added_x_copies 9f17a6fc04f9 2d37b966abed : 41 revs, 0.004919 s, 0.005066 s, +0.000147 s, × 1.0299, 123 µs/rev mozilla-central x000_revs_x000_added_x000_copies 7c97034feb78 4407bd0c6330 : 7839 revs, 0.062421 s, 0.065707 s, +0.003286 s, × 1.0526, 8 µs/rev mozilla-central x0000_revs_xx000_added_0_copies 9eec5917337d 67118cc6dcad : 615 revs, 0.026633 s, 0.026800 s, +0.000167 s, × 1.0063, 43 µs/rev mozilla-central x0000_revs_xx000_added_x000_copies f78c615a656c 96a38b690156 : 30263 revs, 0.197792 s, 0.203856 s, +0.006064 s, × 1.0307, 6 µs/rev mozilla-central x00000_revs_x0000_added_x0000_copies 6832ae71433c 4c222a1d9a00 : 153721 revs, 1.259970 s, 1.293394 s, +0.033424 s, × 1.0265, 8 µs/rev mozilla-central x00000_revs_x00000_added_x000_copies 76caed42cf7c 1daa622bbe42 : 204976 revs, 1.689184 s, 1.698239 s, +0.009055 s, × 1.0054, 8 µs/rev mozilla-try x_revs_x_added_0_copies aaf6dde0deb8 9790f499805a : 2 revs, 0.000865 s, 0.000875 s, +0.000010 s, × 1.0116, 437 µs/rev mozilla-try x_revs_x000_added_0_copies d8d0222927b4 5bb8ce8c7450 : 2 revs, 0.000893 s, 0.000891 s, -0.000002 s, × 0.9978, 445 µs/rev mozilla-try x_revs_x_added_x_copies 092fcca11bdb 936255a0384a : 4 revs, 0.000172 s, 0.000292 s, +0.000120 s, × 1.6977, 73 µs/rev mozilla-try x_revs_x00_added_x_copies b53d2fadbdb5 017afae788ec : 2 revs, 0.001159 s, 0.003939 s, +0.002780 s, × 3.3986, 1969 µs/rev mozilla-try x_revs_x000_added_x000_copies 20408ad61ce5 6f0ee96e21ad : 1 revs, 0.031621 s, 0.033027 s, +0.001406 s, × 1.0445, 33027 µs/rev mozilla-try x_revs_x0000_added_x0000_copies effb563bb7e5 c07a39dc4e80 : 6 revs, 0.068571 s, 0.073703 s, +0.005132 s, × 1.0748, 12283 µs/rev mozilla-try x000_revs_xx00_added_0_copies 6100d773079a 04a55431795e : 1593 revs, 0.006452 s, 0.006469 s, +0.000017 s, × 1.0026, 4 µs/rev mozilla-try x000_revs_x000_added_x_copies 9f17a6fc04f9 2d37b966abed : 41 revs, 0.005443 s, 0.005278 s, -0.000165 s, × 0.9697, 128 µs/rev mozilla-try x000_revs_x000_added_x000_copies 1346fd0130e4 4c65cbdabc1f : 6657 revs, 0.063180 s, 0.064995 s, +0.001815 s, × 1.0287, 9 µs/rev mozilla-try x0000_revs_x_added_0_copies 63519bfd42ee a36a2a865d92 : 40314 revs, 0.293564 s, 0.301041 s, +0.007477 s, × 1.0255, 7 µs/rev mozilla-try x0000_revs_x_added_x_copies 9fe69ff0762d bcabf2a78927 : 38690 revs, 0.286595 s, 0.285575 s, -0.001020 s, × 0.9964, 7 µs/rev mozilla-try x0000_revs_xx000_added_x_copies 156f6e2674f2 4d0f2c178e66 : 8598 revs, 0.083256 s, 0.085597 s, +0.002341 s, × 1.0281, 9 µs/rev mozilla-try x0000_revs_xx000_added_0_copies 9eec5917337d 67118cc6dcad : 615 revs, 0.027282 s, 0.027118 s, -0.000164 s, × 0.9940, 44 µs/rev mozilla-try x0000_revs_xx000_added_x000_copies 89294cd501d9 7ccb2fc7ccb5 : 97052 revs, 1.343373 s, 2.119204 s, +0.775831 s, × 1.5775, 21 µs/rev mozilla-try x0000_revs_x0000_added_x0000_copies e928c65095ed e951f4ad123a : 52031 revs, 0.665737 s, 0.701479 s, +0.035742 s, × 1.0537, 13 µs/rev mozilla-try x00000_revs_x_added_0_copies 6a320851d377 1ebb79acd503 : 363753 revs, 5.138169 s, 4.482399 s, -0.655770 s, × 0.8724, 12 µs/rev mozilla-try x00000_revs_x00000_added_0_copies dc8a3ca7010e d16fde900c9c : 34414 revs, 0.573276 s, 0.574082 s, +0.000806 s, × 1.0014, 16 µs/rev mozilla-try x00000_revs_x_added_x_copies 5173c4b6f97c 95d83ee7242d : 362229 revs, 5.127809 s, 4.480366 s, -0.647443 s, × 0.8737, 12 µs/rev mozilla-try x00000_revs_x000_added_x_copies 9126823d0e9c ca82787bb23c : 359344 revs, 4.971136 s, 4.369070 s, -0.602066 s, × 0.8789, 12 µs/rev mozilla-try x00000_revs_x0000_added_x0000_copies 8d3fafa80d4b eb884023b810 : 192665 revs, 1.741678 s, 1.592506 s, -0.149172 s, × 0.9144, 8 µs/rev mozilla-try x00000_revs_x00000_added_x0000_copies 1b661134e2ca 1ae03d022d6d : 228985 revs, 40.314822 s, 87.824489 s, +47.509667 s, × 2.1785, 383 µs/rev mozilla-try x00000_revs_x00000_added_x000_copies 9b2a99adc05e 8e29777b48e6 : 382065 revs, 20.048029 s, 43.304637 s, +23.256608 s, × 2.1600, 113 µs/rev private : 459513 revs, 37.179470 s, 33.853687 s, -3.325783 s, × 0.9105, 73 µs/rev Differential Revision: https://phab.mercurial-scm.org/D9644

File last commit:

r47227:baa8a9c5 default
r47315:0d840b9d default
Show More
Cargo.lock
1049 lines | 46.7 KiB | text/plain | TextLexer
Yuya Nishihara
rust: update Cargo.lock to include @generated comment...
r42682 # This file is automatically @generated by Cargo.
# It is not intended for manual editing.
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 [[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "adler"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "aho-corasick"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "0.7.15"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "memchr 2.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 ]
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "hermit-abi 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-nodemap: pure Rust example...
r44870 ]
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "autocfg"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "1.0.1"
Yuya Nishihara
rust: update dependencies...
r44699 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "bitflags"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 version = "1.2.1"
Georges Racinet
rust: translated random test of missingancestors...
r41841 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
copies-rust: use immutable "OrdMap" to store copies information...
r46577 name = "bitmaps"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"typenum 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-dirstate: add rust-cpython bindings to the new parse/pack functions...
r42489 name = "byteorder"
Raphaël Gomès
rust: add logging utils...
r45027 version = "1.3.4"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Simon Sapin
rust: use the bytes-cast crate to parse persistent nodemaps...
r47119 name = "bytes-cast"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"bytes-cast-derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "bytes-cast-derive"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "cc"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "1.0.66"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 name = "cfg-if"
version = "0.1.10"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "clap"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "2.33.3"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "unicode-width 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"vec_map 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-nodemap: pure Rust example...
r44870 ]
[[package]]
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 name = "const_fn"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "cpython"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 version = "0.4.1"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
"num-traits 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "python27-sys 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
"python3-sys 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
Gregory Szorc
rust: move Cargo.lock...
r35619 [[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "crc32fast"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "1.2.1"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 ]
[[package]]
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 name = "crossbeam-channel"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "0.4.4"
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 name = "crossbeam-channel"
version = "0.5.0"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"crossbeam-utils 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "crossbeam-deque"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"crossbeam-epoch 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
"crossbeam-utils 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
name = "crossbeam-epoch"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "0.9.1"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"const_fn 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
"crossbeam-utils 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "memoffset 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
name = "crossbeam-utils"
Raphaël Gomès
rust: add logging utils...
r45027 version = "0.7.2"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 name = "crossbeam-utils"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "ctor"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "0.1.16"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 ]
[[package]]
Simon Sapin
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`...
r47164 name = "derive_more"
version = "0.99.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "difference"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 name = "either"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "1.6.1"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 name = "env_logger"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "regex 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
"termcolor 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 ]
[[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "flate2"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "1.0.19"
Yuya Nishihara
rust: update dependencies...
r44699 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"crc32fast 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "libz-sys 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "miniz_oxide 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 ]
[[package]]
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 name = "format-bytes"
Simon Sapin
rust: Use the DisplayBytes trait in config printing...
r47249 version = "0.2.0"
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Simon Sapin
rust: Use the DisplayBytes trait in config printing...
r47249 "format-bytes-macros 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 "proc-macro-hack 0.5.19 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "format-bytes-macros"
Simon Sapin
rust: Use the DisplayBytes trait in config printing...
r47249 version = "0.3.0"
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"proc-macro-hack 0.5.19 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 ]
[[package]]
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 name = "fuchsia-cprng"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "gcc"
version = "0.3.55"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "getrandom"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust: update dependencies...
r44699 "wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Yuya Nishihara
rust: update dependencies...
r44699 name = "hermit-abi"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "0.1.17"
Yuya Nishihara
rust: update dependencies...
r44699 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust: update dependencies...
r44699 ]
[[package]]
Georges Racinet
rust: pure Rust lazyancestors iterator...
r40307 name = "hg-core"
version = "0.1.0"
Georges Racinet
rust: translated random test of missingancestors...
r41841 dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
Simon Sapin
rust: use the bytes-cast crate to parse persistent nodemaps...
r47119 "bytes-cast 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "clap 2.33.3 (registry+https://github.com/rust-lang/crates.io-index)",
Simon Sapin
rust: use crossbeam-channel crate directly...
r46669 "crossbeam-channel 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
Simon Sapin
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`...
r47164 "derive_more 0.99.11 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "flate2 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)",
Simon Sapin
rust: Use the DisplayBytes trait in config printing...
r47249 "format-bytes 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
Simon Sapin
rust: Parse system and user configuration...
r47212 "home 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
copies-rust: use immutable "OrdMap" to store copies information...
r46577 "im-rc 15.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "memchr 2.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "micro-timer 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: update all dependencies...
r45090 "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_distr 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_pcg 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "rayon 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 "rust-crypto 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-utils: add util for canonical path...
r44783 "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "twox-hash 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "zstd 0.5.3+zstd.1.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust: translated random test of missingancestors...
r41841 ]
Georges Racinet
rust: pure Rust lazyancestors iterator...
r40307
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "hg-cpython"
version = "0.1.0"
dependencies = [
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "cpython 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 "hg-core 0.1.0",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 ]
[[package]]
Simon Sapin
rust: Parse system and user configuration...
r47212 name = "home"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 name = "humantime"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
[[package]]
copies-rust: use immutable "OrdMap" to store copies information...
r46577 name = "im-rc"
version = "15.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"bitmaps 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_xoshiro 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"sized-chunks 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
"typenum 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "version_check 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)",
copies-rust: use immutable "OrdMap" to store copies information...
r46577 ]
[[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "itertools"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"either 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "jobserver"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 ]
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "lazy_static"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 version = "1.4.0"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Gregory Szorc
rust: move Cargo.lock...
r35619 name = "libc"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "0.2.81"
Gregory Szorc
rust: move Cargo.lock...
r35619 source = "registry+https://github.com/rust-lang/crates.io-index"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 [[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "libz-sys"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "cc 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)",
"pkg-config 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)",
"vcpkg 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 ]
[[package]]
Raphaël Gomès
rust: add logging utils...
r45027 name = "log"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "0.4.11"
Raphaël Gomès
rust: add logging utils...
r45027 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 name = "maybe-uninit"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "memchr"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "2.3.4"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "memmap"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-nodemap: pure Rust example...
r44870 ]
[[package]]
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 name = "memoffset"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "0.6.1"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
Raphaël Gomès
hg-core: add function timing information...
r45028 name = "micro-timer"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "0.3.1"
Raphaël Gomès
rust: update micro-timer dependency...
r45089 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "micro-timer-macros 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: update micro-timer dependency...
r45089 "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "micro-timer-macros"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "0.3.1"
Raphaël Gomès
hg-core: add function timing information...
r45028 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: update micro-timer dependency...
r45089 "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 ]
[[package]]
name = "miniz_oxide"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "0.4.3"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"adler 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add function timing information...
r45028 ]
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "num-traits"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "0.2.14"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
name = "num_cpus"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "1.13.0"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "hermit-abi 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "output_vt100"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 ]
[[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "pkg-config"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "0.3.19"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Yuya Nishihara
rust: update dependencies...
r44699 name = "ppv-lite86"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "0.2.10"
Yuya Nishihara
rust: update dependencies...
r44699 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "pretty_assertions"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "ctor 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"output_vt100 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 name = "proc-macro-hack"
version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "proc-macro2"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "1.0.24"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 ]
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "python27-sys"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 version = "0.4.1"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
[[package]]
name = "python3-sys"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 version = "0.4.1"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 ]
[[package]]
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "quote"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "1.0.7"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "rand"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 version = "0.3.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "rand"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "rand"
Yuya Nishihara
rust: update dependencies...
r44699 version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust: update dependencies...
r44699 "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "rand_chacha"
Raphaël Gomès
rust: add logging utils...
r45027 version = "0.2.2"
Yuya Nishihara
rust: update dependencies...
r44699 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "ppv-lite86 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust: update dependencies...
r44699 "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "rand_core"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "rand_core"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "rand_core"
Yuya Nishihara
rust: update dependencies...
r44699 version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust: update dependencies...
r44699 ]
[[package]]
Raphaël Gomès
rust: update all dependencies...
r45090 name = "rand_distr"
version = "0.2.2"
Georges Racinet
rust: translated random test of missingancestors...
r41841 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: update all dependencies...
r45090 "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust: translated random test of missingancestors...
r41841 ]
[[package]]
Yuya Nishihara
rust: update dependencies...
r44699 name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust: update all dependencies...
r45090 name = "rand_pcg"
version = "0.2.1"
Georges Racinet
rust: translated random test of missingancestors...
r41841 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: update all dependencies...
r45090 "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust: translated random test of missingancestors...
r41841 ]
[[package]]
copies-rust: use immutable "OrdMap" to store copies information...
r46577 name = "rand_xoshiro"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 name = "rayon"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "1.5.0"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "crossbeam-deque 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "either 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "rayon-core 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
name = "rayon-core"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "1.9.0"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "crossbeam-channel 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
"crossbeam-deque 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"crossbeam-utils 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 name = "rdrand"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 name = "redox_syscall"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "0.1.57"
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "regex"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "1.4.2"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "aho-corasick 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 2.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"regex-syntax 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dependencies: update rayon...
r44618 "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
[[package]]
name = "regex-syntax"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "0.6.21"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 name = "remove_dir_all"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "0.5.3"
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 ]
[[package]]
Antoine Cezar
rhg: add rhg crate...
r45503 name = "rhg"
version = "0.1.0"
Antoine Cezar
rhg: add RootCommand using hg-core FindRoot operation to prepare `hg root`...
r45592 dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "clap 2.33.3 (registry+https://github.com/rust-lang/crates.io-index)",
Simon Sapin
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`...
r47164 "derive_more 0.99.11 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
rhg: Add debug timing...
r46101 "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
Simon Sapin
rust: Use the DisplayBytes trait in config printing...
r47249 "format-bytes 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
rhg: add RootCommand using hg-core FindRoot operation to prepare `hg root`...
r45592 "hg-core 0.1.0",
Antoine Cezar
rhg: Add debug timing...
r46101 "log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
"micro-timer 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
rhg: add RootCommand using hg-core FindRoot operation to prepare `hg root`...
r45592 ]
Antoine Cezar
rhg: add rhg crate...
r45503
[[package]]
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 name = "rust-crypto"
version = "0.2.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "rustc-serialize"
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-utils: add util for canonical path...
r44783 name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-utils: add util for canonical path...
r44783 ]
[[package]]
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 name = "scopeguard"
Raphaël Gomès
rust: add logging utils...
r45027 version = "1.1.0"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
copies-rust: use immutable "OrdMap" to store copies information...
r46577 name = "sized-chunks"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"bitmaps 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"typenum 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "syn"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "1.0.54"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 ]
[[package]]
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 name = "tempfile"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)",
"remove_dir_all 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 ]
[[package]]
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 name = "termcolor"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "1.1.2"
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 ]
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "unicode-width 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-nodemap: pure Rust example...
r44870 ]
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "thread_local"
Raphaël Gomès
rust-dependencies: update rayon...
r44618 version = "1.0.1"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
[[package]]
Raphaël Gomès
rust: update Cargo.lock...
r46131 name = "time"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: update Cargo.lock...
r46131 "wasi 0.10.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-performance: introduce FastHashMap type alias for HashMap...
r44278 name = "twox-hash"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "1.6.0"
Raphaël Gomès
rust-performance: introduce FastHashMap type alias for HashMap...
r44278 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust: update dependencies...
r44699 "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-performance: introduce FastHashMap type alias for HashMap...
r44278 ]
[[package]]
copies-rust: use immutable "OrdMap" to store copies information...
r46577 name = "typenum"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "unicode-width"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "0.1.8"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "unicode-xid"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "vcpkg"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "0.2.11"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "vec_map"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "0.8.2"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
copies-rust: use immutable "OrdMap" to store copies information...
r46577 name = "version_check"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 version = "0.9.2"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Yuya Nishihara
rust: update dependencies...
r44699 name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust: update Cargo.lock...
r46131 name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "winapi"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "0.3.9"
Georges Racinet
rust: translated random test of missingancestors...
r41841 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-utils: add util for canonical path...
r44783 name = "winapi-util"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 version = "0.1.5"
Raphaël Gomès
rust-utils: add util for canonical path...
r44783 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-utils: add util for canonical path...
r44783 ]
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 [[package]]
name = "zstd"
version = "0.5.3+zstd.1.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"zstd-safe 2.0.5+zstd.1.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "zstd-safe"
version = "2.0.5+zstd.1.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "zstd-sys 1.4.17+zstd.1.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "zstd-sys"
version = "1.4.17+zstd.1.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "cc 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"itertools 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 ]
Gregory Szorc
rust: move Cargo.lock...
r35619 [metadata]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum adler 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum aho-corasick 0.7.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "checksum atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum autocfg 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 "checksum bitmaps 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
Simon Sapin
rust: use the bytes-cast crate to parse persistent nodemaps...
r47119 "checksum bytes-cast 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3196ba300c7bc9282a4331e878496cb3e9603a898a8f1446601317163e16ca52"
"checksum bytes-cast-derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cb936af9de38476664d6b58e529aff30d482e4ce1c5e150293d00730b0d81fdb"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum cc 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)" = "4c0496836a84f8d0495758516b8621a622beb77c0fed418570e50764093ced48"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum clap 2.33.3 (registry+https://github.com/rust-lang/crates.io-index)" = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum const_fn 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd51eab21ab4fd6a3bf889e2d0958c0a6e3a61ad04260325e919e652a2a62826"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "checksum cpython 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bfaf3847ab963e40c4f6dd8d6be279bdf74007ae2413786a0dcbb28c52139a95"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum crc32fast 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum crossbeam-channel 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum crossbeam-channel 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775"
"checksum crossbeam-deque 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
"checksum crossbeam-epoch 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a1aaa739f95311c2c7887a76863f500026092fb1dce0161dab577e559ef3569d"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum crossbeam-utils 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum ctor 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "7fbaabec2c953050352311293be5c6aba8e141ba19d6811862b232d6fd020484"
Simon Sapin
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`...
r47164 "checksum derive_more 0.99.11 (registry+https://github.com/rust-lang/crates.io-index)" = "41cb0e6161ad61ed084a36ba71fbba9e3ac5aee3606fb607fe08da6acbcf3d8c"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "checksum difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum either 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 "checksum env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum flate2 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)" = "7411863d55df97a419aa64cb4d2f167103ea9d767e2c54a1868b7ac3f6b47129"
Simon Sapin
rust: Use the DisplayBytes trait in config printing...
r47249 "checksum format-bytes 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cc35f5e45d6b31053cea13078ffc6fa52fa8617aa54b7ac2011720d9c009e04f"
"checksum format-bytes-macros 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b05089e341a0460449e2210c3bf7b61597860b07f0deae58da38dbed0a4c6b6d"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
"checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum getrandom 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6"
"checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum hermit-abi 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8"
Simon Sapin
rust: Parse system and user configuration...
r47212 "checksum home 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2456aef2e6b6a9784192ae780c0f15bc57df0e918585282325e8c8ac27737654"
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 "checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 "checksum im-rc 15.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca8957e71f04a205cb162508f9326aea04676c8dfd0711220190d6b83664f3f"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum itertools 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
"checksum jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum libc 0.2.81 (registry+https://github.com/rust-lang/crates.io-index)" = "1482821306169ec4d07f6aca392a4681f66c75c9918aa49641a2595db64053cb"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum libz-sys 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "602113192b08db8f38796c4e85c39e960c145965140e918018bcde1952429655"
"checksum log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 "checksum maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum memchr 2.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "checksum memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum memoffset 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "157b4208e3059a8f9e78d559edc658e13df41410cb3ae03979c83130067fdd87"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum micro-timer 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2620153e1d903d26b72b89f0e9c48d8c4756cba941c185461dddc234980c298c"
"checksum micro-timer-macros 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e28a3473e6abd6e9aab36aaeef32ad22ae0bd34e79f376643594c2b152ec1c5d"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum miniz_oxide 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d"
"checksum num-traits 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "checksum output_vt100 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum pkg-config 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)" = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
"checksum ppv-lite86 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "checksum pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3f81e1644e1b54f5a68959a29aa86cde704219254669da328ecfdf6a1f09d427"
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 "checksum proc-macro-hack 0.5.19 (registry+https://github.com/rust-lang/crates.io-index)" = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)" = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "checksum python27-sys 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "67cb041de8615111bf224dd75667af5f25c6e032118251426fed7f1b70ce4c8c"
"checksum python3-sys 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90af11779515a1e530af60782d273b59ac79d33b0e253c071a728563957c76d4"
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 "checksum quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 "checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c"
"checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
Yuya Nishihara
rust: update dependencies...
r44699 "checksum rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
"checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
Yuya Nishihara
rust: update dependencies...
r44699 "checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
Raphaël Gomès
rust: update all dependencies...
r45090 "checksum rand_distr 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96977acbdd3a6576fb1d27391900035bf3863d4a16422973a409b488cf29ffb2"
Yuya Nishihara
rust: update dependencies...
r44699 "checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
Raphaël Gomès
rust: update all dependencies...
r45090 "checksum rand_pcg 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 "checksum rand_xoshiro 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a9fcdd2e881d02f1d9390ae47ad8e5696a9e4be7b547a1da2afbc61973217004"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum rayon 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674"
"checksum rayon-core 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum redox_syscall 0.1.57 (registry+https://github.com/rust-lang/crates.io-index)" = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum regex 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "38cf2c13ed4745de91a5eb834e11c00bcc3709e773173b2ce4c56c9fbde04b9c"
"checksum regex-syntax 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)" = "3b181ba2dcf07aaccad5448e8ead58db5b742cf85dfe035e2227f137a539a189"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum remove_dir_all 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 "checksum rust-crypto 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)" = "f76d05d3993fd5f4af9434e8e436db163a12a9d40e1a58a726f27a01dfd12a2a"
"checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda"
Raphaël Gomès
rust-utils: add util for canonical path...
r44783 "checksum same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 "checksum sized-chunks 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1ec31ceca5644fa6d444cc77548b88b67f46db6f7c71683b0f9336e671830d2f"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum static_assertions 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)" = "9a2af957a63d6bd42255c359c93d9bfdb97076bd3b820897ce55ffbfbf107f44"
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum termcolor 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
Raphaël Gomès
rust-dependencies: update rayon...
r44618 "checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
Raphaël Gomès
rust: update Cargo.lock...
r46131 "checksum time 0.1.44 (registry+https://github.com/rust-lang/crates.io-index)" = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum twox-hash 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "04f8ab788026715fa63b31960869617cba39117e520eb415b0139543e325ab59"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 "checksum typenum 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum unicode-width 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
"checksum unicode-xid 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum vcpkg 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b00bca6106a5e23f3eee943593759b7fcddb00554332e856d990c893966879fb"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum vec_map 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 "checksum version_check 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
Raphaël Gomès
rust: update Cargo.lock...
r46131 "checksum wasi 0.10.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
Yuya Nishihara
rust: update dependencies...
r44699 "checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum winapi 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
Georges Racinet
rust: translated random test of missingancestors...
r41841 "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum winapi-util 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
Georges Racinet
rust: translated random test of missingancestors...
r41841 "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 "checksum zstd 0.5.3+zstd.1.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "01b32eaf771efa709e8308605bbf9319bf485dc1503179ec0469b611937c0cd8"
"checksum zstd-safe 2.0.5+zstd.1.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "1cfb642e0d27f64729a639c52db457e0ae906e7bc6f5fe8f5c453230400f1055"
"checksum zstd-sys 1.4.17+zstd.1.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b89249644df056b522696b1bb9e7c18c87e8ffa3e2f0dc3b0155875d6498f01b"