rust/Cargo.lock
author Georges Racinet <georges.racinet@octobus.net>
Tue, 18 Feb 2020 19:11:15 +0100
changeset 44386 8f7c6656ac79
parent 44305 d8d4fa9a7f18
child 44466 79ac59d3f73d
permissions -rw-r--r--
rust-nodemap: pure Rust example To run, use `cargo run --release --example nodemap` This demonstrates that simple scenarios entirely written in Rust can content themselves with `NodeTree<T>`. The example mmaps both the nodemap file and the changelog index. We had of course to include an implementation of `RevlogIndex` directly, which isn't much at this stage. It felt a bit prematurate to include it in the lib. Here are some first performance measurements, obtained with this example, on a clone of mozilla-central with 440000 changesets: (create) Nodemap constructed in RAM in 153.638305ms (query CAE63161B68962) found in 22.362us: Ok(Some(269489)) (bench) Did 3 queries in 36.418µs (mean 12.139µs) (bench) Did 50 queries in 184.318µs (mean 3.686µs) (bench) Did 100000 queries in 31.053461ms (mean 310ns) To be fair, even between bench runs, results tend to depend whether the file is still in kernel caches, and it's not so easy to get back to a real cold start. The worst we've seen was in the 50us ballpark. In any busy server setting, the pages would always be in RAM. We hope it's good enough not to be significantly slower on any concrete Mercurial operation than the C nodetree when fully in RAM, and of course this implementation has the serious headstart advantage of persistence. Differential Revision: https://phab.mercurial-scm.org/D7797
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
42482
cc4db4478467 rust: update Cargo.lock to include @generated comment
Yuya Nishihara <yuya@tcha.org>
parents: 42327
diff changeset
     1
# This file is automatically @generated by Cargo.
cc4db4478467 rust: update Cargo.lock to include @generated comment
Yuya Nishihara <yuya@tcha.org>
parents: 42327
diff changeset
     2
# It is not intended for manual editing.
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
     3
[[package]]
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
     4
name = "aho-corasick"
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
     5
version = "0.7.8"
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
     6
source = "registry+https://github.com/rust-lang/crates.io-index"
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
     7
dependencies = [
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
     8
 "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
     9
]
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
    10
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
    11
[[package]]
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
    12
name = "ansi_term"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
    13
version = "0.11.0"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
    14
source = "registry+https://github.com/rust-lang/crates.io-index"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
    15
dependencies = [
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
    16
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
    17
]
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
    18
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
    19
[[package]]
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    20
name = "atty"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    21
version = "0.2.14"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    22
source = "registry+https://github.com/rust-lang/crates.io-index"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    23
dependencies = [
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    24
 "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    25
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    26
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    27
]
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    28
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    29
[[package]]
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    30
name = "autocfg"
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
    31
version = "0.1.7"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    32
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    33
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    34
[[package]]
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    35
name = "autocfg"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    36
version = "1.0.0"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    37
source = "registry+https://github.com/rust-lang/crates.io-index"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    38
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    39
[[package]]
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    40
name = "bitflags"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
    41
version = "1.2.1"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    42
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    43
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    44
[[package]]
42303
e240bec26626 rust-dirstate: add rust-cpython bindings to the new parse/pack functions
Raphaël Gomès <rgomes@octobus.net>
parents: 41692
diff changeset
    45
name = "byteorder"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
    46
version = "1.3.2"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
    47
source = "registry+https://github.com/rust-lang/crates.io-index"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
    48
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
    49
[[package]]
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    50
name = "c2-chacha"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    51
version = "0.2.3"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    52
source = "registry+https://github.com/rust-lang/crates.io-index"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    53
dependencies = [
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    54
 "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    55
]
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    56
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    57
[[package]]
44305
d8d4fa9a7f18 rust-re2: add wrapper for calling Re2 from Rust
Raphaël Gomès <rgomes@octobus.net>
parents: 44301
diff changeset
    58
name = "cc"
d8d4fa9a7f18 rust-re2: add wrapper for calling Re2 from Rust
Raphaël Gomès <rgomes@octobus.net>
parents: 44301
diff changeset
    59
