##// END OF EJS Templates
rust-chg: spawn server process if not running...
rust-chg: spawn server process if not running This is the minimal reimplementation of gethgcmd(), execcmdserver(), retryconnectcmdserver(), and connectcmdserver() in chg.c. No config validation is implemented yet. And some Py3 workarounds would be missing as this is the code I wrote in 2018. Differential Revision: https://phab.mercurial-scm.org/D8360

File last commit:

r45090:d31d1c06 default
r45161:bb936e25 default
Show More
Cargo.lock
727 lines | 32.4 KiB | text/plain | TextLexer
Yuya Nishihara
rust: update Cargo.lock to include @generated comment...
r42682 # This file is automatically @generated by Cargo.
# It is not intended for manual editing.
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 [[package]]
name = "aho-corasick"
Raphaël Gomès
rust: add logging utils...
r45027 version = "0.7.10"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "hermit-abi 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "autocfg"
Yuya Nishihara
rust: update dependencies...
r44699 version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "bitflags"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 version = "1.2.1"
Georges Racinet
rust: translated random test of missingancestors...
r41841 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-dirstate: add rust-cpython bindings to the new parse/pack functions...
r42489 name = "byteorder"
Raphaël Gomès
rust: add logging utils...
r45027 version = "1.3.4"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-re2: add wrapper for calling Re2 from Rust...
r44786 name = "cc"
version = "1.0.50"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 name = "cfg-if"
version = "0.1.10"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust: add logging utils...
r45027 name = "chrono"
version = "0.4.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
"num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "clap"
version = "2.33.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
"vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust: add logging utils...
r45027 name = "colored"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "cpython"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 version = "0.4.1"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust: update dependencies...
r44699 "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "python27-sys 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
"python3-sys 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
Gregory Szorc
rust: move Cargo.lock...
r35619 [[package]]
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 name = "crossbeam"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
"crossbeam-channel 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
"crossbeam-epoch 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 "crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 ]
[[package]]
name = "crossbeam-channel"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 name = "crossbeam-deque"
Raphaël Gomès
rust: add logging utils...
r45027 version = "0.7.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"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "crossbeam-epoch 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
"crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
"maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
name = "crossbeam-epoch"
Raphaël Gomès
rust: add logging utils...
r45027 version = "0.8.2"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust: update dependencies...
r44699 "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
name = "crossbeam-queue"
Raphaël Gomès
rust-dependencies: update rayon...
r44618 version = "0.2.1"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust-dependencies: update rayon...
r44618 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
name = "crossbeam-utils"
Raphaël Gomès
rust: add logging utils...
r45027 version = "0.7.2"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "ctor"
Raphaël Gomès
rust: add logging utils...
r45027 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"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 ]
[[package]]
name = "difference"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 name = "either"
version = "1.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Yuya Nishihara
rust: update dependencies...
r44699 name = "getrandom"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust: update dependencies...
r44699 "wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "hermit-abi"
Raphaël Gomès
rust: add logging utils...
r45027 version = "0.1.8"
Yuya Nishihara
rust: update dependencies...
r44699 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust: update dependencies...
r44699 ]
[[package]]
Georges Racinet
rust-node: binary Node ID and conversion utilities...
r44601 name = "hex"
Raphaël Gomès
rust: add logging utils...
r45027 version = "0.4.2"
Georges Racinet
rust-node: binary Node ID and conversion utilities...
r44601 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust: pure Rust lazyancestors iterator...
r40307 name = "hg-core"
version = "0.1.0"
Georges Racinet
rust: translated random test of missingancestors...
r41841 dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-re2: add wrapper for calling Re2 from Rust...
r44786 "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 "crossbeam 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: update micro-timer dependency...
r45089 "micro-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: update all dependencies...
r45090 "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_distr 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_pcg 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dependencies: update rayon...
r44618 "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: update all dependencies...
r45090 "regex 1.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-utils: add util for canonical path...
r44783 "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-performance: introduce FastHashMap type alias for HashMap...
r44278 "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust: translated random test of missingancestors...
r41841 ]
Georges Racinet
rust: pure Rust lazyancestors iterator...
r40307
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "hg-cpython"
version = "0.1.0"
dependencies = [
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "cpython 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 "hg-core 0.1.0",
Raphaël Gomès
rust: add logging utils...
r45027 "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-status: add trace-level logging for Rust status fallback for debugging...
r45062 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "simple_logger 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
[[package]]
name = "lazy_static"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 version = "1.4.0"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Gregory Szorc
rust: move Cargo.lock...
r35619 name = "libc"
Raphaël Gomès
rust: add logging utils...
r45027 version = "0.2.67"
Gregory Szorc
rust: move Cargo.lock...
r35619 source = "registry+https://github.com/rust-lang/crates.io-index"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 [[package]]
Raphaël Gomès
rust: add logging utils...
r45027 name = "log"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 name = "maybe-uninit"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "memchr"
Raphaël Gomès
rust: add logging utils...
r45027 version = "2.3.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"
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "memmap"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 name = "memoffset"
Yuya Nishihara
rust: update dependencies...
r44699 version = "0.5.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"
dependencies = [
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
hg-core: add function timing information...
r45028 name = "micro-timer"
Raphaël Gomès
rust: update micro-timer dependency...
r45089 version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"micro-timer-macros 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "micro-timer-macros"
version = "0.2.0"
Raphaël Gomès
hg-core: add function timing information...
r45028 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: update micro-timer dependency...
r45089 "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
hg-core: add function timing information...
r45028 "syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust: add logging utils...
r45027 name = "num-integer"
version = "0.1.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "num-traits"
Yuya Nishihara
rust: update dependencies...
r44699 version = "0.2.11"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 dependencies = [
Yuya Nishihara
rust: update dependencies...
r44699 "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
name = "num_cpus"
Yuya Nishihara
rust: update dependencies...
r44699 version = "1.12.0"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "hermit-abi 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "output_vt100"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Yuya Nishihara
rust: update dependencies...
r44699 name = "ppv-lite86"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "pretty_assertions"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "ctor 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"output_vt100 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "proc-macro2"
Raphaël Gomès
rust: add logging utils...
r45027 version = "1.0.9"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "python27-sys"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 version = "0.4.1"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: update all dependencies...
r45090 "regex 1.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
[[package]]
name = "python3-sys"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 version = "0.4.1"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: update all dependencies...
r45090 "regex 1.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 ]
[[package]]
name = "quote"
Raphaël Gomès
rust: add logging utils...
r45027 version = "1.0.3"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "rand"
Yuya Nishihara
rust: update dependencies...
r44699 version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust: update dependencies...
r44699 "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "rand_chacha"
Raphaël Gomès
rust: add logging utils...
r45027 version = "0.2.2"
Yuya Nishihara
rust: update dependencies...
r44699 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust: update dependencies...
r44699 "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "rand_core"
Yuya Nishihara
rust: update dependencies...
r44699 version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust: update all dependencies...
r45090 name = "rand_distr"
version = "0.2.2"
Georges Racinet
rust: translated random test of missingancestors...
r41841 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: update all dependencies...
r45090 "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust: translated random test of missingancestors...
r41841 ]
[[package]]
Yuya Nishihara
rust: update dependencies...
r44699 name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust: update all dependencies...
r45090 name = "rand_pcg"
version = "0.2.1"
Georges Racinet
rust: translated random test of missingancestors...
r41841 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: update all dependencies...
r45090 "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust: translated random test of missingancestors...
r41841 ]
[[package]]
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 name = "rayon"
Raphaël Gomès
rust-dependencies: update rayon...
r44618 version = "1.3.0"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dependencies: update rayon...
r44618 "rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
name = "rayon-core"
Raphaël Gomès
rust-dependencies: update rayon...
r44618 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"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dependencies: update rayon...
r44618 "crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
Yuya Nishihara
rust: update dependencies...
r44699 "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 ]
[[package]]
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 name = "redox_syscall"
version = "0.1.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "regex"
Raphaël Gomès
rust: update all dependencies...
r45090 version = "1.3.6"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "aho-corasick 0.7.10 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: update all dependencies...
r45090 "regex-syntax 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-dependencies: update rayon...
r44618 "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
[[package]]
name = "regex-syntax"
Raphaël Gomès
rust: update all dependencies...
r45090 version = "0.6.17"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 name = "remove_dir_all"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-utils: add util for canonical path...
r44783 name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 name = "scopeguard"
Raphaël Gomès
rust: add logging utils...
r45027 version = "1.1.0"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust: add logging utils...
r45027 name = "simple_logger"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
"colored 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "syn"
Raphaël Gomès
rust: add logging utils...
r45027 version = "1.0.16"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust: add logging utils...
r45027 "proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 name = "tempfile"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust: add logging utils...
r45027 "libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
"redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
"remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 name = "thread_local"
Raphaël Gomès
rust-dependencies: update rayon...
r44618 version = "1.0.1"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 ]
[[package]]
Raphaël Gomès
rust: add logging utils...
r45027 name = "time"
version = "0.1.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)",
"redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
Raphaël Gomès
rust-performance: introduce FastHashMap type alias for HashMap...
r44278 name = "twox-hash"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Yuya Nishihara
rust: update dependencies...
r44699 "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
Raphaël Gomès
rust-performance: introduce FastHashMap type alias for HashMap...
r44278 ]
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "unicode-width"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 name = "unicode-xid"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust-nodemap: pure Rust example...
r44870 name = "vec_map"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Yuya Nishihara
rust: update dependencies...
r44699 name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Georges Racinet
rust: translated random test of missingancestors...
r41841 name = "winapi"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 version = "0.3.8"
Georges Racinet
rust: translated random test of missingancestors...
r41841 source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
Raphaël Gomès
rust-utils: add util for canonical path...
r44783 name = "winapi-util"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[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"
Gregory Szorc
rust: move Cargo.lock...
r35619 [metadata]
Raphaël Gomès
rust: add logging utils...
r45027 "checksum aho-corasick 0.7.10 (registry+https://github.com/rust-lang/crates.io-index)" = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "checksum atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
Yuya Nishihara
rust: update dependencies...
r44699 "checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
Raphaël Gomès
rust-re2: add wrapper for calling Re2 from Rust...
r44786 "checksum cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "80094f509cf8b5ae86a4966a39b3ff66cd7e2a3e594accec3743ff3fabeab5b2"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum colored 1.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f4ffc801dacf156c5854b9df4f425a626539c3a6ef7893cc0c5084a23f0b6c59"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "checksum cpython 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bfaf3847ab963e40c4f6dd8d6be279bdf74007ae2413786a0dcbb28c52139a95"
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 "checksum crossbeam 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "69323bff1fb41c635347b8ead484a5ca6c3f11914d784170b158d8449ab07f8e"
"checksum crossbeam-channel 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "cced8691919c02aac3cb0a1bc2e9b73d89e832bf9a06fc579d4e71b68a2da061"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum crossbeam-deque 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
"checksum crossbeam-epoch 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
Raphaël Gomès
rust-dependencies: update rayon...
r44618 "checksum crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum crossbeam-utils 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
"checksum ctor 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "47c5e5ac752e18207b12e16b10631ae5f7f68f8805f335f9b817ead83d9ffce1"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "checksum difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"
Yuya Nishihara
rust: update dependencies...
r44699 "checksum getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum hermit-abi 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8"
"checksum hex 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum libc 0.2.67 (registry+https://github.com/rust-lang/crates.io-index)" = "eb147597cdf94ed43ab7a9038716637d2d1bf2bc571da995d0028dec06bd3018"
"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
Raphaël Gomès
rust-status: traverse working directory in parallel...
r45026 "checksum maybe-uninit 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "checksum memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
Yuya Nishihara
rust: update dependencies...
r44699 "checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9"
Raphaël Gomès
rust: update micro-timer dependency...
r45089 "checksum micro-timer 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "987429cd6162a80ed5ff44fc790f5090b1c6d617ac73a2e272965ed91201d79b"
"checksum micro-timer-macros 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "43cec5c0b38783eb33ef7bccf4b250b7a085703e11f5f2238fa31969e629388a"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "3f6ea62e9d81a77cd3ee9a2a5b9b609447857f3d358704331e4ef39eb247fcba"
Yuya Nishihara
rust: update dependencies...
r44699 "checksum num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096"
"checksum num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "checksum output_vt100 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9"
Yuya Nishihara
rust: update dependencies...
r44699 "checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "checksum pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3f81e1644e1b54f5a68959a29aa86cde704219254669da328ecfdf6a1f09d427"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6c09721c6781493a2a492a96b5a5bf19b65917fe6728884e7c44dd0c60ca3435"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "checksum python27-sys 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "67cb041de8615111bf224dd75667af5f25c6e032118251426fed7f1b70ce4c8c"
"checksum python3-sys 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90af11779515a1e530af60782d273b59ac79d33b0e253c071a728563957c76d4"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum quote 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2bdc6c187c65bca4260c9011c9e3132efe4909da44726bad24cf7572ae338d7f"
Yuya Nishihara
rust: update dependencies...
r44699 "checksum rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum rand_chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
Yuya Nishihara
rust: update dependencies...
r44699 "checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
Raphaël Gomès
rust: update all dependencies...
r45090 "checksum rand_distr 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96977acbdd3a6576fb1d27391900035bf3863d4a16422973a409b488cf29ffb2"
Yuya Nishihara
rust: update dependencies...
r44699 "checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
Raphaël Gomès
rust: update all dependencies...
r45090 "checksum rand_pcg 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
Raphaël Gomès
rust-dependencies: update rayon...
r44618 "checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098"
"checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9"
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
Raphaël Gomès
rust: update all dependencies...
r45090 "checksum regex 1.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7f6946991529684867e47d86474e3a6d0c0ab9b82d5821e314b1ede31fa3a4b3"
"checksum regex-syntax 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)" = "7fe5bd57d1d7414c6b5ed48563a2c855d995ff777729dcd91c369ec7fea395ae"
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
Georges Racinet
rust: translated random test of missingancestors...
r41841 "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
Raphaël Gomès
rust-utils: add util for canonical path...
r44783 "checksum same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
Georges Racinet
rust: translated random test of missingancestors...
r41841 "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum simple_logger 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fea0c4611f32f4c2bac73754f22dca1f57e6c1945e0590dae4e5f2a077b92367"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum syn 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)" = "123bd9499cfb380418d509322d7a6d52e5315f064fe4b3ad18a53d6b92c07859"
Raphaël Gomès
rust-pathauditor: add Rust implementation of the `pathauditor`...
r44737 "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
Raphaël Gomès
rust-dependencies: update rayon...
r44618 "checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
Raphaël Gomès
rust: add logging utils...
r45027 "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f"
Raphaël Gomès
rust-performance: introduce FastHashMap type alias for HashMap...
r44278 "checksum twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bfd5b7557925ce778ff9b9ef90e3ade34c524b5ff10e239c69a42d546d2af56"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "checksum unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479"
Raphaël Gomès
rust-hg-path: add useful methods to `HgPath`...
r44738 "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
Georges Racinet
rust-nodemap: pure Rust example...
r44870 "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
Yuya Nishihara
rust: update dependencies...
r44699 "checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
Raphaël Gomès
rust-dirstate-status: add first Rust implementation of `dirstate.status`...
r43565 "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
Georges Racinet
rust: translated random test of missingancestors...
r41841 "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
Raphaël Gomès
rust-utils: add util for canonical path...
r44783 "checksum winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80"
Georges Racinet
rust: translated random test of missingancestors...
r41841 "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"