##// END OF EJS Templates
hgweb: encode WSGI environment using the ISO-8859-1 codec...
hgweb: encode WSGI environment using the ISO-8859-1 codec The WSGI specification (PEP 3333) specifies that on Python 3 all strings passed by the server must be of type str with code points encodable using the ISO 8859-1 codec. For some reason, I introduced a bug in 2632c1ed8f34 by applying the reverse change. Maybe I got confused because PEP 3333 says that arbitrary operating system environment variables may be contained in the WSGI environment and therefore we need to handle the WSGI environment variables like we would handle operating system environment variables. The bug mentioned in the previous paragraph and fixed by this changeset manifested e.g. in the path of the URL being encoded in the wrong way. Browsers encode non-ASCII bytes with the percent-encoding. WSGI servers will decode the percent-encoded bytes and pass them to the application as strings where each byte is mapped to the corresponding code point with the same ordinal (i.e. it is decoded using the ISO-8859-1 codec). Mercurial uses the bytes type for these strings (which makes much more sense), so we need to encode it again using the ISO-8859-1 codec. If we use another codec, it can result in nonsense.

File last commit:

r51656:f8412da8 default
r51713:9ed281bb stable
Show More
Cargo.lock
1435 lines | 35.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.
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 version = 3
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 [[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "adler"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "1.0.2"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097
[[package]]
Simon Sapin
dirstate-tree: optimize HashMap lookups with raw_entry_mut...
r49805 name = "ahash"
Raphaël Gomès
hg-core: upgrade all remaining dependencies...
r50532 version = "0.8.2"
Simon Sapin
dirstate-tree: optimize HashMap lookups with raw_entry_mut...
r49805 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade all remaining dependencies...
r50532 checksum = "bf6ccdb167abbf410dcb915cabd428929d7f6a04980b54a11f26a39f1c7f7107"
dependencies = [
"cfg-if",
"once_cell",
"version_check",
]
Simon Sapin
dirstate-tree: optimize HashMap lookups with raw_entry_mut...
r49805
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "aho-corasick"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.7.19"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
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
hg-core: upgrade `clap` dependency...
r50531 name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
[[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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "1.1.0"
Yuya Nishihara
rust: update dependencies...
r44699 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
Yuya Nishihara
rust: update dependencies...
r44699
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "bitflags"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 version = "1.3.2"
Georges Racinet
rust: translated random test of missingancestors...
r41841 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
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-hg-core: upgrade dependencies...
r49808 name = "block-buffer"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.10.3"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 dependencies = [
"generic-array",
]
[[package]]
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 name = "bumpalo"
version = "3.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
[[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-hg-core: upgrade dependencies...
r49808 version = "1.4.3"
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"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
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"
Raphaël Gomès
rust-clippy: upgrade `bytes-cast` dependency...
r50830 version = "0.3.0"
Simon Sapin
rust: use the bytes-cast crate to parse persistent nodemaps...
r47119 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
rust-clippy: upgrade `bytes-cast` dependency...
r50830 checksum = "a20de93b91d7703ca0e39e12930e310acec5ff4d715f4166e0ab026babb352e8"
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"
Raphaël Gomès
rust-clippy: upgrade `bytes-cast` dependency...
r50830 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"
Raphaël Gomès
rust-clippy: upgrade `bytes-cast` dependency...
r50830 checksum = "7470a6fcce58cde3d62cce758bf71007978b75247e6becd9255c9b884bcb4f71"
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: upgrade `clap` dependency...
r50531 version = "1.0.76"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f"
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"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.4.23"
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "iana-time-zone",
"js-sys",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "num-integer",
"num-traits",
"time",
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "wasm-bindgen",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "winapi",
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 ]
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "clap"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "4.0.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60494cedb60cb47462c0ff7be53de32c0e42a6fc2c772184554fa12bd9489c03"
dependencies = [
"atty",
"bitflags",
"clap_derive",
"clap_lex",
"once_cell",
Raphaël Gomès
rhg: upgrade `clap` dependency...
r50534 "strsim",
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "termcolor",
]
[[package]]
name = "clap_derive"
version = "4.0.21"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014"
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
dependencies = [
"os_str_bytes",
]
[[package]]
name = "codespan-reporting"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
dependencies = [
"termcolor",
"unicode-width",
]
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797
[[package]]
Raphaël Gomès
rhg: upgrade dependencies...
r49807 name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 name = "core-foundation-sys"
version = "0.8.3"
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171
[[package]]
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 name = "cpufeatures"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.2.5"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 dependencies = [
"libc",
]
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "cpython"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.7.1"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "3052106c29da7390237bc2310c1928335733b286287754ea85e6093d2495280e"
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 "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: upgrade `clap` dependency...
r50531 version = "1.3.2"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "cfg-if",
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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.5.6"
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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "cfg-if",
Mads Kiilerich
rust: bump to memmap2 0.5.3, micro-timer 0.4.0, and crossbeam-channel 0.5.0...
r50312 "crossbeam-utils",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 ]
[[package]]
name = "crossbeam-deque"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.8.2"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "cfg-if",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "crossbeam-epoch",
Mads Kiilerich
rust: bump to memmap2 0.5.3, micro-timer 0.4.0, and crossbeam-channel 0.5.0...
r50312 "crossbeam-utils",
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: upgrade `clap` dependency...
r50531 version = "0.9.11"
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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "f916dfc5d356b0ed9dae65f1db9fc9770aa2851d2662b988ccf4fe3516e86348"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "autocfg",
"cfg-if",
Mads Kiilerich
rust: bump to memmap2 0.5.3, micro-timer 0.4.0, and crossbeam-channel 0.5.0...
r50312 "crossbeam-utils",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "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
hg-core: upgrade `clap` dependency...
r50531 version = "0.8.12"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac"
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "cfg-if",
Raphaël Gomès
hg-core: add format-bytes dependency...
r46797 ]
[[package]]
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 name = "crypto-common"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.1.6"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 dependencies = [
"generic-array",
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "typenum",
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 ]
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "ctor"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
dependencies = [
"quote",
"syn",
]
[[package]]
name = "cxx"
version = "1.0.81"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97abf9f0eca9e52b7f81b945524e76710e6cb2366aead23b7d4fbf72e281f888"
dependencies = [
"cc",
"cxxbridge-flags",
"cxxbridge-macro",
"link-cplusplus",
]
[[package]]
name = "cxx-build"
version = "1.0.81"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "7cc32cc5fea1d894b77d269ddb9f192110069a8a9c1f1d441195fba90553dea3"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "cc",
"codespan-reporting",
"once_cell",
"proc-macro2",
"quote",
"scratch",
"syn",
]
[[package]]
name = "cxxbridge-flags"
version = "1.0.81"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ca220e4794c934dc6b1207c3b42856ad4c302f2df1712e9f8d2eec5afaacf1f"
[[package]]
name = "cxxbridge-macro"
version = "1.0.81"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b846f081361125bfc8dc9d3940c84e1fd83ba54bbca7b17cd29483c828be0704"
dependencies = [
"proc-macro2",
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"
Raphaël Gomès
rhg: upgrade dependencies...
r49807 version = "0.99.17"
Simon Sapin
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`...
r47164 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
rhg: upgrade dependencies...
r49807 checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
Simon Sapin
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`...
r47164 dependencies = [
Raphaël Gomès
rhg: upgrade dependencies...
r49807 "convert_case",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "proc-macro2",
"quote",
Raphaël Gomès
rhg: upgrade dependencies...
r49807 "rustc_version",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "syn",
Simon Sapin
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`...
r47164 ]
[[package]]
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 name = "diff"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.1.13"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
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-hg-core: upgrade dependencies...
r49808 name = "digest"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.10.5"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "block-buffer 0.10.3",
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 "crypto-common",
]
[[package]]
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 name = "either"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "1.8.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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.9.3"
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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7"
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]]
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 name = "fastrand"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "1.8.0"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 dependencies = [
"instant",
]
[[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "flate2"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "1.0.24"
Yuya Nishihara
rust: update dependencies...
r44699 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
Yuya Nishihara
rust: update dependencies...
r44699 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "crc32fast",
"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
rust: Upgrade to format-bytes 0.3...
r49323 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 to format-bytes 0.3...
r49323 checksum = "48942366ef93975da38e175ac9e10068c6fc08ca9e85930d4f098f4d5b14c2fd"
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",
Raphaël Gomès
rhg: use `format_bytes!` for error messages...
r46598 ]
[[package]]
name = "format-bytes-macros"
Simon Sapin
rust: Upgrade to format-bytes 0.3...
r49323 version = "0.4.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 to format-bytes 0.3...
r49323 checksum = "203aadebefcc73d12038296c228eabf830f99cba991b0032adf20e9fa6ce7e4f"
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-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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.14.6"
Antoine Cezar
hg-core: check data integrity in `Revlog`...
r46102 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.1.16"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "cfg-if",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
"wasi 0.9.0+wasi-snapshot-preview1",
Yuya Nishihara
rust: update dependencies...
r44699 ]
[[package]]
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 name = "getrandom"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.2.8"
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "cfg-if",
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 "libc",
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "wasi 0.11.0+wasi-snapshot-preview1",
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 ]
[[package]]
Simon Sapin
dirstate-tree: optimize HashMap lookups with raw_entry_mut...
r49805 name = "hashbrown"
Raphaël Gomès
hg-core: upgrade all remaining dependencies...
r50532 version = "0.13.1"
Simon Sapin
dirstate-tree: optimize HashMap lookups with raw_entry_mut...
r49805 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade all remaining dependencies...
r50532 checksum = "33ff8ae62cd3a9102e5637afc8452c55acf3844001bd5374e0b0bd7b6616c038"
Simon Sapin
dirstate-tree: optimize HashMap lookups with raw_entry_mut...
r49805 dependencies = [
"ahash",
"rayon",
]
[[package]]
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
[[package]]
Yuya Nishihara
rust: update dependencies...
r44699 name = "hermit-abi"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.1.19"
Yuya Nishihara
rust: update dependencies...
r44699 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
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]]
pacien
rust: add vcsgraph crate as dependency...
r49348 name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[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",
Raphaël Gomès
rhg: upgrade `clap` dependency...
r50534 "clap",
Mads Kiilerich
rust: bump to memmap2 0.5.3, micro-timer 0.4.0, and crossbeam-channel 0.5.0...
r50312 "crossbeam-channel",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "derive_more",
"flate2",
"format-bytes",
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 "hashbrown",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "home",
"im-rc",
Raphaël Gomès
hg-core: upgrade `zstd` dependency...
r50530 "itertools",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "lazy_static",
Simon Sapin
dirstate-v2: Replace the 32-bit `mode` field with two bits...
r49009 "libc",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "log",
Raphaël Gomès
rust: use `logging_timer` instead of `micro_timer`...
r50808 "logging_timer",
Simon Sapin
rust: Switch to the memmap2-rs crate...
r48767 "memmap2",
Arseniy Alekseyev
dirstate-v2: skip evaluation of hgignore regex on cached directories...
r50415 "once_cell",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "pretty_assertions",
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 "rand 0.8.5",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "rand_distr",
"rand_pcg",
"rayon",
"regex",
"same-file",
Raphaël Gomès
rust-hg-core: move from `ouroboros` to `self_cell`...
r51575 "self_cell",
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 "sha-1 0.10.0",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "tempfile",
Raphaël Gomès
rust: create wrapper struct to reduce `regex` contention issues...
r50476 "thread_local",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "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",
Mads Kiilerich
rust: bump to memmap2 0.5.3, micro-timer 0.4.0, and crossbeam-channel 0.5.0...
r50312 "crossbeam-channel",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "env_logger",
"hg-core",
"libc",
"log",
Simon Sapin
rust: Make OwningDirstateMap generic and move it into hg-core...
r48766 "stable_deref_trait",
pacien
rust: add vcsgraph crate as dependency...
r49348 "vcsgraph",
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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.5.4"
Simon Sapin
rust: Parse system and user configuration...
r47212 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "747309b4b440c06d57b0b25f2aee03ee9b5e5397d288c60e21fc709bb98a7408"
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"
Raphaël Gomès
rhg: upgrade dependencies...
r49807 version = "2.1.0"
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"
Raphaël Gomès
rhg: upgrade dependencies...
r49807 checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001
[[package]]
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 name = "iana-time-zone"
version = "0.1.53"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
"winapi",
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
dependencies = [
"cxx",
"cxx-build",
]
[[package]]
copies-rust: use immutable "OrdMap" to store copies information...
r46577 name = "im-rc"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "15.1.0"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "af1955a75fa080c677d3972822ec4bad316169ab1cfc6c257a942c2265dbe5fe"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 dependencies = [
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "bitmaps",
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "rand_core 0.6.4",
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]]
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 name = "instant"
version = "0.1.12"
Raphaël Gomès
rhg: upgrade dependencies...
r49807 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
Raphaël Gomès
rhg: upgrade dependencies...
r49807 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "cfg-if",
Raphaël Gomès
rhg: upgrade dependencies...
r49807 ]
[[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "itertools"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.10.5"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 dependencies = [
"either",
]
[[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "jobserver"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.1.25"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b"
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]]
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 name = "js-sys"
version = "0.3.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
dependencies = [
"wasm-bindgen",
]
[[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: upgrade `clap` dependency...
r50531 version = "0.2.137"
Gregory Szorc
rust: move Cargo.lock...
r35619 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
Gregory Szorc
rust: move Cargo.lock...
r35619
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 [[package]]
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 name = "libm"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.2.6"
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403
[[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "libz-sys"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "1.1.8"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
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
hg-core: upgrade `clap` dependency...
r50531 name = "link-cplusplus"
version = "1.0.7"
Raphaël Gomès
rust: add logging utils...
r45027 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369"
Raphaël Gomès
rust: add logging utils...
r45027 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "cc",
]
[[package]]
name = "log"
version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
"cfg-if",
Raphaël Gomès
rust: add logging utils...
r45027 ]
[[package]]
Raphaël Gomès
rust: use `logging_timer` instead of `micro_timer`...
r50808 name = "logging_timer"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64e96f261d684b7089aa576bb74e823241dccd994b27d30fabf1dcb3af284fe9"
dependencies = [
"log",
"logging_timer_proc_macros",
]
[[package]]
name = "logging_timer_proc_macros"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10a9062912d7952c5588cc474795e0b9ee008e7e6781127945b85413d4b99d81"
dependencies = [
"log",
"proc-macro2",
"quote",
"syn",
]
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "memchr"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "2.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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.5.8"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "4b182332558b18d807c4ce1ca8ca983b34c3ee32765e47b3f0f69b90355cc1dc"
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: upgrade `clap` dependency...
r50531 version = "0.6.5"
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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
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]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "miniz_oxide"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.5.4"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
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",
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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.1.45"
Simon Sapin
rhg: Add support for the blackbox extension...
r47343 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
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: upgrade `clap` dependency...
r50531 version = "0.2.15"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
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",
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 "libm",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
name = "num_cpus"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "1.14.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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5"
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]]
Arseniy Alekseyev
dirstate-v2: skip evaluation of hgignore regex on cached directories...
r50415 name = "once_cell"
Raphaël Gomès
hg-core: upgrade all remaining dependencies...
r50532 version = "1.16.0"
Arseniy Alekseyev
dirstate-v2: skip evaluation of hgignore regex on cached directories...
r50415 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade all remaining dependencies...
r50532 checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
Arseniy Alekseyev
dirstate-v2: skip evaluation of hgignore regex on cached directories...
r50415
[[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
hg-core: upgrade `clap` dependency...
r50531 name = "os_str_bytes"
version = "6.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b5bf27447411e9ee3ff51186bf7a08e16c341efdde93f4d823e8844429bed7e"
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "output_vt100"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.1.3"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66"
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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "1.0.9"
rust: bump rust-cpython version to 0.5.2...
r47620 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
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: upgrade `clap` dependency...
r50531 version = "0.3.26"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
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: upgrade `clap` dependency...
r50531 version = "0.2.17"
Yuya Nishihara
rust: update dependencies...
r44699 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
Yuya Nishihara
rust: update dependencies...
r44699
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "pretty_assertions"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "1.3.0"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755"
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 "ctor",
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 "diff",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "output_vt100",
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "yansi",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 ]
[[package]]
Raphaël Gomès
rust: fix unsound `OwningDirstateMap`...
r49864 name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "proc-macro2"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "1.0.47"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "unicode-ident",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 ]
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "python3-sys"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.7.1"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "49f8b50d72fb3015735aa403eebf19bbd72c093bfeeae24ee798be5f2f1aab52"
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]]
name = "quote"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "1.0.21"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
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 = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "getrandom 0.1.16",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 "rand_chacha 0.2.2",
"rand_core 0.5.1",
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 "rand_hc",
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 ]
[[package]]
name = "rand"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 version = "0.8.5"
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 dependencies = [
"libc",
"rand_chacha 0.3.1",
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "rand_core 0.6.4",
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",
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 "rand_core 0.5.1",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "rand_core 0.6.4",
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 = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "getrandom 0.1.16",
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 ]
[[package]]
name = "rand_core"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.6.4"
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "getrandom 0.2.8",
Yuya Nishihara
rust: update dependencies...
r44699 ]
[[package]]
Raphaël Gomès
rust: update all dependencies...
r45090 name = "rand_distr"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 version = "0.4.3"
Georges Racinet
rust: translated random test of missingancestors...
r41841 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
Georges Racinet
rust: translated random test of missingancestors...
r41841 dependencies = [
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 "num-traits",
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 "rand 0.8.5",
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 = [
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 "rand_core 0.5.1",
]
[[package]]
Raphaël Gomès
rust: update all dependencies...
r45090 name = "rand_pcg"
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 version = "0.3.1"
Georges Racinet
rust: translated random test of missingancestors...
r41841 source = "registry+https://github.com/rust-lang/crates.io-index"
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e"
Georges Racinet
rust: translated random test of missingancestors...
r41841 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "rand_core 0.6.4",
Georges Racinet
rust: translated random test of missingancestors...
r41841 ]
[[package]]
copies-rust: use immutable "OrdMap" to store copies information...
r46577 name = "rand_xoshiro"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.6.0"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "rand_core 0.6.4",
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
rust: upgrade `rayon` dependency...
r51221 version = "1.7.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"
Raphaël Gomès
rust: upgrade `rayon` dependency...
r51221 checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
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 "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
rust: upgrade `rayon` dependency...
r51221 version = "1.11.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"
Raphaël Gomès
rust: upgrade `rayon` dependency...
r51221 checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 dependencies = [
Mads Kiilerich
rust: bump to memmap2 0.5.3, micro-timer 0.4.0, and crossbeam-channel 0.5.0...
r50312 "crossbeam-channel",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "crossbeam-deque",
Mads Kiilerich
rust: bump to memmap2 0.5.3, micro-timer 0.4.0, and crossbeam-channel 0.5.0...
r50312 "crossbeam-utils",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.2.16"
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 dependencies = [
"bitflags",
]
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: upgrade `clap` dependency...
r50531 version = "1.7.0"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
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",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
[[package]]
name = "regex-syntax"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.6.28"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
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
rhg: Add support for colored output...
r49584 "atty",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "chrono",
Raphaël Gomès
rhg: upgrade `clap` dependency...
r50534 "clap",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "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",
Raphaël Gomès
rust: use `logging_timer` instead of `micro_timer`...
r50808 "logging_timer",
Arseniy Alekseyev
rhg: parallellize computation of [unsure_is_modified]...
r50412 "rayon",
Simon Sapin
rhg: Fall back to Python on --repository with an URL...
r47463 "regex",
Raphaël Gomès
rhg: use `Command::exec` instead of `Command::status`...
r50043 "which",
Raphaël Gomès
rust-dependencies: switch from `users` to `whoami`...
r51576 "whoami",
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
rhg: upgrade dependencies...
r49807 name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
[[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]]
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 name = "scratch"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898"
[[package]]
Raphaël Gomès
rust-hg-core: move from `ouroboros` to `self_cell`...
r51575 name = "self_cell"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a3926e239738d36060909ffe6f511502f92149a45a1fade7fe031cb2d33e88b"
[[package]]
Raphaël Gomès
rhg: upgrade dependencies...
r49807 name = "semver"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "1.0.14"
Raphaël Gomès
rhg: upgrade dependencies...
r49807 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
Raphaël Gomès
rhg: upgrade dependencies...
r49807
[[package]]
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 name = "sha-1"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.9.8"
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 dependencies = [
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 "block-buffer 0.9.0",
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "cfg-if",
"cpufeatures",
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 "digest 0.9.0",
Simon Sapin
rust: Use a maintained crate for SHA-1 hashing...
r48171 "opaque-debug",
]
[[package]]
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 name = "sha-1"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "cfg-if",
"cpufeatures",
"digest 0.10.5",
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 ]
[[package]]
copies-rust: use immutable "OrdMap" to store copies information...
r46577 name = "sized-chunks"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.6.5"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e"
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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "syn"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "1.0.103"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d"
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",
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "unicode-ident",
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"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 version = "3.3.0"
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "cfg-if",
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 "fastrand",
Simon Sapin
rust: Upgrade Cargo.lock to the newer format...
r47422 "libc",
"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: upgrade `clap` dependency...
r50531 version = "1.1.3"
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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
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]]
Raphaël Gomès
rust: create wrapper struct to reduce `regex` contention issues...
r50476 name = "thread_local"
version = "1.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
dependencies = [
"once_cell",
]
[[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: upgrade `clap` dependency...
r50531 version = "1.6.3"
Raphaël Gomès
rust-performance: introduce FastHashMap type alias for HashMap...
r44278 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
Raphaël Gomès
rust-performance: introduce FastHashMap type alias for HashMap...
r44278 dependencies = [
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "cfg-if",
Raphaël Gomès
rust-hg-core: upgrade dependencies...
r49808 "rand 0.8.5",
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"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "1.15.0"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
[[package]]
name = "unicode-ident"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
copies-rust: use immutable "OrdMap" to store copies information...
r46577
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "unicode-width"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.1.10"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097
[[package]]
name = "vcpkg"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.2.15"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738
[[package]]
pacien
rust: add vcsgraph crate as dependency...
r49348 name = "vcsgraph"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cb68c231e2575f7503a7c19213875f9d4ec2e84e963a56ce3de4b6bee351ef7"
dependencies = [
"hex",
Martin von Zweigbergk
rust: upgrade `rand*` crates...
r49403 "rand 0.7.3",
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "sha-1 0.9.8",
pacien
rust: add vcsgraph crate as dependency...
r49348 ]
[[package]]
copies-rust: use immutable "OrdMap" to store copies information...
r46577 name = "version_check"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "0.9.4"
copies-rust: use immutable "OrdMap" to store copies information...
r46577 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
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]]
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
[[package]]
Raphaël Gomès
rust-dependencies: switch from `users` to `whoami`...
r51576 name = "web-sys"
version = "0.3.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
Raphaël Gomès
rhg: use `Command::exec` instead of `Command::status`...
r50043 name = "which"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 version = "4.3.0"
Raphaël Gomès
rhg: use `Command::exec` instead of `Command::status`...
r50043 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
Raphaël Gomès
rhg: use `Command::exec` instead of `Command::status`...
r50043 dependencies = [
"either",
"libc",
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 "once_cell",
Raphaël Gomès
rhg: use `Command::exec` instead of `Command::status`...
r50043 ]
[[package]]
Raphaël Gomès
rust-dependencies: switch from `users` to `whoami`...
r51576 name = "whoami"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c70234412ca409cc04e864e89523cb0fc37f5e1344ebed5a3ebf4192b6b9f68"
dependencies = [
"wasm-bindgen",
"web-sys",
]
[[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]]
Raphaël Gomès
hg-core: upgrade `clap` dependency...
r50531 name = "yansi"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
[[package]]
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 name = "zstd"
Raphaël Gomès
rust: update zstd dependency...
r51220 version = "0.12.3+zstd.1.5.2"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
rust: update zstd dependency...
r51220 checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
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"
Raphaël Gomès
rust: update zstd dependency...
r51220 version = "6.0.4+zstd.1.5.4"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
rust: update zstd dependency...
r51220 checksum = "7afb4b54b8910cf5447638cb54bf4e8a65cbedd783af98b98c62ffe91f185543"
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"
Raphaël Gomès
rust: update zstd dependency...
r51220 version = "2.0.7+zstd.1.5.4"
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
rust: update zstd dependency...
r51220 checksum = "94509c3ba2fe55294d752b79842c530ccfab760192521df74a081a78d2b3c7f5"
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",
"libc",
Raphaël Gomès
rust: update zstd dependency...
r51220 "pkg-config",
Antoine Cezar
hg-core: Add a limited read only `revlog` implementation...
r46097 ]