##// END OF EJS Templates
dirstate-tree: Add tree traversal/iteration...
dirstate-tree: Add tree traversal/iteration Like Python’s, Rust’s iterators are "external" in that they are driven by a caller who calls a `next` method. This is as opposed to "internal" iterators who drive themselves and call a callback for each item. Writing an internal iterator traversing a tree is easy with recursion, but internal iterators cannot rely on the call stack in that way, they must save in an explicit object all state that they need to be preserved across two `next` calls. This algorithm uses a `Vec` as a stack that contains what would be local variables on the call stack if we could use recursion. Differential Revision: https://phab.mercurial-scm.org/D10370

File last commit:

r47620:c7c6c11f default
r47870:caa3031c default
Show More
Cargo.lock
1104 lines | 27.0 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]]
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"
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 = "3196ba300c7bc9282a4331e878496cb3e9603a898a8f1446601317163e16ca52"
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]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "cpython"
rust: bump rust-cpython version to 0.5.2...
r47620 version = "0.5.2"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
rust: bump rust-cpython version to 0.5.2...
r47620 checksum = "0f11357af68648b6a227e7e2384d439cec8595de65970f45e3f7f4b2600be472"
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]]
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]]
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102
[[package]]
name = "gcc"
version = "0.3.55"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2"
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: 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",
"lazy_static",
"log",
"memmap",
"micro-timer",
"pretty_assertions",
"rand 0.7.3",
"rand_distr",
"rand_pcg",
"rayon",
"regex",
"rust-crypto",
"same-file",
"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",
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",
"rand_core 0.5.1",
"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]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "memmap"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
"winapi",
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]]
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"
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880"
dependencies = [
"paste-impl",
"proc-macro-hack",
]
[[package]]
name = "paste-impl"
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6"
dependencies = [
"proc-macro-hack",
]
[[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 to 0.5.2...
r47620 version = "0.5.2"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
rust: bump rust-cpython version to 0.5.2...
r47620 checksum = "f485897ed7048f5032317c4e427800ef9f2053355516524d73952b8b07032054"
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 to 0.5.2...
r47620 version = "0.5.2"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
rust: bump rust-cpython version to 0.5.2...
r47620 checksum = "5b29b99c6868eb02beb3bf6ed025c8bcdf02efc149b8e80347d3e5d059a806db"
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"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 version = "0.3.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
"rand 0.4.6",
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 ]
[[package]]
name = "rand"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "fuchsia-cprng",
"libc",
"rand_core 0.3.1",
"rdrand",
"winapi",
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 ]
[[package]]
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",
"rand_core 0.5.1",
"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",
"rand_core 0.5.1",
Yuya Nishihara
rust: update dependencies...
r44699 ]
[[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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "rand_core 0.4.2",
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 ]
[[package]]
name = "rand_core"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102
[[package]]
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: Upgrade Cargo.lock to the newer format...
r47422 "rand 0.7.3",
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: Upgrade Cargo.lock to the newer format...
r47422 "rand_core 0.5.1",
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: Upgrade Cargo.lock to the newer format...
r47422 "rand_core 0.5.1",
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: Upgrade Cargo.lock to the newer format...
r47422 "rand_core 0.5.1",
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]]
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "rand_core 0.3.1",
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 ]
[[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",
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]]
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"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "f76d05d3993fd5f4af9434e8e436db163a12a9d40e1a58a726f27a01dfd12a2a"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "gcc",
"libc",
"rand 0.3.23",
"rustc-serialize",
"time",
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 ]
[[package]]
name = "rustc-serialize"
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 checksum = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102
[[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]]
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]]
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",
"rand 0.7.3",
"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",
"rand 0.7.3",
"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 ]