version = "1.0.50"
d8d4fa9a7f18 rust-re2: add wrapper for calling Re2 from Rust
Raphaël Gomès <rgomes@octobus.net>
parents: 44301
diff changeset
    60
source = "registry+https://github.com/rust-lang/crates.io-index"
d8d4fa9a7f18 rust-re2: add wrapper for calling Re2 from Rust
Raphaël Gomès <rgomes@octobus.net>
parents: 44301
diff changeset
    61
d8d4fa9a7f18 rust-re2: add wrapper for calling Re2 from Rust
Raphaël Gomès <rgomes@octobus.net>
parents: 44301
diff changeset
    62
[[package]]
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
    63
name = "cfg-if"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
    64
version = "0.1.10"
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
    65
source = "registry+https://github.com/rust-lang/crates.io-index"
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
    66
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
    67
[[package]]
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    68
name = "clap"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    69
version = "2.33.0"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    70
source = "registry+https://github.com/rust-lang/crates.io-index"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    71
dependencies = [
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    72
 "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    73
 "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    74
 "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    75
 "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    76
 "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    77
 "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    78
 "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    79
]
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    80
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
    81
[[package]]
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    82
name = "cloudabi"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    83
version = "0.0.3"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    84
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    85
dependencies = [
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
    86
 "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    87
]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    88
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
    89
[[package]]
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
    90
name = "cpython"
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
    91
version = "0.4.1"
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
    92
source = "registry+https://github.com/rust-lang/crates.io-index"
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
    93
dependencies = [
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    94
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
    95
 "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
    96
 "python27-sys 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
    97
 "python3-sys 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
    98
]
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
    99
35569
964212780daf rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
   100
[[package]]
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   101
name = "crossbeam-deque"
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   102
version = "0.7.2"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   103
source = "registry+https://github.com/rust-lang/crates.io-index"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   104
dependencies = [
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   105
 "crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   106
 "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   107
]
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   108
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   109
[[package]]
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   110
name = "crossbeam-epoch"
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   111
version = "0.8.0"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   112
source = "registry+https://github.com/rust-lang/crates.io-index"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   113
dependencies = [
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   114
 "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   115
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   116
 "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   117
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   118
 "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   119
 "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   120
]
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   121
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   122
[[package]]
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   123
name = "crossbeam-queue"
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   124
version = "0.2.1"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   125
source = "registry+https://github.com/rust-lang/crates.io-index"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   126
dependencies = [
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   127
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   128
 "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   129
]
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   130
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   131
[[package]]
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   132
name = "crossbeam-utils"
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   133
version = "0.7.0"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   134
source = "registry+https://github.com/rust-lang/crates.io-index"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   135
dependencies = [
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   136
 "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   137
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   138
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   139
]
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   140
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   141
[[package]]
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   142
name = "ctor"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   143
version = "0.1.12"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   144
source = "registry+https://github.com/rust-lang/crates.io-index"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   145
dependencies = [
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   146
 "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   147
 "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)",
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   148
]
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   149
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   150
[[package]]
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   151
name = "difference"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   152
version = "2.0.0"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   153
source = "registry+https://github.com/rust-lang/crates.io-index"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   154
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   155
[[package]]
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   156
name = "either"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   157
version = "1.5.3"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   158
source = "registry+https://github.com/rust-lang/crates.io-index"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   159
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   160
[[package]]
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   161
name = "fuchsia-cprng"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   162
version = "0.1.1"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   163
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   164
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   165
[[package]]
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   166
name = "getrandom"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   167
version = "0.1.14"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   168
source = "registry+https://github.com/rust-lang/crates.io-index"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   169
dependencies = [
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   170
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   171
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   172
 "wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   173
]
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   174
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   175
[[package]]
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   176
name = "hermit-abi"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   177
version = "0.1.6"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   178
source = "registry+https://github.com/rust-lang/crates.io-index"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   179
dependencies = [
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   180
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   181
]
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   182
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   183
[[package]]
44143
7f86426fdd2c rust-node: binary Node ID and conversion utilities
Georges Racinet <georges.racinet@octobus.net>
parents: 43826
diff changeset
   184
