Mercurial > hg
annotate rust/Cargo.lock @ 52217:96b113d22b34 stable
rust-update: handle SIGINT from long-running update threads
The current code does not respond to ^C until after the Rust bit is finished
doing its work. This is expected, since Rust holds the GIL for the duration
of the call and does not call `PyErr_CheckSignals`. Freeing the GIL to do our
work does not really improve anything since the Rust threads are still going,
and the only way of cancelling a thread is by making it cooperate.
So we do the following:
- remember the SIGINT handler in hg-cpython and reset it after the call
into core (see inline comment in `update.rs` about this)
- make all update threads watch for a global `AtomicBool` being `true`,
and if so stop their work
- reset the global bool and exit early (i.e. before writing the dirstate)
- raise SIGINT from `hg-cpython` if update returns `InterruptReceived`
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Tue, 12 Nov 2024 12:52:13 +0100 |
parents | 8b7123c8947b |
children | 65d516db7309 |
rev | line source |
---|---|
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. |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
3 version = 3 |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
4 |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
5 [[package]] |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
6 name = "adler" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
7 version = "1.0.2" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
8 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
9 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
10 |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
11 [[package]] |
48950
11c0411bf4e2
dirstate-tree: optimize HashMap lookups with raw_entry_mut
Simon Sapin <simon.sapin@octobus.net>
parents:
48839
diff
changeset
|
12 name = "ahash" |
49638
9726deed397c
hg-core: upgrade all remaining dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
49637
diff
changeset
|
13 version = "0.8.2" |
48950
11c0411bf4e2
dirstate-tree: optimize HashMap lookups with raw_entry_mut
Simon Sapin <simon.sapin@octobus.net>
parents:
48839
diff
changeset
|
14 source = "registry+https://github.com/rust-lang/crates.io-index" |
49638
9726deed397c
hg-core: upgrade all remaining dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
49637
diff
changeset
|
15 checksum = "bf6ccdb167abbf410dcb915cabd428929d7f6a04980b54a11f26a39f1c7f7107" |
9726deed397c
hg-core: upgrade all remaining dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
49637
diff
changeset
|
16 dependencies = [ |
9726deed397c
hg-core: upgrade all remaining dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
49637
diff
changeset
|
17 "cfg-if", |
9726deed397c
hg-core: upgrade all remaining dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
49637
diff
changeset
|
18 "once_cell", |
9726deed397c
hg-core: upgrade all remaining dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
49637
diff
changeset
|
19 "version_check", |
9726deed397c
hg-core: upgrade all remaining dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
49637
diff
changeset
|
20 ] |
48950
11c0411bf4e2
dirstate-tree: optimize HashMap lookups with raw_entry_mut
Simon Sapin <simon.sapin@octobus.net>
parents:
48839
diff
changeset
|
21 |
11c0411bf4e2
dirstate-tree: optimize HashMap lookups with raw_entry_mut
Simon Sapin <simon.sapin@octobus.net>
parents:
48839
diff
changeset
|
22 [[package]] |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
23 name = "aho-corasick" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
24 version = "0.7.19" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
25 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
26 checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
27 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
28 "memchr", |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
29 ] |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
30 |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
31 [[package]] |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
32 name = "android-tzdata" |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
33 version = "0.1.1" |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
34 source = "registry+https://github.com/rust-lang/crates.io-index" |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
35 checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
36 |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
37 [[package]] |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
38 name = "android_system_properties" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
39 version = "0.1.5" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
40 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
41 checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
42 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
43 "libc", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
44 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
45 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
46 [[package]] |
44386
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
47 name = "atty" |
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
48 version = "0.2.14" |
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
49 source = "registry+https://github.com/rust-lang/crates.io-index" |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
50 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" |
44386
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
51 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
52 "hermit-abi", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
53 "libc", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
54 "winapi", |
44386
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
55 ] |
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
56 |
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
57 [[package]] |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
58 name = "autocfg" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
59 version = "1.1.0" |
44230 | 60 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
61 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" |
44230 | 62 |
63 [[package]] | |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
64 name = "bitflags" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
65 version = "1.3.2" |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
66 source = "registry+https://github.com/rust-lang/crates.io-index" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
67 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
68 |
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
69 [[package]] |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
70 name = "bitflags" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
71 version = "2.6.0" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
72 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
73 checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
74 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
75 [[package]] |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
76 name = "bitmaps" |
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
77 version = "2.1.0" |
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
78 source = "registry+https://github.com/rust-lang/crates.io-index" |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
79 checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2" |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
80 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
81 "typenum", |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
82 ] |
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
83 |
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
84 [[package]] |
51260
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
85 name = "bitvec" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
86 version = "1.0.1" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
87 source = "registry+https://github.com/rust-lang/crates.io-index" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
88 checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
89 dependencies = [ |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
90 "funty", |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
91 "radium", |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
92 "tap", |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
93 "wyz", |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
94 ] |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
95 |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
96 [[package]] |
47380
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
97 name = "block-buffer" |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
98 version = "0.9.0" |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
99 source = "registry+https://github.com/rust-lang/crates.io-index" |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
100 checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
101 dependencies = [ |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
102 "generic-array", |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
103 ] |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
104 |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
105 [[package]] |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
106 name = "block-buffer" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
107 version = "0.10.3" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
108 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
109 checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
110 dependencies = [ |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
111 "generic-array", |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
112 ] |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
113 |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
114 [[package]] |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
115 name = "bstr" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
116 version = "1.6.0" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
117 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
118 checksum = "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
119 dependencies = [ |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
120 "memchr", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
121 "regex-automata", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
122 "serde", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
123 ] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
124 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
125 [[package]] |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
126 name = "bumpalo" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
127 version = "3.11.1" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
128 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
129 checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
130 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
131 [[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
|
132 name = "byteorder" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
133 version = "1.4.3" |
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" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
135 checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
136 |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
137 [[package]] |
46390
0800aa42bb4c
rust: use the bytes-cast crate to parse persistent nodemaps
Simon Sapin <simon.sapin@octobus.net>
parents:
46181
diff
changeset
|
138 name = "bytes-cast" |
49935
da02e88b4850
rust-clippy: upgrade `bytes-cast` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49913
diff
changeset
|
139 version = "0.3.0" |
46390
0800aa42bb4c
rust: use the bytes-cast crate to parse persistent nodemaps
Simon Sapin <simon.sapin@octobus.net>
parents:
46181
diff
changeset
|
140 source = "registry+https://github.com/rust-lang/crates.io-index" |
49935
da02e88b4850
rust-clippy: upgrade `bytes-cast` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49913
diff
changeset
|
141 checksum = "a20de93b91d7703ca0e39e12930e310acec5ff4d715f4166e0ab026babb352e8" |
46390
0800aa42bb4c
rust: use the bytes-cast crate to parse persistent nodemaps
Simon Sapin <simon.sapin@octobus.net>
parents:
46181
diff
changeset
|
142 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
143 "bytes-cast-derive", |
46390
0800aa42bb4c
rust: use the bytes-cast crate to parse persistent nodemaps
Simon Sapin <simon.sapin@octobus.net>
parents:
46181
diff
changeset
|
144 ] |
0800aa42bb4c
rust: use the bytes-cast crate to parse persistent nodemaps
Simon Sapin <simon.sapin@octobus.net>
parents:
46181
diff
changeset
|
145 |
0800aa42bb4c
rust: use the bytes-cast crate to parse persistent nodemaps
Simon Sapin <simon.sapin@octobus.net>
parents:
46181
diff
changeset
|
146 [[package]] |
0800aa42bb4c
rust: use the bytes-cast crate to parse persistent nodemaps
Simon Sapin <simon.sapin@octobus.net>
parents:
46181
diff
changeset
|
147 name = "bytes-cast-derive" |
49935
da02e88b4850
rust-clippy: upgrade `bytes-cast` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49913
diff
changeset
|
148 version = "0.2.0" |
46390
0800aa42bb4c
rust: use the bytes-cast crate to parse persistent nodemaps
Simon Sapin <simon.sapin@octobus.net>
parents:
46181
diff
changeset
|
149 source = "registry+https://github.com/rust-lang/crates.io-index" |
49935
da02e88b4850
rust-clippy: upgrade `bytes-cast` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49913
diff
changeset
|
150 checksum = "7470a6fcce58cde3d62cce758bf71007978b75247e6becd9255c9b884bcb4f71" |
46390
0800aa42bb4c
rust: use the bytes-cast crate to parse persistent nodemaps
Simon Sapin <simon.sapin@octobus.net>
parents:
46181
diff
changeset
|
151 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
152 "proc-macro2", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
153 "quote", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
154 "syn", |
46390
0800aa42bb4c
rust: use the bytes-cast crate to parse persistent nodemaps
Simon Sapin <simon.sapin@octobus.net>
parents:
46181
diff
changeset
|
155 ] |
0800aa42bb4c
rust: use the bytes-cast crate to parse persistent nodemaps
Simon Sapin <simon.sapin@octobus.net>
parents:
46181
diff
changeset
|
156 |
0800aa42bb4c
rust: use the bytes-cast crate to parse persistent nodemaps
Simon Sapin <simon.sapin@octobus.net>
parents:
46181
diff
changeset
|
157 [[package]] |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
158 name = "cc" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
159 version = "1.0.76" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
160 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
161 checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
162 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
163 "jobserver", |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
164 ] |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
165 |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
166 [[package]] |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
167 name = "cfg-if" |
46181
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
168 version = "1.0.0" |
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
169 source = "registry+https://github.com/rust-lang/crates.io-index" |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
170 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" |
46181
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
171 |
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
172 [[package]] |
52217
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
173 name = "cfg_aliases" |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
174 version = "0.2.1" |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
175 source = "registry+https://github.com/rust-lang/crates.io-index" |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
176 checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
177 |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
178 [[package]] |
46601
755c31a1caf9
rhg: Add support for the blackbox extension
Simon Sapin <simon.sapin@octobus.net>
parents:
46594
diff
changeset
|
179 name = "chrono" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
180 version = "0.4.34" |
46601
755c31a1caf9
rhg: Add support for the blackbox extension
Simon Sapin <simon.sapin@octobus.net>
parents:
46594
diff
changeset
|
181 source = "registry+https://github.com/rust-lang/crates.io-index" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
182 checksum = "5bc015644b92d5890fab7489e49d21f879d5c990186827d42ec511919404f38b" |
46601
755c31a1caf9
rhg: Add support for the blackbox extension
Simon Sapin <simon.sapin@octobus.net>
parents:
46594
diff
changeset
|
183 dependencies = [ |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
184 "android-tzdata", |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
185 "iana-time-zone", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
186 "js-sys", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
187 "num-traits", |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
188 "wasm-bindgen", |
51868 | 189 "windows-targets 0.52.6", |
46601
755c31a1caf9
rhg: Add support for the blackbox extension
Simon Sapin <simon.sapin@octobus.net>
parents:
46594
diff
changeset
|
190 ] |
755c31a1caf9
rhg: Add support for the blackbox extension
Simon Sapin <simon.sapin@octobus.net>
parents:
46594
diff
changeset
|
191 |
755c31a1caf9
rhg: Add support for the blackbox extension
Simon Sapin <simon.sapin@octobus.net>
parents:
46594
diff
changeset
|
192 [[package]] |
44386
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
193 name = "clap" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
194 version = "4.0.24" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
195 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
196 checksum = "60494cedb60cb47462c0ff7be53de32c0e42a6fc2c772184554fa12bd9489c03" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
197 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
198 "atty", |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
199 "bitflags 1.3.2", |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
200 "clap_derive", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
201 "clap_lex", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
202 "once_cell", |
49640
37bc3edef76f
rhg: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49638
diff
changeset
|
203 "strsim", |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
204 "termcolor", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
205 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
206 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
207 [[package]] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
208 name = "clap_derive" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
209 version = "4.0.21" |
46181
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
210 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
211 checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
212 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
213 "heck", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
214 "proc-macro-error", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
215 "proc-macro2", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
216 "quote", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
217 "syn", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
218 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
219 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
220 [[package]] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
221 name = "clap_lex" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
222 version = "0.3.0" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
223 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
224 checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
225 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
226 "os_str_bytes", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
227 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
228 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
229 [[package]] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
230 name = "codespan-reporting" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
231 version = "0.11.1" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
232 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
233 checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
234 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
235 "termcolor", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
236 "unicode-width", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
237 ] |
46181
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
238 |
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
239 [[package]] |
52042
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
240 name = "console" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
241 version = "0.15.8" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
242 source = "registry+https://github.com/rust-lang/crates.io-index" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
243 checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
244 dependencies = [ |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
245 "encode_unicode", |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
246 "lazy_static", |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
247 "libc", |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
248 "unicode-width", |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
249 "windows-sys 0.52.0", |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
250 ] |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
251 |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
252 [[package]] |
48952
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
253 name = "convert_case" |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
254 version = "0.4.0" |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
255 source = "registry+https://github.com/rust-lang/crates.io-index" |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
256 checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
257 |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
258 [[package]] |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
259 name = "core-foundation-sys" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
260 version = "0.8.3" |
47380
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
261 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
262 checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" |
47380
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
263 |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
264 [[package]] |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
265 name = "cpufeatures" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
266 version = "0.2.5" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
267 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
268 checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
269 dependencies = [ |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
270 "libc", |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
271 ] |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
272 |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
273 [[package]] |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
274 name = "cpython" |
51659
d15922c41e08
rust: use `cpython` 0.7.2 crate to add support for Python 3.12
Raphaël Gomès <rgomes@octobus.net>
parents:
51391
diff
changeset
|
275 version = "0.7.2" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
276 source = "registry+https://github.com/rust-lang/crates.io-index" |
51659
d15922c41e08
rust: use `cpython` 0.7.2 crate to add support for Python 3.12
Raphaël Gomès <rgomes@octobus.net>
parents:
51391
diff
changeset
|
277 checksum = "43b398a2c65baaf5892f10bb69b52508bf7a993380cc4ecd3785aaebb5c79389" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
278 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
279 "libc", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
280 "num-traits", |
46861
c7c6c11fe1e4
rust: bump rust-cpython version to 0.5.2
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
46735
diff
changeset
|
281 "paste", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
282 "python3-sys", |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
283 ] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
284 |
35569
964212780daf
rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
285 [[package]] |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
286 name = "crc32fast" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
287 version = "1.3.2" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
288 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
289 checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
290 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
291 "cfg-if", |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
292 ] |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
293 |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
294 [[package]] |
44539
fe7d2cf0b429
rust-status: traverse working directory in parallel
Raphaël Gomès <rgomes@octobus.net>
parents:
44466
diff
changeset
|
295 name = "crossbeam-channel" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
296 version = "0.5.6" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
297 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
298 checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
299 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
300 "cfg-if", |
49416
1bad05cfc818
rust: bump to memmap2 0.5.3, micro-timer 0.4.0, and crossbeam-channel 0.5.0
Mads Kiilerich <mads@kiilerich.com>
parents:
49164
diff
changeset
|
301 "crossbeam-utils", |
46181
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
302 ] |
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
303 |
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
304 [[package]] |
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
305 name = "crossbeam-deque" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
306 version = "0.8.2" |
46181
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
307 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
308 checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" |
46181
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
309 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
310 "cfg-if", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
311 "crossbeam-epoch", |
49416
1bad05cfc818
rust: bump to memmap2 0.5.3, micro-timer 0.4.0, and crossbeam-channel 0.5.0
Mads Kiilerich <mads@kiilerich.com>
parents:
49164
diff
changeset
|
312 "crossbeam-utils", |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
313 ] |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
314 |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
315 [[package]] |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
316 name = "crossbeam-epoch" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
317 version = "0.9.11" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
318 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
319 checksum = "f916dfc5d356b0ed9dae65f1db9fc9770aa2851d2662b988ccf4fe3516e86348" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
320 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
321 "autocfg", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
322 "cfg-if", |
49416
1bad05cfc818
rust: bump to memmap2 0.5.3, micro-timer 0.4.0, and crossbeam-channel 0.5.0
Mads Kiilerich <mads@kiilerich.com>
parents:
49164
diff
changeset
|
323 "crossbeam-utils", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
324 "memoffset", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
325 "scopeguard", |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
326 ] |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
327 |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
328 [[package]] |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
329 name = "crossbeam-utils" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
330 version = "0.8.12" |
46181
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
331 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
332 checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac" |
46181
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
333 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
334 "cfg-if", |
46181
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
335 ] |
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
336 |
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
337 [[package]] |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
338 name = "crypto-common" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
339 version = "0.1.6" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
340 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
341 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
342 dependencies = [ |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
343 "generic-array", |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
344 "typenum", |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
345 ] |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
346 |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
347 [[package]] |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
348 name = "ctor" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
349 version = "0.1.26" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
350 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
351 checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
352 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
353 "quote", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
354 "syn", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
355 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
356 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
357 [[package]] |
52217
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
358 name = "ctrlc" |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
359 version = "3.4.5" |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
360 source = "registry+https://github.com/rust-lang/crates.io-index" |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
361 checksum = "90eeab0aa92f3f9b4e87f258c72b139c207d251f9cbc1080a0086b86a8870dd3" |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
362 dependencies = [ |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
363 "nix", |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
364 "windows-sys 0.59.0", |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
365 ] |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
366 |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
367 [[package]] |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
368 name = "cxx" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
369 version = "1.0.81" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
370 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
371 checksum = "97abf9f0eca9e52b7f81b945524e76710e6cb2366aead23b7d4fbf72e281f888" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
372 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
373 "cc", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
374 "cxxbridge-flags", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
375 "cxxbridge-macro", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
376 "link-cplusplus", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
377 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
378 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
379 [[package]] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
380 name = "cxx-build" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
381 version = "1.0.81" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
382 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
383 checksum = "7cc32cc5fea1d894b77d269ddb9f192110069a8a9c1f1d441195fba90553dea3" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
384 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
385 "cc", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
386 "codespan-reporting", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
387 "once_cell", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
388 "proc-macro2", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
389 "quote", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
390 "scratch", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
391 "syn", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
392 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
393 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
394 [[package]] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
395 name = "cxxbridge-flags" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
396 version = "1.0.81" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
397 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
398 checksum = "8ca220e4794c934dc6b1207c3b42856ad4c302f2df1712e9f8d2eec5afaacf1f" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
399 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
400 [[package]] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
401 name = "cxxbridge-macro" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
402 version = "1.0.81" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
403 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
404 checksum = "b846f081361125bfc8dc9d3940c84e1fd83ba54bbca7b17cd29483c828be0704" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
405 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
406 "proc-macro2", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
407 "quote", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
408 "syn", |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
409 ] |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
410 |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
411 [[package]] |
46435
2e2033081274
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`
Simon Sapin <simon.sapin@octobus.net>
parents:
46431
diff
changeset
|
412 name = "derive_more" |
48952
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
413 version = "0.99.17" |
46435
2e2033081274
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`
Simon Sapin <simon.sapin@octobus.net>
parents:
46431
diff
changeset
|
414 source = "registry+https://github.com/rust-lang/crates.io-index" |
48952
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
415 checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" |
46435
2e2033081274
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`
Simon Sapin <simon.sapin@octobus.net>
parents:
46431
diff
changeset
|
416 dependencies = [ |
48952
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
417 "convert_case", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
418 "proc-macro2", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
419 "quote", |
48952
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
420 "rustc_version", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
421 "syn", |
46435
2e2033081274
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`
Simon Sapin <simon.sapin@octobus.net>
parents:
46431
diff
changeset
|
422 ] |
2e2033081274
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`
Simon Sapin <simon.sapin@octobus.net>
parents:
46431
diff
changeset
|
423 |
2e2033081274
rust: replace trivial `impl From …` with `#[derive(derive_more::From)]`
Simon Sapin <simon.sapin@octobus.net>
parents:
46431
diff
changeset
|
424 [[package]] |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
425 name = "diff" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
426 version = "0.1.13" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
427 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
428 checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
429 |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
430 [[package]] |
47380
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
431 name = "digest" |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
432 version = "0.9.0" |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
433 source = "registry+https://github.com/rust-lang/crates.io-index" |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
434 checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
435 dependencies = [ |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
436 "generic-array", |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
437 ] |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
438 |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
439 [[package]] |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
440 name = "digest" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
441 version = "0.10.5" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
442 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
443 checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
444 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
445 "block-buffer 0.10.3", |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
446 "crypto-common", |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
447 ] |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
448 |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
449 [[package]] |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
450 name = "dirs" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
451 version = "5.0.1" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
452 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
453 checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
454 dependencies = [ |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
455 "dirs-sys", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
456 ] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
457 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
458 [[package]] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
459 name = "dirs-sys" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
460 version = "0.4.1" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
461 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
462 checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
463 dependencies = [ |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
464 "libc", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
465 "option-ext", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
466 "redox_users", |
51868 | 467 "windows-sys 0.48.0", |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
468 ] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
469 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
470 [[package]] |
51868 | 471 name = "dyn-clone" |
472 version = "1.0.17" | |
473 source = "registry+https://github.com/rust-lang/crates.io-index" | |
474 checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" | |
475 | |
476 [[package]] | |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
477 name = "either" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
478 version = "1.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
|
479 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
480 checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
481 |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
482 [[package]] |
52042
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
483 name = "encode_unicode" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
484 version = "0.3.6" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
485 source = "registry+https://github.com/rust-lang/crates.io-index" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
486 checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
487 |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
488 [[package]] |
45517
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
489 name = "env_logger" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
490 version = "0.9.3" |
45517
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
491 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
492 checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7" |
45517
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
493 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
494 "atty", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
495 "humantime", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
496 "log", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
497 "regex", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
498 "termcolor", |
45517
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
499 ] |
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
500 |
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
501 [[package]] |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
502 name = "fastrand" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
503 version = "1.8.0" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
504 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
505 checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
506 dependencies = [ |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
507 "instant", |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
508 ] |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
509 |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
510 [[package]] |
51868 | 511 name = "filetime" |
512 version = "0.2.25" | |
513 source = "registry+https://github.com/rust-lang/crates.io-index" | |
514 checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" | |
515 dependencies = [ | |
516 "cfg-if", | |
517 "libc", | |
518 "libredox", | |
519 "windows-sys 0.59.0", | |
520 ] | |
521 | |
522 [[package]] | |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
523 name = "flate2" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
524 version = "1.0.24" |
44230 | 525 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
526 checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" |
44230 | 527 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
528 "crc32fast", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
529 "libz-sys", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
530 "miniz_oxide", |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
531 ] |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
532 |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
533 [[package]] |
45984
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45963
diff
changeset
|
534 name = "format-bytes" |
48492
d3ec82016104
rust: Upgrade to format-bytes 0.3
Simon Sapin <simon.sapin@octobus.net>
parents:
48244
diff
changeset
|
535 version = "0.3.0" |
45984
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45963
diff
changeset
|
536 source = "registry+https://github.com/rust-lang/crates.io-index" |
48492
d3ec82016104
rust: Upgrade to format-bytes 0.3
Simon Sapin <simon.sapin@octobus.net>
parents:
48244
diff
changeset
|
537 checksum = "48942366ef93975da38e175ac9e10068c6fc08ca9e85930d4f098f4d5b14c2fd" |
45984
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45963
diff
changeset
|
538 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
539 "format-bytes-macros", |
45984
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45963
diff
changeset
|
540 ] |
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45963
diff
changeset
|
541 |
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45963
diff
changeset
|
542 [[package]] |
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45963
diff
changeset
|
543 name = "format-bytes-macros" |
48492
d3ec82016104
rust: Upgrade to format-bytes 0.3
Simon Sapin <simon.sapin@octobus.net>
parents:
48244
diff
changeset
|
544 version = "0.4.0" |
45984
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45963
diff
changeset
|
545 source = "registry+https://github.com/rust-lang/crates.io-index" |
48492
d3ec82016104
rust: Upgrade to format-bytes 0.3
Simon Sapin <simon.sapin@octobus.net>
parents:
48244
diff
changeset
|
546 checksum = "203aadebefcc73d12038296c228eabf830f99cba991b0032adf20e9fa6ce7e4f" |
45984
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45963
diff
changeset
|
547 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
548 "proc-macro2", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
549 "quote", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
550 "syn", |
45984
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45963
diff
changeset
|
551 ] |
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45963
diff
changeset
|
552 |
fada33872b5b
rhg: use `format_bytes!` for error messages
Raphaël Gomès <rgomes@octobus.net>
parents:
45963
diff
changeset
|
553 [[package]] |
51260
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
554 name = "funty" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
555 version = "2.0.0" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
556 source = "registry+https://github.com/rust-lang/crates.io-index" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
557 checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
558 |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
559 [[package]] |
47380
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
560 name = "generic-array" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
561 version = "0.14.6" |
45531
b0d6309ff50c
hg-core: check data integrity in `Revlog`
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45530
diff
changeset
|
562 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
563 checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" |
47380
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
564 dependencies = [ |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
565 "typenum", |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
566 "version_check", |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
567 ] |
45531
b0d6309ff50c
hg-core: check data integrity in `Revlog`
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45530
diff
changeset
|
568 |
b0d6309ff50c
hg-core: check data integrity in `Revlog`
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45530
diff
changeset
|
569 [[package]] |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
570 name = "getrandom" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
571 version = "0.1.16" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
572 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
573 checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
574 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
575 "cfg-if", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
576 "libc", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
577 "wasi 0.9.0+wasi-snapshot-preview1", |
44230 | 578 ] |
579 | |
580 [[package]] | |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
581 name = "getrandom" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
582 version = "0.2.8" |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
583 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
584 checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
585 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
586 "cfg-if", |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
587 "libc", |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
588 "wasi 0.11.0+wasi-snapshot-preview1", |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
589 ] |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
590 |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
591 [[package]] |
48950
11c0411bf4e2
dirstate-tree: optimize HashMap lookups with raw_entry_mut
Simon Sapin <simon.sapin@octobus.net>
parents:
48839
diff
changeset
|
592 name = "hashbrown" |
50763
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
593 version = "0.12.3" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
594 source = "registry+https://github.com/rust-lang/crates.io-index" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
595 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
596 |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
597 [[package]] |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
598 name = "hashbrown" |
49638
9726deed397c
hg-core: upgrade all remaining dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
49637
diff
changeset
|
599 version = "0.13.1" |
48950
11c0411bf4e2
dirstate-tree: optimize HashMap lookups with raw_entry_mut
Simon Sapin <simon.sapin@octobus.net>
parents:
48839
diff
changeset
|
600 source = "registry+https://github.com/rust-lang/crates.io-index" |
49638
9726deed397c
hg-core: upgrade all remaining dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
49637
diff
changeset
|
601 checksum = "33ff8ae62cd3a9102e5637afc8452c55acf3844001bd5374e0b0bd7b6616c038" |
48950
11c0411bf4e2
dirstate-tree: optimize HashMap lookups with raw_entry_mut
Simon Sapin <simon.sapin@octobus.net>
parents:
48839
diff
changeset
|
602 dependencies = [ |
11c0411bf4e2
dirstate-tree: optimize HashMap lookups with raw_entry_mut
Simon Sapin <simon.sapin@octobus.net>
parents:
48839
diff
changeset
|
603 "ahash", |
11c0411bf4e2
dirstate-tree: optimize HashMap lookups with raw_entry_mut
Simon Sapin <simon.sapin@octobus.net>
parents:
48839
diff
changeset
|
604 "rayon", |
11c0411bf4e2
dirstate-tree: optimize HashMap lookups with raw_entry_mut
Simon Sapin <simon.sapin@octobus.net>
parents:
48839
diff
changeset
|
605 ] |
11c0411bf4e2
dirstate-tree: optimize HashMap lookups with raw_entry_mut
Simon Sapin <simon.sapin@octobus.net>
parents:
48839
diff
changeset
|
606 |
11c0411bf4e2
dirstate-tree: optimize HashMap lookups with raw_entry_mut
Simon Sapin <simon.sapin@octobus.net>
parents:
48839
diff
changeset
|
607 [[package]] |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
608 name = "heck" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
609 version = "0.4.0" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
610 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
611 checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
612 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
613 [[package]] |
44230 | 614 name = "hermit-abi" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
615 version = "0.1.19" |
44230 | 616 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
617 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" |
44230 | 618 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
619 "libc", |
44230 | 620 ] |
621 | |
622 [[package]] | |
48517
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
623 name = "hex" |
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
624 version = "0.4.3" |
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
625 source = "registry+https://github.com/rust-lang/crates.io-index" |
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
626 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" |
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
627 |
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
628 [[package]] |
40271
dbc28c91f7ff
rust: pure Rust lazyancestors iterator
Georges Racinet <gracinet@anybox.fr>
parents:
35601
diff
changeset
|
629 name = "hg-core" |
dbc28c91f7ff
rust: pure Rust lazyancestors iterator
Georges Racinet <gracinet@anybox.fr>
parents:
35601
diff
changeset
|
630 version = "0.1.0" |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
631 dependencies = [ |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
632 "bitflags 1.3.2", |
51260
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
633 "bitvec", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
634 "byteorder", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
635 "bytes-cast", |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
636 "chrono", |
49640
37bc3edef76f
rhg: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49638
diff
changeset
|
637 "clap", |
49416
1bad05cfc818
rust: bump to memmap2 0.5.3, micro-timer 0.4.0, and crossbeam-channel 0.5.0
Mads Kiilerich <mads@kiilerich.com>
parents:
49164
diff
changeset
|
638 "crossbeam-channel", |
52217
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
639 "ctrlc", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
640 "derive_more", |
51868 | 641 "dyn-clone", |
642 "filetime", | |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
643 "flate2", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
644 "format-bytes", |
50763
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
645 "hashbrown 0.13.1", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
646 "home", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
647 "im-rc", |
52042
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
648 "indicatif", |
49636
a5447a4a8c5d
hg-core: upgrade `zstd` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49581
diff
changeset
|
649 "itertools", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
650 "lazy_static", |
48195
4d5a13253d34
dirstate-v2: Replace the 32-bit `mode` field with two bits
Simon Sapin <simon.sapin@octobus.net>
parents:
48042
diff
changeset
|
651 "libc", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
652 "log", |
49913
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
653 "logging_timer", |
47955
e834b79def74
rust: Switch to the memmap2-rs crate
Simon Sapin <simon.sapin@octobus.net>
parents:
47954
diff
changeset
|
654 "memmap2", |
49520
eb02decdf0ab
dirstate-v2: skip evaluation of hgignore regex on cached directories
Arseniy Alekseyev <aalekseyev@janestreet.com>
parents:
49517
diff
changeset
|
655 "once_cell", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
656 "pretty_assertions", |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
657 "rand 0.8.5", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
658 "rand_distr", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
659 "rand_pcg", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
660 "rayon", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
661 "regex", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
662 "same-file", |
50682
2cc5de261d76
rust-hg-core: move from `ouroboros` to `self_cell`
Raphaël Gomès <rgomes@octobus.net>
parents:
50297
diff
changeset
|
663 "self_cell", |
50763
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
664 "serde", |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
665 "sha-1 0.10.0", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
666 "tempfile", |
49581
04f1dba53c96
rust: create wrapper struct to reduce `regex` contention issues
Raphaël Gomès <rgomes@octobus.net>
parents:
49520
diff
changeset
|
667 "thread_local", |
50763
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
668 "toml", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
669 "twox-hash", |
52060
8b7123c8947b
update: add a Rust fast-path when updating from null (and clean)
Raphaël Gomès <rgomes@octobus.net>
parents:
52042
diff
changeset
|
670 "uuid", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
671 "zstd", |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
672 ] |
40271
dbc28c91f7ff
rust: pure Rust lazyancestors iterator
Georges Racinet <gracinet@anybox.fr>
parents:
35601
diff
changeset
|
673 |
dbc28c91f7ff
rust: pure Rust lazyancestors iterator
Georges Racinet <gracinet@anybox.fr>
parents:
35601
diff
changeset
|
674 [[package]] |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
675 name = "hg-cpython" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
676 version = "0.1.0" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
677 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
678 "cpython", |
49416
1bad05cfc818
rust: bump to memmap2 0.5.3, micro-timer 0.4.0, and crossbeam-channel 0.5.0
Mads Kiilerich <mads@kiilerich.com>
parents:
49164
diff
changeset
|
679 "crossbeam-channel", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
680 "env_logger", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
681 "hg-core", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
682 "libc", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
683 "log", |
47954
4afd6cc447b9
rust: Make OwningDirstateMap generic and move it into hg-core
Simon Sapin <simon.sapin@octobus.net>
parents:
47520
diff
changeset
|
684 "stable_deref_trait", |
48517
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
685 "vcsgraph", |
45517
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
686 ] |
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
687 |
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
688 [[package]] |
46483
2845892dd489
rust: Parse system and user configuration
Simon Sapin <simon.sapin@octobus.net>
parents:
46435
diff
changeset
|
689 name = "home" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
690 version = "0.5.4" |
46483
2845892dd489
rust: Parse system and user configuration
Simon Sapin <simon.sapin@octobus.net>
parents:
46435
diff
changeset
|
691 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
692 checksum = "747309b4b440c06d57b0b25f2aee03ee9b5e5397d288c60e21fc709bb98a7408" |
46483
2845892dd489
rust: Parse system and user configuration
Simon Sapin <simon.sapin@octobus.net>
parents:
46435
diff
changeset
|
693 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
694 "winapi", |
46483
2845892dd489
rust: Parse system and user configuration
Simon Sapin <simon.sapin@octobus.net>
parents:
46435
diff
changeset
|
695 ] |
2845892dd489
rust: Parse system and user configuration
Simon Sapin <simon.sapin@octobus.net>
parents:
46435
diff
changeset
|
696 |
2845892dd489
rust: Parse system and user configuration
Simon Sapin <simon.sapin@octobus.net>
parents:
46435
diff
changeset
|
697 [[package]] |
45517
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
698 name = "humantime" |
48952
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
699 version = "2.1.0" |
45517
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
700 source = "registry+https://github.com/rust-lang/crates.io-index" |
48952
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
701 checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
702 |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
703 [[package]] |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
704 name = "iana-time-zone" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
705 version = "0.1.53" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
706 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
707 checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
708 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
709 "android_system_properties", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
710 "core-foundation-sys", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
711 "iana-time-zone-haiku", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
712 "js-sys", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
713 "wasm-bindgen", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
714 "winapi", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
715 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
716 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
717 [[package]] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
718 name = "iana-time-zone-haiku" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
719 version = "0.1.1" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
720 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
721 checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
722 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
723 "cxx", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
724 "cxx-build", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
725 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
726 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
727 [[package]] |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
728 name = "im-rc" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
729 version = "15.1.0" |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
730 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
731 checksum = "af1955a75fa080c677d3972822ec4bad316169ab1cfc6c257a942c2265dbe5fe" |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
732 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
733 "bitmaps", |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
734 "rand_core 0.6.4", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
735 "rand_xoshiro", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
736 "sized-chunks", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
737 "typenum", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
738 "version_check", |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
739 ] |
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
740 |
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
741 [[package]] |
50763
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
742 name = "indexmap" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
743 version = "1.9.2" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
744 source = "registry+https://github.com/rust-lang/crates.io-index" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
745 checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
746 dependencies = [ |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
747 "autocfg", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
748 "hashbrown 0.12.3", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
749 ] |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
750 |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
751 [[package]] |
52042
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
752 name = "indicatif" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
753 version = "0.17.8" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
754 source = "registry+https://github.com/rust-lang/crates.io-index" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
755 checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
756 dependencies = [ |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
757 "console", |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
758 "instant", |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
759 "number_prefix", |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
760 "portable-atomic", |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
761 "unicode-width", |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
762 ] |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
763 |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
764 [[package]] |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
765 name = "instant" |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
766 version = "0.1.12" |
48952
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
767 source = "registry+https://github.com/rust-lang/crates.io-index" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
768 checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" |
48952
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
769 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
770 "cfg-if", |
48952
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
771 ] |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
772 |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
773 [[package]] |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
774 name = "itertools" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
775 version = "0.10.5" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
776 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
777 checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
778 dependencies = [ |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
779 "either", |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
780 ] |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
781 |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
782 [[package]] |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
783 name = "jobserver" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
784 version = "0.1.25" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
785 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
786 checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
787 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
788 "libc", |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
789 ] |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
790 |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
791 [[package]] |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
792 name = "js-sys" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
793 version = "0.3.60" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
794 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
795 checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
796 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
797 "wasm-bindgen", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
798 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
799 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
800 [[package]] |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
801 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
|
802 version = "1.4.0" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
803 source = "registry+https://github.com/rust-lang/crates.io-index" |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
804 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
805 |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
806 [[package]] |
35569
964212780daf
rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
807 name = "libc" |
51759
955084b4f74f
rhg: ignore readonly FS error when saving dirstate
Arseniy Alekseyev <aalekseyev@janestreet.com>
parents:
51751
diff
changeset
|
808 version = "0.2.155" |
35569
964212780daf
rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
809 source = "registry+https://github.com/rust-lang/crates.io-index" |
51759
955084b4f74f
rhg: ignore readonly FS error when saving dirstate
Arseniy Alekseyev <aalekseyev@janestreet.com>
parents:
51751
diff
changeset
|
810 checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" |
35569
964212780daf
rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
811 |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
812 [[package]] |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
813 name = "libm" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
814 version = "0.2.6" |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
815 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
816 checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb" |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
817 |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
818 [[package]] |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
819 name = "libredox" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
820 version = "0.1.3" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
821 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
822 checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
823 dependencies = [ |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
824 "bitflags 2.6.0", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
825 "libc", |
51868 | 826 "redox_syscall 0.5.3", |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
827 ] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
828 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
829 [[package]] |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
830 name = "libz-sys" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
831 version = "1.1.8" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
832 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
833 checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
834 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
835 "cc", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
836 "pkg-config", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
837 "vcpkg", |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
838 ] |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
839 |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
840 [[package]] |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
841 name = "link-cplusplus" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
842 version = "1.0.7" |
44540
82f51ab7a2dd
rust: add logging utils
Raphaël Gomès <rgomes@octobus.net>
parents:
44539
diff
changeset
|
843 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
844 checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369" |
44540
82f51ab7a2dd
rust: add logging utils
Raphaël Gomès <rgomes@octobus.net>
parents:
44539
diff
changeset
|
845 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
846 "cc", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
847 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
848 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
849 [[package]] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
850 name = "log" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
851 version = "0.4.17" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
852 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
853 checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
854 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
855 "cfg-if", |
44540
82f51ab7a2dd
rust: add logging utils
Raphaël Gomès <rgomes@octobus.net>
parents:
44539
diff
changeset
|
856 ] |
82f51ab7a2dd
rust: add logging utils
Raphaël Gomès <rgomes@octobus.net>
parents:
44539
diff
changeset
|
857 |
82f51ab7a2dd
rust: add logging utils
Raphaël Gomès <rgomes@octobus.net>
parents:
44539
diff
changeset
|
858 [[package]] |
49913
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
859 name = "logging_timer" |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
860 version = "1.1.0" |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
861 source = "registry+https://github.com/rust-lang/crates.io-index" |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
862 checksum = "64e96f261d684b7089aa576bb74e823241dccd994b27d30fabf1dcb3af284fe9" |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
863 dependencies = [ |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
864 "log", |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
865 "logging_timer_proc_macros", |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
866 ] |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
867 |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
868 [[package]] |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
869 name = "logging_timer_proc_macros" |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
870 version = "1.1.0" |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
871 source = "registry+https://github.com/rust-lang/crates.io-index" |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
872 checksum = "10a9062912d7952c5588cc474795e0b9ee008e7e6781127945b85413d4b99d81" |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
873 dependencies = [ |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
874 "log", |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
875 "proc-macro2", |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
876 "quote", |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
877 "syn", |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
878 ] |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
879 |
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
880 [[package]] |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
881 name = "memchr" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
882 version = "2.5.0" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
883 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
884 checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
885 |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
886 [[package]] |
47955
e834b79def74
rust: Switch to the memmap2-rs crate
Simon Sapin <simon.sapin@octobus.net>
parents:
47954
diff
changeset
|
887 name = "memmap2" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
888 version = "0.5.8" |
44386
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
889 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
890 checksum = "4b182332558b18d807c4ce1ca8ca983b34c3ee32765e47b3f0f69b90355cc1dc" |
44386
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
891 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
892 "libc", |
47981
d1d9510f73f0
rust: Update the memmap2 crate to version 0.4.0
Simon Sapin <simon.sapin@octobus.net>
parents:
47974
diff
changeset
|
893 "stable_deref_trait", |
44386
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
894 ] |
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
895 |
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
896 [[package]] |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
897 name = "memoffset" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
898 version = "0.6.5" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
899 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
900 checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
901 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
902 "autocfg", |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
903 ] |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
904 |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
905 [[package]] |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
906 name = "miniz_oxide" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
907 version = "0.5.4" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
908 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
909 checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
910 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
911 "adler", |
44541
d880805d5442
hg-core: add function timing information
Raphaël Gomès <rgomes@octobus.net>
parents:
44540
diff
changeset
|
912 ] |
d880805d5442
hg-core: add function timing information
Raphaël Gomès <rgomes@octobus.net>
parents:
44540
diff
changeset
|
913 |
d880805d5442
hg-core: add function timing information
Raphaël Gomès <rgomes@octobus.net>
parents:
44540
diff
changeset
|
914 [[package]] |
52217
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
915 name = "nix" |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
916 version = "0.29.0" |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
917 source = "registry+https://github.com/rust-lang/crates.io-index" |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
918 checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
919 dependencies = [ |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
920 "bitflags 2.6.0", |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
921 "cfg-if", |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
922 "cfg_aliases", |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
923 "libc", |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
924 ] |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
925 |
96b113d22b34
rust-update: handle SIGINT from long-running update threads
Raphaël Gomès <rgomes@octobus.net>
parents:
52060
diff
changeset
|
926 [[package]] |
50763
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
927 name = "nom8" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
928 version = "0.2.0" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
929 source = "registry+https://github.com/rust-lang/crates.io-index" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
930 checksum = "ae01545c9c7fc4486ab7debaf2aad7003ac19431791868fb2e8066df97fad2f8" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
931 dependencies = [ |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
932 "memchr", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
933 ] |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
934 |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
935 [[package]] |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
936 name = "num-traits" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
937 version = "0.2.15" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
938 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
939 checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
940 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
941 "autocfg", |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
942 "libm", |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
943 ] |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
944 |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
945 [[package]] |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
946 name = "num_cpus" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
947 version = "1.14.0" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
948 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
949 checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
950 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
951 "hermit-abi", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
952 "libc", |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
953 ] |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
954 |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
955 [[package]] |
52042
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
956 name = "number_prefix" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
957 version = "0.4.0" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
958 source = "registry+https://github.com/rust-lang/crates.io-index" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
959 checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
960 |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
961 [[package]] |
49520
eb02decdf0ab
dirstate-v2: skip evaluation of hgignore regex on cached directories
Arseniy Alekseyev <aalekseyev@janestreet.com>
parents:
49517
diff
changeset
|
962 name = "once_cell" |
49638
9726deed397c
hg-core: upgrade all remaining dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
49637
diff
changeset
|
963 version = "1.16.0" |
49520
eb02decdf0ab
dirstate-v2: skip evaluation of hgignore regex on cached directories
Arseniy Alekseyev <aalekseyev@janestreet.com>
parents:
49517
diff
changeset
|
964 source = "registry+https://github.com/rust-lang/crates.io-index" |
49638
9726deed397c
hg-core: upgrade all remaining dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
49637
diff
changeset
|
965 checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" |
49520
eb02decdf0ab
dirstate-v2: skip evaluation of hgignore regex on cached directories
Arseniy Alekseyev <aalekseyev@janestreet.com>
parents:
49517
diff
changeset
|
966 |
eb02decdf0ab
dirstate-v2: skip evaluation of hgignore regex on cached directories
Arseniy Alekseyev <aalekseyev@janestreet.com>
parents:
49517
diff
changeset
|
967 [[package]] |
47380
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
968 name = "opaque-debug" |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
969 version = "0.3.0" |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
970 source = "registry+https://github.com/rust-lang/crates.io-index" |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
971 checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
972 |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
973 [[package]] |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
974 name = "option-ext" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
975 version = "0.2.0" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
976 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
977 checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
978 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
979 [[package]] |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
980 name = "os_str_bytes" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
981 version = "6.4.0" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
982 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
983 checksum = "7b5bf27447411e9ee3ff51186bf7a08e16c341efdde93f4d823e8844429bed7e" |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
984 dependencies = [ |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
985 "memchr", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
986 ] |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
987 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
988 [[package]] |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
989 name = "output_vt100" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
990 version = "0.1.3" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
991 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
992 checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
993 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
994 "winapi", |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
995 ] |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
996 |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
997 [[package]] |
46861
c7c6c11fe1e4
rust: bump rust-cpython version to 0.5.2
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
46735
diff
changeset
|
998 name = "paste" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
999 version = "1.0.9" |
46861
c7c6c11fe1e4
rust: bump rust-cpython version to 0.5.2
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
46735
diff
changeset
|
1000 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1001 checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1" |
46861
c7c6c11fe1e4
rust: bump rust-cpython version to 0.5.2
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
46735
diff
changeset
|
1002 |
c7c6c11fe1e4
rust: bump rust-cpython version to 0.5.2
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
46735
diff
changeset
|
1003 [[package]] |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1004 name = "pkg-config" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1005 version = "0.3.26" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1006 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1007 checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1008 |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1009 [[package]] |
52042
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1010 name = "portable-atomic" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1011 version = "1.9.0" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1012 source = "registry+https://github.com/rust-lang/crates.io-index" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1013 checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1014 |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1015 [[package]] |
44230 | 1016 name = "ppv-lite86" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1017 version = "0.2.17" |
44230 | 1018 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1019 checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" |
44230 | 1020 |
1021 [[package]] | |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1022 name = "pretty_assertions" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1023 version = "1.3.0" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1024 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1025 checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1026 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1027 "ctor", |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1028 "diff", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1029 "output_vt100", |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1030 "yansi", |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1031 ] |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1032 |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1033 [[package]] |
49000
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1034 name = "proc-macro-error" |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1035 version = "1.0.4" |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1036 source = "registry+https://github.com/rust-lang/crates.io-index" |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1037 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1038 dependencies = [ |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1039 "proc-macro-error-attr", |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1040 "proc-macro2", |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1041 "quote", |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1042 "syn", |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1043 "version_check", |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1044 ] |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1045 |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1046 [[package]] |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1047 name = "proc-macro-error-attr" |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1048 version = "1.0.4" |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1049 source = "registry+https://github.com/rust-lang/crates.io-index" |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1050 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1051 dependencies = [ |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1052 "proc-macro2", |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1053 "quote", |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1054 "version_check", |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1055 ] |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1056 |
dd6b67d5c256
rust: fix unsound `OwningDirstateMap`
Raphaël Gomès <rgomes@octobus.net>
parents:
48733
diff
changeset
|
1057 [[package]] |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1058 name = "proc-macro2" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1059 version = "1.0.47" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1060 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1061 checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1062 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1063 "unicode-ident", |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1064 ] |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1065 |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1066 [[package]] |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1067 name = "python3-sys" |
51659
d15922c41e08
rust: use `cpython` 0.7.2 crate to add support for Python 3.12
Raphaël Gomès <rgomes@octobus.net>
parents:
51391
diff
changeset
|
1068 version = "0.7.2" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1069 source = "registry+https://github.com/rust-lang/crates.io-index" |
51659
d15922c41e08
rust: use `cpython` 0.7.2 crate to add support for Python 3.12
Raphaël Gomès <rgomes@octobus.net>
parents:
51391
diff
changeset
|
1070 checksum = "0f53ef6740367a09718d2cd21ba15b0d7972342a38e554736bcee7773e45c9f5" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1071 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1072 "libc", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1073 "regex", |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1074 ] |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1075 |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1076 [[package]] |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1077 name = "quote" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1078 version = "1.0.21" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1079 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1080 checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1081 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1082 "proc-macro2", |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1083 ] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1084 |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1085 [[package]] |
51260
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1086 name = "radium" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1087 version = "0.7.0" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1088 source = "registry+https://github.com/rust-lang/crates.io-index" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1089 checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1090 |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1091 [[package]] |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1092 name = "rand" |
44230 | 1093 version = "0.7.3" |
1094 source = "registry+https://github.com/rust-lang/crates.io-index" | |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1095 checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" |
44230 | 1096 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1097 "getrandom 0.1.16", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1098 "libc", |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1099 "rand_chacha 0.2.2", |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1100 "rand_core 0.5.1", |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1101 "rand_hc", |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1102 ] |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1103 |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1104 [[package]] |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1105 name = "rand" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1106 version = "0.8.5" |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1107 source = "registry+https://github.com/rust-lang/crates.io-index" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1108 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1109 dependencies = [ |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1110 "libc", |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1111 "rand_chacha 0.3.1", |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1112 "rand_core 0.6.4", |
44230 | 1113 ] |
1114 | |
1115 [[package]] | |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1116 name = "rand_chacha" |
44540
82f51ab7a2dd
rust: add logging utils
Raphaël Gomès <rgomes@octobus.net>
parents:
44539
diff
changeset
|
1117 version = "0.2.2" |
44230 | 1118 source = "registry+https://github.com/rust-lang/crates.io-index" |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1119 checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" |
44230 | 1120 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1121 "ppv-lite86", |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1122 "rand_core 0.5.1", |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1123 ] |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1124 |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1125 [[package]] |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1126 name = "rand_chacha" |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1127 version = "0.3.1" |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1128 source = "registry+https://github.com/rust-lang/crates.io-index" |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1129 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1130 dependencies = [ |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1131 "ppv-lite86", |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1132 "rand_core 0.6.4", |
44230 | 1133 ] |
1134 | |
1135 [[package]] | |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1136 name = "rand_core" |
44230 | 1137 version = "0.5.1" |
1138 source = "registry+https://github.com/rust-lang/crates.io-index" | |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1139 checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" |
44230 | 1140 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1141 "getrandom 0.1.16", |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1142 ] |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1143 |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1144 [[package]] |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1145 name = "rand_core" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1146 version = "0.6.4" |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1147 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1148 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1149 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1150 "getrandom 0.2.8", |
44230 | 1151 ] |
1152 | |
1153 [[package]] | |
44599
d31d1c0685be
rust: update all dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
44598
diff
changeset
|
1154 name = "rand_distr" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1155 version = "0.4.3" |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1156 source = "registry+https://github.com/rust-lang/crates.io-index" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1157 checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1158 dependencies = [ |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1159 "num-traits", |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1160 "rand 0.8.5", |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1161 ] |
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1162 |
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1163 [[package]] |
44230 | 1164 name = "rand_hc" |
1165 version = "0.2.0" | |
1166 source = "registry+https://github.com/rust-lang/crates.io-index" | |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1167 checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" |
44230 | 1168 dependencies = [ |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1169 "rand_core 0.5.1", |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1170 ] |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1171 |
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1172 [[package]] |
44599
d31d1c0685be
rust: update all dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
44598
diff
changeset
|
1173 name = "rand_pcg" |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1174 version = "0.3.1" |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1175 source = "registry+https://github.com/rust-lang/crates.io-index" |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1176 checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e" |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1177 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1178 "rand_core 0.6.4", |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1179 ] |
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1180 |
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1181 [[package]] |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1182 name = "rand_xoshiro" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1183 version = "0.6.0" |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1184 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1185 checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa" |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1186 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1187 "rand_core 0.6.4", |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1188 ] |
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1189 |
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1190 [[package]] |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1191 name = "rayon" |
50297
3f31b8526d66
rust: upgrade `rayon` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
50296
diff
changeset
|
1192 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
|
1193 source = "registry+https://github.com/rust-lang/crates.io-index" |
50297
3f31b8526d66
rust: upgrade `rayon` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
50296
diff
changeset
|
1194 checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1195 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1196 "either", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1197 "rayon-core", |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1198 ] |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1199 |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1200 [[package]] |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1201 name = "rayon-core" |
50297
3f31b8526d66
rust: upgrade `rayon` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
50296
diff
changeset
|
1202 version = "1.11.0" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1203 source = "registry+https://github.com/rust-lang/crates.io-index" |
50297
3f31b8526d66
rust: upgrade `rayon` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
50296
diff
changeset
|
1204 checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1205 dependencies = [ |
49416
1bad05cfc818
rust: bump to memmap2 0.5.3, micro-timer 0.4.0, and crossbeam-channel 0.5.0
Mads Kiilerich <mads@kiilerich.com>
parents:
49164
diff
changeset
|
1206 "crossbeam-channel", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1207 "crossbeam-deque", |
49416
1bad05cfc818
rust: bump to memmap2 0.5.3, micro-timer 0.4.0, and crossbeam-channel 0.5.0
Mads Kiilerich <mads@kiilerich.com>
parents:
49164
diff
changeset
|
1208 "crossbeam-utils", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1209 "num_cpus", |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1210 ] |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1211 |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1212 [[package]] |
44265
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1213 name = "redox_syscall" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1214 version = "0.2.16" |
44265
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1215 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1216 checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1217 dependencies = [ |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1218 "bitflags 1.3.2", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1219 ] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1220 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1221 [[package]] |
51868 | 1222 name = "redox_syscall" |
1223 version = "0.5.3" | |
1224 source = "registry+https://github.com/rust-lang/crates.io-index" | |
1225 checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4" | |
1226 dependencies = [ | |
1227 "bitflags 2.6.0", | |
1228 ] | |
1229 | |
1230 [[package]] | |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1231 name = "redox_users" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1232 version = "0.4.5" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1233 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1234 checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1235 dependencies = [ |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1236 "getrandom 0.2.8", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1237 "libredox", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1238 "thiserror", |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1239 ] |
44265
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1240 |
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1241 [[package]] |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1242 name = "regex" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1243 version = "1.7.0" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1244 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1245 checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1246 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1247 "aho-corasick", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1248 "memchr", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1249 "regex-syntax", |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1250 ] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1251 |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1252 [[package]] |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1253 name = "regex-automata" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1254 version = "0.3.9" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1255 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1256 checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1257 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1258 [[package]] |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1259 name = "regex-syntax" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1260 version = "0.6.28" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1261 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1262 checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1263 |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1264 [[package]] |
44265
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1265 name = "remove_dir_all" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1266 version = "0.5.3" |
44265
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1267 source = "registry+https://github.com/rust-lang/crates.io-index" |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1268 checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" |
44265
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1269 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1270 "winapi", |
44265
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1271 ] |
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1272 |
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1273 [[package]] |
44981
cf04f62d1579
rhg: add rhg crate
Antoine Cezar <antoine.cezar@octobus.net>
parents:
44960
diff
changeset
|
1274 name = "rhg" |
cf04f62d1579
rhg: add rhg crate
Antoine Cezar <antoine.cezar@octobus.net>
parents:
44960
diff
changeset
|
1275 version = "0.1.0" |
45049
513b3ef277a3
rhg: add RootCommand using hg-core FindRoot operation to prepare `hg root`
Antoine Cezar <antoine.cezar@octobus.net>
parents:
44981
diff
changeset
|
1276 dependencies = [ |
48733
39c447e03dbc
rhg: Add support for colored output
Simon Sapin <simon.sapin@octobus.net>
parents:
48554
diff
changeset
|
1277 "atty", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1278 "chrono", |
49640
37bc3edef76f
rhg: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49638
diff
changeset
|
1279 "clap", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1280 "derive_more", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1281 "env_logger", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1282 "format-bytes", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1283 "hg-core", |
47404
ebdef6283798
rhg: read [paths] for `--repository` value
Pulkit Goyal <7895pulkit@gmail.com>
parents:
47380
diff
changeset
|
1284 "home", |
46729
6cd9f53aaed8
rhg: Fall back to Python on --repository with an URL
Simon Sapin <simon.sapin@octobus.net>
parents:
46664
diff
changeset
|
1285 "lazy_static", |
51759
955084b4f74f
rhg: ignore readonly FS error when saving dirstate
Arseniy Alekseyev <aalekseyev@janestreet.com>
parents:
51751
diff
changeset
|
1286 "libc", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1287 "log", |
49913
c15b415d1bff
rust: use `logging_timer` instead of `micro_timer`
Raphaël Gomès <rgomes@octobus.net>
parents:
49640
diff
changeset
|
1288 "logging_timer", |
49517
52464a20add0
rhg: parallellize computation of [unsure_is_modified]
Arseniy Alekseyev <aalekseyev@janestreet.com>
parents:
49416
diff
changeset
|
1289 "rayon", |
46729
6cd9f53aaed8
rhg: Fall back to Python on --repository with an URL
Simon Sapin <simon.sapin@octobus.net>
parents:
46664
diff
changeset
|
1290 "regex", |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1291 "shellexpand", |
49149
006688e36e12
rhg: use `Command::exec` instead of `Command::status`
Raphaël Gomès <rgomes@octobus.net>
parents:
49000
diff
changeset
|
1292 "which", |
50683
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1293 "whoami", |
45049
513b3ef277a3
rhg: add RootCommand using hg-core FindRoot operation to prepare `hg root`
Antoine Cezar <antoine.cezar@octobus.net>
parents:
44981
diff
changeset
|
1294 ] |
44981
cf04f62d1579
rhg: add rhg crate
Antoine Cezar <antoine.cezar@octobus.net>
parents:
44960
diff
changeset
|
1295 |
cf04f62d1579
rhg: add rhg crate
Antoine Cezar <antoine.cezar@octobus.net>
parents:
44960
diff
changeset
|
1296 [[package]] |
48952
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
1297 name = "rustc_version" |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
1298 version = "0.4.0" |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
1299 source = "registry+https://github.com/rust-lang/crates.io-index" |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
1300 checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
1301 dependencies = [ |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
1302 "semver", |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
1303 ] |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
1304 |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
1305 [[package]] |
44301
4caac36c66bc
rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents:
44266
diff
changeset
|
1306 name = "same-file" |
4caac36c66bc
rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents:
44266
diff
changeset
|
1307 version = "1.0.6" |
4caac36c66bc
rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents:
44266
diff
changeset
|
1308 source = "registry+https://github.com/rust-lang/crates.io-index" |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1309 checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" |
44301
4caac36c66bc
rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents:
44266
diff
changeset
|
1310 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1311 "winapi-util", |
44301
4caac36c66bc
rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents:
44266
diff
changeset
|
1312 ] |
4caac36c66bc
rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents:
44266
diff
changeset
|
1313 |
4caac36c66bc
rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents:
44266
diff
changeset
|
1314 [[package]] |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1315 name = "scopeguard" |
44540
82f51ab7a2dd
rust: add logging utils
Raphaël Gomès <rgomes@octobus.net>
parents:
44539
diff
changeset
|
1316 version = "1.1.0" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1317 source = "registry+https://github.com/rust-lang/crates.io-index" |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1318 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" |
43271
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1319 |
99394e6c5d12
rust-dirstate-status: add first Rust implementation of `dirstate.status`
Raphaël Gomès <rgomes@octobus.net>
parents:
43214
diff
changeset
|
1320 [[package]] |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1321 name = "scratch" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1322 version = "1.0.2" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1323 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1324 checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1325 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1326 [[package]] |
50682
2cc5de261d76
rust-hg-core: move from `ouroboros` to `self_cell`
Raphaël Gomès <rgomes@octobus.net>
parents:
50297
diff
changeset
|
1327 name = "self_cell" |
2cc5de261d76
rust-hg-core: move from `ouroboros` to `self_cell`
Raphaël Gomès <rgomes@octobus.net>
parents:
50297
diff
changeset
|
1328 version = "1.0.0" |
2cc5de261d76
rust-hg-core: move from `ouroboros` to `self_cell`
Raphaël Gomès <rgomes@octobus.net>
parents:
50297
diff
changeset
|
1329 source = "registry+https://github.com/rust-lang/crates.io-index" |
2cc5de261d76
rust-hg-core: move from `ouroboros` to `self_cell`
Raphaël Gomès <rgomes@octobus.net>
parents:
50297
diff
changeset
|
1330 checksum = "4a3926e239738d36060909ffe6f511502f92149a45a1fade7fe031cb2d33e88b" |
2cc5de261d76
rust-hg-core: move from `ouroboros` to `self_cell`
Raphaël Gomès <rgomes@octobus.net>
parents:
50297
diff
changeset
|
1331 |
2cc5de261d76
rust-hg-core: move from `ouroboros` to `self_cell`
Raphaël Gomès <rgomes@octobus.net>
parents:
50297
diff
changeset
|
1332 [[package]] |
48952
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
1333 name = "semver" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1334 version = "1.0.14" |
48952
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
1335 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1336 checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4" |
48952
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
1337 |
8848c3453661
rhg: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48950
diff
changeset
|
1338 [[package]] |
50763
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1339 name = "serde" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1340 version = "1.0.152" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1341 source = "registry+https://github.com/rust-lang/crates.io-index" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1342 checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1343 dependencies = [ |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1344 "serde_derive", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1345 ] |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1346 |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1347 [[package]] |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1348 name = "serde_derive" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1349 version = "1.0.152" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1350 source = "registry+https://github.com/rust-lang/crates.io-index" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1351 checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1352 dependencies = [ |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1353 "proc-macro2", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1354 "quote", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1355 "syn", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1356 ] |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1357 |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1358 [[package]] |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1359 name = "serde_spanned" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1360 version = "0.6.1" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1361 source = "registry+https://github.com/rust-lang/crates.io-index" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1362 checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1363 dependencies = [ |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1364 "serde", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1365 ] |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1366 |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1367 [[package]] |
47380
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
1368 name = "sha-1" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1369 version = "0.9.8" |
47380
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
1370 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1371 checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6" |
47380
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
1372 dependencies = [ |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1373 "block-buffer 0.9.0", |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1374 "cfg-if", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1375 "cpufeatures", |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1376 "digest 0.9.0", |
47380
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
1377 "opaque-debug", |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
1378 ] |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
1379 |
fad504cfc94b
rust: Use a maintained crate for SHA-1 hashing
Simon Sapin <simon.sapin@octobus.net>
parents:
47113
diff
changeset
|
1380 [[package]] |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1381 name = "sha-1" |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1382 version = "0.10.0" |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1383 source = "registry+https://github.com/rust-lang/crates.io-index" |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1384 checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f" |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1385 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1386 "cfg-if", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1387 "cpufeatures", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1388 "digest 0.10.5", |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1389 ] |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1390 |
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1391 [[package]] |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1392 name = "shellexpand" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1393 version = "3.1.0" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1394 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1395 checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1396 dependencies = [ |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1397 "bstr", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1398 "dirs", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1399 "os_str_bytes", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1400 ] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1401 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1402 [[package]] |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1403 name = "sized-chunks" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1404 version = "0.6.5" |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1405 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1406 checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e" |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1407 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1408 "bitmaps", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1409 "typenum", |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1410 ] |
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1411 |
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1412 [[package]] |
47954
4afd6cc447b9
rust: Make OwningDirstateMap generic and move it into hg-core
Simon Sapin <simon.sapin@octobus.net>
parents:
47520
diff
changeset
|
1413 name = "stable_deref_trait" |
4afd6cc447b9
rust: Make OwningDirstateMap generic and move it into hg-core
Simon Sapin <simon.sapin@octobus.net>
parents:
47520
diff
changeset
|
1414 version = "1.2.0" |
4afd6cc447b9
rust: Make OwningDirstateMap generic and move it into hg-core
Simon Sapin <simon.sapin@octobus.net>
parents:
47520
diff
changeset
|
1415 source = "registry+https://github.com/rust-lang/crates.io-index" |
4afd6cc447b9
rust: Make OwningDirstateMap generic and move it into hg-core
Simon Sapin <simon.sapin@octobus.net>
parents:
47520
diff
changeset
|
1416 checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" |
4afd6cc447b9
rust: Make OwningDirstateMap generic and move it into hg-core
Simon Sapin <simon.sapin@octobus.net>
parents:
47520
diff
changeset
|
1417 |
4afd6cc447b9
rust: Make OwningDirstateMap generic and move it into hg-core
Simon Sapin <simon.sapin@octobus.net>
parents:
47520
diff
changeset
|
1418 [[package]] |
46181
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
1419 name = "static_assertions" |
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
1420 version = "1.1.0" |
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
1421 source = "registry+https://github.com/rust-lang/crates.io-index" |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1422 checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" |
46181
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
1423 |
3aec2620554b
hg-core: add format-bytes dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
46054
diff
changeset
|
1424 [[package]] |
44386
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
1425 name = "strsim" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1426 version = "0.10.0" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1427 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1428 checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1429 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1430 [[package]] |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1431 name = "syn" |
50763
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1432 version = "1.0.109" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1433 source = "registry+https://github.com/rust-lang/crates.io-index" |
50763
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1434 checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1435 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1436 "proc-macro2", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1437 "quote", |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1438 "unicode-ident", |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1439 ] |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1440 |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1441 [[package]] |
51260
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1442 name = "tap" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1443 version = "1.0.1" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1444 source = "registry+https://github.com/rust-lang/crates.io-index" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1445 checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1446 |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1447 [[package]] |
44265
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1448 name = "tempfile" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1449 version = "3.3.0" |
44265
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1450 source = "registry+https://github.com/rust-lang/crates.io-index" |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1451 checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" |
44265
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1452 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1453 "cfg-if", |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1454 "fastrand", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1455 "libc", |
51868 | 1456 "redox_syscall 0.2.16", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1457 "remove_dir_all", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1458 "winapi", |
44265
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1459 ] |
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1460 |
c18dd48cea4a
rust-pathauditor: add Rust implementation of the `pathauditor`
Raphaël Gomès <rgomes@octobus.net>
parents:
44231
diff
changeset
|
1461 [[package]] |
45517
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
1462 name = "termcolor" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1463 version = "1.1.3" |
45517
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
1464 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1465 checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" |
45517
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
1466 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1467 "winapi-util", |
45517
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
1468 ] |
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
1469 |
2a68a5ec8dd0
rust-cpython: switch logging facade from `simple_logger` to `env_logger`
Raphaël Gomès <rgomes@octobus.net>
parents:
45050
diff
changeset
|
1470 [[package]] |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1471 name = "thiserror" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1472 version = "1.0.39" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1473 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1474 checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1475 dependencies = [ |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1476 "thiserror-impl", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1477 ] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1478 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1479 [[package]] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1480 name = "thiserror-impl" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1481 version = "1.0.39" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1482 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1483 checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1484 dependencies = [ |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1485 "proc-macro2", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1486 "quote", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1487 "syn", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1488 ] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1489 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1490 [[package]] |
49581
04f1dba53c96
rust: create wrapper struct to reduce `regex` contention issues
Raphaël Gomès <rgomes@octobus.net>
parents:
49520
diff
changeset
|
1491 name = "thread_local" |
04f1dba53c96
rust: create wrapper struct to reduce `regex` contention issues
Raphaël Gomès <rgomes@octobus.net>
parents:
49520
diff
changeset
|
1492 version = "1.1.4" |
04f1dba53c96
rust: create wrapper struct to reduce `regex` contention issues
Raphaël Gomès <rgomes@octobus.net>
parents:
49520
diff
changeset
|
1493 source = "registry+https://github.com/rust-lang/crates.io-index" |
04f1dba53c96
rust: create wrapper struct to reduce `regex` contention issues
Raphaël Gomès <rgomes@octobus.net>
parents:
49520
diff
changeset
|
1494 checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" |
04f1dba53c96
rust: create wrapper struct to reduce `regex` contention issues
Raphaël Gomès <rgomes@octobus.net>
parents:
49520
diff
changeset
|
1495 dependencies = [ |
04f1dba53c96
rust: create wrapper struct to reduce `regex` contention issues
Raphaël Gomès <rgomes@octobus.net>
parents:
49520
diff
changeset
|
1496 "once_cell", |
04f1dba53c96
rust: create wrapper struct to reduce `regex` contention issues
Raphaël Gomès <rgomes@octobus.net>
parents:
49520
diff
changeset
|
1497 ] |
04f1dba53c96
rust: create wrapper struct to reduce `regex` contention issues
Raphaël Gomès <rgomes@octobus.net>
parents:
49520
diff
changeset
|
1498 |
04f1dba53c96
rust: create wrapper struct to reduce `regex` contention issues
Raphaël Gomès <rgomes@octobus.net>
parents:
49520
diff
changeset
|
1499 [[package]] |
50763
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1500 name = "toml" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1501 version = "0.6.0" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1502 source = "registry+https://github.com/rust-lang/crates.io-index" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1503 checksum = "4fb9d890e4dc9298b70f740f615f2e05b9db37dce531f6b24fb77ac993f9f217" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1504 dependencies = [ |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1505 "serde", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1506 "serde_spanned", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1507 "toml_datetime", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1508 "toml_edit", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1509 ] |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1510 |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1511 [[package]] |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1512 name = "toml_datetime" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1513 version = "0.5.1" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1514 source = "registry+https://github.com/rust-lang/crates.io-index" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1515 checksum = "4553f467ac8e3d374bc9a177a26801e5d0f9b211aa1673fb137a403afd1c9cf5" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1516 dependencies = [ |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1517 "serde", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1518 ] |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1519 |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1520 [[package]] |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1521 name = "toml_edit" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1522 version = "0.18.1" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1523 source = "registry+https://github.com/rust-lang/crates.io-index" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1524 checksum = "56c59d8dd7d0dcbc6428bf7aa2f0e823e26e43b3c9aca15bbc9475d23e5fa12b" |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1525 dependencies = [ |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1526 "indexmap", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1527 "nom8", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1528 "serde", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1529 "serde_spanned", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1530 "toml_datetime", |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1531 ] |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1532 |
f8412da86d05
rust-config: add support for default config items
Raphaël Gomès <rgomes@octobus.net>
parents:
50683
diff
changeset
|
1533 [[package]] |
43826
5ac243a92e37
rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents:
43271
diff
changeset
|
1534 name = "twox-hash" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1535 version = "1.6.3" |
43826
5ac243a92e37
rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents:
43271
diff
changeset
|
1536 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1537 checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" |
43826
5ac243a92e37
rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents:
43271
diff
changeset
|
1538 dependencies = [ |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1539 "cfg-if", |
48953
ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
Raphaël Gomès <rgomes@octobus.net>
parents:
48952
diff
changeset
|
1540 "rand 0.8.5", |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1541 "static_assertions", |
43826
5ac243a92e37
rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents:
43271
diff
changeset
|
1542 ] |
5ac243a92e37
rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents:
43271
diff
changeset
|
1543 |
5ac243a92e37
rust-performance: introduce FastHashMap type alias for HashMap
Raphaël Gomès <rgomes@octobus.net>
parents:
43271
diff
changeset
|
1544 [[package]] |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1545 name = "typenum" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1546 version = "1.15.0" |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1547 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1548 checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1549 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1550 [[package]] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1551 name = "unicode-ident" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1552 version = "1.0.5" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1553 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1554 checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3" |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1555 |
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1556 [[package]] |
44386
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
1557 name = "unicode-width" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1558 version = "0.1.10" |
44386
8f7c6656ac79
rust-nodemap: pure Rust example
Georges Racinet <georges.racinet@octobus.net>
parents:
44305
diff
changeset
|
1559 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1560 checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1561 |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1562 [[package]] |
52060
8b7123c8947b
update: add a Rust fast-path when updating from null (and clean)
Raphaël Gomès <rgomes@octobus.net>
parents:
52042
diff
changeset
|
1563 name = "uuid" |
8b7123c8947b
update: add a Rust fast-path when updating from null (and clean)
Raphaël Gomès <rgomes@octobus.net>
parents:
52042
diff
changeset
|
1564 version = "1.11.0" |
8b7123c8947b
update: add a Rust fast-path when updating from null (and clean)
Raphaël Gomès <rgomes@octobus.net>
parents:
52042
diff
changeset
|
1565 source = "registry+https://github.com/rust-lang/crates.io-index" |
8b7123c8947b
update: add a Rust fast-path when updating from null (and clean)
Raphaël Gomès <rgomes@octobus.net>
parents:
52042
diff
changeset
|
1566 checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" |
8b7123c8947b
update: add a Rust fast-path when updating from null (and clean)
Raphaël Gomès <rgomes@octobus.net>
parents:
52042
diff
changeset
|
1567 dependencies = [ |
8b7123c8947b
update: add a Rust fast-path when updating from null (and clean)
Raphaël Gomès <rgomes@octobus.net>
parents:
52042
diff
changeset
|
1568 "getrandom 0.2.8", |
8b7123c8947b
update: add a Rust fast-path when updating from null (and clean)
Raphaël Gomès <rgomes@octobus.net>
parents:
52042
diff
changeset
|
1569 ] |
8b7123c8947b
update: add a Rust fast-path when updating from null (and clean)
Raphaël Gomès <rgomes@octobus.net>
parents:
52042
diff
changeset
|
1570 |
8b7123c8947b
update: add a Rust fast-path when updating from null (and clean)
Raphaël Gomès <rgomes@octobus.net>
parents:
52042
diff
changeset
|
1571 [[package]] |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1572 name = "vcpkg" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1573 version = "0.2.15" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1574 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1575 checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" |
44266
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1576 |
9ab4830e9e3d
rust-hg-path: add useful methods to `HgPath`
Raphaël Gomès <rgomes@octobus.net>
parents:
44265
diff
changeset
|
1577 [[package]] |
48517
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
1578 name = "vcsgraph" |
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
1579 version = "0.2.0" |
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
1580 source = "registry+https://github.com/rust-lang/crates.io-index" |
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
1581 checksum = "4cb68c231e2575f7503a7c19213875f9d4ec2e84e963a56ce3de4b6bee351ef7" |
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
1582 dependencies = [ |
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
1583 "hex", |
48554
0dc698c91ca0
rust: upgrade `rand*` crates
Martin von Zweigbergk <martinvonz@google.com>
parents:
48517
diff
changeset
|
1584 "rand 0.7.3", |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1585 "sha-1 0.9.8", |
48517
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
1586 ] |
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
1587 |
99a0b5422cf5
rust: add vcsgraph crate as dependency
pacien <pacien.trangirard@pacien.net>
parents:
48492
diff
changeset
|
1588 [[package]] |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1589 name = "version_check" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1590 version = "0.9.4" |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1591 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1592 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" |
45963
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1593 |
0d99778af68a
copies-rust: use immutable "OrdMap" to store copies information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
45554
diff
changeset
|
1594 [[package]] |
44230 | 1595 name = "wasi" |
1596 version = "0.9.0+wasi-snapshot-preview1" | |
1597 source = "registry+https://github.com/rust-lang/crates.io-index" | |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1598 checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" |
44230 | 1599 |
1600 [[package]] | |
45554
abad925af2ef
rust: update Cargo.lock
Raphaël Gomès <rgomes@octobus.net>
parents:
45531
diff
changeset
|
1601 name = "wasi" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1602 version = "0.11.0+wasi-snapshot-preview1" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1603 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1604 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1605 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1606 [[package]] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1607 name = "wasm-bindgen" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1608 version = "0.2.83" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1609 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1610 checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1611 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1612 "cfg-if", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1613 "wasm-bindgen-macro", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1614 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1615 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1616 [[package]] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1617 name = "wasm-bindgen-backend" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1618 version = "0.2.83" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1619 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1620 checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1621 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1622 "bumpalo", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1623 "log", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1624 "once_cell", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1625 "proc-macro2", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1626 "quote", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1627 "syn", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1628 "wasm-bindgen-shared", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1629 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1630 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1631 [[package]] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1632 name = "wasm-bindgen-macro" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1633 version = "0.2.83" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1634 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1635 checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1636 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1637 "quote", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1638 "wasm-bindgen-macro-support", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1639 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1640 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1641 [[package]] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1642 name = "wasm-bindgen-macro-support" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1643 version = "0.2.83" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1644 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1645 checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1646 dependencies = [ |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1647 "proc-macro2", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1648 "quote", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1649 "syn", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1650 "wasm-bindgen-backend", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1651 "wasm-bindgen-shared", |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1652 ] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1653 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1654 [[package]] |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1655 name = "wasm-bindgen-shared" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1656 version = "0.2.83" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1657 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1658 checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1659 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1660 [[package]] |
50683
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1661 name = "web-sys" |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1662 version = "0.3.60" |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1663 source = "registry+https://github.com/rust-lang/crates.io-index" |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1664 checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1665 dependencies = [ |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1666 "js-sys", |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1667 "wasm-bindgen", |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1668 ] |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1669 |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1670 [[package]] |
49149
006688e36e12
rhg: use `Command::exec` instead of `Command::status`
Raphaël Gomès <rgomes@octobus.net>
parents:
49000
diff
changeset
|
1671 name = "which" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1672 version = "4.3.0" |
49149
006688e36e12
rhg: use `Command::exec` instead of `Command::status`
Raphaël Gomès <rgomes@octobus.net>
parents:
49000
diff
changeset
|
1673 source = "registry+https://github.com/rust-lang/crates.io-index" |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1674 checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b" |
49149
006688e36e12
rhg: use `Command::exec` instead of `Command::status`
Raphaël Gomès <rgomes@octobus.net>
parents:
49000
diff
changeset
|
1675 dependencies = [ |
006688e36e12
rhg: use `Command::exec` instead of `Command::status`
Raphaël Gomès <rgomes@octobus.net>
parents:
49000
diff
changeset
|
1676 "either", |
006688e36e12
rhg: use `Command::exec` instead of `Command::status`
Raphaël Gomès <rgomes@octobus.net>
parents:
49000
diff
changeset
|
1677 "libc", |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1678 "once_cell", |
49149
006688e36e12
rhg: use `Command::exec` instead of `Command::status`
Raphaël Gomès <rgomes@octobus.net>
parents:
49000
diff
changeset
|
1679 ] |
006688e36e12
rhg: use `Command::exec` instead of `Command::status`
Raphaël Gomès <rgomes@octobus.net>
parents:
49000
diff
changeset
|
1680 |
006688e36e12
rhg: use `Command::exec` instead of `Command::status`
Raphaël Gomès <rgomes@octobus.net>
parents:
49000
diff
changeset
|
1681 [[package]] |
50683
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1682 name = "whoami" |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1683 version = "1.4.0" |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1684 source = "registry+https://github.com/rust-lang/crates.io-index" |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1685 checksum = "2c70234412ca409cc04e864e89523cb0fc37f5e1344ebed5a3ebf4192b6b9f68" |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1686 dependencies = [ |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1687 "wasm-bindgen", |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1688 "web-sys", |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1689 ] |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1690 |
d39ac3468ad4
rust-dependencies: switch from `users` to `whoami`
Raphaël Gomès <rgomes@octobus.net>
parents:
50682
diff
changeset
|
1691 [[package]] |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1692 name = "winapi" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1693 version = "0.3.9" |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1694 source = "registry+https://github.com/rust-lang/crates.io-index" |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1695 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1696 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1697 "winapi-i686-pc-windows-gnu", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1698 "winapi-x86_64-pc-windows-gnu", |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1699 ] |
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1700 |
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1701 [[package]] |
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1702 name = "winapi-i686-pc-windows-gnu" |
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1703 version = "0.4.0" |
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1704 source = "registry+https://github.com/rust-lang/crates.io-index" |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1705 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1706 |
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1707 [[package]] |
44301
4caac36c66bc
rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents:
44266
diff
changeset
|
1708 name = "winapi-util" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1709 version = "0.1.5" |
44301
4caac36c66bc
rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents:
44266
diff
changeset
|
1710 source = "registry+https://github.com/rust-lang/crates.io-index" |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1711 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" |
44301
4caac36c66bc
rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents:
44266
diff
changeset
|
1712 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1713 "winapi", |
44301
4caac36c66bc
rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents:
44266
diff
changeset
|
1714 ] |
4caac36c66bc
rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents:
44266
diff
changeset
|
1715 |
4caac36c66bc
rust-utils: add util for canonical path
Raphaël Gomès <rgomes@octobus.net>
parents:
44266
diff
changeset
|
1716 [[package]] |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1717 name = "winapi-x86_64-pc-windows-gnu" |
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1718 version = "0.4.0" |
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1719 source = "registry+https://github.com/rust-lang/crates.io-index" |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1720 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" |
41692
ee7b7bd432a1
rust: translated random test of missingancestors
Georges Racinet <gracinet@anybox.fr>
parents:
40985
diff
changeset
|
1721 |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1722 [[package]] |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1723 name = "windows-sys" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1724 version = "0.48.0" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1725 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1726 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1727 dependencies = [ |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1728 "windows-targets 0.48.5", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1729 ] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1730 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1731 [[package]] |
51868 | 1732 name = "windows-sys" |
52042
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1733 version = "0.52.0" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1734 source = "registry+https://github.com/rust-lang/crates.io-index" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1735 checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1736 dependencies = [ |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1737 "windows-targets 0.52.6", |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1738 ] |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1739 |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1740 [[package]] |
92e23ba257d1
rust-hg-cpython: add an `HgProgressBar` util
Raphaël Gomès <rgomes@octobus.net>
parents:
51868
diff
changeset
|
1741 name = "windows-sys" |
51868 | 1742 version = "0.59.0" |
1743 source = "registry+https://github.com/rust-lang/crates.io-index" | |
1744 checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" | |
1745 dependencies = [ | |
1746 "windows-targets 0.52.6", | |
1747 ] | |
1748 | |
1749 [[package]] | |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1750 name = "windows-targets" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1751 version = "0.48.5" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1752 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1753 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1754 dependencies = [ |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1755 "windows_aarch64_gnullvm 0.48.5", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1756 "windows_aarch64_msvc 0.48.5", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1757 "windows_i686_gnu 0.48.5", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1758 "windows_i686_msvc 0.48.5", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1759 "windows_x86_64_gnu 0.48.5", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1760 "windows_x86_64_gnullvm 0.48.5", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1761 "windows_x86_64_msvc 0.48.5", |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1762 ] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1763 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1764 [[package]] |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1765 name = "windows-targets" |
51868 | 1766 version = "0.52.6" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1767 source = "registry+https://github.com/rust-lang/crates.io-index" |
51868 | 1768 checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1769 dependencies = [ |
51868 | 1770 "windows_aarch64_gnullvm 0.52.6", |
1771 "windows_aarch64_msvc 0.52.6", | |
1772 "windows_i686_gnu 0.52.6", | |
1773 "windows_i686_gnullvm", | |
1774 "windows_i686_msvc 0.52.6", | |
1775 "windows_x86_64_gnu 0.52.6", | |
1776 "windows_x86_64_gnullvm 0.52.6", | |
1777 "windows_x86_64_msvc 0.52.6", | |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1778 ] |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1779 |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1780 [[package]] |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1781 name = "windows_aarch64_gnullvm" |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1782 version = "0.48.5" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1783 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1784 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1785 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1786 [[package]] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1787 name = "windows_aarch64_gnullvm" |
51868 | 1788 version = "0.52.6" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1789 source = "registry+https://github.com/rust-lang/crates.io-index" |
51868 | 1790 checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1791 |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1792 [[package]] |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1793 name = "windows_aarch64_msvc" |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1794 version = "0.48.5" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1795 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1796 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1797 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1798 [[package]] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1799 name = "windows_aarch64_msvc" |
51868 | 1800 version = "0.52.6" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1801 source = "registry+https://github.com/rust-lang/crates.io-index" |
51868 | 1802 checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1803 |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1804 [[package]] |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1805 name = "windows_i686_gnu" |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1806 version = "0.48.5" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1807 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1808 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1809 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1810 [[package]] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1811 name = "windows_i686_gnu" |
51868 | 1812 version = "0.52.6" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1813 source = "registry+https://github.com/rust-lang/crates.io-index" |
51868 | 1814 checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" |
1815 | |
1816 [[package]] | |
1817 name = "windows_i686_gnullvm" | |
1818 version = "0.52.6" | |
1819 source = "registry+https://github.com/rust-lang/crates.io-index" | |
1820 checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" | |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1821 |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1822 [[package]] |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1823 name = "windows_i686_msvc" |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1824 version = "0.48.5" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1825 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1826 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1827 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1828 [[package]] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1829 name = "windows_i686_msvc" |
51868 | 1830 version = "0.52.6" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1831 source = "registry+https://github.com/rust-lang/crates.io-index" |
51868 | 1832 checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1833 |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1834 [[package]] |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1835 name = "windows_x86_64_gnu" |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1836 version = "0.48.5" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1837 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1838 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1839 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1840 [[package]] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1841 name = "windows_x86_64_gnu" |
51868 | 1842 version = "0.52.6" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1843 source = "registry+https://github.com/rust-lang/crates.io-index" |
51868 | 1844 checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1845 |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1846 [[package]] |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1847 name = "windows_x86_64_gnullvm" |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1848 version = "0.48.5" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1849 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1850 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1851 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1852 [[package]] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1853 name = "windows_x86_64_gnullvm" |
51868 | 1854 version = "0.52.6" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1855 source = "registry+https://github.com/rust-lang/crates.io-index" |
51868 | 1856 checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1857 |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1858 [[package]] |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1859 name = "windows_x86_64_msvc" |
51751
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1860 version = "0.48.5" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1861 source = "registry+https://github.com/rust-lang/crates.io-index" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1862 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1863 |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1864 [[package]] |
48fd4d23c867
rhg: expand user and environment variables in ignore includes
Raphaël Gomès <rgomes@octobus.net>
parents:
51659
diff
changeset
|
1865 name = "windows_x86_64_msvc" |
51868 | 1866 version = "0.52.6" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1867 source = "registry+https://github.com/rust-lang/crates.io-index" |
51868 | 1868 checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" |
51391
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1869 |
a96ed440450e
hg-core: implement timestamp line parsing
Arun Kulshreshtha <akulshreshtha@janestreet.com>
parents:
51260
diff
changeset
|
1870 [[package]] |
51260
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1871 name = "wyz" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1872 version = "0.5.1" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1873 source = "registry+https://github.com/rust-lang/crates.io-index" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1874 checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1875 dependencies = [ |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1876 "tap", |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1877 ] |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1878 |
c4f1a790bda8
rust-index: use a `BitVec` instead of plain `Vec` for heads computation
Raphaël Gomès <rgomes@octobus.net>
parents:
50763
diff
changeset
|
1879 [[package]] |
49637
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1880 name = "yansi" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1881 version = "0.5.1" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1882 source = "registry+https://github.com/rust-lang/crates.io-index" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1883 checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1884 |
14bfd22a57a9
hg-core: upgrade `clap` dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
49636
diff
changeset
|
1885 [[package]] |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1886 name = "zstd" |
50296
6abee333a200
rust: update zstd dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
50174
diff
changeset
|
1887 version = "0.12.3+zstd.1.5.2" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1888 source = "registry+https://github.com/rust-lang/crates.io-index" |
50296
6abee333a200
rust: update zstd dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
50174
diff
changeset
|
1889 checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1890 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1891 "zstd-safe", |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1892 ] |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1893 |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1894 [[package]] |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1895 name = "zstd-safe" |
50296
6abee333a200
rust: update zstd dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
50174
diff
changeset
|
1896 version = "6.0.4+zstd.1.5.4" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1897 source = "registry+https://github.com/rust-lang/crates.io-index" |
50296
6abee333a200
rust: update zstd dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
50174
diff
changeset
|
1898 checksum = "7afb4b54b8910cf5447638cb54bf4e8a65cbedd783af98b98c62ffe91f185543" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1899 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1900 "libc", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1901 "zstd-sys", |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1902 ] |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1903 |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1904 [[package]] |
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1905 name = "zstd-sys" |
50296
6abee333a200
rust: update zstd dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
50174
diff
changeset
|
1906 version = "2.0.7+zstd.1.5.4" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1907 source = "registry+https://github.com/rust-lang/crates.io-index" |
50296
6abee333a200
rust: update zstd dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
50174
diff
changeset
|
1908 checksum = "94509c3ba2fe55294d752b79842c530ccfab760192521df74a081a78d2b3c7f5" |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1909 dependencies = [ |
46664
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1910 "cc", |
46cdd6660503
rust: Upgrade Cargo.lock to the newer format
Simon Sapin <simon.sapin@octobus.net>
parents:
46601
diff
changeset
|
1911 "libc", |
50296
6abee333a200
rust: update zstd dependency
Raphaël Gomès <rgomes@octobus.net>
parents:
50174
diff
changeset
|
1912 "pkg-config", |
45526
26c53ee51c68
hg-core: Add a limited read only `revlog` implementation
Antoine Cezar <antoine.cezar@octobus.net>
parents:
45517
diff
changeset
|
1913 ] |