]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_gcc/Cargo.lock
Rollup merge of #106739 - WaffleLapkin:astconv, r=estebank
[rust.git] / compiler / rustc_codegen_gcc / Cargo.lock
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 version = 3
4
5 [[package]]
6 name = "aho-corasick"
7 version = "0.7.18"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
10 dependencies = [
11  "memchr",
12 ]
13
14 [[package]]
15 name = "bitflags"
16 version = "1.3.2"
17 source = "registry+https://github.com/rust-lang/crates.io-index"
18 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
19
20 [[package]]
21 name = "cfg-if"
22 version = "1.0.0"
23 source = "registry+https://github.com/rust-lang/crates.io-index"
24 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
25
26 [[package]]
27 name = "fm"
28 version = "0.1.4"
29 source = "registry+https://github.com/rust-lang/crates.io-index"
30 checksum = "68fda3cff2cce84c19e5dfa5179a4b35d2c0f18b893f108002b8a6a54984acca"
31 dependencies = [
32  "regex",
33 ]
34
35 [[package]]
36 name = "gccjit"
37 version = "1.0.0"
38 source = "git+https://github.com/antoyo/gccjit.rs#bdb86fb5092895ff5589726b33250010c64d93f6"
39 dependencies = [
40  "gccjit_sys",
41 ]
42
43 [[package]]
44 name = "gccjit_sys"
45 version = "0.0.1"
46 source = "git+https://github.com/antoyo/gccjit.rs#bdb86fb5092895ff5589726b33250010c64d93f6"
47 dependencies = [
48  "libc 0.1.12",
49 ]
50
51 [[package]]
52 name = "getopts"
53 version = "0.2.21"
54 source = "registry+https://github.com/rust-lang/crates.io-index"
55 checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
56 dependencies = [
57  "unicode-width",
58 ]
59
60 [[package]]
61 name = "getrandom"
62 version = "0.2.3"
63 source = "registry+https://github.com/rust-lang/crates.io-index"
64 checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
65 dependencies = [
66  "cfg-if",
67  "libc 0.2.112",
68  "wasi",
69 ]
70
71 [[package]]
72 name = "hermit-abi"
73 version = "0.1.19"
74 source = "registry+https://github.com/rust-lang/crates.io-index"
75 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
76 dependencies = [
77  "libc 0.2.112",
78 ]
79
80 [[package]]
81 name = "lang_tester"
82 version = "0.3.13"
83 source = "registry+https://github.com/rust-lang/crates.io-index"
84 checksum = "96bd995a092cac79868250589869b5a5d656b02a02bd74c8ebdc566dc7203090"
85 dependencies = [
86  "fm",
87  "getopts",
88  "libc 0.2.112",
89  "num_cpus",
90  "termcolor",
91  "threadpool",
92  "wait-timeout",
93  "walkdir",
94 ]
95
96 [[package]]
97 name = "libc"
98 version = "0.1.12"
99 source = "registry+https://github.com/rust-lang/crates.io-index"
100 checksum = "e32a70cf75e5846d53a673923498228bbec6a8624708a9ea5645f075d6276122"
101
102 [[package]]
103 name = "libc"
104 version = "0.2.112"
105 source = "registry+https://github.com/rust-lang/crates.io-index"
106 checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125"
107
108 [[package]]
109 name = "memchr"
110 version = "2.4.1"
111 source = "registry+https://github.com/rust-lang/crates.io-index"
112 checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
113
114 [[package]]
115 name = "num_cpus"
116 version = "1.13.0"
117 source = "registry+https://github.com/rust-lang/crates.io-index"
118 checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
119 dependencies = [
120  "hermit-abi",
121  "libc 0.2.112",
122 ]
123
124 [[package]]
125 name = "ppv-lite86"
126 version = "0.2.15"
127 source = "registry+https://github.com/rust-lang/crates.io-index"
128 checksum = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba"
129
130 [[package]]
131 name = "rand"
132 version = "0.8.4"
133 source = "registry+https://github.com/rust-lang/crates.io-index"
134 checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
135 dependencies = [
136  "libc 0.2.112",
137  "rand_chacha",
138  "rand_core",
139  "rand_hc",
140 ]
141
142 [[package]]
143 name = "rand_chacha"
144 version = "0.3.1"
145 source = "registry+https://github.com/rust-lang/crates.io-index"
146 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
147 dependencies = [
148  "ppv-lite86",
149  "rand_core",
150 ]
151
152 [[package]]
153 name = "rand_core"
154 version = "0.6.3"
155 source = "registry+https://github.com/rust-lang/crates.io-index"
156 checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
157 dependencies = [
158  "getrandom",
159 ]
160
161 [[package]]
162 name = "rand_hc"
163 version = "0.3.1"
164 source = "registry+https://github.com/rust-lang/crates.io-index"
165 checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
166 dependencies = [
167  "rand_core",
168 ]
169
170 [[package]]
171 name = "redox_syscall"
172 version = "0.2.10"
173 source = "registry+https://github.com/rust-lang/crates.io-index"
174 checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
175 dependencies = [
176  "bitflags",
177 ]
178
179 [[package]]
180 name = "regex"
181 version = "1.5.4"
182 source = "registry+https://github.com/rust-lang/crates.io-index"
183 checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
184 dependencies = [
185  "aho-corasick",
186  "memchr",
187  "regex-syntax",
188 ]
189
190 [[package]]
191 name = "regex-syntax"
192 version = "0.6.25"
193 source = "registry+https://github.com/rust-lang/crates.io-index"
194 checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
195
196 [[package]]
197 name = "remove_dir_all"
198 version = "0.5.3"
199 source = "registry+https://github.com/rust-lang/crates.io-index"
200 checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
201 dependencies = [
202  "winapi",
203 ]
204
205 [[package]]
206 name = "rustc_codegen_gcc"
207 version = "0.1.0"
208 dependencies = [
209  "gccjit",
210  "lang_tester",
211  "tempfile",
212 ]
213
214 [[package]]
215 name = "same-file"
216 version = "1.0.6"
217 source = "registry+https://github.com/rust-lang/crates.io-index"
218 checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
219 dependencies = [
220  "winapi-util",
221 ]
222
223 [[package]]
224 name = "tempfile"
225 version = "3.2.0"
226 source = "registry+https://github.com/rust-lang/crates.io-index"
227 checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
228 dependencies = [
229  "cfg-if",
230  "libc 0.2.112",
231  "rand",
232  "redox_syscall",
233  "remove_dir_all",
234  "winapi",
235 ]
236
237 [[package]]
238 name = "termcolor"
239 version = "1.1.2"
240 source = "registry+https://github.com/rust-lang/crates.io-index"
241 checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
242 dependencies = [
243  "winapi-util",
244 ]
245
246 [[package]]
247 name = "threadpool"
248 version = "1.8.1"
249 source = "registry+https://github.com/rust-lang/crates.io-index"
250 checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
251 dependencies = [
252  "num_cpus",
253 ]
254
255 [[package]]
256 name = "unicode-width"
257 version = "0.1.9"
258 source = "registry+https://github.com/rust-lang/crates.io-index"
259 checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
260
261 [[package]]
262 name = "wait-timeout"
263 version = "0.2.0"
264 source = "registry+https://github.com/rust-lang/crates.io-index"
265 checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
266 dependencies = [
267  "libc 0.2.112",
268 ]
269
270 [[package]]
271 name = "walkdir"
272 version = "2.3.2"
273 source = "registry+https://github.com/rust-lang/crates.io-index"
274 checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
275 dependencies = [
276  "same-file",
277  "winapi",
278  "winapi-util",
279 ]
280
281 [[package]]
282 name = "wasi"
283 version = "0.10.2+wasi-snapshot-preview1"
284 source = "registry+https://github.com/rust-lang/crates.io-index"
285 checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
286
287 [[package]]
288 name = "winapi"
289 version = "0.3.9"
290 source = "registry+https://github.com/rust-lang/crates.io-index"
291 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
292 dependencies = [
293  "winapi-i686-pc-windows-gnu",
294  "winapi-x86_64-pc-windows-gnu",
295 ]
296
297 [[package]]
298 name = "winapi-i686-pc-windows-gnu"
299 version = "0.4.0"
300 source = "registry+https://github.com/rust-lang/crates.io-index"
301 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
302
303 [[package]]
304 name = "winapi-util"
305 version = "0.1.5"
306 source = "registry+https://github.com/rust-lang/crates.io-index"
307 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
308 dependencies = [
309  "winapi",
310 ]
311
312 [[package]]
313 name = "winapi-x86_64-pc-windows-gnu"
314 version = "0.4.0"
315 source = "registry+https://github.com/rust-lang/crates.io-index"
316 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"