name = "hex"
7f86426fdd2c rust-node: binary Node ID and conversion utilities
Georges Racinet <georges.racinet@octobus.net>
parents: 43826
diff changeset
   185
version = "0.4.0"
7f86426fdd2c rust-node: binary Node ID and conversion utilities
Georges Racinet <georges.racinet@octobus.net>
parents: 43826
diff changeset
   186
source = "registry+https://github.com/rust-lang/crates.io-index"
7f86426fdd2c rust-node: binary Node ID and conversion utilities
Georges Racinet <georges.racinet@octobus.net>
parents: 43826
diff changeset
   187
7f86426fdd2c rust-node: binary Node ID and conversion utilities
Georges Racinet <georges.racinet@octobus.net>
parents: 43826
diff changeset
   188
[[package]]
40271
dbc28c91f7ff rust: pure Rust lazyancestors iterator
Georges Racinet <gracinet@anybox.fr>
parents: 35601
diff changeset
   189
name = "hg-core"
dbc28c91f7ff rust: pure Rust lazyancestors iterator
Georges Racinet <gracinet@anybox.fr>
parents: 35601
diff changeset
   190
version = "0.1.0"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   191
dependencies = [
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   192
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
44305
d8d4fa9a7f18 rust-re2: add wrapper for calling Re2 from Rust
Raphaël Gomès <rgomes@octobus.net>
parents: 44301
diff changeset
   193
 "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   194
 "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
44143
7f86426fdd2c rust-node: binary Node ID and conversion utilities
Georges Racinet <georges.racinet@octobus.net>
parents: 43826
diff changeset
   195
 "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   196
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
44305
d8d4fa9a7f18 rust-re2: add wrapper for calling Re2 from Rust
Raphaël Gomès <rgomes@octobus.net>
parents: 44301
diff changeset
   197
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   198
 "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   199
 "memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   200
 "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   201
 "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   202
 "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   203
 "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   204
 "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
44301
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   205
 "same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
44265
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   206
 "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
43826
5ac243a92e37 rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents: 43271
diff changeset
   207
 "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   208
]
40271
dbc28c91f7ff rust: pure Rust lazyancestors iterator
Georges Racinet <gracinet@anybox.fr>
parents: 35601
diff changeset
   209
dbc28c91f7ff rust: pure Rust lazyancestors iterator
Georges Racinet <gracinet@anybox.fr>
parents: 35601
diff changeset
   210
[[package]]
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   211
name = "hg-cpython"
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   212
version = "0.1.0"
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   213
dependencies = [
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   214
 "cpython 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   215
 "hg-core 0.1.0",
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   216
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   217
]
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   218
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   219
[[package]]
40272
a36c5e23c055 rust: iterator bindings to C code
Georges Racinet <gracinet@anybox.fr>
parents: 40271
diff changeset
   220
name = "hgdirectffi"
a36c5e23c055 rust: iterator bindings to C code
Georges Racinet <gracinet@anybox.fr>
parents: 40271
diff changeset
   221
version = "0.1.0"
a36c5e23c055 rust: iterator bindings to C code
Georges Racinet <gracinet@anybox.fr>
parents: 40271
diff changeset
   222
dependencies = [
a36c5e23c055 rust: iterator bindings to C code
Georges Racinet <gracinet@anybox.fr>
parents: 40271
diff changeset
   223
 "hg-core 0.1.0",
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   224
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
35569
964212780daf rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
   225
]
964212780daf rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
   226
964212780daf rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
   227
[[package]]
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   228
name = "lazy_static"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   229
version = "1.4.0"
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   230
source = "registry+https://github.com/rust-lang/crates.io-index"
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   231
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   232
[[package]]
35569
964212780daf rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
   233
name = "libc"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   234
version = "0.2.66"
35569
964212780daf rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
   235
