pyroscope_beta 0.1.7-arm64-darwin

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.
@@ -0,0 +1,2233 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.17.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
10
+ dependencies = [
11
+ "cpp_demangle",
12
+ "fallible-iterator",
13
+ "gimli",
14
+ "object",
15
+ "rustc-demangle",
16
+ "smallvec",
17
+ ]
18
+
19
+ [[package]]
20
+ name = "adler"
21
+ version = "1.0.2"
22
+ source = "registry+https://github.com/rust-lang/crates.io-index"
23
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
24
+
25
+ [[package]]
26
+ name = "ahash"
27
+ version = "0.7.6"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
30
+ dependencies = [
31
+ "getrandom",
32
+ "once_cell",
33
+ "version_check",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "aho-corasick"
38
+ version = "0.7.18"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
41
+ dependencies = [
42
+ "memchr",
43
+ ]
44
+
45
+ [[package]]
46
+ name = "ansi_term"
47
+ version = "0.12.1"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
50
+ dependencies = [
51
+ "winapi",
52
+ ]
53
+
54
+ [[package]]
55
+ name = "anyhow"
56
+ version = "1.0.57"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc"
59
+
60
+ [[package]]
61
+ name = "arrayvec"
62
+ version = "0.4.12"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"
65
+ dependencies = [
66
+ "nodrop",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "atty"
71
+ version = "0.2.14"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
74
+ dependencies = [
75
+ "hermit-abi",
76
+ "libc",
77
+ "winapi",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "autocfg"
82
+ version = "1.1.0"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
85
+
86
+ [[package]]
87
+ name = "base64"
88
+ version = "0.13.0"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
91
+
92
+ [[package]]
93
+ name = "bindgen"
94
+ version = "0.59.2"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8"
97
+ dependencies = [
98
+ "bitflags",
99
+ "cexpr",
100
+ "clang-sys",
101
+ "clap 2.34.0",
102
+ "env_logger",
103
+ "lazy_static",
104
+ "lazycell",
105
+ "log",
106
+ "peeking_take_while",
107
+ "proc-macro2",
108
+ "quote",
109
+ "regex",
110
+ "rustc-hash",
111
+ "shlex",
112
+ "which",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "bitflags"
117
+ version = "1.3.2"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
120
+
121
+ [[package]]
122
+ name = "bumpalo"
123
+ version = "3.9.1"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
126
+
127
+ [[package]]
128
+ name = "bytemuck"
129
+ version = "1.9.1"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "cdead85bdec19c194affaeeb670c0e41fe23de31459efd1c174d049269cf02cc"
132
+
133
+ [[package]]
134
+ name = "byteorder"
135
+ version = "0.5.3"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855"
138
+
139
+ [[package]]
140
+ name = "bytes"
141
+ version = "1.1.0"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
144
+
145
+ [[package]]
146
+ name = "cc"
147
+ version = "1.0.73"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
150
+
151
+ [[package]]
152
+ name = "cexpr"
153
+ version = "0.6.0"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
156
+ dependencies = [
157
+ "nom",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "cfg-if"
162
+ version = "1.0.0"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
165
+
166
+ [[package]]
167
+ name = "chrono"
168
+ version = "0.4.19"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
171
+ dependencies = [
172
+ "libc",
173
+ "num-integer",
174
+ "num-traits",
175
+ "time",
176
+ "winapi",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "clang-sys"
181
+ version = "1.3.3"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "5a050e2153c5be08febd6734e29298e844fdb0fa21aeddd63b4eb7baa106c69b"
184
+ dependencies = [
185
+ "glob",
186
+ "libc",
187
+ "libloading",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "clap"
192
+ version = "2.34.0"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
195
+ dependencies = [
196
+ "ansi_term",
197
+ "atty",
198
+ "bitflags",
199
+ "strsim 0.8.0",
200
+ "textwrap 0.11.0",
201
+ "unicode-width",
202
+ "vec_map",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "clap"
207
+ version = "3.1.18"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "d2dbdf4bdacb33466e854ce889eee8dfd5729abf7ccd7664d0a2d60cd384440b"
210
+ dependencies = [
211
+ "atty",
212
+ "bitflags",
213
+ "clap_derive",
214
+ "clap_lex",
215
+ "indexmap",
216
+ "lazy_static",
217
+ "strsim 0.10.0",
218
+ "termcolor",
219
+ "textwrap 0.15.0",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "clap_derive"
224
+ version = "3.1.18"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "25320346e922cffe59c0bbc5410c8d8784509efb321488971081313cb1e1a33c"
227
+ dependencies = [
228
+ "heck",
229
+ "proc-macro-error",
230
+ "proc-macro2",
231
+ "quote",
232
+ "syn",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "clap_lex"
237
+ version = "0.2.0"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "a37c35f1112dad5e6e0b1adaff798507497a18fceeb30cceb3bae7d1427b9213"
240
+ dependencies = [
241
+ "os_str_bytes",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "core-foundation"
246
+ version = "0.9.3"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
249
+ dependencies = [
250
+ "core-foundation-sys",
251
+ "libc",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "core-foundation-sys"
256
+ version = "0.8.3"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
259
+
260
+ [[package]]
261
+ name = "cpp_demangle"
262
+ version = "0.3.5"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f"
265
+ dependencies = [
266
+ "cfg-if",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "crc32fast"
271
+ version = "1.3.2"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
274
+ dependencies = [
275
+ "cfg-if",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "crossbeam-channel"
280
+ version = "0.5.4"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53"
283
+ dependencies = [
284
+ "cfg-if",
285
+ "crossbeam-utils",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "crossbeam-utils"
290
+ version = "0.8.8"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
293
+ dependencies = [
294
+ "cfg-if",
295
+ "lazy_static",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "ctrlc"
300
+ version = "3.2.2"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "b37feaa84e6861e00a1f5e5aa8da3ee56d605c9992d33e082786754828e20865"
303
+ dependencies = [
304
+ "nix 0.24.1",
305
+ "winapi",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "dashmap"
310
+ version = "5.3.4"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "3495912c9c1ccf2e18976439f4443f3fee0fd61f424ff99fde6a66b15ecb448f"
313
+ dependencies = [
314
+ "cfg-if",
315
+ "hashbrown 0.12.1",
316
+ "lock_api",
317
+ "parking_lot_core",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "directories"
322
+ version = "4.0.1"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210"
325
+ dependencies = [
326
+ "dirs-sys",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "dirs-sys"
331
+ version = "0.3.7"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
334
+ dependencies = [
335
+ "libc",
336
+ "redox_users",
337
+ "winapi",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "either"
342
+ version = "1.6.1"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
345
+
346
+ [[package]]
347
+ name = "elf"
348
+ version = "0.0.10"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "4841de15dbe0e49b9b62a417589299e3be0d557e0900d36acb87e6dae47197f5"
351
+ dependencies = [
352
+ "byteorder",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "encoding_rs"
357
+ version = "0.8.31"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
360
+ dependencies = [
361
+ "cfg-if",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "env_logger"
366
+ version = "0.9.0"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
369
+ dependencies = [
370
+ "atty",
371
+ "humantime",
372
+ "log",
373
+ "regex",
374
+ "termcolor",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "errno"
379
+ version = "0.2.8"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
382
+ dependencies = [
383
+ "errno-dragonfly",
384
+ "libc",
385
+ "winapi",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "errno-dragonfly"
390
+ version = "0.1.2"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
393
+ dependencies = [
394
+ "cc",
395
+ "libc",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "fallible-iterator"
400
+ version = "0.2.0"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
403
+
404
+ [[package]]
405
+ name = "fastrand"
406
+ version = "1.7.0"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
409
+ dependencies = [
410
+ "instant",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "flate2"
415
+ version = "1.0.24"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
418
+ dependencies = [
419
+ "crc32fast",
420
+ "miniz_oxide",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "fnv"
425
+ version = "1.0.7"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
428
+
429
+ [[package]]
430
+ name = "foreign-types"
431
+ version = "0.3.2"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
434
+ dependencies = [
435
+ "foreign-types-shared",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "foreign-types-shared"
440
+ version = "0.1.1"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
443
+
444
+ [[package]]
445
+ name = "form_urlencoded"
446
+ version = "1.0.1"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
449
+ dependencies = [
450
+ "matches",
451
+ "percent-encoding",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "fuchsia-cprng"
456
+ version = "0.1.1"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
459
+
460
+ [[package]]
461
+ name = "futures-channel"
462
+ version = "0.3.21"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
465
+ dependencies = [
466
+ "futures-core",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "futures-core"
471
+ version = "0.3.21"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
474
+
475
+ [[package]]
476
+ name = "futures-io"
477
+ version = "0.3.21"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
480
+
481
+ [[package]]
482
+ name = "futures-sink"
483
+ version = "0.3.21"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
486
+
487
+ [[package]]
488
+ name = "futures-task"
489
+ version = "0.3.21"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
492
+
493
+ [[package]]
494
+ name = "futures-util"
495
+ version = "0.3.21"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
498
+ dependencies = [
499
+ "futures-core",
500
+ "futures-io",
501
+ "futures-task",
502
+ "memchr",
503
+ "pin-project-lite",
504
+ "pin-utils",
505
+ "slab",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "getrandom"
510
+ version = "0.2.6"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
513
+ dependencies = [
514
+ "cfg-if",
515
+ "libc",
516
+ "wasi 0.10.0+wasi-snapshot-preview1",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "gimli"
521
+ version = "0.26.1"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4"
524
+ dependencies = [
525
+ "fallible-iterator",
526
+ "stable_deref_trait",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "glob"
531
+ version = "0.3.0"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
534
+
535
+ [[package]]
536
+ name = "goblin"
537
+ version = "0.5.1"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "c955ab4e0ad8c843ea653a3d143048b87490d9be56bd7132a435c2407846ac8f"
540
+ dependencies = [
541
+ "log",
542
+ "plain",
543
+ "scroll",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "h2"
548
+ version = "0.3.13"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
551
+ dependencies = [
552
+ "bytes",
553
+ "fnv",
554
+ "futures-core",
555
+ "futures-sink",
556
+ "futures-util",
557
+ "http",
558
+ "indexmap",
559
+ "slab",
560
+ "tokio",
561
+ "tokio-util",
562
+ "tracing",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "hashbrown"
567
+ version = "0.11.2"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
570
+
571
+ [[package]]
572
+ name = "hashbrown"
573
+ version = "0.12.1"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3"
576
+
577
+ [[package]]
578
+ name = "heck"
579
+ version = "0.4.0"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
582
+
583
+ [[package]]
584
+ name = "hermit-abi"
585
+ version = "0.1.19"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
588
+ dependencies = [
589
+ "libc",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "http"
594
+ version = "0.2.7"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "ff8670570af52249509a86f5e3e18a08c60b177071826898fde8997cf5f6bfbb"
597
+ dependencies = [
598
+ "bytes",
599
+ "fnv",
600
+ "itoa 1.0.2",
601
+ ]
602
+
603
+ [[package]]
604
+ name = "http-body"
605
+ version = "0.4.5"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
608
+ dependencies = [
609
+ "bytes",
610
+ "http",
611
+ "pin-project-lite",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "httparse"
616
+ version = "1.7.1"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
619
+
620
+ [[package]]
621
+ name = "httpdate"
622
+ version = "1.0.2"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
625
+
626
+ [[package]]
627
+ name = "humantime"
628
+ version = "2.1.0"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
631
+
632
+ [[package]]
633
+ name = "hyper"
634
+ version = "0.14.19"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "42dc3c131584288d375f2d07f822b0cb012d8c6fb899a5b9fdb3cb7eb9b6004f"
637
+ dependencies = [
638
+ "bytes",
639
+ "futures-channel",
640
+ "futures-core",
641
+ "futures-util",
642
+ "h2",
643
+ "http",
644
+ "http-body",
645
+ "httparse",
646
+ "httpdate",
647
+ "itoa 1.0.2",
648
+ "pin-project-lite",
649
+ "socket2",
650
+ "tokio",
651
+ "tower-service",
652
+ "tracing",
653
+ "want",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "hyper-rustls"
658
+ version = "0.23.0"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "d87c48c02e0dc5e3b849a2041db3029fd066650f8f717c07bf8ed78ccb895cac"
661
+ dependencies = [
662
+ "http",
663
+ "hyper",
664
+ "rustls",
665
+ "tokio",
666
+ "tokio-rustls",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "hyper-tls"
671
+ version = "0.5.0"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
674
+ dependencies = [
675
+ "bytes",
676
+ "hyper",
677
+ "native-tls",
678
+ "tokio",
679
+ "tokio-native-tls",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "idna"
684
+ version = "0.2.3"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
687
+ dependencies = [
688
+ "matches",
689
+ "unicode-bidi",
690
+ "unicode-normalization",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "indexmap"
695
+ version = "1.8.2"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "e6012d540c5baa3589337a98ce73408de9b5a25ec9fc2c6fd6be8f0d39e0ca5a"
698
+ dependencies = [
699
+ "autocfg",
700
+ "hashbrown 0.11.2",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "inferno"
705
+ version = "0.11.4"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "1a3cb215599901c8f491666421d44ffaed08d6872b4c7ced6f425683b951271e"
708
+ dependencies = [
709
+ "ahash",
710
+ "atty",
711
+ "clap 3.1.18",
712
+ "crossbeam-channel",
713
+ "crossbeam-utils",
714
+ "dashmap",
715
+ "env_logger",
716
+ "indexmap",
717
+ "itoa 1.0.2",
718
+ "lazy_static",
719
+ "log",
720
+ "num-format",
721
+ "num_cpus",
722
+ "quick-xml",
723
+ "rgb",
724
+ "str_stack",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "instant"
729
+ version = "0.1.12"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
732
+ dependencies = [
733
+ "cfg-if",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "ipnet"
738
+ version = "2.5.0"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
741
+
742
+ [[package]]
743
+ name = "itertools"
744
+ version = "0.10.3"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
747
+ dependencies = [
748
+ "either",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "itoa"
753
+ version = "0.4.8"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
756
+
757
+ [[package]]
758
+ name = "itoa"
759
+ version = "1.0.2"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
762
+
763
+ [[package]]
764
+ name = "js-sys"
765
+ version = "0.3.57"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "671a26f820db17c2a2750743f1dd03bafd15b98c9f30c7c2628c024c05d73397"
768
+ dependencies = [
769
+ "wasm-bindgen",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "lazy_static"
774
+ version = "1.4.0"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
777
+
778
+ [[package]]
779
+ name = "lazycell"
780
+ version = "1.3.0"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
783
+
784
+ [[package]]
785
+ name = "libc"
786
+ version = "0.2.126"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
789
+
790
+ [[package]]
791
+ name = "libloading"
792
+ version = "0.7.3"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
795
+ dependencies = [
796
+ "cfg-if",
797
+ "winapi",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "libproc"
802
+ version = "0.10.0"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "6466fc1f834276563fbbd4be1c24236ef92bb9efdbd4691e07f1cf85a0b407f0"
805
+ dependencies = [
806
+ "errno",
807
+ "libc",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "libproc"
812
+ version = "0.12.0"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "0b799ad155d75ce914c467ee5627b62247c20d4aedbd446f821484cebf3cded7"
815
+ dependencies = [
816
+ "bindgen",
817
+ "errno",
818
+ "libc",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "lock_api"
823
+ version = "0.4.7"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
826
+ dependencies = [
827
+ "autocfg",
828
+ "scopeguard",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "log"
833
+ version = "0.4.17"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
836
+ dependencies = [
837
+ "cfg-if",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "mach"
842
+ version = "0.3.2"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
845
+ dependencies = [
846
+ "libc",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "mach2"
851
+ version = "0.4.0"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "2c29a677a8db77a45ddd1370ac4fbd5187f827780000202079e28949f1a75cb1"
854
+ dependencies = [
855
+ "libc",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "mach_o_sys"
860
+ version = "0.1.1"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "3e854583a83f20cf329bb9283366335387f7db59d640d1412167e05fedb98826"
863
+
864
+ [[package]]
865
+ name = "matches"
866
+ version = "0.1.9"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
869
+
870
+ [[package]]
871
+ name = "memchr"
872
+ version = "2.5.0"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
875
+
876
+ [[package]]
877
+ name = "memmap"
878
+ version = "0.7.0"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
881
+ dependencies = [
882
+ "libc",
883
+ "winapi",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "memoffset"
888
+ version = "0.6.5"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
891
+ dependencies = [
892
+ "autocfg",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "mime"
897
+ version = "0.3.16"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
900
+
901
+ [[package]]
902
+ name = "minimal-lexical"
903
+ version = "0.2.1"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
906
+
907
+ [[package]]
908
+ name = "miniz_oxide"
909
+ version = "0.5.3"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
912
+ dependencies = [
913
+ "adler",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "mio"
918
+ version = "0.8.3"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "713d550d9b44d89174e066b7a6217ae06234c10cb47819a88290d2b353c31799"
921
+ dependencies = [
922
+ "libc",
923
+ "log",
924
+ "wasi 0.11.0+wasi-snapshot-preview1",
925
+ "windows-sys",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "names"
930
+ version = "0.13.0"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "e7d66043b25d4a6cccb23619d10c19c25304b355a7dccd4a8e11423dd2382146"
933
+ dependencies = [
934
+ "clap 3.1.18",
935
+ "rand 0.8.5",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "native-tls"
940
+ version = "0.2.10"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
943
+ dependencies = [
944
+ "lazy_static",
945
+ "libc",
946
+ "log",
947
+ "openssl",
948
+ "openssl-probe",
949
+ "openssl-sys",
950
+ "schannel",
951
+ "security-framework",
952
+ "security-framework-sys",
953
+ "tempfile",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "nix"
958
+ version = "0.23.1"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6"
961
+ dependencies = [
962
+ "bitflags",
963
+ "cc",
964
+ "cfg-if",
965
+ "libc",
966
+ "memoffset",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "nix"
971
+ version = "0.24.1"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "8f17df307904acd05aa8e32e97bb20f2a0df1728bbc2d771ae8f9a90463441e9"
974
+ dependencies = [
975
+ "bitflags",
976
+ "cfg-if",
977
+ "libc",
978
+ "memoffset",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "nodrop"
983
+ version = "0.1.14"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
986
+
987
+ [[package]]
988
+ name = "nom"
989
+ version = "7.1.1"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
992
+ dependencies = [
993
+ "memchr",
994
+ "minimal-lexical",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "num-format"
999
+ version = "0.4.0"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "bafe4179722c2894288ee77a9f044f02811c86af699344c498b0840c698a2465"
1002
+ dependencies = [
1003
+ "arrayvec",
1004
+ "itoa 0.4.8",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "num-integer"
1009
+ version = "0.1.45"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
1012
+ dependencies = [
1013
+ "autocfg",
1014
+ "num-traits",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "num-traits"
1019
+ version = "0.2.15"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
1022
+ dependencies = [
1023
+ "autocfg",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "num_cpus"
1028
+ version = "1.13.1"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
1031
+ dependencies = [
1032
+ "hermit-abi",
1033
+ "libc",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "object"
1038
+ version = "0.27.1"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "67ac1d3f9a1d3616fd9a60c8d74296f22406a238b6a72f5cc1e6f314df4ffbf9"
1041
+ dependencies = [
1042
+ "flate2",
1043
+ "memchr",
1044
+ ]
1045
+
1046
+ [[package]]
1047
+ name = "once_cell"
1048
+ version = "1.12.0"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225"
1051
+
1052
+ [[package]]
1053
+ name = "openssl"
1054
+ version = "0.10.40"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "fb81a6430ac911acb25fe5ac8f1d2af1b4ea8a4fdfda0f1ee4292af2e2d8eb0e"
1057
+ dependencies = [
1058
+ "bitflags",
1059
+ "cfg-if",
1060
+ "foreign-types",
1061
+ "libc",
1062
+ "once_cell",
1063
+ "openssl-macros",
1064
+ "openssl-sys",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "openssl-macros"
1069
+ version = "0.1.0"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
1072
+ dependencies = [
1073
+ "proc-macro2",
1074
+ "quote",
1075
+ "syn",
1076
+ ]
1077
+
1078
+ [[package]]
1079
+ name = "openssl-probe"
1080
+ version = "0.1.5"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1083
+
1084
+ [[package]]
1085
+ name = "openssl-sys"
1086
+ version = "0.9.73"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "9d5fd19fb3e0a8191c1e34935718976a3e70c112ab9a24af6d7cadccd9d90bc0"
1089
+ dependencies = [
1090
+ "autocfg",
1091
+ "cc",
1092
+ "libc",
1093
+ "pkg-config",
1094
+ "vcpkg",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "os_str_bytes"
1099
+ version = "6.1.0"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "21326818e99cfe6ce1e524c2a805c189a99b5ae555a35d19f9a284b427d86afa"
1102
+
1103
+ [[package]]
1104
+ name = "parking_lot_core"
1105
+ version = "0.9.3"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
1108
+ dependencies = [
1109
+ "cfg-if",
1110
+ "libc",
1111
+ "redox_syscall",
1112
+ "smallvec",
1113
+ "windows-sys",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "peeking_take_while"
1118
+ version = "0.1.2"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
1121
+
1122
+ [[package]]
1123
+ name = "percent-encoding"
1124
+ version = "2.1.0"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
1127
+
1128
+ [[package]]
1129
+ name = "pin-project-lite"
1130
+ version = "0.2.9"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
1133
+
1134
+ [[package]]
1135
+ name = "pin-utils"
1136
+ version = "0.1.0"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1139
+
1140
+ [[package]]
1141
+ name = "pkg-config"
1142
+ version = "0.3.25"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
1145
+
1146
+ [[package]]
1147
+ name = "plain"
1148
+ version = "0.2.3"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1151
+
1152
+ [[package]]
1153
+ name = "ppv-lite86"
1154
+ version = "0.2.16"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
1157
+
1158
+ [[package]]
1159
+ name = "proc-macro-error"
1160
+ version = "1.0.4"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
1163
+ dependencies = [
1164
+ "proc-macro-error-attr",
1165
+ "proc-macro2",
1166
+ "quote",
1167
+ "syn",
1168
+ "version_check",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "proc-macro-error-attr"
1173
+ version = "1.0.4"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
1176
+ dependencies = [
1177
+ "proc-macro2",
1178
+ "quote",
1179
+ "version_check",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "proc-macro2"
1184
+ version = "1.0.39"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "c54b25569025b7fc9651de43004ae593a75ad88543b17178aa5e1b9c4f15f56f"
1187
+ dependencies = [
1188
+ "unicode-ident",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "proc-maps"
1193
+ version = "0.2.1"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "a2f62c16ccc63ce2f590b17b8b9b33616f59631b8982ad52ed21e7f6d936c409"
1196
+ dependencies = [
1197
+ "anyhow",
1198
+ "bindgen",
1199
+ "libc",
1200
+ "libproc 0.10.0",
1201
+ "mach2",
1202
+ "winapi",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "prost"
1207
+ version = "0.10.4"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "71adf41db68aa0daaefc69bb30bcd68ded9b9abaad5d1fbb6304c4fb390e083e"
1210
+ dependencies = [
1211
+ "bytes",
1212
+ "prost-derive",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "prost-derive"
1217
+ version = "0.10.1"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "7b670f45da57fb8542ebdbb6105a925fe571b67f9e7ed9f47a06a84e72b4e7cc"
1220
+ dependencies = [
1221
+ "anyhow",
1222
+ "itertools",
1223
+ "proc-macro2",
1224
+ "quote",
1225
+ "syn",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "pyroscope"
1230
+ version = "0.5.2"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "fb63fa944e7139ecce68c6307e50b9f62780fc5b4de21ba2f04f32ec4f36499b"
1233
+ dependencies = [
1234
+ "libc",
1235
+ "log",
1236
+ "names",
1237
+ "reqwest",
1238
+ "thiserror",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "pyroscope_rbspy"
1243
+ version = "0.2.0"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "b038acb1c386903c37c27b19584d2de04b9fc3e160fd628d351f2666a86ac993"
1246
+ dependencies = [
1247
+ "anyhow",
1248
+ "log",
1249
+ "pyroscope",
1250
+ "rbspy 0.12.1",
1251
+ "thiserror",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "quick-xml"
1256
+ version = "0.23.0"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "9279fbdacaad3baf559d8cabe0acc3d06e30ea14931af31af79578ac0946decc"
1259
+ dependencies = [
1260
+ "memchr",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "quote"
1265
+ version = "1.0.18"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
1268
+ dependencies = [
1269
+ "proc-macro2",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "rand"
1274
+ version = "0.4.6"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
1277
+ dependencies = [
1278
+ "fuchsia-cprng",
1279
+ "libc",
1280
+ "rand_core 0.3.1",
1281
+ "rdrand",
1282
+ "winapi",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "rand"
1287
+ version = "0.8.5"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1290
+ dependencies = [
1291
+ "libc",
1292
+ "rand_chacha",
1293
+ "rand_core 0.6.3",
1294
+ ]
1295
+
1296
+ [[package]]
1297
+ name = "rand_chacha"
1298
+ version = "0.3.1"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1301
+ dependencies = [
1302
+ "ppv-lite86",
1303
+ "rand_core 0.6.3",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "rand_core"
1308
+ version = "0.3.1"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
1311
+ dependencies = [
1312
+ "rand_core 0.4.2",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "rand_core"
1317
+ version = "0.4.2"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
1320
+
1321
+ [[package]]
1322
+ name = "rand_core"
1323
+ version = "0.6.3"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
1326
+ dependencies = [
1327
+ "getrandom",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "rbspy"
1332
+ version = "0.1.0"
1333
+ dependencies = [
1334
+ "pyroscope",
1335
+ "pyroscope_rbspy",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "rbspy"
1340
+ version = "0.12.1"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "bcbebdf0037de5a92722b0bca2965ce0a76cd5c962225cf355e31ac668ea653f"
1343
+ dependencies = [
1344
+ "anyhow",
1345
+ "chrono",
1346
+ "clap 3.1.18",
1347
+ "ctrlc",
1348
+ "directories",
1349
+ "elf",
1350
+ "env_logger",
1351
+ "flate2",
1352
+ "inferno",
1353
+ "libc",
1354
+ "libproc 0.10.0",
1355
+ "log",
1356
+ "nix 0.23.1",
1357
+ "proc-maps",
1358
+ "prost",
1359
+ "rand 0.8.5",
1360
+ "rbspy-ruby-structs",
1361
+ "remoteprocess",
1362
+ "serde",
1363
+ "serde_derive",
1364
+ "serde_json",
1365
+ "tempdir",
1366
+ "term_size",
1367
+ "thiserror",
1368
+ "winapi",
1369
+ ]
1370
+
1371
+ [[package]]
1372
+ name = "rbspy-ruby-structs"
1373
+ version = "0.12.1"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "321d7adbbd5dc84af13b4cacceb22973186ed1dc19d55248fa53d5277ae40e02"
1376
+
1377
+ [[package]]
1378
+ name = "rdrand"
1379
+ version = "0.4.0"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
1382
+ dependencies = [
1383
+ "rand_core 0.3.1",
1384
+ ]
1385
+
1386
+ [[package]]
1387
+ name = "read-process-memory"
1388
+ version = "0.1.4"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "a103589f0c267c68328595f1ff45647e9d4b3ee6b9c1c51dcdc9b4b55ca504c5"
1391
+ dependencies = [
1392
+ "libc",
1393
+ "log",
1394
+ "mach",
1395
+ "winapi",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "redox_syscall"
1400
+ version = "0.2.13"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
1403
+ dependencies = [
1404
+ "bitflags",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "redox_users"
1409
+ version = "0.4.3"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
1412
+ dependencies = [
1413
+ "getrandom",
1414
+ "redox_syscall",
1415
+ "thiserror",
1416
+ ]
1417
+
1418
+ [[package]]
1419
+ name = "regex"
1420
+ version = "1.5.6"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1"
1423
+ dependencies = [
1424
+ "aho-corasick",
1425
+ "memchr",
1426
+ "regex-syntax",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "regex-syntax"
1431
+ version = "0.6.26"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64"
1434
+
1435
+ [[package]]
1436
+ name = "remoteprocess"
1437
+ version = "0.4.9"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "d9f13e22b81d40176f4d7ed41c029fd2c7306b182db9838a44d88aeb97a7c6d6"
1440
+ dependencies = [
1441
+ "addr2line",
1442
+ "goblin",
1443
+ "lazy_static",
1444
+ "libc",
1445
+ "libproc 0.12.0",
1446
+ "log",
1447
+ "mach",
1448
+ "mach_o_sys",
1449
+ "memmap",
1450
+ "nix 0.24.1",
1451
+ "object",
1452
+ "proc-maps",
1453
+ "read-process-memory",
1454
+ "regex",
1455
+ "winapi",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "remove_dir_all"
1460
+ version = "0.5.3"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
1463
+ dependencies = [
1464
+ "winapi",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "reqwest"
1469
+ version = "0.11.10"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb"
1472
+ dependencies = [
1473
+ "base64",
1474
+ "bytes",
1475
+ "encoding_rs",
1476
+ "futures-core",
1477
+ "futures-util",
1478
+ "h2",
1479
+ "http",
1480
+ "http-body",
1481
+ "hyper",
1482
+ "hyper-rustls",
1483
+ "hyper-tls",
1484
+ "ipnet",
1485
+ "js-sys",
1486
+ "lazy_static",
1487
+ "log",
1488
+ "mime",
1489
+ "native-tls",
1490
+ "percent-encoding",
1491
+ "pin-project-lite",
1492
+ "rustls",
1493
+ "rustls-native-certs",
1494
+ "rustls-pemfile 0.3.0",
1495
+ "serde",
1496
+ "serde_json",
1497
+ "serde_urlencoded",
1498
+ "tokio",
1499
+ "tokio-native-tls",
1500
+ "tokio-rustls",
1501
+ "url",
1502
+ "wasm-bindgen",
1503
+ "wasm-bindgen-futures",
1504
+ "web-sys",
1505
+ "winreg",
1506
+ ]
1507
+
1508
+ [[package]]
1509
+ name = "rgb"
1510
+ version = "0.8.32"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "e74fdc210d8f24a7dbfedc13b04ba5764f5232754ccebfdf5fff1bad791ccbc6"
1513
+ dependencies = [
1514
+ "bytemuck",
1515
+ ]
1516
+
1517
+ [[package]]
1518
+ name = "ring"
1519
+ version = "0.16.20"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
1522
+ dependencies = [
1523
+ "cc",
1524
+ "libc",
1525
+ "once_cell",
1526
+ "spin",
1527
+ "untrusted",
1528
+ "web-sys",
1529
+ "winapi",
1530
+ ]
1531
+
1532
+ [[package]]
1533
+ name = "rustc-demangle"
1534
+ version = "0.1.21"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
1537
+
1538
+ [[package]]
1539
+ name = "rustc-hash"
1540
+ version = "1.1.0"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1543
+
1544
+ [[package]]
1545
+ name = "rustls"
1546
+ version = "0.20.6"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
1549
+ dependencies = [
1550
+ "log",
1551
+ "ring",
1552
+ "sct",
1553
+ "webpki",
1554
+ ]
1555
+
1556
+ [[package]]
1557
+ name = "rustls-native-certs"
1558
+ version = "0.6.2"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
1561
+ dependencies = [
1562
+ "openssl-probe",
1563
+ "rustls-pemfile 1.0.0",
1564
+ "schannel",
1565
+ "security-framework",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "rustls-pemfile"
1570
+ version = "0.3.0"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360"
1573
+ dependencies = [
1574
+ "base64",
1575
+ ]
1576
+
1577
+ [[package]]
1578
+ name = "rustls-pemfile"
1579
+ version = "1.0.0"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9"
1582
+ dependencies = [
1583
+ "base64",
1584
+ ]
1585
+
1586
+ [[package]]
1587
+ name = "ryu"
1588
+ version = "1.0.10"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
1591
+
1592
+ [[package]]
1593
+ name = "schannel"
1594
+ version = "0.1.20"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
1597
+ dependencies = [
1598
+ "lazy_static",
1599
+ "windows-sys",
1600
+ ]
1601
+
1602
+ [[package]]
1603
+ name = "scopeguard"
1604
+ version = "1.1.0"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1607
+
1608
+ [[package]]
1609
+ name = "scroll"
1610
+ version = "0.11.0"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "04c565b551bafbef4157586fa379538366e4385d42082f255bfd96e4fe8519da"
1613
+ dependencies = [
1614
+ "scroll_derive",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "scroll_derive"
1619
+ version = "0.11.0"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "bdbda6ac5cd1321e724fa9cee216f3a61885889b896f073b8f82322789c5250e"
1622
+ dependencies = [
1623
+ "proc-macro2",
1624
+ "quote",
1625
+ "syn",
1626
+ ]
1627
+
1628
+ [[package]]
1629
+ name = "sct"
1630
+ version = "0.7.0"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
1633
+ dependencies = [
1634
+ "ring",
1635
+ "untrusted",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "security-framework"
1640
+ version = "2.6.1"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
1643
+ dependencies = [
1644
+ "bitflags",
1645
+ "core-foundation",
1646
+ "core-foundation-sys",
1647
+ "libc",
1648
+ "security-framework-sys",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "security-framework-sys"
1653
+ version = "2.6.1"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
1656
+ dependencies = [
1657
+ "core-foundation-sys",
1658
+ "libc",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "serde"
1663
+ version = "1.0.137"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
1666
+
1667
+ [[package]]
1668
+ name = "serde_derive"
1669
+ version = "1.0.137"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
1672
+ dependencies = [
1673
+ "proc-macro2",
1674
+ "quote",
1675
+ "syn",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "serde_json"
1680
+ version = "1.0.81"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c"
1683
+ dependencies = [
1684
+ "itoa 1.0.2",
1685
+ "ryu",
1686
+ "serde",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "serde_urlencoded"
1691
+ version = "0.7.1"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1694
+ dependencies = [
1695
+ "form_urlencoded",
1696
+ "itoa 1.0.2",
1697
+ "ryu",
1698
+ "serde",
1699
+ ]
1700
+
1701
+ [[package]]
1702
+ name = "shlex"
1703
+ version = "1.1.0"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
1706
+
1707
+ [[package]]
1708
+ name = "slab"
1709
+ version = "0.4.6"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
1712
+
1713
+ [[package]]
1714
+ name = "smallvec"
1715
+ version = "1.8.0"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
1718
+
1719
+ [[package]]
1720
+ name = "socket2"
1721
+ version = "0.4.4"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
1724
+ dependencies = [
1725
+ "libc",
1726
+ "winapi",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "spin"
1731
+ version = "0.5.2"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
1734
+
1735
+ [[package]]
1736
+ name = "stable_deref_trait"
1737
+ version = "1.2.0"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1740
+
1741
+ [[package]]
1742
+ name = "str_stack"
1743
+ version = "0.1.0"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
1746
+
1747
+ [[package]]
1748
+ name = "strsim"
1749
+ version = "0.8.0"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
1752
+
1753
+ [[package]]
1754
+ name = "strsim"
1755
+ version = "0.10.0"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
1758
+
1759
+ [[package]]
1760
+ name = "syn"
1761
+ version = "1.0.95"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "fbaf6116ab8924f39d52792136fb74fd60a80194cf1b1c6ffa6453eef1c3f942"
1764
+ dependencies = [
1765
+ "proc-macro2",
1766
+ "quote",
1767
+ "unicode-ident",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "tempdir"
1772
+ version = "0.3.7"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
1775
+ dependencies = [
1776
+ "rand 0.4.6",
1777
+ "remove_dir_all",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "tempfile"
1782
+ version = "3.3.0"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
1785
+ dependencies = [
1786
+ "cfg-if",
1787
+ "fastrand",
1788
+ "libc",
1789
+ "redox_syscall",
1790
+ "remove_dir_all",
1791
+ "winapi",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "term_size"
1796
+ version = "0.3.2"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9"
1799
+ dependencies = [
1800
+ "libc",
1801
+ "winapi",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "termcolor"
1806
+ version = "1.1.3"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
1809
+ dependencies = [
1810
+ "winapi-util",
1811
+ ]
1812
+
1813
+ [[package]]
1814
+ name = "textwrap"
1815
+ version = "0.11.0"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
1818
+ dependencies = [
1819
+ "unicode-width",
1820
+ ]
1821
+
1822
+ [[package]]
1823
+ name = "textwrap"
1824
+ version = "0.15.0"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
1827
+
1828
+ [[package]]
1829
+ name = "thiserror"
1830
+ version = "1.0.31"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
1833
+ dependencies = [
1834
+ "thiserror-impl",
1835
+ ]
1836
+
1837
+ [[package]]
1838
+ name = "thiserror-impl"
1839
+ version = "1.0.31"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
1842
+ dependencies = [
1843
+ "proc-macro2",
1844
+ "quote",
1845
+ "syn",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "time"
1850
+ version = "0.1.44"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
1853
+ dependencies = [
1854
+ "libc",
1855
+ "wasi 0.10.0+wasi-snapshot-preview1",
1856
+ "winapi",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "tinyvec"
1861
+ version = "1.6.0"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
1864
+ dependencies = [
1865
+ "tinyvec_macros",
1866
+ ]
1867
+
1868
+ [[package]]
1869
+ name = "tinyvec_macros"
1870
+ version = "0.1.0"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
1873
+
1874
+ [[package]]
1875
+ name = "tokio"
1876
+ version = "1.18.2"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "4903bf0427cf68dddd5aa6a93220756f8be0c34fcfa9f5e6191e103e15a31395"
1879
+ dependencies = [
1880
+ "bytes",
1881
+ "libc",
1882
+ "memchr",
1883
+ "mio",
1884
+ "num_cpus",
1885
+ "once_cell",
1886
+ "pin-project-lite",
1887
+ "socket2",
1888
+ "winapi",
1889
+ ]
1890
+
1891
+ [[package]]
1892
+ name = "tokio-native-tls"
1893
+ version = "0.3.0"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
1896
+ dependencies = [
1897
+ "native-tls",
1898
+ "tokio",
1899
+ ]
1900
+
1901
+ [[package]]
1902
+ name = "tokio-rustls"
1903
+ version = "0.23.4"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
1906
+ dependencies = [
1907
+ "rustls",
1908
+ "tokio",
1909
+ "webpki",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "tokio-util"
1914
+ version = "0.7.2"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "f988a1a1adc2fb21f9c12aa96441da33a1728193ae0b95d2be22dbd17fcb4e5c"
1917
+ dependencies = [
1918
+ "bytes",
1919
+ "futures-core",
1920
+ "futures-sink",
1921
+ "pin-project-lite",
1922
+ "tokio",
1923
+ "tracing",
1924
+ ]
1925
+
1926
+ [[package]]
1927
+ name = "tower-service"
1928
+ version = "0.3.1"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
1931
+
1932
+ [[package]]
1933
+ name = "tracing"
1934
+ version = "0.1.34"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09"
1937
+ dependencies = [
1938
+ "cfg-if",
1939
+ "pin-project-lite",
1940
+ "tracing-attributes",
1941
+ "tracing-core",
1942
+ ]
1943
+
1944
+ [[package]]
1945
+ name = "tracing-attributes"
1946
+ version = "0.1.21"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c"
1949
+ dependencies = [
1950
+ "proc-macro2",
1951
+ "quote",
1952
+ "syn",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "tracing-core"
1957
+ version = "0.1.26"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f"
1960
+ dependencies = [
1961
+ "lazy_static",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "try-lock"
1966
+ version = "0.2.3"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
1969
+
1970
+ [[package]]
1971
+ name = "unicode-bidi"
1972
+ version = "0.3.8"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
1975
+
1976
+ [[package]]
1977
+ name = "unicode-ident"
1978
+ version = "1.0.0"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "d22af068fba1eb5edcb4aea19d382b2a3deb4c8f9d475c589b6ada9e0fd493ee"
1981
+
1982
+ [[package]]
1983
+ name = "unicode-normalization"
1984
+ version = "0.1.19"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
1987
+ dependencies = [
1988
+ "tinyvec",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "unicode-width"
1993
+ version = "0.1.9"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
1996
+
1997
+ [[package]]
1998
+ name = "untrusted"
1999
+ version = "0.7.1"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2002
+
2003
+ [[package]]
2004
+ name = "url"
2005
+ version = "2.2.2"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2008
+ dependencies = [
2009
+ "form_urlencoded",
2010
+ "idna",
2011
+ "matches",
2012
+ "percent-encoding",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "vcpkg"
2017
+ version = "0.2.15"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2020
+
2021
+ [[package]]
2022
+ name = "vec_map"
2023
+ version = "0.8.2"
2024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2025
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2026
+
2027
+ [[package]]
2028
+ name = "version_check"
2029
+ version = "0.9.4"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2032
+
2033
+ [[package]]
2034
+ name = "want"
2035
+ version = "0.3.0"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
2038
+ dependencies = [
2039
+ "log",
2040
+ "try-lock",
2041
+ ]
2042
+
2043
+ [[package]]
2044
+ name = "wasi"
2045
+ version = "0.10.0+wasi-snapshot-preview1"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2048
+
2049
+ [[package]]
2050
+ name = "wasi"
2051
+ version = "0.11.0+wasi-snapshot-preview1"
2052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2053
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2054
+
2055
+ [[package]]
2056
+ name = "wasm-bindgen"
2057
+ version = "0.2.80"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad"
2060
+ dependencies = [
2061
+ "cfg-if",
2062
+ "wasm-bindgen-macro",
2063
+ ]
2064
+
2065
+ [[package]]
2066
+ name = "wasm-bindgen-backend"
2067
+ version = "0.2.80"
2068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2069
+ checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4"
2070
+ dependencies = [
2071
+ "bumpalo",
2072
+ "lazy_static",
2073
+ "log",
2074
+ "proc-macro2",
2075
+ "quote",
2076
+ "syn",
2077
+ "wasm-bindgen-shared",
2078
+ ]
2079
+
2080
+ [[package]]
2081
+ name = "wasm-bindgen-futures"
2082
+ version = "0.4.30"
2083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2084
+ checksum = "6f741de44b75e14c35df886aff5f1eb73aa114fa5d4d00dcd37b5e01259bf3b2"
2085
+ dependencies = [
2086
+ "cfg-if",
2087
+ "js-sys",
2088
+ "wasm-bindgen",
2089
+ "web-sys",
2090
+ ]
2091
+
2092
+ [[package]]
2093
+ name = "wasm-bindgen-macro"
2094
+ version = "0.2.80"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5"
2097
+ dependencies = [
2098
+ "quote",
2099
+ "wasm-bindgen-macro-support",
2100
+ ]
2101
+
2102
+ [[package]]
2103
+ name = "wasm-bindgen-macro-support"
2104
+ version = "0.2.80"
2105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2106
+ checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b"
2107
+ dependencies = [
2108
+ "proc-macro2",
2109
+ "quote",
2110
+ "syn",
2111
+ "wasm-bindgen-backend",
2112
+ "wasm-bindgen-shared",
2113
+ ]
2114
+
2115
+ [[package]]
2116
+ name = "wasm-bindgen-shared"
2117
+ version = "0.2.80"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744"
2120
+
2121
+ [[package]]
2122
+ name = "web-sys"
2123
+ version = "0.3.57"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283"
2126
+ dependencies = [
2127
+ "js-sys",
2128
+ "wasm-bindgen",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "webpki"
2133
+ version = "0.22.0"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
2136
+ dependencies = [
2137
+ "ring",
2138
+ "untrusted",
2139
+ ]
2140
+
2141
+ [[package]]
2142
+ name = "which"
2143
+ version = "4.2.5"
2144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2145
+ checksum = "5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae"
2146
+ dependencies = [
2147
+ "either",
2148
+ "lazy_static",
2149
+ "libc",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "winapi"
2154
+ version = "0.3.9"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2157
+ dependencies = [
2158
+ "winapi-i686-pc-windows-gnu",
2159
+ "winapi-x86_64-pc-windows-gnu",
2160
+ ]
2161
+
2162
+ [[package]]
2163
+ name = "winapi-i686-pc-windows-gnu"
2164
+ version = "0.4.0"
2165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2166
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2167
+
2168
+ [[package]]
2169
+ name = "winapi-util"
2170
+ version = "0.1.5"
2171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2172
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2173
+ dependencies = [
2174
+ "winapi",
2175
+ ]
2176
+
2177
+ [[package]]
2178
+ name = "winapi-x86_64-pc-windows-gnu"
2179
+ version = "0.4.0"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2182
+
2183
+ [[package]]
2184
+ name = "windows-sys"
2185
+ version = "0.36.1"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
2188
+ dependencies = [
2189
+ "windows_aarch64_msvc",
2190
+ "windows_i686_gnu",
2191
+ "windows_i686_msvc",
2192
+ "windows_x86_64_gnu",
2193
+ "windows_x86_64_msvc",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "windows_aarch64_msvc"
2198
+ version = "0.36.1"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2201
+
2202
+ [[package]]
2203
+ name = "windows_i686_gnu"
2204
+ version = "0.36.1"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2207
+
2208
+ [[package]]
2209
+ name = "windows_i686_msvc"
2210
+ version = "0.36.1"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2213
+
2214
+ [[package]]
2215
+ name = "windows_x86_64_gnu"
2216
+ version = "0.36.1"
2217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2218
+ checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2219
+
2220
+ [[package]]
2221
+ name = "windows_x86_64_msvc"
2222
+ version = "0.36.1"
2223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2224
+ checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2225
+
2226
+ [[package]]
2227
+ name = "winreg"
2228
+ version = "0.10.1"
2229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2230
+ checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2231
+ dependencies = [
2232
+ "winapi",
2233
+ ]