qirrunner 0.7.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. qirrunner-0.7.0/Cargo.lock +1272 -0
  2. qirrunner-0.7.0/Cargo.toml +26 -0
  3. qirrunner-0.7.0/MANIFEST.in +2 -0
  4. qirrunner-0.7.0/NOTICE.txt +15039 -0
  5. qirrunner-0.7.0/PKG-INFO +224 -0
  6. qirrunner-0.7.0/README.md +196 -0
  7. qirrunner-0.7.0/local_dependencies/qir-backend/Cargo.toml +27 -0
  8. qirrunner-0.7.0/local_dependencies/qir-backend/benches/gates.rs +76 -0
  9. qirrunner-0.7.0/local_dependencies/qir-backend/benches/grover.rs +64 -0
  10. qirrunner-0.7.0/local_dependencies/qir-backend/src/exp.rs +154 -0
  11. qirrunner-0.7.0/local_dependencies/qir-backend/src/lib.rs +1322 -0
  12. qirrunner-0.7.0/local_dependencies/qir-backend/src/result_bool.rs +46 -0
  13. qirrunner-0.7.0/local_dependencies/qir-stdlib/Cargo.toml +22 -0
  14. qirrunner-0.7.0/local_dependencies/qir-stdlib/NOTICE.txt +2239 -0
  15. qirrunner-0.7.0/local_dependencies/qir-stdlib/build.rs +23 -0
  16. qirrunner-0.7.0/local_dependencies/qir-stdlib/include/qir_stdlib.def +80 -0
  17. qirrunner-0.7.0/local_dependencies/qir-stdlib/include/qir_stdlib.h +243 -0
  18. qirrunner-0.7.0/local_dependencies/qir-stdlib/notice.hbs +16 -0
  19. qirrunner-0.7.0/local_dependencies/qir-stdlib/src/arrays.rs +311 -0
  20. qirrunner-0.7.0/local_dependencies/qir-stdlib/src/bigints.rs +269 -0
  21. qirrunner-0.7.0/local_dependencies/qir-stdlib/src/callables.rs +170 -0
  22. qirrunner-0.7.0/local_dependencies/qir-stdlib/src/lib.rs +134 -0
  23. qirrunner-0.7.0/local_dependencies/qir-stdlib/src/math.rs +127 -0
  24. qirrunner-0.7.0/local_dependencies/qir-stdlib/src/output_recording.rs +316 -0
  25. qirrunner-0.7.0/local_dependencies/qir-stdlib/src/range_support.rs +198 -0
  26. qirrunner-0.7.0/local_dependencies/qir-stdlib/src/strings.rs +389 -0
  27. qirrunner-0.7.0/local_dependencies/qir-stdlib/src/tuples.rs +129 -0
  28. qirrunner-0.7.0/local_dependencies/quantum-sparse-sim/Cargo.toml +15 -0
  29. qirrunner-0.7.0/local_dependencies/quantum-sparse-sim/src/exp.rs +247 -0
  30. qirrunner-0.7.0/local_dependencies/quantum-sparse-sim/src/lib.rs +1685 -0
  31. qirrunner-0.7.0/local_dependencies/quantum-sparse-sim/src/matrix_testing.rs +661 -0
  32. qirrunner-0.7.0/local_dependencies/quantum-sparse-sim/src/nearly_zero.rs +24 -0
  33. qirrunner-0.7.0/local_dependencies/runner/Cargo.toml +22 -0
  34. qirrunner-0.7.0/local_dependencies/runner/README.md +149 -0
  35. qirrunner-0.7.0/local_dependencies/runner/src/cli.rs +62 -0
  36. qirrunner-0.7.0/local_dependencies/runner/src/lib.rs +546 -0
  37. qirrunner-0.7.0/local_dependencies/runner/src/main.rs +8 -0
  38. qirrunner-0.7.0/local_dependencies/runner/tests/resources/bv.bc +0 -0
  39. qirrunner-0.7.0/local_dependencies/runner/tests/resources/cji.bc +0 -0
  40. qirrunner-0.7.0/local_dependencies/runner/tests/resources/full-qir.bc +0 -0
  41. qirrunner-0.7.0/local_dependencies/runner/tests/resources/missing-intrinsic.bc +0 -0
  42. qirrunner-0.7.0/local_dependencies/runner/tests/resources/mixed_output.bc +0 -0
  43. qirrunner-0.7.0/local_dependencies/runner/tests/resources/shor.bc +0 -0
  44. qirrunner-0.7.0/local_dependencies/runner/tests/tests.rs +301 -0
  45. qirrunner-0.7.0/notice.hbs +300 -0
  46. qirrunner-0.7.0/pyproject.toml +32 -0
  47. qirrunner-0.7.0/qirrunner/__init__.py +29 -0
  48. qirrunner-0.7.0/qirrunner/_native.pyi +41 -0
  49. qirrunner-0.7.0/qirrunner/py.typed +0 -0
  50. qirrunner-0.7.0/requirements-dev.txt +1 -0
  51. qirrunner-0.7.0/requirements-manylinux.txt +2 -0
  52. qirrunner-0.7.0/requirements-test.txt +1 -0
  53. qirrunner-0.7.0/requirements.txt +1 -0
  54. qirrunner-0.7.0/src/lib.rs +4 -0
  55. qirrunner-0.7.0/src/python.rs +130 -0
  56. qirrunner-0.7.0/tests/test_api.py +21 -0
