##// END OF EJS Templates
tests: add a comment in a test that will hopefully save someone some time...
tests: add a comment in a test that will hopefully save someone some time I spent at least an hour, probably closer to 1.5, trying to figure out what this was complaining about. Hopefully anyone else in my position will see this note and not waste the time. Differential Revision: https://phab.mercurial-scm.org/D9953

File last commit:

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