##// END OF EJS Templates
dirstate: Remove the flat Rust DirstateMap implementation...
dirstate: Remove the flat Rust DirstateMap implementation Before this changeset we had two Rust implementations of `DirstateMap`. This removes the "flat" DirstateMap so that the "tree" DirstateMap is always used when Rust enabled. This simplifies the code a lot, and will enable (in the next changeset) further removal of a trait abstraction. This is a performance regression when: * Rust is enabled, and * The repository uses the legacy dirstate-v1 file format, and * For `hg status`, unknown files are not listed (such as with `-mard`) The regression is about 100 milliseconds for `hg status -mard` on a semi-large repository (mozilla-central), from ~320ms to ~420ms. We deem this to be small enough to be worth it. The new dirstate-v2 is still experimental at this point, but we aim to stabilize it (though not yet enable it by default for new repositories) in Mercurial 6.0. Eventually, upgrating repositories to dirsate-v2 will eliminate this regression (and enable other performance improvements). # Background The flat DirstateMap was introduced with the first Rust implementation of the status algorithm. It works similarly to the previous Python + C one, with a single `HashMap` that associates file paths to a `DirstateEntry` (where Python has a dict). We later added the tree DirstateMap where the root of the tree contains nodes for files and directories that are directly at the root of the repository, and nodes for directories can contain child nodes representing the files and directly that *they* contain directly. The shape of this tree mirrors that of the working directory in the filesystem. This enables the status algorithm to traverse this tree in tandem with traversing the filesystem tree, which in turns enables a more efficient algorithm. Furthermore, the new dirstate-v2 file format is also based on a tree of the same shape. The tree DirstateMap can access a dirstate-v2 file without parsing it: binary data in a single large (possibly memory-mapped) bytes buffer is traversed on demand. This allows `DirstateMap` creation to take `O(1)` time. (Mutation works by creating new in-memory nodes with copy-on-write semantics, and serialization is append-mostly.) The tradeoff is that for "legacy" repositories that use the dirstate-v1 file format, parsing that file into a tree DirstateMap takes more time. Profiling shows that this time is dominated by `HashMap`. For a dirstate containing `F` files with an average `D` directory depth, the flat DirstateMap does parsing in `O(F)` number of HashMap operations but the tree DirstateMap in `O(F × D)` operations, since each node has its own HashMap containing its child nodes. This slower costs ~140ms on an old snapshot of mozilla-central, and ~80ms on an old snapshot of the Netbeans repository. The status algorithm is faster, but with `-mard` (when not listing unknown files) it is typically not faster *enough* to compensate the slower parsing. Both Rust implementations are always faster than the Python + C implementation # Benchmark results All benchmarks are run on changeset 98c0408324e6, with repositories that use the dirstate-v1 file format, on a server with 4 CPU cores and 4 CPU threads (no HyperThreading). `hg status` benchmarks show wall clock times of the entire command as the average and standard deviation of serveral runs, collected by https://github.com/sharkdp/hyperfine and reformated. Parsing benchmarks are wall clock time of the Rust function that converts a bytes buffer of the dirstate file into the `DirstateMap` data structure as used by the status algorithm. A single run each, collected by running `hg status` this environment variable: RUST_LOG=hg::dirstate::dirstate_map=trace,hg::dirstate_tree::dirstate_map=trace Benchmark 1: Rust flat DirstateMap → Rust tree DirstateMap hg status mozilla-clean 562.3 ms ± 2.0 ms → 462.5 ms ± 0.6 ms 1.22 ± 0.00 times faster mozilla-dirty 859.6 ms ± 2.2 ms → 719.5 ms ± 3.2 ms 1.19 ± 0.01 times faster mozilla-ignored 558.2 ms ± 3.0 ms → 457.9 ms ± 2.9 ms 1.22 ± 0.01 times faster mozilla-unknowns 859.4 ms ± 5.7 ms → 716.0 ms ± 4.7 ms 1.20 ± 0.01 times faster netbeans-clean 336.5 ms ± 0.9 ms → 339.5 ms ± 0.4 ms 0.99 ± 0.00 times faster netbeans-dirty 491.4 ms ± 1.6 ms → 475.1 ms ± 1.2 ms 1.03 ± 0.00 times faster netbeans-ignored 343.7 ms ± 1.0 ms → 347.8 ms ± 0.4 ms 0.99 ± 0.00 times faster netbeans-unknowns 484.3 ms ± 1.0 ms → 466.0 ms ± 1.2 ms 1.04 ± 0.00 times faster hg status -mard mozilla-clean 317.3 ms ± 0.6 ms → 422.5 ms ± 1.2 ms 0.75 ± 0.00 times faster mozilla-dirty 315.4 ms ± 0.6 ms → 417.7 ms ± 1.1 ms 0.76 ± 0.00 times faster mozilla-ignored 314.6 ms ± 0.6 ms → 417.4 ms ± 1.0 ms 0.75 ± 0.00 times faster mozilla-unknowns 312.9 ms ± 0.9 ms → 417.3 ms ± 1.6 ms 0.75 ± 0.00 times faster netbeans-clean 212.0 ms ± 0.6 ms → 283.6 ms ± 0.8 ms 0.75 ± 0.00 times faster netbeans-dirty 211.4 ms ± 1.0 ms → 283.4 ms ± 1.6 ms 0.75 ± 0.01 times faster netbeans-ignored 211.4 ms ± 0.9 ms → 283.9 ms ± 0.8 ms 0.74 ± 0.01 times faster netbeans-unknowns 211.1 ms ± 0.6 ms → 283.4 ms ± 1.0 ms 0.74 ± 0.00 times faster Parsing mozilla-clean 38.4ms → 177.6ms mozilla-dirty 38.8ms → 177.0ms mozilla-ignored 38.8ms → 178.0ms mozilla-unknowns 38.7ms → 176.9ms netbeans-clean 16.5ms → 97.3ms netbeans-dirty 16.5ms → 98.4ms netbeans-ignored 16.9ms → 97.4ms netbeans-unknowns 16.9ms → 96.3ms Benchmark 2: Python + C dirstatemap → Rust tree DirstateMap hg status mozilla-clean 1261.0 ms ± 3.6 ms → 461.1 ms ± 0.5 ms 2.73 ± 0.00 times faster mozilla-dirty 2293.4 ms ± 9.1 ms → 719.6 ms ± 3.6 ms 3.19 ± 0.01 times faster mozilla-ignored 1240.4 ms ± 2.3 ms → 457.7 ms ± 1.9 ms 2.71 ± 0.00 times faster mozilla-unknowns 2283.3 ms ± 9.0 ms → 719.7 ms ± 3.8 ms 3.17 ± 0.01 times faster netbeans-clean 879.7 ms ± 3.5 ms → 339.9 ms ± 0.5 ms 2.59 ± 0.00 times faster netbeans-dirty 1257.3 ms ± 4.7 ms → 474.6 ms ± 1.6 ms 2.65 ± 0.01 times faster netbeans-ignored 943.9 ms ± 1.9 ms → 347.3 ms ± 1.1 ms 2.72 ± 0.00 times faster netbeans-unknowns 1188.1 ms ± 5.0 ms → 465.2 ms ± 2.3 ms 2.55 ± 0.01 times faster hg status -mard mozilla-clean 903.2 ms ± 3.6 ms → 423.4 ms ± 2.2 ms 2.13 ± 0.01 times faster mozilla-dirty 884.6 ms ± 4.5 ms → 417.3 ms ± 1.4 ms 2.12 ± 0.01 times faster mozilla-ignored 881.9 ms ± 1.3 ms → 417.3 ms ± 0.8 ms 2.11 ± 0.00 times faster mozilla-unknowns 878.5 ms ± 1.9 ms → 416.4 ms ± 0.9 ms 2.11 ± 0.00 times faster netbeans-clean 434.9 ms ± 1.8 ms → 284.0 ms ± 0.8 ms 1.53 ± 0.01 times faster netbeans-dirty 434.1 ms ± 0.8 ms → 283.1 ms ± 0.8 ms 1.53 ± 0.00 times faster netbeans-ignored 431.7 ms ± 1.1 ms → 283.6 ms ± 1.8 ms 1.52 ± 0.01 times faster netbeans-unknowns 433.0 ms ± 1.3 ms → 283.5 ms ± 0.7 ms 1.53 ± 0.00 times faster Differential Revision: https://phab.mercurial-scm.org/D11516