@@ -0,0 +1,1272 @@
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.20"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anes"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
19
+
20
+ [[package]]
21
+ name = "anstream"
22
+ version = "0.6.7"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "4cd2405b3ac1faab2990b74d728624cd9fd115651fcecc7c2d8daf01376275ba"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "utf8parse",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "anstyle"
36
+ version = "1.0.0"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d"
39
+
40
+ [[package]]
41
+ name = "anstyle-parse"
42
+ version = "0.2.0"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
45
+ dependencies = [
46
+ "utf8parse",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "anstyle-query"
51
+ version = "1.0.0"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
54
+ dependencies = [
55
+ "windows-sys 0.48.0",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "anstyle-wincon"
60
+ version = "3.0.2"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
63
+ dependencies = [
64
+ "anstyle",
65
+ "windows-sys 0.52.0",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "autocfg"
70
+ version = "1.1.0"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
73
+
74
+ [[package]]
75
+ name = "bitflags"
76
+ version = "2.4.0"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
79
+
80
+ [[package]]
81
+ name = "bitvec"
82
+ version = "1.0.1"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
85
+ dependencies = [
86
+ "funty",
87
+ "radium",
88
+ "tap",
89
+ "wyz",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "bumpalo"
94
+ version = "3.12.0"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
97
+
98
+ [[package]]
99
+ name = "cast"
100
+ version = "0.3.0"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
103
+
104
+ [[package]]
105
+ name = "cc"
106
+ version = "1.0.79"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
109
+
110
+ [[package]]
111
+ name = "cfg-if"
112
+ version = "1.0.0"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
115
+
116
+ [[package]]
117
+ name = "ciborium"
118
+ version = "0.2.0"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f"
121
+ dependencies = [
122
+ "ciborium-io",
123
+ "ciborium-ll",
124
+ "serde",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "ciborium-io"
129
+ version = "0.2.0"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369"
132
+
133
+ [[package]]
134
+ name = "ciborium-ll"
135
+ version = "0.2.0"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b"
138
+ dependencies = [
139
+ "ciborium-io",
140
+ "half",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "clap"
145
+ version = "4.5.4"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
148
+ dependencies = [
149
+ "clap_builder",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "clap_builder"
154
+ version = "4.5.2"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
157
+ dependencies = [
158
+ "anstream",
159
+ "anstyle",
160
+ "clap_lex",
161
+ "strsim",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "clap_lex"
166
+ version = "0.7.0"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
169
+
170
+ [[package]]
171
+ name = "colorchoice"
172
+ version = "1.0.0"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
175
+
176
+ [[package]]
177
+ name = "criterion"
178
+ version = "0.5.1"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
181
+ dependencies = [
182
+ "anes",
183
+ "cast",
184
+ "ciborium",
185
+ "clap",
186
+ "criterion-plot",
187
+ "is-terminal",
188
+ "itertools",
189
+ "num-traits",
190
+ "once_cell",
191
+ "oorandom",
192
+ "plotters",
193
+ "rayon",
194
+ "regex",
195
+ "serde",
196
+ "serde_derive",
197
+ "serde_json",
198
+ "tinytemplate",
199
+ "walkdir",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "criterion-plot"
204
+ version = "0.5.0"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
207
+ dependencies = [
208
+ "cast",
209
+ "itertools",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "crossbeam-channel"
214
+ version = "0.5.6"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
217
+ dependencies = [
218
+ "cfg-if",
219
+ "crossbeam-utils",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "crossbeam-deque"
224
+ version = "0.8.2"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
227
+ dependencies = [
228
+ "cfg-if",
229
+ "crossbeam-epoch",
230
+ "crossbeam-utils",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "crossbeam-epoch"
235
+ version = "0.9.13"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a"
238
+ dependencies = [
239
+ "autocfg",
240
+ "cfg-if",
241
+ "crossbeam-utils",
242
+ "memoffset 0.7.1",
243
+ "scopeguard",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "crossbeam-utils"
248
+ version = "0.8.14"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
251
+ dependencies = [
252
+ "cfg-if",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "either"
257
+ version = "1.8.1"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
260
+
261
+ [[package]]
262
+ name = "errno"
263
+ version = "0.3.2"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f"
266
+ dependencies = [
267
+ "errno-dragonfly",
268
+ "libc",
269
+ "windows-sys 0.48.0",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "errno-dragonfly"
274
+ version = "0.1.2"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
277
+ dependencies = [
278
+ "cc",
279
+ "libc",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "funty"
284
+ version = "2.0.0"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
287
+
288
+ [[package]]
289
+ name = "getrandom"
290
+ version = "0.2.8"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
293
+ dependencies = [
294
+ "cfg-if",
295
+ "libc",
296
+ "wasi",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "half"
301
+ version = "1.8.2"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
304
+
305
+ [[package]]
306
+ name = "heck"
307
+ version = "0.4.1"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
310
+
311
+ [[package]]
312
+ name = "hermit-abi"
313
+ version = "0.2.6"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
316
+ dependencies = [
317
+ "libc",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "hermit-abi"
322
+ version = "0.3.2"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
325
+
326
+ [[package]]
327
+ name = "indoc"
328
+ version = "2.0.5"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
331
+
332
+ [[package]]
333
+ name = "inkwell"
334
+ version = "0.4.0"
335
+ source = "git+https://github.com/TheDan64/inkwell?branch=master#5c9f7fcbb0a667f7391b94beb65f1a670ad13221"
336
+ dependencies = [
337
+ "either",
338
+ "inkwell_internals",
339
+ "libc",
340
+ "llvm-sys",
341
+ "once_cell",
342
+ "thiserror",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "inkwell_internals"
347
+ version = "0.9.0"
348
+ source = "git+https://github.com/TheDan64/inkwell?branch=master#5c9f7fcbb0a667f7391b94beb65f1a670ad13221"
349
+ dependencies = [
350
+ "proc-macro2",
351
+ "quote",
352
+ "syn 2.0.31",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "is-terminal"
357
+ version = "0.4.9"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
360
+ dependencies = [
361
+ "hermit-abi 0.3.2",
362
+ "rustix",
363
+ "windows-sys 0.48.0",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "itertools"
368
+ version = "0.10.5"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
371
+ dependencies = [
372
+ "either",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "itoa"
377
+ version = "1.0.5"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
380
+
381
+ [[package]]
382
+ name = "js-sys"
383
+ version = "0.3.61"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
386
+ dependencies = [
387
+ "wasm-bindgen",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "lazy_static"
392
+ version = "1.4.0"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
395
+
396
+ [[package]]
397
+ name = "libc"
398
+ version = "0.2.149"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b"
401
+
402
+ [[package]]
403
+ name = "linux-raw-sys"
404
+ version = "0.4.10"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f"
407
+
408
+ [[package]]
409
+ name = "llvm-sys"
410
+ version = "140.0.5"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "3fe3609d79f74a2e4e158e3eaa61c2e931cecba242a79de5529cec2f92b423b7"
413
+ dependencies = [
414
+ "cc",
415
+ "lazy_static",
416
+ "libc",
417
+ "regex",
418
+ "semver",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "lock_api"
423
+ version = "0.4.12"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
426
+ dependencies = [
427
+ "autocfg",
428
+ "scopeguard",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "log"
433
+ version = "0.4.17"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
436
+ dependencies = [
437
+ "cfg-if",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "matrixmultiply"
442
+ version = "0.3.2"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "add85d4dd35074e6fedc608f8c8f513a3548619a9024b751949ef0e8e45a4d84"
445
+ dependencies = [
446
+ "rawpointer",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "memchr"
451
+ version = "2.5.0"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
454
+
455
+ [[package]]
456
+ name = "memoffset"
457
+ version = "0.7.1"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
460
+ dependencies = [
461
+ "autocfg",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "memoffset"
466
+ version = "0.9.1"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
469
+ dependencies = [
470
+ "autocfg",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "msvc_spectre_libs"
475
+ version = "0.1.1"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "6431d928428b689805ff8b2a0687760c3d1aa9845d165535a619e1c028bfbbb1"
478
+ dependencies = [
479
+ "cc",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "ndarray"
484
+ version = "0.15.6"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
487
+ dependencies = [
488
+ "matrixmultiply",
489
+ "num-complex",
490
+ "num-integer",
491
+ "num-traits",
492
+ "rawpointer",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "num-bigint"
497
+ version = "0.4.5"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "c165a9ab64cf766f73521c0dd2cfdff64f488b8f0b3e621face3462d3db536d7"
500
+ dependencies = [
501
+ "num-integer",
502
+ "num-traits",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "num-complex"
507
+ version = "0.4.6"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
510
+ dependencies = [
511
+ "num-traits",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "num-integer"
516
+ version = "0.1.46"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
519
+ dependencies = [
520
+ "num-traits",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "num-traits"
525
+ version = "0.2.19"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
528
+ dependencies = [
529
+ "autocfg",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "num_cpus"
534
+ version = "1.15.0"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
537
+ dependencies = [
538
+ "hermit-abi 0.2.6",
539
+ "libc",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "once_cell"
544
+ version = "1.17.1"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
547
+
548
+ [[package]]
549
+ name = "oorandom"
550
+ version = "11.1.3"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
553
+
554
+ [[package]]
555
+ name = "parking_lot"
556
+ version = "0.12.2"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb"
559
+ dependencies = [
560
+ "lock_api",
561
+ "parking_lot_core",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "parking_lot_core"
566
+ version = "0.9.10"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
569
+ dependencies = [
570
+ "cfg-if",
571
+ "libc",
572
+ "redox_syscall",
573
+ "smallvec",
574
+ "windows-targets 0.52.0",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "plotters"
579
+ version = "0.3.4"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97"
582
+ dependencies = [
583
+ "num-traits",
584
+ "plotters-backend",
585
+ "plotters-svg",
586
+ "wasm-bindgen",
587
+ "web-sys",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "plotters-backend"
592
+ version = "0.3.4"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142"
595
+
596
+ [[package]]
597
+ name = "plotters-svg"
598
+ version = "0.3.3"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f"
601
+ dependencies = [
602
+ "plotters-backend",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "portable-atomic"
607
+ version = "1.6.0"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
610
+
611
+ [[package]]
612
+ name = "ppv-lite86"
613
+ version = "0.2.17"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
616
+
617
+ [[package]]
618
+ name = "proc-macro2"
619
+ version = "1.0.63"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb"
622
+ dependencies = [
623
+ "unicode-ident",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "pyo3"
628
+ version = "0.20.3"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
631
+ dependencies = [
632
+ "cfg-if",
633
+ "indoc",
634
+ "libc",
635
+ "memoffset 0.9.1",
636
+ "parking_lot",
637
+ "portable-atomic",
638
+ "pyo3-build-config",
639
+ "pyo3-ffi",
640
+ "pyo3-macros",
641
+ "unindent",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "pyo3-build-config"
646
+ version = "0.20.3"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
649
+ dependencies = [
650
+ "once_cell",
651
+ "python3-dll-a",
652
+ "target-lexicon",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "pyo3-ffi"
657
+ version = "0.20.3"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
660
+ dependencies = [
661
+ "libc",
662
+ "pyo3-build-config",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "pyo3-macros"
667
+ version = "0.20.3"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
670
+ dependencies = [
671
+ "proc-macro2",
672
+ "pyo3-macros-backend",
673
+ "quote",
674
+ "syn 2.0.31",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "pyo3-macros-backend"
679
+ version = "0.20.3"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
682
+ dependencies = [
683
+ "heck",
684
+ "proc-macro2",
685
+ "pyo3-build-config",
686
+ "quote",
687
+ "syn 2.0.31",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "python3-dll-a"
692
+ version = "0.2.9"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "d5f07cd4412be8fa09a721d40007c483981bbe072cd6a21f2e83e04ec8f8343f"
695
+ dependencies = [
696
+ "cc",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "qir-backend"
701
+ version = "0.7.0"
702
+ dependencies = [
703
+ "bitvec",
704
+ "criterion",
705
+ "num-bigint",
706
+ "num-complex",
707
+ "qir-stdlib",
708
+ "quantum-sparse-sim",
709
+ "rand",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "qir-stdlib"
714
+ version = "0.7.0"
715
+ dependencies = [
716
+ "num-bigint",
717
+ "rand",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "qirrunner"
722
+ version = "0.0.0"
723
+ dependencies = [
724
+ "pyo3",
725
+ "runner",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "quantum-sparse-sim"
730
+ version = "0.7.0"
731
+ dependencies = [
732
+ "ndarray",
733
+ "num-bigint",
734
+ "num-complex",
735
+ "num-traits",
736
+ "rand",
737
+ "rustc-hash",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "quote"
742
+ version = "1.0.30"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "5907a1b7c277254a8b15170f6e7c97cfa60ee7872a3217663bb81151e48184bb"
745
+ dependencies = [
746
+ "proc-macro2",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "radium"
751
+ version = "0.7.0"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
754
+
755
+ [[package]]
756
+ name = "rand"
757
+ version = "0.8.5"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
760
+ dependencies = [
761
+ "libc",
762
+ "rand_chacha",
763
+ "rand_core",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "rand_chacha"
768
+ version = "0.3.1"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
771
+ dependencies = [
772
+ "ppv-lite86",
773
+ "rand_core",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "rand_core"
778
+ version = "0.6.4"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
781
+ dependencies = [
782
+ "getrandom",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "rawpointer"
787
+ version = "0.2.1"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
790
+
791
+ [[package]]
792
+ name = "rayon"
793
+ version = "1.6.1"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7"
796
+ dependencies = [
797
+ "either",
798
+ "rayon-core",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "rayon-core"
803
+ version = "1.10.2"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b"
806
+ dependencies = [
807
+ "crossbeam-channel",
808
+ "crossbeam-deque",
809
+ "crossbeam-utils",
810
+ "num_cpus",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "redox_syscall"
815
+ version = "0.5.1"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e"
818
+ dependencies = [
819
+ "bitflags",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "regex"
824
+ version = "1.7.1"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
827
+ dependencies = [
828
+ "aho-corasick",
829
+ "memchr",
830
+ "regex-syntax",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "regex-syntax"
835
+ version = "0.6.28"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
838
+
839
+ [[package]]
840
+ name = "runner"
841
+ version = "0.7.0"
842
+ dependencies = [
843
+ "clap",
844
+ "inkwell",
845
+ "msvc_spectre_libs",
846
+ "qir-backend",
847
+ "qir-stdlib",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "rustc-hash"
852
+ version = "1.1.0"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
855
+
856
+ [[package]]
857
+ name = "rustix"
858
+ version = "0.38.19"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "745ecfa778e66b2b63c88a61cb36e0eea109e803b0b86bf9879fbc77c70e86ed"
861
+ dependencies = [
862
+ "bitflags",
863
+ "errno",
864
+ "libc",
865
+ "linux-raw-sys",
866
+ "windows-sys 0.48.0",
867
+ ]
868
+
869
+ [[package]]
870
+ name = "ryu"
871
+ version = "1.0.12"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
874
+
875
+ [[package]]
876
+ name = "same-file"
877
+ version = "1.0.6"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
880
+ dependencies = [
881
+ "winapi-util",
882
+ ]
883
+
884
+ [[package]]
885
+ name = "scopeguard"
886
+ version = "1.1.0"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
889
+
890
+ [[package]]
891
+ name = "semver"
892
+ version = "1.0.16"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a"
895
+
896
+ [[package]]
897
+ name = "serde"
898
+ version = "1.0.152"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
901
+ dependencies = [
902
+ "serde_derive",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "serde_derive"
907
+ version = "1.0.152"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
910
+ dependencies = [
911
+ "proc-macro2",
912
+ "quote",
913
+ "syn 1.0.107",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "serde_json"
918
+ version = "1.0.93"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76"
921
+ dependencies = [
922
+ "itoa",
923
+ "ryu",
924
+ "serde",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "smallvec"
929
+ version = "1.13.2"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
932
+
933
+ [[package]]
934
+ name = "strsim"
935
+ version = "0.11.0"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01"
938
+
939
+ [[package]]
940
+ name = "syn"
941
+ version = "1.0.107"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
944
+ dependencies = [
945
+ "proc-macro2",
946
+ "quote",
947
+ "unicode-ident",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "syn"
952
+ version = "2.0.31"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "718fa2415bcb8d8bd775917a1bf12a7931b6dfa890753378538118181e0cb398"
955
+ dependencies = [
956
+ "proc-macro2",
957
+ "quote",
958
+ "unicode-ident",
959
+ ]
960
+
961
+ [[package]]
962
+ name = "tap"
963
+ version = "1.0.1"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
966
+
967
+ [[package]]
968
+ name = "target-lexicon"
969
+ version = "0.12.14"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
972
+
973
+ [[package]]
974
+ name = "thiserror"
975
+ version = "1.0.48"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7"
978
+ dependencies = [
979
+ "thiserror-impl",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "thiserror-impl"
984
+ version = "1.0.48"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35"
987
+ dependencies = [
988
+ "proc-macro2",
989
+ "quote",
990
+ "syn 2.0.31",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "tinytemplate"
995
+ version = "1.2.1"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
998
+ dependencies = [
999
+ "serde",
1000
+ "serde_json",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "unicode-ident"
1005
+ version = "1.0.6"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
1008
+
1009
+ [[package]]
1010
+ name = "unindent"
1011
+ version = "0.2.3"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
1014
+
1015
+ [[package]]
1016
+ name = "utf8parse"
1017
+ version = "0.2.1"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
1020
+
1021
+ [[package]]
1022
+ name = "walkdir"
1023
+ version = "2.3.2"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
1026
+ dependencies = [
1027
+ "same-file",
1028
+ "winapi",
1029
+ "winapi-util",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "wasi"
1034
+ version = "0.11.0+wasi-snapshot-preview1"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1037
+
1038
+ [[package]]
1039
+ name = "wasm-bindgen"
1040
+ version = "0.2.84"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
1043
+ dependencies = [
1044
+ "cfg-if",
1045
+ "wasm-bindgen-macro",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "wasm-bindgen-backend"
1050
+ version = "0.2.84"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
1053
+ dependencies = [
1054
+ "bumpalo",
1055
+ "log",
1056
+ "once_cell",
1057
+ "proc-macro2",
1058
+ "quote",
1059
+ "syn 1.0.107",
1060
+ "wasm-bindgen-shared",
1061
+ ]
1062
+
1063
+ [[package]]
1064
+ name = "wasm-bindgen-macro"
1065
+ version = "0.2.84"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
1068
+ dependencies = [
1069
+ "quote",
1070
+ "wasm-bindgen-macro-support",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "wasm-bindgen-macro-support"
1075
+ version = "0.2.84"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
1078
+ dependencies = [
1079
+ "proc-macro2",
1080
+ "quote",
1081
+ "syn 1.0.107",
1082
+ "wasm-bindgen-backend",
1083
+ "wasm-bindgen-shared",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "wasm-bindgen-shared"
1088
+ version = "0.2.84"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
1091
+
1092
+ [[package]]
1093
+ name = "web-sys"
1094
+ version = "0.3.61"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
1097
+ dependencies = [
1098
+ "js-sys",
1099
+ "wasm-bindgen",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "winapi"
1104
+ version = "0.3.9"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1107
+ dependencies = [
1108
+ "winapi-i686-pc-windows-gnu",
1109
+ "winapi-x86_64-pc-windows-gnu",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "winapi-i686-pc-windows-gnu"
1114
+ version = "0.4.0"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1117
+
1118
+ [[package]]
1119
+ name = "winapi-util"
1120
+ version = "0.1.5"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
1123
+ dependencies = [
1124
+ "winapi",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "winapi-x86_64-pc-windows-gnu"
1129
+ version = "0.4.0"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1132
+
1133
+ [[package]]
1134
+ name = "windows-sys"
1135
+ version = "0.48.0"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1138
+ dependencies = [
1139
+ "windows-targets 0.48.0",
1140
+ ]
1141
+
1142
+ [[package]]
1143
+ name = "windows-sys"
1144
+ version = "0.52.0"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1147
+ dependencies = [
1148
+ "windows-targets 0.52.0",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "windows-targets"
1153
+ version = "0.48.0"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
1156
+ dependencies = [
1157
+ "windows_aarch64_gnullvm 0.48.0",
1158
+ "windows_aarch64_msvc 0.48.0",
1159
+ "windows_i686_gnu 0.48.0",
1160
+ "windows_i686_msvc 0.48.0",
1161
+ "windows_x86_64_gnu 0.48.0",
1162
+ "windows_x86_64_gnullvm 0.48.0",
1163
+ "windows_x86_64_msvc 0.48.0",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "windows-targets"
1168
+ version = "0.52.0"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
1171
+ dependencies = [
1172
+ "windows_aarch64_gnullvm 0.52.0",
1173
+ "windows_aarch64_msvc 0.52.0",
1174
+ "windows_i686_gnu 0.52.0",
1175
+ "windows_i686_msvc 0.52.0",
1176
+ "windows_x86_64_gnu 0.52.0",
1177
+ "windows_x86_64_gnullvm 0.52.0",
1178
+ "windows_x86_64_msvc 0.52.0",
1179
+ ]
1180
+
1181
+ [[package]]
1182
+ name = "windows_aarch64_gnullvm"
1183
+ version = "0.48.0"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
1186
+
1187
+ [[package]]
1188
+ name = "windows_aarch64_gnullvm"
1189
+ version = "0.52.0"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
1192
+
1193
+ [[package]]
1194
+ name = "windows_aarch64_msvc"
1195
+ version = "0.48.0"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
1198
+
1199
+ [[package]]
1200
+ name = "windows_aarch64_msvc"
1201
+ version = "0.52.0"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
1204
+
1205
+ [[package]]
1206
+ name = "windows_i686_gnu"
1207
+ version = "0.48.0"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
1210
+
1211
+ [[package]]
1212
+ name = "windows_i686_gnu"
1213
+ version = "0.52.0"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
1216
+
1217
+ [[package]]
1218
+ name = "windows_i686_msvc"
1219
+ version = "0.48.0"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
1222
+
1223
+ [[package]]
1224
+ name = "windows_i686_msvc"
1225
+ version = "0.52.0"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
1228
+
1229
+ [[package]]
1230
+ name = "windows_x86_64_gnu"
1231
+ version = "0.48.0"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
1234
+
1235
+ [[package]]
1236
+ name = "windows_x86_64_gnu"
1237
+ version = "0.52.0"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
1240
+
1241
+ [[package]]
1242
+ name = "windows_x86_64_gnullvm"
1243
+ version = "0.48.0"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
1246
+
1247
+ [[package]]
1248
+ name = "windows_x86_64_gnullvm"
1249
+ version = "0.52.0"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
1252
+
1253
+ [[package]]
1254
+ name = "windows_x86_64_msvc"
1255
+ version = "0.48.0"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
1258
+
1259
+ [[package]]
1260
+ name = "windows_x86_64_msvc"
1261
+ version = "0.52.0"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
1264
+
1265
+ [[package]]
1266
+ name = "wyz"
1267
+ version = "0.5.1"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
1270
+ dependencies = [
1271
+ "tap",
1272
+ ]