source = "registry+https://github.com/rust-lang/crates.io-index"
964212780daf rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
   236
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   237
[[package]]
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   238
name = "memchr"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   239
version = "2.3.0"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   240
source = "registry+https://github.com/rust-lang/crates.io-index"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   241
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   242
[[package]]
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   243
name = "memmap"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   244
version = "0.7.0"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   245
source = "registry+https://github.com/rust-lang/crates.io-index"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   246
dependencies = [
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   247
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   248
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   249
]
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   250
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   251
[[package]]
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   252
name = "memoffset"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   253
version = "0.5.3"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   254
source = "registry+https://github.com/rust-lang/crates.io-index"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   255
dependencies = [
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   256
 "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   257
]
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   258
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   259
[[package]]
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   260
name = "num-traits"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   261
version = "0.2.11"
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   262
source = "registry+https://github.com/rust-lang/crates.io-index"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   263
dependencies = [
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   264
 "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   265
]
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   266
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   267
[[package]]
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   268
name = "num_cpus"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   269
version = "1.12.0"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   270
source = "registry+https://github.com/rust-lang/crates.io-index"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   271
dependencies = [
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   272
 "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   273
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   274
]
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   275
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   276
[[package]]
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   277
name = "output_vt100"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   278
version = "0.1.2"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   279
source = "registry+https://github.com/rust-lang/crates.io-index"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   280
dependencies = [
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   281
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   282
]
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   283
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   284
[[package]]
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   285
name = "ppv-lite86"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   286
version = "0.2.6"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   287
source = "registry+https://github.com/rust-lang/crates.io-index"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   288
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   289
[[package]]
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   290
name = "pretty_assertions"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   291
version = "0.6.1"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   292
source = "registry+https://github.com/rust-lang/crates.io-index"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   293
dependencies = [
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   294
 "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   295
 "ctor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   296
 "difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   297
 "output_vt100 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   298
]
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   299
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   300
[[package]]
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   301
name = "proc-macro2"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   302
version = "1.0.8"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   303
source = "registry+https://github.com/rust-lang/crates.io-index"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   304
dependencies = [
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   305
 "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   306
]
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   307
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   308
[[package]]
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   309
name = "python27-sys"
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   310
version = "0.4.1"
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   311
source = "registry+https://github.com/rust-lang/crates.io-index"
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   312
dependencies = [
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   313
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   314
 "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   315
]
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   316
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   317
[[package]]
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   318
name = "python3-sys"
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   319
version = "0.4.1"
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   320
source = "registry+https://github.com/rust-lang/crates.io-index"
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   321
dependencies = [
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   322
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   323
 "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   324
]
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   325
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   326
[[package]]
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   327
name = "quote"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   328
version = "1.0.2"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   329
source = "registry+https://github.com/rust-lang/crates.io-index"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   330
dependencies = [
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   331
 "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   332
]
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   333
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   334
[[package]]
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   335
name = "rand"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   336
version = "0.6.5"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   337
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   338
dependencies = [
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   339
 "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   340
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   341
 "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   342
 "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   343
 "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   344
 "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   345
 "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   346
 "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   347
 "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   348
 "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   349
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   350
]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   351
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   352
[[package]]
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   353
name = "rand"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   354
version = "0.7.3"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   355
source = "registry+https://github.com/rust-lang/crates.io-index"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   356
dependencies = [
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   357
 "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   358
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   359
 "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   360
 "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   361
 "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   362
]
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   363
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   364
[[package]]
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   365
name = "rand_chacha"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   366
version = "0.1.1"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   367
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   368
dependencies = [
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   369
 "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   370
 "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   371
]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   372
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   373
[[package]]
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   374
name = "rand_chacha"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   375
version = "0.2.1"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   376
source = "registry+https://github.com/rust-lang/crates.io-index"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   377
dependencies = [
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   378
 "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   379
 "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   380
]
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   381
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   382
[[package]]
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   383
name = "rand_core"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   384
version = "0.3.1"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   385
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   386
dependencies = [
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   387
 "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   388
]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   389
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   390
[[package]]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   391
name = "rand_core"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   392
version = "0.4.2"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   393
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   394
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   395
[[package]]
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   396
name = "rand_core"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   397
version = "0.5.1"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   398
source = "registry+https://github.com/rust-lang/crates.io-index"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   399
dependencies = [
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   400
 "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   401
]
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   402
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   403
[[package]]
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   404
name = "rand_hc"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   405
version = "0.1.0"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   406
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   407
dependencies = [
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   408
 "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   409
]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   410
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   411
[[package]]
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   412
name = "rand_hc"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   413
version = "0.2.0"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   414
source = "registry+https://github.com/rust-lang/crates.io-index"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   415
dependencies = [
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   416
 "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   417
]
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   418
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   419
[[package]]
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   420
name = "rand_isaac"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   421
version = "0.1.1"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   422
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   423
dependencies = [
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   424
 "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   425
]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   426
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   427
[[package]]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   428
name = "rand_jitter"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   429
version = "0.1.4"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   430
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   431
dependencies = [
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   432
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   433
 "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   434
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   435
]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   436
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   437
[[package]]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   438
name = "rand_os"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   439
version = "0.1.3"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   440
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   441
dependencies = [
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   442
 "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   443
 "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   444
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   445
 "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   446
 "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   447
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   448
]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   449
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   450
[[package]]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   451
name = "rand_pcg"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   452
version = "0.1.2"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   453
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   454
dependencies = [
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   455
 "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   456
 "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   457
]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   458
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   459
[[package]]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   460
name = "rand_xorshift"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   461
version = "0.1.1"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   462
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   463
dependencies = [
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   464
 "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   465
]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   466
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   467
[[package]]
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   468
name = "rayon"
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   469
version = "1.3.0"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   470
source = "registry+https://github.com/rust-lang/crates.io-index"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   471
dependencies = [
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   472
 "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   473
 "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   474
 "rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   475
]
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   476
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   477
[[package]]
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   478
name = "rayon-core"
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   479
version = "1.7.0"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   480
source = "registry+https://github.com/rust-lang/crates.io-index"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   481
dependencies = [
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   482
 "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   483
 "crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   484
 "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   485
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   486
 "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   487
]
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   488
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   489
[[package]]
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   490
name = "rdrand"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   491
version = "0.4.0"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   492
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   493
dependencies = [
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   494
 "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   495
]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   496
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   497
[[package]]
44265
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   498
name = "redox_syscall"
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   499
version = "0.1.56"
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   500
source = "registry+https://github.com/rust-lang/crates.io-index"
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   501
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   502
[[package]]
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   503
name = "regex"
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   504
version = "1.3.4"
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   505
source = "registry+https://github.com/rust-lang/crates.io-index"
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   506
dependencies = [
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   507
 "aho-corasick 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)",
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   508
 "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   509
 "regex-syntax 0.6.14 (registry+https://github.com/rust-lang/crates.io-index)",
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   510
 "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   511
]
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   512
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   513
[[package]]
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   514
name = "regex-syntax"
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   515
version = "0.6.14"
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   516
source = "registry+https://github.com/rust-lang/crates.io-index"
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   517
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   518
[[package]]
44265
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   519
name = "remove_dir_all"
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   520
version = "0.5.2"
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   521
source = "registry+https://github.com/rust-lang/crates.io-index"
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   522
dependencies = [
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   523
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   524
]
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   525
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   526
[[package]]
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   527
name = "rustc_version"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   528
version = "0.2.3"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   529
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   530
dependencies = [
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   531
 "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   532
]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   533
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   534
[[package]]
44301
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   535
name = "same-file"
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   536
version = "1.0.6"
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   537
source = "registry+https://github.com/rust-lang/crates.io-index"
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   538
dependencies = [
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   539
 "winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   540
]
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   541
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   542
[[package]]
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   543
name = "scopeguard"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   544
version = "1.0.0"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   545
source = "registry+https://github.com/rust-lang/crates.io-index"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   546
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   547
[[package]]
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   548
name = "semver"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   549
version = "0.9.0"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   550
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   551
dependencies = [
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   552
 "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   553
]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   554
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   555
[[package]]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   556
name = "semver-parser"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   557
version = "0.7.0"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   558
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   559
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   560
[[package]]
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   561
name = "strsim"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   562
version = "0.8.0"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   563
source = "registry+https://github.com/rust-lang/crates.io-index"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   564
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   565
[[package]]
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   566
name = "syn"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   567
version = "1.0.14"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   568
source = "registry+https://github.com/rust-lang/crates.io-index"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   569
dependencies = [
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   570
 "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   571
 "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   572
 "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   573
]
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   574
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   575
[[package]]
44265
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   576
name = "tempfile"
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   577
version = "3.1.0"
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   578
source = "registry+https://github.com/rust-lang/crates.io-index"
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   579
dependencies = [
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   580
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   581
 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   582
 "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   583
 "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   584
 "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   585
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   586
]
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   587
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   588
[[package]]
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   589
name = "textwrap"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   590
version = "0.11.0"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   591
source = "registry+https://github.com/rust-lang/crates.io-index"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   592
dependencies = [
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   593
 "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   594
]
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   595
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   596
[[package]]
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   597
name = "thread_local"
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   598
version = "1.0.1"
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   599
source = "registry+https://github.com/rust-lang/crates.io-index"
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   600
dependencies = [
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   601
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
40965
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   602
]
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   603
5532823e8c18 rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents: 40964
diff changeset
   604
