pyroscope_beta 0.0.2-x86_64-linux

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,2209 @@
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.10.0"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
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.2"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "cfeb764aa29a0774d290c2df134a37ab2e3c1ba59009162626658aabefda321a"
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.8"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
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.1"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "6d0d1830bcd151a6fc4aea1369af235b36c1528fe976b8ff678683c9995eade8"
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.74"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "835363342df5fba8354c5b453325b110ffd54044e588c539cf2f20a8014e4cb1"
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
+ dependencies = [
1232
+ "libc",
1233
+ "log",
1234
+ "names",
1235
+ "reqwest",
1236
+ "thiserror",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "pyroscope_rbspy"
1241
+ version = "0.2.1"
1242
+ dependencies = [
1243
+ "anyhow",
1244
+ "log",
1245
+ "pyroscope",
1246
+ "rbspy 0.12.1",
1247
+ "thiserror",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "quick-xml"
1252
+ version = "0.23.0"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "9279fbdacaad3baf559d8cabe0acc3d06e30ea14931af31af79578ac0946decc"
1255
+ dependencies = [
1256
+ "memchr",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "quote"
1261
+ version = "1.0.18"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
1264
+ dependencies = [
1265
+ "proc-macro2",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "rand"
1270
+ version = "0.4.6"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
1273
+ dependencies = [
1274
+ "fuchsia-cprng",
1275
+ "libc",
1276
+ "rand_core 0.3.1",
1277
+ "rdrand",
1278
+ "winapi",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "rand"
1283
+ version = "0.8.5"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1286
+ dependencies = [
1287
+ "libc",
1288
+ "rand_chacha",
1289
+ "rand_core 0.6.3",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "rand_chacha"
1294
+ version = "0.3.1"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1297
+ dependencies = [
1298
+ "ppv-lite86",
1299
+ "rand_core 0.6.3",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "rand_core"
1304
+ version = "0.3.1"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
1307
+ dependencies = [
1308
+ "rand_core 0.4.2",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "rand_core"
1313
+ version = "0.4.2"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
1316
+
1317
+ [[package]]
1318
+ name = "rand_core"
1319
+ version = "0.6.3"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
1322
+ dependencies = [
1323
+ "getrandom",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "rbspy"
1328
+ version = "0.1.0"
1329
+ dependencies = [
1330
+ "pyroscope",
1331
+ "pyroscope_rbspy",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "rbspy"
1336
+ version = "0.12.1"
1337
+ dependencies = [
1338
+ "anyhow",
1339
+ "chrono",
1340
+ "clap 3.1.18",
1341
+ "ctrlc",
1342
+ "directories",
1343
+ "elf",
1344
+ "env_logger",
1345
+ "flate2",
1346
+ "inferno",
1347
+ "libc",
1348
+ "libproc 0.10.0",
1349
+ "log",
1350
+ "nix 0.23.1",
1351
+ "proc-maps",
1352
+ "prost",
1353
+ "rand 0.8.5",
1354
+ "rbspy-ruby-structs",
1355
+ "remoteprocess",
1356
+ "serde",
1357
+ "serde_derive",
1358
+ "serde_json",
1359
+ "tempdir",
1360
+ "term_size",
1361
+ "thiserror",
1362
+ "winapi",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "rbspy-ruby-structs"
1367
+ version = "0.12.1"
1368
+
1369
+ [[package]]
1370
+ name = "rdrand"
1371
+ version = "0.4.0"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
1374
+ dependencies = [
1375
+ "rand_core 0.3.1",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "read-process-memory"
1380
+ version = "0.1.4"
1381
+ dependencies = [
1382
+ "libc",
1383
+ "log",
1384
+ "mach",
1385
+ "winapi",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "redox_syscall"
1390
+ version = "0.2.13"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
1393
+ dependencies = [
1394
+ "bitflags",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "redox_users"
1399
+ version = "0.4.3"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
1402
+ dependencies = [
1403
+ "getrandom",
1404
+ "redox_syscall",
1405
+ "thiserror",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "regex"
1410
+ version = "1.5.6"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1"
1413
+ dependencies = [
1414
+ "aho-corasick",
1415
+ "memchr",
1416
+ "regex-syntax",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "regex-syntax"
1421
+ version = "0.6.26"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64"
1424
+
1425
+ [[package]]
1426
+ name = "remoteprocess"
1427
+ version = "0.4.9"
1428
+ dependencies = [
1429
+ "addr2line",
1430
+ "goblin",
1431
+ "lazy_static",
1432
+ "libc",
1433
+ "libproc 0.12.0",
1434
+ "log",
1435
+ "mach",
1436
+ "mach_o_sys",
1437
+ "memmap",
1438
+ "nix 0.24.1",
1439
+ "object",
1440
+ "proc-maps",
1441
+ "read-process-memory",
1442
+ "regex",
1443
+ "winapi",
1444
+ ]
1445
+
1446
+ [[package]]
1447
+ name = "remove_dir_all"
1448
+ version = "0.5.3"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
1451
+ dependencies = [
1452
+ "winapi",
1453
+ ]
1454
+
1455
+ [[package]]
1456
+ name = "reqwest"
1457
+ version = "0.11.10"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb"
1460
+ dependencies = [
1461
+ "base64",
1462
+ "bytes",
1463
+ "encoding_rs",
1464
+ "futures-core",
1465
+ "futures-util",
1466
+ "h2",
1467
+ "http",
1468
+ "http-body",
1469
+ "hyper",
1470
+ "hyper-rustls",
1471
+ "hyper-tls",
1472
+ "ipnet",
1473
+ "js-sys",
1474
+ "lazy_static",
1475
+ "log",
1476
+ "mime",
1477
+ "native-tls",
1478
+ "percent-encoding",
1479
+ "pin-project-lite",
1480
+ "rustls",
1481
+ "rustls-native-certs",
1482
+ "rustls-pemfile 0.3.0",
1483
+ "serde",
1484
+ "serde_json",
1485
+ "serde_urlencoded",
1486
+ "tokio",
1487
+ "tokio-native-tls",
1488
+ "tokio-rustls",
1489
+ "url",
1490
+ "wasm-bindgen",
1491
+ "wasm-bindgen-futures",
1492
+ "web-sys",
1493
+ "winreg",
1494
+ ]
1495
+
1496
+ [[package]]
1497
+ name = "rgb"
1498
+ version = "0.8.32"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "e74fdc210d8f24a7dbfedc13b04ba5764f5232754ccebfdf5fff1bad791ccbc6"
1501
+ dependencies = [
1502
+ "bytemuck",
1503
+ ]
1504
+
1505
+ [[package]]
1506
+ name = "ring"
1507
+ version = "0.16.20"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
1510
+ dependencies = [
1511
+ "cc",
1512
+ "libc",
1513
+ "once_cell",
1514
+ "spin",
1515
+ "untrusted",
1516
+ "web-sys",
1517
+ "winapi",
1518
+ ]
1519
+
1520
+ [[package]]
1521
+ name = "rustc-demangle"
1522
+ version = "0.1.21"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
1525
+
1526
+ [[package]]
1527
+ name = "rustc-hash"
1528
+ version = "1.1.0"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1531
+
1532
+ [[package]]
1533
+ name = "rustls"
1534
+ version = "0.20.6"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
1537
+ dependencies = [
1538
+ "log",
1539
+ "ring",
1540
+ "sct",
1541
+ "webpki",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "rustls-native-certs"
1546
+ version = "0.6.2"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
1549
+ dependencies = [
1550
+ "openssl-probe",
1551
+ "rustls-pemfile 1.0.0",
1552
+ "schannel",
1553
+ "security-framework",
1554
+ ]
1555
+
1556
+ [[package]]
1557
+ name = "rustls-pemfile"
1558
+ version = "0.3.0"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360"
1561
+ dependencies = [
1562
+ "base64",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "rustls-pemfile"
1567
+ version = "1.0.0"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9"
1570
+ dependencies = [
1571
+ "base64",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "ryu"
1576
+ version = "1.0.10"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
1579
+
1580
+ [[package]]
1581
+ name = "schannel"
1582
+ version = "0.1.20"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
1585
+ dependencies = [
1586
+ "lazy_static",
1587
+ "windows-sys",
1588
+ ]
1589
+
1590
+ [[package]]
1591
+ name = "scopeguard"
1592
+ version = "1.1.0"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1595
+
1596
+ [[package]]
1597
+ name = "scroll"
1598
+ version = "0.11.0"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "04c565b551bafbef4157586fa379538366e4385d42082f255bfd96e4fe8519da"
1601
+ dependencies = [
1602
+ "scroll_derive",
1603
+ ]
1604
+
1605
+ [[package]]
1606
+ name = "scroll_derive"
1607
+ version = "0.11.0"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "bdbda6ac5cd1321e724fa9cee216f3a61885889b896f073b8f82322789c5250e"
1610
+ dependencies = [
1611
+ "proc-macro2",
1612
+ "quote",
1613
+ "syn",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "sct"
1618
+ version = "0.7.0"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
1621
+ dependencies = [
1622
+ "ring",
1623
+ "untrusted",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "security-framework"
1628
+ version = "2.6.1"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
1631
+ dependencies = [
1632
+ "bitflags",
1633
+ "core-foundation",
1634
+ "core-foundation-sys",
1635
+ "libc",
1636
+ "security-framework-sys",
1637
+ ]
1638
+
1639
+ [[package]]
1640
+ name = "security-framework-sys"
1641
+ version = "2.6.1"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
1644
+ dependencies = [
1645
+ "core-foundation-sys",
1646
+ "libc",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "serde"
1651
+ version = "1.0.137"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
1654
+
1655
+ [[package]]
1656
+ name = "serde_derive"
1657
+ version = "1.0.137"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
1660
+ dependencies = [
1661
+ "proc-macro2",
1662
+ "quote",
1663
+ "syn",
1664
+ ]
1665
+
1666
+ [[package]]
1667
+ name = "serde_json"
1668
+ version = "1.0.81"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c"
1671
+ dependencies = [
1672
+ "itoa 1.0.2",
1673
+ "ryu",
1674
+ "serde",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "serde_urlencoded"
1679
+ version = "0.7.1"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1682
+ dependencies = [
1683
+ "form_urlencoded",
1684
+ "itoa 1.0.2",
1685
+ "ryu",
1686
+ "serde",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "shlex"
1691
+ version = "1.1.0"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
1694
+
1695
+ [[package]]
1696
+ name = "slab"
1697
+ version = "0.4.6"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
1700
+
1701
+ [[package]]
1702
+ name = "smallvec"
1703
+ version = "1.8.0"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
1706
+
1707
+ [[package]]
1708
+ name = "socket2"
1709
+ version = "0.4.4"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
1712
+ dependencies = [
1713
+ "libc",
1714
+ "winapi",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "spin"
1719
+ version = "0.5.2"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
1722
+
1723
+ [[package]]
1724
+ name = "stable_deref_trait"
1725
+ version = "1.2.0"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1728
+
1729
+ [[package]]
1730
+ name = "str_stack"
1731
+ version = "0.1.0"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
1734
+
1735
+ [[package]]
1736
+ name = "strsim"
1737
+ version = "0.8.0"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
1740
+
1741
+ [[package]]
1742
+ name = "strsim"
1743
+ version = "0.10.0"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
1746
+
1747
+ [[package]]
1748
+ name = "syn"
1749
+ version = "1.0.96"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "0748dd251e24453cb8717f0354206b91557e4ec8703673a4b30208f2abaf1ebf"
1752
+ dependencies = [
1753
+ "proc-macro2",
1754
+ "quote",
1755
+ "unicode-ident",
1756
+ ]
1757
+
1758
+ [[package]]
1759
+ name = "tempdir"
1760
+ version = "0.3.7"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
1763
+ dependencies = [
1764
+ "rand 0.4.6",
1765
+ "remove_dir_all",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "tempfile"
1770
+ version = "3.3.0"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
1773
+ dependencies = [
1774
+ "cfg-if",
1775
+ "fastrand",
1776
+ "libc",
1777
+ "redox_syscall",
1778
+ "remove_dir_all",
1779
+ "winapi",
1780
+ ]
1781
+
1782
+ [[package]]
1783
+ name = "term_size"
1784
+ version = "0.3.2"
1785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1786
+ checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9"
1787
+ dependencies = [
1788
+ "libc",
1789
+ "winapi",
1790
+ ]
1791
+
1792
+ [[package]]
1793
+ name = "termcolor"
1794
+ version = "1.1.3"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
1797
+ dependencies = [
1798
+ "winapi-util",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "textwrap"
1803
+ version = "0.11.0"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
1806
+ dependencies = [
1807
+ "unicode-width",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "textwrap"
1812
+ version = "0.15.0"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
1815
+
1816
+ [[package]]
1817
+ name = "thiserror"
1818
+ version = "1.0.31"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
1821
+ dependencies = [
1822
+ "thiserror-impl",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "thiserror-impl"
1827
+ version = "1.0.31"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
1830
+ dependencies = [
1831
+ "proc-macro2",
1832
+ "quote",
1833
+ "syn",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "time"
1838
+ version = "0.1.44"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
1841
+ dependencies = [
1842
+ "libc",
1843
+ "wasi 0.10.0+wasi-snapshot-preview1",
1844
+ "winapi",
1845
+ ]
1846
+
1847
+ [[package]]
1848
+ name = "tinyvec"
1849
+ version = "1.6.0"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
1852
+ dependencies = [
1853
+ "tinyvec_macros",
1854
+ ]
1855
+
1856
+ [[package]]
1857
+ name = "tinyvec_macros"
1858
+ version = "0.1.0"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
1861
+
1862
+ [[package]]
1863
+ name = "tokio"
1864
+ version = "1.19.2"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439"
1867
+ dependencies = [
1868
+ "bytes",
1869
+ "libc",
1870
+ "memchr",
1871
+ "mio",
1872
+ "num_cpus",
1873
+ "once_cell",
1874
+ "pin-project-lite",
1875
+ "socket2",
1876
+ "winapi",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "tokio-native-tls"
1881
+ version = "0.3.0"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
1884
+ dependencies = [
1885
+ "native-tls",
1886
+ "tokio",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "tokio-rustls"
1891
+ version = "0.23.4"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
1894
+ dependencies = [
1895
+ "rustls",
1896
+ "tokio",
1897
+ "webpki",
1898
+ ]
1899
+
1900
+ [[package]]
1901
+ name = "tokio-util"
1902
+ version = "0.7.3"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45"
1905
+ dependencies = [
1906
+ "bytes",
1907
+ "futures-core",
1908
+ "futures-sink",
1909
+ "pin-project-lite",
1910
+ "tokio",
1911
+ "tracing",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "tower-service"
1916
+ version = "0.3.1"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
1919
+
1920
+ [[package]]
1921
+ name = "tracing"
1922
+ version = "0.1.35"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160"
1925
+ dependencies = [
1926
+ "cfg-if",
1927
+ "pin-project-lite",
1928
+ "tracing-core",
1929
+ ]
1930
+
1931
+ [[package]]
1932
+ name = "tracing-core"
1933
+ version = "0.1.27"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "7709595b8878a4965ce5e87ebf880a7d39c9afc6837721b21a5a816a8117d921"
1936
+ dependencies = [
1937
+ "once_cell",
1938
+ ]
1939
+
1940
+ [[package]]
1941
+ name = "try-lock"
1942
+ version = "0.2.3"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
1945
+
1946
+ [[package]]
1947
+ name = "unicode-bidi"
1948
+ version = "0.3.8"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
1951
+
1952
+ [[package]]
1953
+ name = "unicode-ident"
1954
+ version = "1.0.0"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "d22af068fba1eb5edcb4aea19d382b2a3deb4c8f9d475c589b6ada9e0fd493ee"
1957
+
1958
+ [[package]]
1959
+ name = "unicode-normalization"
1960
+ version = "0.1.19"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
1963
+ dependencies = [
1964
+ "tinyvec",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "unicode-width"
1969
+ version = "0.1.9"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
1972
+
1973
+ [[package]]
1974
+ name = "untrusted"
1975
+ version = "0.7.1"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
1978
+
1979
+ [[package]]
1980
+ name = "url"
1981
+ version = "2.2.2"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
1984
+ dependencies = [
1985
+ "form_urlencoded",
1986
+ "idna",
1987
+ "matches",
1988
+ "percent-encoding",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "vcpkg"
1993
+ version = "0.2.15"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1996
+
1997
+ [[package]]
1998
+ name = "vec_map"
1999
+ version = "0.8.2"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2002
+
2003
+ [[package]]
2004
+ name = "version_check"
2005
+ version = "0.9.4"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2008
+
2009
+ [[package]]
2010
+ name = "want"
2011
+ version = "0.3.0"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
2014
+ dependencies = [
2015
+ "log",
2016
+ "try-lock",
2017
+ ]
2018
+
2019
+ [[package]]
2020
+ name = "wasi"
2021
+ version = "0.10.0+wasi-snapshot-preview1"
2022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2023
+ checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2024
+
2025
+ [[package]]
2026
+ name = "wasi"
2027
+ version = "0.11.0+wasi-snapshot-preview1"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2030
+
2031
+ [[package]]
2032
+ name = "wasm-bindgen"
2033
+ version = "0.2.80"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad"
2036
+ dependencies = [
2037
+ "cfg-if",
2038
+ "wasm-bindgen-macro",
2039
+ ]
2040
+
2041
+ [[package]]
2042
+ name = "wasm-bindgen-backend"
2043
+ version = "0.2.80"
2044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2045
+ checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4"
2046
+ dependencies = [
2047
+ "bumpalo",
2048
+ "lazy_static",
2049
+ "log",
2050
+ "proc-macro2",
2051
+ "quote",
2052
+ "syn",
2053
+ "wasm-bindgen-shared",
2054
+ ]
2055
+
2056
+ [[package]]
2057
+ name = "wasm-bindgen-futures"
2058
+ version = "0.4.30"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "6f741de44b75e14c35df886aff5f1eb73aa114fa5d4d00dcd37b5e01259bf3b2"
2061
+ dependencies = [
2062
+ "cfg-if",
2063
+ "js-sys",
2064
+ "wasm-bindgen",
2065
+ "web-sys",
2066
+ ]
2067
+
2068
+ [[package]]
2069
+ name = "wasm-bindgen-macro"
2070
+ version = "0.2.80"
2071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2072
+ checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5"
2073
+ dependencies = [
2074
+ "quote",
2075
+ "wasm-bindgen-macro-support",
2076
+ ]
2077
+
2078
+ [[package]]
2079
+ name = "wasm-bindgen-macro-support"
2080
+ version = "0.2.80"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b"
2083
+ dependencies = [
2084
+ "proc-macro2",
2085
+ "quote",
2086
+ "syn",
2087
+ "wasm-bindgen-backend",
2088
+ "wasm-bindgen-shared",
2089
+ ]
2090
+
2091
+ [[package]]
2092
+ name = "wasm-bindgen-shared"
2093
+ version = "0.2.80"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744"
2096
+
2097
+ [[package]]
2098
+ name = "web-sys"
2099
+ version = "0.3.57"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283"
2102
+ dependencies = [
2103
+ "js-sys",
2104
+ "wasm-bindgen",
2105
+ ]
2106
+
2107
+ [[package]]
2108
+ name = "webpki"
2109
+ version = "0.22.0"
2110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2111
+ checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
2112
+ dependencies = [
2113
+ "ring",
2114
+ "untrusted",
2115
+ ]
2116
+
2117
+ [[package]]
2118
+ name = "which"
2119
+ version = "4.2.5"
2120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2121
+ checksum = "5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae"
2122
+ dependencies = [
2123
+ "either",
2124
+ "lazy_static",
2125
+ "libc",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "winapi"
2130
+ version = "0.3.9"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2133
+ dependencies = [
2134
+ "winapi-i686-pc-windows-gnu",
2135
+ "winapi-x86_64-pc-windows-gnu",
2136
+ ]
2137
+
2138
+ [[package]]
2139
+ name = "winapi-i686-pc-windows-gnu"
2140
+ version = "0.4.0"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2143
+
2144
+ [[package]]
2145
+ name = "winapi-util"
2146
+ version = "0.1.5"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2149
+ dependencies = [
2150
+ "winapi",
2151
+ ]
2152
+
2153
+ [[package]]
2154
+ name = "winapi-x86_64-pc-windows-gnu"
2155
+ version = "0.4.0"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2158
+
2159
+ [[package]]
2160
+ name = "windows-sys"
2161
+ version = "0.36.1"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
2164
+ dependencies = [
2165
+ "windows_aarch64_msvc",
2166
+ "windows_i686_gnu",
2167
+ "windows_i686_msvc",
2168
+ "windows_x86_64_gnu",
2169
+ "windows_x86_64_msvc",
2170
+ ]
2171
+
2172
+ [[package]]
2173
+ name = "windows_aarch64_msvc"
2174
+ version = "0.36.1"
2175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2176
+ checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2177
+
2178
+ [[package]]
2179
+ name = "windows_i686_gnu"
2180
+ version = "0.36.1"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2183
+
2184
+ [[package]]
2185
+ name = "windows_i686_msvc"
2186
+ version = "0.36.1"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2189
+
2190
+ [[package]]
2191
+ name = "windows_x86_64_gnu"
2192
+ version = "0.36.1"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2195
+
2196
+ [[package]]
2197
+ name = "windows_x86_64_msvc"
2198
+ version = "0.36.1"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2201
+
2202
+ [[package]]
2203
+ name = "winreg"
2204
+ version = "0.10.1"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2207
+ dependencies = [
2208
+ "winapi",
2209
+ ]