]> git.proxmox.com Git - rustc.git/blob - compiler/rustc_codegen_gcc/Cargo.lock
New upstream version 1.70.0+dfsg1
[rustc.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#fe242b7eb26980e6c78859d51c8d4cc1e43381a3"
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#fe242b7eb26980e6c78859d51c8d4cc1e43381a3"
47 dependencies = [
48 "libc",
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",
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",
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",
89 "num_cpus",
90 "termcolor",
91 "threadpool",
92 "wait-timeout",
93 "walkdir",
94 ]
95
96 [[package]]
97 name = "libc"
98 version = "0.2.112"
99 source = "registry+https://github.com/rust-lang/crates.io-index"
100 checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125"
101
102 [[package]]
103 name = "memchr"
104 version = "2.4.1"
105 source = "registry+https://github.com/rust-lang/crates.io-index"
106 checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
107
108 [[package]]
109 name = "num_cpus"
110 version = "1.13.0"
111 source = "registry+https://github.com/rust-lang/crates.io-index"
112 checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
113 dependencies = [
114 "hermit-abi",
115 "libc",
116 ]
117
118 [[package]]
119 name = "ppv-lite86"
120 version = "0.2.15"
121 source = "registry+https://github.com/rust-lang/crates.io-index"
122 checksum = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba"
123
124 [[package]]
125 name = "rand"
126 version = "0.8.4"
127 source = "registry+https://github.com/rust-lang/crates.io-index"
128 checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
129 dependencies = [
130 "libc",
131 "rand_chacha",
132 "rand_core",
133 "rand_hc",
134 ]
135
136 [[package]]
137 name = "rand_chacha"
138 version = "0.3.1"
139 source = "registry+https://github.com/rust-lang/crates.io-index"
140 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
141 dependencies = [
142 "ppv-lite86",
143 "rand_core",
144 ]
145
146 [[package]]
147 name = "rand_core"
148 version = "0.6.3"
149 source = "registry+https://github.com/rust-lang/crates.io-index"
150 checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
151 dependencies = [
152 "getrandom",
153 ]
154
155 [[package]]
156 name = "rand_hc"
157 version = "0.3.1"
158 source = "registry+https://github.com/rust-lang/crates.io-index"
159 checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
160 dependencies = [
161 "rand_core",
162 ]
163
164 [[package]]
165 name = "redox_syscall"
166 version = "0.2.10"
167 source = "registry+https://github.com/rust-lang/crates.io-index"
168 checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
169 dependencies = [
170 "bitflags",
171 ]
172
173 [[package]]
174 name = "regex"
175 version = "1.5.4"
176 source = "registry+https://github.com/rust-lang/crates.io-index"
177 checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
178 dependencies = [
179 "aho-corasick",
180 "memchr",
181 "regex-syntax",
182 ]
183
184 [[package]]
185 name = "regex-syntax"
186 version = "0.6.25"
187 source = "registry+https://github.com/rust-lang/crates.io-index"
188 checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
189
190 [[package]]
191 name = "remove_dir_all"
192 version = "0.5.3"
193 source = "registry+https://github.com/rust-lang/crates.io-index"
194 checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
195 dependencies = [
196 "winapi",
197 ]
198
199 [[package]]
200 name = "rustc_codegen_gcc"
201 version = "0.1.0"
202 dependencies = [
203 "gccjit",
204 "lang_tester",
205 "smallvec",
206 "tempfile",
207 ]
208
209 [[package]]
210 name = "same-file"
211 version = "1.0.6"
212 source = "registry+https://github.com/rust-lang/crates.io-index"
213 checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
214 dependencies = [
215 "winapi-util",
216 ]
217
218 [[package]]
219 name = "smallvec"
220 version = "1.10.0"
221 source = "registry+https://github.com/rust-lang/crates.io-index"
222 checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
223
224 [[package]]
225 name = "tempfile"
226 version = "3.2.0"
227 source = "registry+https://github.com/rust-lang/crates.io-index"
228 checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
229 dependencies = [
230 "cfg-if",
231 "libc",
232 "rand",
233 "redox_syscall",
234 "remove_dir_all",
235 "winapi",
236 ]
237
238 [[package]]
239 name = "termcolor"
240 version = "1.1.2"
241 source = "registry+https://github.com/rust-lang/crates.io-index"
242 checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
243 dependencies = [
244 "winapi-util",
245 ]
246
247 [[package]]
248 name = "threadpool"
249 version = "1.8.1"
250 source = "registry+https://github.com/rust-lang/crates.io-index"
251 checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
252 dependencies = [
253 "num_cpus",
254 ]
255
256 [[package]]
257 name = "unicode-width"
258 version = "0.1.9"
259 source = "registry+https://github.com/rust-lang/crates.io-index"
260 checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
261
262 [[package]]
263 name = "wait-timeout"
264 version = "0.2.0"
265 source = "registry+https://github.com/rust-lang/crates.io-index"
266 checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
267 dependencies = [
268 "libc",
269 ]
270
271 [[package]]
272 name = "walkdir"
273 version = "2.3.2"
274 source = "registry+https://github.com/rust-lang/crates.io-index"
275 checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
276 dependencies = [
277 "same-file",
278 "winapi",
279 "winapi-util",
280 ]
281
282 [[package]]
283 name = "wasi"
284 version = "0.10.2+wasi-snapshot-preview1"
285 source = "registry+https://github.com/rust-lang/crates.io-index"
286 checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
287
288 [[package]]
289 name = "winapi"
290 version = "0.3.9"
291 source = "registry+https://github.com/rust-lang/crates.io-index"
292 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
293 dependencies = [
294 "winapi-i686-pc-windows-gnu",
295 "winapi-x86_64-pc-windows-gnu",
296 ]
297
298 [[package]]
299 name = "winapi-i686-pc-windows-gnu"
300 version = "0.4.0"
301 source = "registry+https://github.com/rust-lang/crates.io-index"
302 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
303
304 [[package]]
305 name = "winapi-util"
306 version = "0.1.5"
307 source = "registry+https://github.com/rust-lang/crates.io-index"
308 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
309 dependencies = [
310 "winapi",
311 ]
312
313 [[package]]
314 name = "winapi-x86_64-pc-windows-gnu"
315 version = "0.4.0"
316 source = "registry+https://github.com/rust-lang/crates.io-index"
317 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"