[[package]]
43826
5ac243a92e37 rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents: 43271
diff changeset
   605
name = "twox-hash"
5ac243a92e37 rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents: 43271
diff changeset
   606
version = "1.5.0"
5ac243a92e37 rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents: 43271
diff changeset
   607
source = "registry+https://github.com/rust-lang/crates.io-index"
5ac243a92e37 rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents: 43271
diff changeset
   608
dependencies = [
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   609
 "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
43826
5ac243a92e37 rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents: 43271
diff changeset
   610
]
5ac243a92e37 rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents: 43271
diff changeset
   611
5ac243a92e37 rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents: 43271
diff changeset
   612
[[package]]
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   613
name = "unicode-width"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   614
version = "0.1.7"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   615
source = "registry+https://github.com/rust-lang/crates.io-index"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   616
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   617
[[package]]
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   618
name = "unicode-xid"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   619
version = "0.2.0"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   620
source = "registry+https://github.com/rust-lang/crates.io-index"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   621
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   622
[[package]]
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   623
name = "vec_map"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   624
version = "0.8.1"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   625
source = "registry+https://github.com/rust-lang/crates.io-index"
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   626
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   627
[[package]]
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   628
name = "wasi"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   629
version = "0.9.0+wasi-snapshot-preview1"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   630
source = "registry+https://github.com/rust-lang/crates.io-index"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   631
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   632
[[package]]
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   633
name = "winapi"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   634
version = "0.3.8"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   635
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   636
dependencies = [
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   637
 "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   638
 "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   639
]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   640
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   641
[[package]]
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   642
name = "winapi-i686-pc-windows-gnu"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   643
version = "0.4.0"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   644
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   645
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   646
[[package]]
44301
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   647
name = "winapi-util"
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   648
version = "0.1.3"
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   649
source = "registry+https://github.com/rust-lang/crates.io-index"
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   650
dependencies = [
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   651
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   652
]
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   653
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   654
[[package]]
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   655
name = "winapi-x86_64-pc-windows-gnu"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   656
version = "0.4.0"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   657
source = "registry+https://github.com/rust-lang/crates.io-index"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   658
35569
964212780daf rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
   659
