]> Witch of Git - jade-mouse/blob - toolchain/Cargo.lock
Implement instruction decoder
[jade-mouse] / toolchain / Cargo.lock
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 [[package]]
4 name = "autocfg"
5 version = "0.1.7"
6 source = "registry+https://github.com/rust-lang/crates.io-index"
7 checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
8
9 [[package]]
10 name = "autocfg"
11 version = "1.0.0"
12 source = "registry+https://github.com/rust-lang/crates.io-index"
13 checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
14
15 [[package]]
16 name = "bit-set"
17 version = "0.5.1"
18 source = "registry+https://github.com/rust-lang/crates.io-index"
19 checksum = "e84c238982c4b1e1ee668d136c510c67a13465279c0cb367ea6baf6310620a80"
20 dependencies = [
21 "bit-vec",
22 ]
23
24 [[package]]
25 name = "bit-vec"
26 version = "0.5.1"
27 source = "registry+https://github.com/rust-lang/crates.io-index"
28 checksum = "f59bbe95d4e52a6398ec21238d31577f2b28a9d86807f06ca59d191d8440d0bb"
29
30 [[package]]
31 name = "bitflags"
32 version = "1.2.1"
33 source = "registry+https://github.com/rust-lang/crates.io-index"
34 checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
35
36 [[package]]
37 name = "bitmatch"
38 version = "0.1.0"
39 dependencies = [
40 "boolean_expression",
41 "proc-macro2 1.0.8",
42 "quote 1.0.2",
43 "syn 1.0.13",
44 ]
45
46 [[package]]
47 name = "boolean_expression"
48 version = "0.3.9"
49 source = "registry+https://github.com/rust-lang/crates.io-index"
50 checksum = "d8bc527fa8fb9f89e6d049fdea9ab86d738265a1bc814ec7ac6e93e1d4769f84"
51 dependencies = [
52 "indoc",
53 "itertools",
54 "rand 0.3.23",
55 "smallvec",
56 ]
57
58 [[package]]
59 name = "byteorder"
60 version = "1.3.2"
61 source = "registry+https://github.com/rust-lang/crates.io-index"
62 checksum = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5"
63
64 [[package]]
65 name = "c2-chacha"
66 version = "0.2.3"
67 source = "registry+https://github.com/rust-lang/crates.io-index"
68 checksum = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb"
69 dependencies = [
70 "ppv-lite86",
71 ]
72
73 [[package]]
74 name = "cfg-if"
75 version = "0.1.10"
76 source = "registry+https://github.com/rust-lang/crates.io-index"
77 checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
78
79 [[package]]
80 name = "cloudabi"
81 version = "0.0.3"
82 source = "registry+https://github.com/rust-lang/crates.io-index"
83 checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
84 dependencies = [
85 "bitflags",
86 ]
87
88 [[package]]
89 name = "fnv"
90 version = "1.0.6"
91 source = "registry+https://github.com/rust-lang/crates.io-index"
92 checksum = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3"
93
94 [[package]]
95 name = "fuchsia-cprng"
96 version = "0.1.1"
97 source = "registry+https://github.com/rust-lang/crates.io-index"
98 checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
99
100 [[package]]
101 name = "getrandom"
102 version = "0.1.14"
103 source = "registry+https://github.com/rust-lang/crates.io-index"
104 checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
105 dependencies = [
106 "cfg-if",
107 "libc",
108 "wasi",
109 ]
110
111 [[package]]
112 name = "indoc"
113 version = "0.2.8"
114 source = "registry+https://github.com/rust-lang/crates.io-index"
115 checksum = "098a82c5223d3162a32d79f84e43d718c32f050d07b796285684ee43059bc8c4"
116 dependencies = [
117 "indoc-impl",
118 "proc-macro-hack",
119 ]
120
121 [[package]]
122 name = "indoc-impl"
123 version = "0.2.8"
124 source = "registry+https://github.com/rust-lang/crates.io-index"
125 checksum = "55cf2a15c870db1b07595cc9adaece19fac97d59a16665e79cd728b391a6b711"
126 dependencies = [
127 "proc-macro-hack",
128 "proc-macro2 0.4.30",
129 "quote 0.6.13",
130 "syn 0.15.44",
131 "unindent",
132 ]
133
134 [[package]]
135 name = "itertools"
136 version = "0.4.19"
137 source = "registry+https://github.com/rust-lang/crates.io-index"
138 checksum = "c4a9b56eb56058f43dc66e58f40a214b2ccbc9f3df51861b63d51dec7b65bc3f"
139
140 [[package]]
141 name = "lazy_static"
142 version = "1.4.0"
143 source = "registry+https://github.com/rust-lang/crates.io-index"
144 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
145
146 [[package]]
147 name = "libc"
148 version = "0.2.66"
149 source = "registry+https://github.com/rust-lang/crates.io-index"
150 checksum = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558"
151
152 [[package]]
153 name = "num-traits"
154 version = "0.2.11"
155 source = "registry+https://github.com/rust-lang/crates.io-index"
156 checksum = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096"
157 dependencies = [
158 "autocfg 1.0.0",
159 ]
160
161 [[package]]
162 name = "ppv-lite86"
163 version = "0.2.6"
164 source = "registry+https://github.com/rust-lang/crates.io-index"
165 checksum = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b"
166
167 [[package]]
168 name = "proc-macro-hack"
169 version = "0.4.2"
170 source = "registry+https://github.com/rust-lang/crates.io-index"
171 checksum = "463bf29e7f11344e58c9e01f171470ab15c925c6822ad75028cc1c0e1d1eb63b"
172 dependencies = [
173 "proc-macro-hack-impl",
174 ]
175
176 [[package]]
177 name = "proc-macro-hack-impl"
178 version = "0.4.2"
179 source = "registry+https://github.com/rust-lang/crates.io-index"
180 checksum = "38c47dcb1594802de8c02f3b899e2018c78291168a22c281be21ea0fb4796842"
181
182 [[package]]
183 name = "proc-macro2"
184 version = "0.4.30"
185 source = "registry+https://github.com/rust-lang/crates.io-index"
186 checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
187 dependencies = [
188 "unicode-xid 0.1.0",
189 ]
190
191 [[package]]
192 name = "proc-macro2"
193 version = "1.0.8"
194 source = "registry+https://github.com/rust-lang/crates.io-index"
195 checksum = "3acb317c6ff86a4e579dfa00fc5e6cca91ecbb4e7eb2df0468805b674eb88548"
196 dependencies = [
197 "unicode-xid 0.2.0",
198 ]
199
200 [[package]]
201 name = "proptest"
202 version = "0.9.4"
203 source = "registry+https://github.com/rust-lang/crates.io-index"
204 checksum = "cf147e022eacf0c8a054ab864914a7602618adba841d800a9a9868a5237a529f"
205 dependencies = [
206 "bit-set",
207 "bitflags",
208 "byteorder",
209 "lazy_static",
210 "num-traits",
211 "quick-error",
212 "rand 0.6.5",
213 "rand_chacha 0.1.1",
214 "rand_xorshift",
215 "regex-syntax",
216 "rusty-fork",
217 "tempfile",
218 ]
219
220 [[package]]
221 name = "proptest-derive"
222 version = "0.1.2"
223 source = "registry+https://github.com/rust-lang/crates.io-index"
224 checksum = "d31edb17edac73aeacc947bd61462dda15220584268896a58e12f053d767f15b"
225 dependencies = [
226 "proc-macro2 0.4.30",
227 "quote 0.6.13",
228 "syn 0.15.44",
229 ]
230
231 [[package]]
232 name = "quick-error"
233 version = "1.2.3"
234 source = "registry+https://github.com/rust-lang/crates.io-index"
235 checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
236
237 [[package]]
238 name = "quote"
239 version = "0.6.13"
240 source = "registry+https://github.com/rust-lang/crates.io-index"
241 checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
242 dependencies = [
243 "proc-macro2 0.4.30",
244 ]
245
246 [[package]]
247 name = "quote"
248 version = "1.0.2"
249 source = "registry+https://github.com/rust-lang/crates.io-index"
250 checksum = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
251 dependencies = [
252 "proc-macro2 1.0.8",
253 ]
254
255 [[package]]
256 name = "rand"
257 version = "0.3.23"
258 source = "registry+https://github.com/rust-lang/crates.io-index"
259 checksum = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c"
260 dependencies = [
261 "libc",
262 "rand 0.4.6",
263 ]
264
265 [[package]]
266 name = "rand"
267 version = "0.4.6"
268 source = "registry+https://github.com/rust-lang/crates.io-index"
269 checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
270 dependencies = [
271 "fuchsia-cprng",
272 "libc",
273 "rand_core 0.3.1",
274 "rdrand",
275 "winapi",
276 ]
277
278 [[package]]
279 name = "rand"
280 version = "0.6.5"
281 source = "registry+https://github.com/rust-lang/crates.io-index"
282 checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
283 dependencies = [
284 "autocfg 0.1.7",
285 "libc",
286 "rand_chacha 0.1.1",
287 "rand_core 0.4.2",
288 "rand_hc 0.1.0",
289 "rand_isaac",
290 "rand_jitter",
291 "rand_os",
292 "rand_pcg",
293 "rand_xorshift",
294 "winapi",
295 ]
296
297 [[package]]
298 name = "rand"
299 version = "0.7.3"
300 source = "registry+https://github.com/rust-lang/crates.io-index"
301 checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
302 dependencies = [
303 "getrandom",
304 "libc",
305 "rand_chacha 0.2.1",
306 "rand_core 0.5.1",
307 "rand_hc 0.2.0",
308 ]
309
310 [[package]]
311 name = "rand_chacha"
312 version = "0.1.1"
313 source = "registry+https://github.com/rust-lang/crates.io-index"
314 checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
315 dependencies = [
316 "autocfg 0.1.7",
317 "rand_core 0.3.1",
318 ]
319
320 [[package]]
321 name = "rand_chacha"
322 version = "0.2.1"
323 source = "registry+https://github.com/rust-lang/crates.io-index"
324 checksum = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853"
325 dependencies = [
326 "c2-chacha",
327 "rand_core 0.5.1",
328 ]
329
330 [[package]]
331 name = "rand_core"
332 version = "0.3.1"
333 source = "registry+https://github.com/rust-lang/crates.io-index"
334 checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
335 dependencies = [
336 "rand_core 0.4.2",
337 ]
338
339 [[package]]
340 name = "rand_core"
341 version = "0.4.2"
342 source = "registry+https://github.com/rust-lang/crates.io-index"
343 checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
344
345 [[package]]
346 name = "rand_core"
347 version = "0.5.1"
348 source = "registry+https://github.com/rust-lang/crates.io-index"
349 checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
350 dependencies = [
351 "getrandom",
352 ]
353
354 [[package]]
355 name = "rand_hc"
356 version = "0.1.0"
357 source = "registry+https://github.com/rust-lang/crates.io-index"
358 checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
359 dependencies = [
360 "rand_core 0.3.1",
361 ]
362
363 [[package]]
364 name = "rand_hc"
365 version = "0.2.0"
366 source = "registry+https://github.com/rust-lang/crates.io-index"
367 checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
368 dependencies = [
369 "rand_core 0.5.1",
370 ]
371
372 [[package]]
373 name = "rand_isaac"
374 version = "0.1.1"
375 source = "registry+https://github.com/rust-lang/crates.io-index"
376 checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
377 dependencies = [
378 "rand_core 0.3.1",
379 ]
380
381 [[package]]
382 name = "rand_jitter"
383 version = "0.1.4"
384 source = "registry+https://github.com/rust-lang/crates.io-index"
385 checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
386 dependencies = [
387 "libc",
388 "rand_core 0.4.2",
389 "winapi",
390 ]
391
392 [[package]]
393 name = "rand_os"
394 version = "0.1.3"
395 source = "registry+https://github.com/rust-lang/crates.io-index"
396 checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
397 dependencies = [
398 "cloudabi",
399 "fuchsia-cprng",
400 "libc",
401 "rand_core 0.4.2",
402 "rdrand",
403 "winapi",
404 ]
405
406 [[package]]
407 name = "rand_pcg"
408 version = "0.1.2"
409 source = "registry+https://github.com/rust-lang/crates.io-index"
410 checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
411 dependencies = [
412 "autocfg 0.1.7",
413 "rand_core 0.4.2",
414 ]
415
416 [[package]]
417 name = "rand_xorshift"
418 version = "0.1.1"
419 source = "registry+https://github.com/rust-lang/crates.io-index"
420 checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
421 dependencies = [
422 "rand_core 0.3.1",
423 ]
424
425 [[package]]
426 name = "rdrand"
427 version = "0.4.0"
428 source = "registry+https://github.com/rust-lang/crates.io-index"
429 checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
430 dependencies = [
431 "rand_core 0.3.1",
432 ]
433
434 [[package]]
435 name = "redox_syscall"
436 version = "0.1.56"
437 source = "registry+https://github.com/rust-lang/crates.io-index"
438 checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
439
440 [[package]]
441 name = "regex-syntax"
442 version = "0.6.13"
443 source = "registry+https://github.com/rust-lang/crates.io-index"
444 checksum = "e734e891f5b408a29efbf8309e656876276f49ab6a6ac208600b4419bd893d90"
445
446 [[package]]
447 name = "remove_dir_all"
448 version = "0.5.2"
449 source = "registry+https://github.com/rust-lang/crates.io-index"
450 checksum = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
451 dependencies = [
452 "winapi",
453 ]
454
455 [[package]]
456 name = "rusty-fork"
457 version = "0.2.2"
458 source = "registry+https://github.com/rust-lang/crates.io-index"
459 checksum = "3dd93264e10c577503e926bd1430193eeb5d21b059148910082245309b424fae"
460 dependencies = [
461 "fnv",
462 "quick-error",
463 "tempfile",
464 "wait-timeout",
465 ]
466
467 [[package]]
468 name = "smallvec"
469 version = "0.1.8"
470 source = "registry+https://github.com/rust-lang/crates.io-index"
471 checksum = "fcc8d19212aacecf95e4a7a2179b26f7aeb9732a915cf01f05b0d3e044865410"
472
473 [[package]]
474 name = "syn"
475 version = "0.15.44"
476 source = "registry+https://github.com/rust-lang/crates.io-index"
477 checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5"
478 dependencies = [
479 "proc-macro2 0.4.30",
480 "quote 0.6.13",
481 "unicode-xid 0.1.0",
482 ]
483
484 [[package]]
485 name = "syn"
486 version = "1.0.13"
487 source = "registry+https://github.com/rust-lang/crates.io-index"
488 checksum = "1e4ff033220a41d1a57d8125eab57bf5263783dfdcc18688b1dacc6ce9651ef8"
489 dependencies = [
490 "proc-macro2 1.0.8",
491 "quote 1.0.2",
492 "unicode-xid 0.2.0",
493 ]
494
495 [[package]]
496 name = "tempfile"
497 version = "3.1.0"
498 source = "registry+https://github.com/rust-lang/crates.io-index"
499 checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
500 dependencies = [
501 "cfg-if",
502 "libc",
503 "rand 0.7.3",
504 "redox_syscall",
505 "remove_dir_all",
506 "winapi",
507 ]
508
509 [[package]]
510 name = "toolchain"
511 version = "0.1.0"
512 dependencies = [
513 "bitmatch",
514 "proptest",
515 "proptest-derive",
516 ]
517
518 [[package]]
519 name = "unicode-xid"
520 version = "0.1.0"
521 source = "registry+https://github.com/rust-lang/crates.io-index"
522 checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
523
524 [[package]]
525 name = "unicode-xid"
526 version = "0.2.0"
527 source = "registry+https://github.com/rust-lang/crates.io-index"
528 checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
529
530 [[package]]
531 name = "unindent"
532 version = "0.1.5"
533 source = "registry+https://github.com/rust-lang/crates.io-index"
534 checksum = "63f18aa3b0e35fed5a0048f029558b1518095ffe2a0a31fb87c93dece93a4993"
535
536 [[package]]
537 name = "wait-timeout"
538 version = "0.2.0"
539 source = "registry+https://github.com/rust-lang/crates.io-index"
540 checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
541 dependencies = [
542 "libc",
543 ]
544
545 [[package]]
546 name = "wasi"
547 version = "0.9.0+wasi-snapshot-preview1"
548 source = "registry+https://github.com/rust-lang/crates.io-index"
549 checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
550
551 [[package]]
552 name = "winapi"
553 version = "0.3.8"
554 source = "registry+https://github.com/rust-lang/crates.io-index"
555 checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
556 dependencies = [
557 "winapi-i686-pc-windows-gnu",
558 "winapi-x86_64-pc-windows-gnu",
559 ]
560
561 [[package]]
562 name = "winapi-i686-pc-windows-gnu"
563 version = "0.4.0"
564 source = "registry+https://github.com/rust-lang/crates.io-index"
565 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
566
567 [[package]]
568 name = "winapi-x86_64-pc-windows-gnu"
569 version = "0.4.0"
570 source = "registry+https://github.com/rust-lang/crates.io-index"
571 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"