File last commit:

r48856:008959fc default
r48882:bf8837e3 default
Show More
Cargo.lock
1080 lines | 26.4 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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "memchr",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "winapi",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "hermit-abi",
"libc",
"winapi",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
Yuya Nishihara
rust: update dependencies...
r44699
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
Georges Racinet
rust: translated random test of missingancestors...
r41841
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "typenum",
copies-rust: use immutable "OrdMap" to store copies information...
r46577 ]
[[package]]
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
"generic-array",
]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565
[[package]]
Simon Sapin
rust: use the bytes-cast crate to parse persistent nodemaps...
r47119 name = "bytes-cast"
Simon Sapin
dirstate-tree: Serialize to disk...
r47872 version = "0.2.0"
Simon Sapin
rust: use the bytes-cast crate to parse persistent nodemaps...
r47119 source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
dirstate-tree: Serialize to disk...
r47872 checksum = "0d434f9a4ecbe987e7ccfda7274b6f82ea52c9b63742565a65cb5e8ba0f2c452"
Simon Sapin
rust: use the bytes-cast crate to parse persistent nodemaps...
r47119 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "bytes-cast-derive",
Simon Sapin
rust: use the bytes-cast crate to parse persistent nodemaps...
r47119 ]
[[package]]
name = "bytes-cast-derive"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "cb936af9de38476664d6b58e529aff30d482e4ce1c5e150293d00730b0d81fdb"
Simon Sapin
rust: use the bytes-cast crate to parse persistent nodemaps...
r47119 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "proc-macro2",
"quote",
"syn",
Simon Sapin
rust: use the bytes-cast crate to parse persistent nodemaps...
r47119 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "4c0496836a84f8d0495758516b8621a622beb77c0fed418570e50764093ced48"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "jobserver",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797
[[package]]
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 name = "chrono"
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
"num-integer",
"num-traits",
"time",
"winapi",
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "ansi_term",
"atty",
"bitflags",
"strsim",
"textwrap",
"unicode-width",
"vec_map",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "cd51eab21ab4fd6a3bf889e2d0958c0a6e3a61ad04260325e919e652a2a62826"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797
[[package]]
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 name = "cpufeatures"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed00c67cb5d0a7d64a44f6ad2668db7e7530311dd53ea79bcd4fb022c64911c8"
dependencies = [
"libc",
]
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "cpython"
rust: bump rust-cpython version for 0.6.0...
r48309 version = "0.6.0"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
rust: bump rust-cpython version for 0.6.0...
r48309 checksum = "8094679a4e9bfc8035572162624bc800eda35b5f9eff2537b9cd9aacc3d9782e"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
"num-traits",
rust: bump rust-cpython version to 0.5.2...
r47620 "paste",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "python27-sys",
"python3-sys",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "cfg-if 1.0.0",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87"
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "crossbeam-utils 0.7.2",
"maybe-uninit",
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "cfg-if 1.0.0",
"crossbeam-utils 0.8.1",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 ]
[[package]]
name = "crossbeam-deque"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "cfg-if 1.0.0",
"crossbeam-epoch",
"crossbeam-utils 0.8.1",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "a1aaa739f95311c2c7887a76863f500026092fb1dce0161dab577e559ef3569d"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "cfg-if 1.0.0",
"const_fn",
"crossbeam-utils 0.8.1",
"lazy_static",
"memoffset",
"scopeguard",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "autocfg",
"cfg-if 0.1.10",
"lazy_static",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "autocfg",
"cfg-if 1.0.0",
"lazy_static",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "7fbaabec2c953050352311293be5c6aba8e141ba19d6811862b232d6fd020484"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "quote",
"syn",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "41cb0e6161ad61ed084a36ba71fbba9e3ac5aee3606fb607fe08da6acbcf3d8c"
Simon Sapin
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`...
r47164 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "proc-macro2",
"quote",
"syn",
Simon Sapin
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`...
r47164 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738
[[package]]
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
"generic-array",
]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "atty",
"humantime",
"log",
"regex",
"termcolor",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "7411863d55df97a419aa64cb4d2f167103ea9d767e2c54a1868b7ac3f6b47129"
Yuya Nishihara
rust: update dependencies...
r44699 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "cfg-if 1.0.0",
"crc32fast",
"libc",
"libz-sys",
"miniz_oxide",
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
rhg: Align with Python on some more error messages...
r47469 version = "0.2.2"
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rhg: Align with Python on some more error messages...
r47469 checksum = "1c4e89040c7fd7b4e6ba2820ac705a45def8a0c098ec78d170ae88f1ef1d5762"
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "format-bytes-macros",
"proc-macro-hack",
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "b05089e341a0460449e2210c3bf7b61597860b07f0deae58da38dbed0a4c6b6d"
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "proc-macro-hack",
"proc-macro2",
"quote",
"syn",
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 ]
[[package]]
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 name = "generic-array"
version = "0.14.4"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
dependencies = [
"typenum",
"version_check",
]
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "cfg-if 0.1.10",
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
Yuya Nishihara
rust: update dependencies...
r44699 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8"
Yuya Nishihara
rust: update dependencies...
r44699 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
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 = [
Simon Sapin
rust: Align DirstateEntry internals with Python/C DirstateItem...
r48856 "bitflags",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "byteorder",
"bytes-cast",
"clap",
"crossbeam-channel 0.4.4",
"derive_more",
"flate2",
"format-bytes",
"home",
"im-rc",
Simon Sapin
dirstate-tree: Add the new `status()` algorithm...
r47883 "itertools",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "lazy_static",
"log",
Simon Sapin
rust: Switch to the memmap2-rs crate...
r48767 "memmap2",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "micro-timer",
"pretty_assertions",
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 "rand",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "rand_distr",
"rand_pcg",
"rayon",
"regex",
"same-file",
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 "sha-1",
Simon Sapin
rust: Make OwningDirstateMap generic and move it into hg-core...
r48766 "stable_deref_trait",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "tempfile",
"twox-hash",
"zstd",
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 = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "cpython",
"crossbeam-channel 0.4.4",
"env_logger",
"hg-core",
"libc",
"log",
Simon Sapin
rust: Make OwningDirstateMap generic and move it into hg-core...
r48766 "stable_deref_trait",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "2456aef2e6b6a9784192ae780c0f15bc57df0e918585282325e8c8ac27737654"
Simon Sapin
rust: Parse system and user configuration...
r47212 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "winapi",
Simon Sapin
rust: Parse system and user configuration...
r47212 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "quick-error",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "3ca8957e71f04a205cb162508f9326aea04676c8dfd0711220190d6b83664f3f"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "bitmaps",
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 "rand_core",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "rand_xoshiro",
"sized-chunks",
"typenum",
"version_check",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "either",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 ]
[[package]]
name = "jobserver"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "1482821306169ec4d07f6aca392a4681f66c75c9918aa49641a2595db64053cb"
Gregory Szorc
rust: move Cargo.lock...
r35619
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "602113192b08db8f38796c4e85c39e960c145965140e918018bcde1952429655"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "cc",
"pkg-config",
"vcpkg",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
Raphaël Gomès
rust: add logging utils...
r45027 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "cfg-if 0.1.10",
Raphaël Gomès
rust: add logging utils...
r45027 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565
[[package]]
Simon Sapin
rust: Switch to the memmap2-rs crate...
r48767 name = "memmap2"
Simon Sapin
rust: Update the memmap2 crate to version 0.4.0...
r48795 version = "0.4.0"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Update the memmap2 crate to version 0.4.0...
r48795 checksum = "de5d3112c080d58ce560081baeaab7e1e864ca21795ddbf533d5b1842bb1ecf8"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
Simon Sapin
rust: Update the memmap2 crate to version 0.4.0...
r48795 "stable_deref_trait",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "157b4208e3059a8f9e78d559edc658e13df41410cb3ae03979c83130067fdd87"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "autocfg",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "2620153e1d903d26b72b89f0e9c48d8c4756cba941c185461dddc234980c298c"
Raphaël Gomès
rust: update micro-timer dependency...
r45089 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "micro-timer-macros",
"scopeguard",
Raphaël Gomès
rust: update micro-timer dependency...
r45089 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "e28a3473e6abd6e9aab36aaeef32ad22ae0bd34e79f376643594c2b152ec1c5d"
Raphaël Gomès
hg-core: add function timing information...
r45028 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "proc-macro2",
"quote",
"scopeguard",
"syn",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "adler",
"autocfg",
Raphaël Gomès
hg-core: add function timing information...
r45028 ]
[[package]]
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 name = "num-integer"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "autocfg",
"num-traits",
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "autocfg",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "hermit-abi",
"libc",
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]]
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "winapi",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 ]
[[package]]
rust: bump rust-cpython version to 0.5.2...
r47620 name = "paste"
rust: bump rust-cpython version for 0.6.0...
r48309 version = "1.0.5"
rust: bump rust-cpython version to 0.5.2...
r47620 source = "registry+https://github.com/rust-lang/crates.io-index"
rust: bump rust-cpython version for 0.6.0...
r48309 checksum = "acbf547ad0c65e31259204bd90935776d1c693cec2f4ff7abb7a1bbbd40dfe58"
rust: bump rust-cpython version to 0.5.2...
r47620
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
Yuya Nishihara
rust: update dependencies...
r44699
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "3f81e1644e1b54f5a68959a29aa86cde704219254669da328ecfdf6a1f09d427"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "ansi_term",
"ctor",
"difference",
"output_vt100",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "unicode-xid",
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"
rust: bump rust-cpython version for 0.6.0...
r48309 version = "0.6.0"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
rust: bump rust-cpython version for 0.6.0...
r48309 checksum = "5826ddbc5366eb0b0492040fdc25bf50bb49092c192bd45e80fb7a24dc6832ab"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
"regex",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
[[package]]
name = "python3-sys"
rust: bump rust-cpython version for 0.6.0...
r48309 version = "0.6.0"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
rust: bump rust-cpython version for 0.6.0...
r48309 checksum = "b78af21b29594951a47fc3dac9b9eff0a3f077dec2f780ee943ae16a668f3b6a"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
"regex",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "proc-macro2",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "rand"
Yuya Nishihara
rust: update dependencies...
r44699 version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
Yuya Nishihara
rust: update dependencies...
r44699 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "getrandom",
"libc",
"rand_chacha",
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 "rand_core",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "rand_hc",
Yuya Nishihara
rust: update dependencies...
r44699 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
Yuya Nishihara
rust: update dependencies...
r44699 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "ppv-lite86",
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 "rand_core",
Yuya Nishihara
rust: update dependencies...
r44699 ]
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "rand_core"
Yuya Nishihara
rust: update dependencies...
r44699 version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
Yuya Nishihara
rust: update dependencies...
r44699 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "getrandom",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "96977acbdd3a6576fb1d27391900035bf3863d4a16422973a409b488cf29ffb2"
Georges Racinet
rust: translated random test of missingancestors...
r41841 dependencies = [
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 "rand",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
Yuya Nishihara
rust: update dependencies...
r44699 dependencies = [
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 "rand_core",
Yuya Nishihara
rust: update dependencies...
r44699 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
Georges Racinet
rust: translated random test of missingancestors...
r41841 dependencies = [
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 "rand_core",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "a9fcdd2e881d02f1d9390ae47ad8e5696a9e4be7b547a1da2afbc61973217004"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 dependencies = [
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 "rand_core",
copies-rust: use immutable "OrdMap" to store copies information...
r46577 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "autocfg",
"crossbeam-deque",
"either",
"rayon-core",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "crossbeam-channel 0.5.0",
"crossbeam-deque",
"crossbeam-utils 0.8.1",
"lazy_static",
"num_cpus",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "38cf2c13ed4745de91a5eb834e11c00bcc3709e773173b2ce4c56c9fbde04b9c"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "aho-corasick",
"memchr",
"regex-syntax",
"thread_local",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "3b181ba2dcf07aaccad5448e8ead58db5b742cf85dfe035e2227f137a539a189"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "winapi",
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 = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "chrono",
"clap",
"derive_more",
"env_logger",
"format-bytes",
"hg-core",
Pulkit Goyal
rhg: read [paths] for `--repository` value...
r48196 "home",
Simon Sapin
rhg: Fall back to Python on --repository with an URL...
r47463 "lazy_static",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "log",
"micro-timer",
Simon Sapin
rhg: Fall back to Python on --repository with an URL...
r47463 "regex",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "users",
Antoine Cezar
rhg: add RootCommand using hg-core FindRoot operation to prepare `hg root`...
r45592 ]
Antoine Cezar
rhg: add rhg crate...
r45503
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
Raphaël Gomès
rust-utils: add util for canonical path...
r44783 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "winapi-util",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565
[[package]]
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 name = "sha-1"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c4cfa741c5832d0ef7fab46cabed29c2aae926db0b11bb2069edd8db5e64e16"
dependencies = [
"block-buffer",
"cfg-if 1.0.0",
"cpufeatures",
"digest",
"opaque-debug",
]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "1ec31ceca5644fa6d444cc77548b88b67f46db6f7c71683b0f9336e671830d2f"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "bitmaps",
"typenum",
copies-rust: use immutable "OrdMap" to store copies information...
r46577 ]
[[package]]
Simon Sapin
rust: Make OwningDirstateMap generic and move it into hg-core...
r48766 name = "stable_deref_trait"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
Georges Racinet
rust-nodemap: pure Rust example...
r44870
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "9a2af957a63d6bd42255c359c93d9bfdb97076bd3b820897ce55ffbfbf107f44"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "proc-macro2",
"quote",
"unicode-xid",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "cfg-if 0.1.10",
"libc",
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 "rand",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "redox_syscall",
"remove_dir_all",
"winapi",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
Raphaël Gomès
rust-cpython: switch logging facade from `simple_logger` to `env_logger`...
r46090 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "winapi-util",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "unicode-width",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "lazy_static",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
Raphaël Gomès
rust: update Cargo.lock...
r46131 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi",
Raphaël Gomès
rust: update Cargo.lock...
r46131 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "04f8ab788026715fa63b31960869617cba39117e520eb415b0139543e325ab59"
Raphaël Gomès
rust-performance: introduce FastHashMap type alias for HashMap...
r44278 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "cfg-if 0.1.10",
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 "rand",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "static_assertions",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
copies-rust: use immutable "OrdMap" to store copies information...
r46577
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
Georges Racinet
rust-nodemap: pure Rust example...
r44870
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097
[[package]]
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 name = "users"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "24cc0f6d6f267b73e5a2cadf007ba8f9bc39c6a6f9666f8cf25ea809a153b032"
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
"log",
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 ]
[[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "b00bca6106a5e23f3eee943593759b7fcddb00554332e856d990c893966879fb"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
Georges Racinet
rust-nodemap: pure Rust example...
r44870
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
copies-rust: use immutable "OrdMap" to store copies information...
r46577
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
Yuya Nishihara
rust: update dependencies...
r44699
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
Raphaël Gomès
rust: update Cargo.lock...
r46131
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
Georges Racinet
rust: translated random test of missingancestors...
r41841 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
Georges Racinet
rust: translated random test of missingancestors...
r41841 ]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
Georges Racinet
rust: translated random test of missingancestors...
r41841
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
Raphaël Gomès
rust-utils: add util for canonical path...
r44783 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "winapi",
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
Georges Racinet
rust: translated random test of missingancestors...
r41841
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "01b32eaf771efa709e8308605bbf9319bf485dc1503179ec0469b611937c0cd8"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "zstd-safe",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 ]
[[package]]
name = "zstd-safe"
version = "2.0.5+zstd.1.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "1cfb642e0d27f64729a639c52db457e0ae906e7bc6f5fe8f5c453230400f1055"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
"zstd-sys",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 ]
[[package]]
name = "zstd-sys"
version = "1.4.17+zstd.1.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "b89249644df056b522696b1bb9e7c18c87e8ffa3e2f0dc3b0155875d6498f01b"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "cc",
"glob",
"itertools",
"libc",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 ]