[metadata]
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   660
"checksum aho-corasick 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)" = "743ad5a418686aad3b87fd14c43badd828cf26e214a00f92a384291cf22e1811"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   661
"checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   662
"checksum atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   663
"checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   664
"checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   665
"checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   666
"checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   667
"checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb"
44305
d8d4fa9a7f18 rust-re2: add wrapper for calling Re2 from Rust
Raphaël Gomès <rgomes@octobus.net>
parents: 44301
diff changeset
   668
"checksum cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   669
"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   670
"checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   671
"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   672
"checksum cpython 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bfaf3847ab963e40c4f6dd8d6be279bdf74007ae2413786a0dcbb28c52139a95"
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   673
"checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca"
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   674
"checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac"
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   675
"checksum crossbeam-queue 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c695eeca1e7173472a32221542ae469b3e9aac3a4fc81f7696bcad82029493db"
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   676
"checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4"
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   677
"checksum ctor 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "cd8ce37ad4184ab2ce004c33bf6379185d3b1c95801cab51026bd271bf68eedc"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   678
"checksum difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   679
"checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   680
"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   681
"checksum getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   682
"checksum hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "eff2656d88f158ce120947499e971d743c05dbcbed62e5bd2f38f1698bbc3772"
44143
7f86426fdd2c rust-node: binary Node ID and conversion utilities
Georges Racinet <georges.racinet@octobus.net>
parents: 43826
diff changeset
   683
