author | Gregory Szorc <gregory.szorc@gmail.com> |
Wed, 23 Jan 2019 17:45:11 -0800 | |
changeset 41329 | 84707d9e77a0 |
parent 40985 | 4277e20cfec4 |
child 41692 | ee7b7bd432a1 |
permissions | -rw-r--r-- |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
1 |
[[package]] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
2 |
name = "aho-corasick" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
3 |
version = "0.6.9" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
4 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
5 |
dependencies = [ |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
6 |
"memchr 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
7 |
] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
8 |
|
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
9 |
[[package]] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
10 |
name = "cfg-if" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
11 |
version = "0.1.6" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
12 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
13 |
|
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
14 |
[[package]] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
15 |
name = "cpython" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
16 |
version = "0.2.1" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
17 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
18 |
dependencies = [ |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
19 |
"libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
20 |
"num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
21 |
"python27-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
40985
4277e20cfec4
rust-cpython: build and support for Python3
Georges Racinet <gracinet@anybox.fr>
parents:
40965
diff
changeset
|
22 |
"python3-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
23 |
] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
24 |
|
35569
964212780daf
rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
25 |
[[package]] |
40271
dbc28c91f7ff
rust: pure Rust lazyancestors iterator
Georges Racinet <gracinet@anybox.fr>
parents:
35601
diff
changeset
|
26 |
name = "hg-core" |
dbc28c91f7ff
rust: pure Rust lazyancestors iterator
Georges Racinet <gracinet@anybox.fr>
parents:
35601
diff
changeset
|
27 |
version = "0.1.0" |
dbc28c91f7ff
rust: pure Rust lazyancestors iterator
Georges Racinet <gracinet@anybox.fr>
parents:
35601
diff
changeset
|
28 |
|
dbc28c91f7ff
rust: pure Rust lazyancestors iterator
Georges Racinet <gracinet@anybox.fr>
parents:
35601
diff
changeset
|
29 |
[[package]] |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
30 |
name = "hg-cpython" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
31 |
version = "0.1.0" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
32 |
dependencies = [ |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
33 |
"cpython 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
34 |
"hg-core 0.1.0", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
35 |
"libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
36 |
"python27-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
37 |
"python3-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
38 |
] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
39 |
|
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
40 |
[[package]] |
40272
a36c5e23c055
rust: iterator bindings to C code
Georges Racinet <gracinet@anybox.fr>
parents:
40271
diff
changeset
|
41 |
name = "hgdirectffi" |
a36c5e23c055
rust: iterator bindings to C code
Georges Racinet <gracinet@anybox.fr>
parents:
40271
diff
changeset
|
42 |
version = "0.1.0" |
a36c5e23c055
rust: iterator bindings to C code
Georges Racinet <gracinet@anybox.fr>
parents:
40271
diff
changeset
|
43 |
dependencies = [ |
a36c5e23c055
rust: iterator bindings to C code
Georges Racinet <gracinet@anybox.fr>
parents:
40271
diff
changeset
|
44 |
"hg-core 0.1.0", |
40964
98a0fbda8739
rust-cpython: exclude hgcli from workspace
Georges Racinet <gracinet@anybox.fr>
parents:
40272
diff
changeset
|
45 |
"libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", |
35569
964212780daf
rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
46 |
] |
964212780daf
rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
47 |
|
964212780daf
rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
48 |
[[package]] |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
49 |
name = "lazy_static" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
50 |
version = "1.2.0" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
51 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
52 |
|
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
53 |
[[package]] |
35569
964212780daf
rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
54 |
name = "libc" |
40964
98a0fbda8739
rust-cpython: exclude hgcli from workspace
Georges Racinet <gracinet@anybox.fr>
parents:
40272
diff
changeset
|
55 |
version = "0.2.45" |
35569
964212780daf
rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
56 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
964212780daf
rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
57 |
|
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
58 |
[[package]] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
59 |
name = "memchr" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
60 |
version = "2.1.2" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
61 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
62 |
dependencies = [ |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
63 |
"cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
64 |
"libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
65 |
"version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
66 |
] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
67 |
|
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
68 |
[[package]] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
69 |
name = "num-traits" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
70 |
version = "0.2.6" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
71 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
72 |
|
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
73 |
[[package]] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
74 |
name = "python27-sys" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
75 |
version = "0.2.1" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
76 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
77 |
dependencies = [ |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
78 |
"libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
79 |
"regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
80 |
] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
81 |
|
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
82 |
[[package]] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
83 |
name = "python3-sys" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
84 |
version = "0.2.1" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
85 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
86 |
dependencies = [ |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
87 |
"libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
88 |
"regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
89 |
] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
90 |
|
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
91 |
[[package]] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
92 |
name = "regex" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
93 |
version = "1.1.0" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
94 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
95 |
dependencies = [ |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
96 |
"aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
97 |
"memchr 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
98 |
"regex-syntax 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
99 |
"thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
100 |
"utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
101 |
] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
102 |
|
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
103 |
[[package]] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
104 |
name = "regex-syntax" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
105 |
version = "0.6.4" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
106 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
107 |
dependencies = [ |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
108 |
"ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
109 |
] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
110 |
|
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
111 |
[[package]] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
112 |
name = "thread_local" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
113 |
version = "0.3.6" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
114 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
115 |
dependencies = [ |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
116 |
"lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
117 |
] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
118 |
|
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
119 |
[[package]] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
120 |
name = "ucd-util" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
121 |
version = "0.1.3" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
122 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
123 |
|
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
124 |
[[package]] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
125 |
name = "utf8-ranges" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
126 |
version = "1.0.2" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
127 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
128 |
|
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
129 |
[[package]] |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
130 |
name = "version_check" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
131 |
version = "0.1.5" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
132 |
source = "registry+https://github.com/rust-lang/crates.io-index" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
133 |
|
35569
964212780daf
rust: implementation of `hg`
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff
changeset
|
134 |
[metadata] |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
135 |
"checksum aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
136 |
"checksum cfg-if 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "082bb9b28e00d3c9d39cc03e64ce4cea0f1bb9b3fde493f0cbc008472d22bdf4" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
137 |
"checksum cpython 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b489034e723e7f5109fecd19b719e664f89ef925be785885252469e9822fa940" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
138 |
"checksum lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a374c89b9db55895453a74c1e38861d9deec0b01b405a82516e9d5de4820dea1" |
40964
98a0fbda8739
rust-cpython: exclude hgcli from workspace
Georges Racinet <gracinet@anybox.fr>
parents:
40272
diff
changeset
|
139 |
"checksum libc 0.2.45 (registry+https://github.com/rust-lang/crates.io-index)" = "2d2857ec59fadc0773853c664d2d18e7198e83883e7060b63c924cb077bd5c74" |
40965
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
140 |
"checksum memchr 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "db4c41318937f6e76648f42826b1d9ade5c09cafb5aef7e351240a70f39206e9" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
141 |
"checksum num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
142 |
"checksum python27-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "56114c37d4dca82526d74009df7782a28c871ac9d36b19d4cb9e67672258527e" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
143 |
"checksum python3-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "61e4aac43f833fd637e429506cb2ac9d7df672c4b68f2eaaa163649b7fdc0444" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
144 |
"checksum regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "37e7cbbd370869ce2e8dff25c7018702d10b21a20ef7135316f8daecd6c25b7f" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
145 |
"checksum regex-syntax 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4e47a2ed29da7a9e1960e1639e7a982e6edc6d49be308a3b02daf511504a16d1" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
146 |
"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
147 |
"checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
148 |
"checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737" |
5532823e8c18
rust-cpython: start cpython crate bindings
Georges Racinet <gracinet@anybox.fr>
parents:
40964
diff
changeset
|
149 |
"checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" |