"checksum hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "023b39be39e3a2da62a94feb433e91e8bcd37676fbc8bea371daf52b7a769a3e"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   684
"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   685
"checksum libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)" = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   686
"checksum memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3197e20c7edb283f87c071ddfc7a2cca8f8e0b888c242959846a6fce03c72223"
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   687
"checksum memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   688
"checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   689
"checksum num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096"
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   690
"checksum num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6"
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   691
"checksum output_vt100 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   692
"checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b"
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   693
"checksum pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3f81e1644e1b54f5a68959a29aa86cde704219254669da328ecfdf6a1f09d427"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   694
"checksum proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3acb317c6ff86a4e579dfa00fc5e6cca91ecbb4e7eb2df0468805b674eb88548"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   695
"checksum python27-sys 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "67cb041de8615111bf224dd75667af5f25c6e032118251426fed7f1b70ce4c8c"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   696
"checksum python3-sys 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90af11779515a1e530af60782d273b59ac79d33b0e253c071a728563957c76d4"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   697
"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   698
"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   699
"checksum rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   700
"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   701
"checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   702
"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   703
"checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   704
"checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   705
"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   706
"checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   707
"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   708
"checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   709
"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   710
"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   711
"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   712
"checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098"
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   713
"checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   714
"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
44265
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   715
"checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   716
"checksum regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "322cf97724bea3ee221b78fe25ac9c46114ebb51747ad5babd51a2fc6a8235a8"
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   717
"checksum regex-syntax 0.6.14 (registry+https://github.com/rust-lang/crates.io-index)" = "b28dfe3fe9badec5dbf0a79a9cccad2cfc2ab5484bdb3e44cbd1ae8b3ba2be06"
44265
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   718
"checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   719
"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
44301
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   720
"checksum same-file 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   721
"checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   722
"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   723
"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   724
"checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   725
"checksum syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)" = "af6f3550d8dff9ef7dc34d384ac6f107e5d31c8f57d9f28e0081503f547ac8f5"
44265
c18dd48cea4a rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents: 44231
diff changeset
   726
"checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   727
"checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
44158
161958ebf73c rust-dependencies: update rayon
Raphaël Gomès <rgomes@octobus.net>
parents: 44143
diff changeset
   728
"checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
43826
5ac243a92e37 rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents: 43271
diff changeset
   729
"checksum twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bfd5b7557925ce778ff9b9ef90e3ade34c524b5ff10e239c69a42d546d2af56"
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   730
"checksum unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479"
44266
9ab4830e9e3d rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents: 44265
diff changeset
   731
"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
44386
8f7c6656ac79 rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents: 44305
diff changeset
   732
"checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
44230
3e794419d234 rust: update dependencies
Yuya Nishihara <yuya@tcha.org>
parents: 44158
diff changeset
   733
"checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
43271
99394e6c5d12 rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents: 43214
diff changeset
   734
"checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   735
"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
44301
4caac36c66bc rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents: 44266
diff changeset
   736
"checksum winapi-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80"
41692
ee7b7bd432a1 rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents: 40985
diff changeset
   737
"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"