enveloperb 0.0.0.1.ENOTAG-arm64-darwin

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1786 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "aead"
7
+ version = "0.4.3"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
10
+ dependencies = [
11
+ "generic-array",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "aes"
16
+ version = "0.7.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
19
+ dependencies = [
20
+ "cfg-if",
21
+ "cipher",
22
+ "cpufeatures",
23
+ "opaque-debug",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "aes-gcm"
28
+ version = "0.9.4"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6"
31
+ dependencies = [
32
+ "aead",
33
+ "aes",
34
+ "cipher",
35
+ "ctr",
36
+ "ghash",
37
+ "subtle",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "ahash"
42
+ version = "0.7.6"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
45
+ dependencies = [
46
+ "getrandom",
47
+ "once_cell",
48
+ "version_check",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "aho-corasick"
53
+ version = "0.7.18"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
56
+ dependencies = [
57
+ "memchr",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "ansi_term"
62
+ version = "0.12.1"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
65
+ dependencies = [
66
+ "winapi",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "async-trait"
71
+ version = "0.1.53"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "ed6aa3524a2dfcf9fe180c51eae2b58738348d819517ceadf95789c51fff7600"
74
+ dependencies = [
75
+ "proc-macro2",
76
+ "quote",
77
+ "syn",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "atty"
82
+ version = "0.2.14"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
85
+ dependencies = [
86
+ "hermit-abi",
87
+ "libc",
88
+ "winapi",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "autocfg"
93
+ version = "1.1.0"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
96
+
97
+ [[package]]
98
+ name = "aws-config"
99
+ version = "0.10.1"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "d77fa6e51f756ca6a0b1732e2cffde895d1e967e595c444e1a4e11aac92437dd"
102
+ dependencies = [
103
+ "aws-http",
104
+ "aws-sdk-sso",
105
+ "aws-sdk-sts",
106
+ "aws-smithy-async",
107
+ "aws-smithy-client",
108
+ "aws-smithy-http",
109
+ "aws-smithy-http-tower",
110
+ "aws-smithy-json",
111
+ "aws-smithy-types",
112
+ "aws-types",
113
+ "bytes",
114
+ "hex",
115
+ "http",
116
+ "hyper",
117
+ "ring",
118
+ "tokio",
119
+ "tower",
120
+ "tracing",
121
+ "zeroize",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "aws-endpoint"
126
+ version = "0.10.1"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "fb9486b31d996a309594b3491ae752dbe807d1d13731f5718d37a2ccfe4bdf11"
129
+ dependencies = [
130
+ "aws-smithy-http",
131
+ "aws-types",
132
+ "http",
133
+ "regex",
134
+ "tracing",
135
+ ]
136
+
137
+ [[package]]
138
+ name = "aws-http"
139
+ version = "0.10.1"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "43b0c6a0938ee38f5f7659d8b175d151f75cf64f856bbde2f1aabb4d3d6f79be"
142
+ dependencies = [
143
+ "aws-smithy-http",
144
+ "aws-smithy-types",
145
+ "aws-types",
146
+ "http",
147
+ "lazy_static 1.4.0",
148
+ "percent-encoding",
149
+ "tracing",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "aws-sdk-kms"
154
+ version = "0.10.1"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "01f73b4b28a68a21322082c581b40b88d243203b58e680ad6eca742158efdf4d"
157
+ dependencies = [
158
+ "aws-endpoint",
159
+ "aws-http",
160
+ "aws-sig-auth",
161
+ "aws-smithy-async",
162
+ "aws-smithy-client",
163
+ "aws-smithy-http",
164
+ "aws-smithy-http-tower",
165
+ "aws-smithy-json",
166
+ "aws-smithy-types",
167
+ "aws-types",
168
+ "bytes",
169
+ "http",
170
+ "tokio-stream",
171
+ "tower",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "aws-sdk-sso"
176
+ version = "0.10.1"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "0c446f905f10fe8306186eac98eb6304366c2db0310ceeb0d441769a264bf0fa"
179
+ dependencies = [
180
+ "aws-endpoint",
181
+ "aws-http",
182
+ "aws-sig-auth",
183
+ "aws-smithy-async",
184
+ "aws-smithy-client",
185
+ "aws-smithy-http",
186
+ "aws-smithy-http-tower",
187
+ "aws-smithy-json",
188
+ "aws-smithy-types",
189
+ "aws-types",
190
+ "bytes",
191
+ "http",
192
+ "tokio-stream",
193
+ "tower",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "aws-sdk-sts"
198
+ version = "0.10.1"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "6b41d5d00307f0c5a2195ee0f11bb9414e5e88b9a8cbced191b0c04196c3f0da"
201
+ dependencies = [
202
+ "aws-endpoint",
203
+ "aws-http",
204
+ "aws-sig-auth",
205
+ "aws-smithy-async",
206
+ "aws-smithy-client",
207
+ "aws-smithy-http",
208
+ "aws-smithy-http-tower",
209
+ "aws-smithy-query",
210
+ "aws-smithy-types",
211
+ "aws-smithy-xml",
212
+ "aws-types",
213
+ "bytes",
214
+ "http",
215
+ "tower",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "aws-sig-auth"
220
+ version = "0.10.1"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "b6c2bd9951d37869431a9c21c5e2319baaf549f41045e8eb891fb3de5bde3ec7"
223
+ dependencies = [
224
+ "aws-sigv4",
225
+ "aws-smithy-http",
226
+ "aws-types",
227
+ "http",
228
+ "thiserror",
229
+ "tracing",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "aws-sigv4"
234
+ version = "0.10.1"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "bcfa45ad4f4d00e7d4f770c6f760ffde6b1fb409ed30e0577361f00d903a0895"
237
+ dependencies = [
238
+ "aws-smithy-http",
239
+ "form_urlencoded",
240
+ "hex",
241
+ "http",
242
+ "once_cell",
243
+ "percent-encoding",
244
+ "regex",
245
+ "ring",
246
+ "time",
247
+ "tracing",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "aws-smithy-async"
252
+ version = "0.40.2"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "235f5e604c23992ca08892d0762bc1be9c166912f109597ec80220dd698277ff"
255
+ dependencies = [
256
+ "futures-util",
257
+ "pin-project-lite",
258
+ "tokio",
259
+ "tokio-stream",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "aws-smithy-client"
264
+ version = "0.40.2"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "666694cbd62dd2892ddfdcb8f3b416b0425705ec0f0114d76ddd50c9c16be948"
267
+ dependencies = [
268
+ "aws-smithy-async",
269
+ "aws-smithy-http",
270
+ "aws-smithy-http-tower",
271
+ "aws-smithy-types",
272
+ "bytes",
273
+ "fastrand",
274
+ "http",
275
+ "http-body",
276
+ "hyper",
277
+ "hyper-rustls",
278
+ "lazy_static 1.4.0",
279
+ "pin-project",
280
+ "pin-project-lite",
281
+ "tokio",
282
+ "tower",
283
+ "tracing",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "aws-smithy-http"
288
+ version = "0.40.2"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "a06512ad2d8e80dcddb67859ed482ff433e2a2769228b980c1403d2cb069e365"
291
+ dependencies = [
292
+ "aws-smithy-types",
293
+ "bytes",
294
+ "bytes-utils",
295
+ "futures-core",
296
+ "http",
297
+ "http-body",
298
+ "hyper",
299
+ "once_cell",
300
+ "percent-encoding",
301
+ "pin-project",
302
+ "tokio",
303
+ "tokio-util 0.6.9",
304
+ "tracing",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "aws-smithy-http-tower"
309
+ version = "0.40.2"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "61cc242962fc624a942cd9d9341007f3a28d94d72ba4eaed82754126e19c7327"
312
+ dependencies = [
313
+ "aws-smithy-http",
314
+ "bytes",
315
+ "http",
316
+ "http-body",
317
+ "pin-project",
318
+ "tower",
319
+ "tracing",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "aws-smithy-json"
324
+ version = "0.40.2"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "cfb575dc48946d75a55a28137fce1ae2b94fd75b82ddad7d67760b0613a08068"
327
+ dependencies = [
328
+ "aws-smithy-types",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "aws-smithy-query"
333
+ version = "0.40.2"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "5d1f71d4f1c9f2cb0aded4d27c9dc5d55f5398372e0e19a9d489b80ab0bcdb80"
336
+ dependencies = [
337
+ "aws-smithy-types",
338
+ "urlencoding",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "aws-smithy-types"
343
+ version = "0.40.2"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "540e9d7f6d9655b17d2a794b0a54322359754fea3357a60f6d9c7cf1bc7ff0f2"
346
+ dependencies = [
347
+ "itoa",
348
+ "num-integer",
349
+ "ryu",
350
+ "time",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "aws-smithy-xml"
355
+ version = "0.40.2"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "c431df835bfa2cce08535bb8735a9a8b2fc0fed7c52ed16506c9c430dc18aa7e"
358
+ dependencies = [
359
+ "thiserror",
360
+ "xmlparser",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "aws-types"
365
+ version = "0.10.1"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "25a1ae75d090d4cd44b2fe1d2de1783ff8665f2f0e3957f5e99c1a5760a77a0a"
368
+ dependencies = [
369
+ "aws-smithy-async",
370
+ "aws-smithy-client",
371
+ "aws-smithy-http",
372
+ "aws-smithy-types",
373
+ "http",
374
+ "rustc_version",
375
+ "tracing",
376
+ "zeroize",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "base64"
381
+ version = "0.13.0"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
384
+
385
+ [[package]]
386
+ name = "bindgen"
387
+ version = "0.59.2"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8"
390
+ dependencies = [
391
+ "bitflags",
392
+ "cexpr",
393
+ "clang-sys",
394
+ "clap",
395
+ "env_logger",
396
+ "lazy_static 1.4.0",
397
+ "lazycell",
398
+ "log",
399
+ "peeking_take_while",
400
+ "proc-macro2",
401
+ "quote",
402
+ "regex",
403
+ "rustc-hash",
404
+ "shlex",
405
+ "which",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "bitflags"
410
+ version = "1.3.2"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
413
+
414
+ [[package]]
415
+ name = "bumpalo"
416
+ version = "3.9.1"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
419
+
420
+ [[package]]
421
+ name = "bytes"
422
+ version = "1.1.0"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
425
+
426
+ [[package]]
427
+ name = "bytes-utils"
428
+ version = "0.1.2"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "1934a3ef9cac8efde4966a92781e77713e1ba329f1d42e446c7d7eba340d8ef1"
431
+ dependencies = [
432
+ "bytes",
433
+ "either",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "cc"
438
+ version = "1.0.73"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
441
+
442
+ [[package]]
443
+ name = "cexpr"
444
+ version = "0.6.0"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
447
+ dependencies = [
448
+ "nom",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "cfg-if"
453
+ version = "1.0.0"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
456
+
457
+ [[package]]
458
+ name = "cipher"
459
+ version = "0.3.0"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
462
+ dependencies = [
463
+ "generic-array",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "clang-sys"
468
+ version = "1.3.1"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "4cc00842eed744b858222c4c9faf7243aafc6d33f92f96935263ef4d8a41ce21"
471
+ dependencies = [
472
+ "glob",
473
+ "libc",
474
+ "libloading",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "clap"
479
+ version = "2.34.0"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
482
+ dependencies = [
483
+ "ansi_term",
484
+ "atty",
485
+ "bitflags",
486
+ "strsim",
487
+ "textwrap",
488
+ "unicode-width",
489
+ "vec_map",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "core-foundation"
494
+ version = "0.9.3"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
497
+ dependencies = [
498
+ "core-foundation-sys",
499
+ "libc",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "core-foundation-sys"
504
+ version = "0.8.3"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
507
+
508
+ [[package]]
509
+ name = "cpufeatures"
510
+ version = "0.2.2"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
513
+ dependencies = [
514
+ "libc",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "ct-logs"
519
+ version = "0.8.0"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "c1a816186fa68d9e426e3cb4ae4dff1fcd8e4a2c34b781bf7a822574a0d0aac8"
522
+ dependencies = [
523
+ "sct",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "ctr"
528
+ version = "0.8.0"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea"
531
+ dependencies = [
532
+ "cipher",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "either"
537
+ version = "1.6.1"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
540
+
541
+ [[package]]
542
+ name = "env_logger"
543
+ version = "0.9.0"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
546
+ dependencies = [
547
+ "atty",
548
+ "humantime",
549
+ "log",
550
+ "regex",
551
+ "termcolor",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "enveloperb"
556
+ version = "0.0.0"
557
+ dependencies = [
558
+ "aws-config",
559
+ "aws-sdk-kms",
560
+ "aws-types",
561
+ "envelopers",
562
+ "lazy_static 0.2.11",
563
+ "rb-sys",
564
+ "rutie",
565
+ "tokio",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "envelopers"
570
+ version = "0.5.1"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "ea1989c57e324387ae456656f0cdb0b48641329a0a934bddaa4e722e3095becc"
573
+ dependencies = [
574
+ "aes-gcm",
575
+ "async-trait",
576
+ "aws-config",
577
+ "aws-sdk-kms",
578
+ "lru",
579
+ "rand",
580
+ "rand_chacha",
581
+ "serde",
582
+ "serde_cbor",
583
+ "thiserror",
584
+ "zeroize",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "fastrand"
589
+ version = "1.7.0"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
592
+ dependencies = [
593
+ "instant",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "fnv"
598
+ version = "1.0.7"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
601
+
602
+ [[package]]
603
+ name = "form_urlencoded"
604
+ version = "1.0.1"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
607
+ dependencies = [
608
+ "matches",
609
+ "percent-encoding",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "futures-channel"
614
+ version = "0.3.21"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
617
+ dependencies = [
618
+ "futures-core",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "futures-core"
623
+ version = "0.3.21"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
626
+
627
+ [[package]]
628
+ name = "futures-macro"
629
+ version = "0.3.21"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
632
+ dependencies = [
633
+ "proc-macro2",
634
+ "quote",
635
+ "syn",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "futures-sink"
640
+ version = "0.3.21"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
643
+
644
+ [[package]]
645
+ name = "futures-task"
646
+ version = "0.3.21"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
649
+
650
+ [[package]]
651
+ name = "futures-util"
652
+ version = "0.3.21"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
655
+ dependencies = [
656
+ "futures-core",
657
+ "futures-macro",
658
+ "futures-task",
659
+ "pin-project-lite",
660
+ "pin-utils",
661
+ "slab",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "generic-array"
666
+ version = "0.14.5"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
669
+ dependencies = [
670
+ "typenum",
671
+ "version_check",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "getrandom"
676
+ version = "0.2.6"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
679
+ dependencies = [
680
+ "cfg-if",
681
+ "libc",
682
+ "wasi 0.10.2+wasi-snapshot-preview1",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "ghash"
687
+ version = "0.4.4"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99"
690
+ dependencies = [
691
+ "opaque-debug",
692
+ "polyval",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "glob"
697
+ version = "0.3.0"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
700
+
701
+ [[package]]
702
+ name = "h2"
703
+ version = "0.3.13"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
706
+ dependencies = [
707
+ "bytes",
708
+ "fnv",
709
+ "futures-core",
710
+ "futures-sink",
711
+ "futures-util",
712
+ "http",
713
+ "indexmap",
714
+ "slab",
715
+ "tokio",
716
+ "tokio-util 0.7.1",
717
+ "tracing",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "half"
722
+ version = "1.8.2"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
725
+
726
+ [[package]]
727
+ name = "hashbrown"
728
+ version = "0.11.2"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
731
+ dependencies = [
732
+ "ahash",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "hermit-abi"
737
+ version = "0.1.19"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
740
+ dependencies = [
741
+ "libc",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "hex"
746
+ version = "0.4.3"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
749
+
750
+ [[package]]
751
+ name = "http"
752
+ version = "0.2.6"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03"
755
+ dependencies = [
756
+ "bytes",
757
+ "fnv",
758
+ "itoa",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "http-body"
763
+ version = "0.4.4"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
766
+ dependencies = [
767
+ "bytes",
768
+ "http",
769
+ "pin-project-lite",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "httparse"
774
+ version = "1.7.0"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "6330e8a36bd8c859f3fa6d9382911fbb7147ec39807f63b923933a247240b9ba"
777
+
778
+ [[package]]
779
+ name = "httpdate"
780
+ version = "1.0.2"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
783
+
784
+ [[package]]
785
+ name = "humantime"
786
+ version = "2.1.0"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
789
+
790
+ [[package]]
791
+ name = "hyper"
792
+ version = "0.14.18"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "b26ae0a80afebe130861d90abf98e3814a4f28a4c6ffeb5ab8ebb2be311e0ef2"
795
+ dependencies = [
796
+ "bytes",
797
+ "futures-channel",
798
+ "futures-core",
799
+ "futures-util",
800
+ "h2",
801
+ "http",
802
+ "http-body",
803
+ "httparse",
804
+ "httpdate",
805
+ "itoa",
806
+ "pin-project-lite",
807
+ "socket2",
808
+ "tokio",
809
+ "tower-service",
810
+ "tracing",
811
+ "want",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "hyper-rustls"
816
+ version = "0.22.1"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "5f9f7a97316d44c0af9b0301e65010573a853a9fc97046d7331d7f6bc0fd5a64"
819
+ dependencies = [
820
+ "ct-logs",
821
+ "futures-util",
822
+ "hyper",
823
+ "log",
824
+ "rustls",
825
+ "rustls-native-certs",
826
+ "tokio",
827
+ "tokio-rustls",
828
+ "webpki",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "indexmap"
833
+ version = "1.8.1"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee"
836
+ dependencies = [
837
+ "autocfg",
838
+ "hashbrown",
839
+ ]
840
+
841
+ [[package]]
842
+ name = "instant"
843
+ version = "0.1.12"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
846
+ dependencies = [
847
+ "cfg-if",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "itoa"
852
+ version = "1.0.1"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
855
+
856
+ [[package]]
857
+ name = "js-sys"
858
+ version = "0.3.57"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "671a26f820db17c2a2750743f1dd03bafd15b98c9f30c7c2628c024c05d73397"
861
+ dependencies = [
862
+ "wasm-bindgen",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "lazy_static"
867
+ version = "0.2.11"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73"
870
+
871
+ [[package]]
872
+ name = "lazy_static"
873
+ version = "1.4.0"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
876
+
877
+ [[package]]
878
+ name = "lazycell"
879
+ version = "1.3.0"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
882
+
883
+ [[package]]
884
+ name = "libc"
885
+ version = "0.2.121"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "efaa7b300f3b5fe8eb6bf21ce3895e1751d9665086af2d64b42f19701015ff4f"
888
+
889
+ [[package]]
890
+ name = "libloading"
891
+ version = "0.7.3"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
894
+ dependencies = [
895
+ "cfg-if",
896
+ "winapi",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "log"
901
+ version = "0.4.16"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8"
904
+ dependencies = [
905
+ "cfg-if",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "lru"
910
+ version = "0.7.7"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "c84e6fe5655adc6ce00787cf7dcaf8dc4f998a0565d23eafc207a8b08ca3349a"
913
+ dependencies = [
914
+ "hashbrown",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "matches"
919
+ version = "0.1.9"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
922
+
923
+ [[package]]
924
+ name = "memchr"
925
+ version = "2.4.1"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
928
+
929
+ [[package]]
930
+ name = "minimal-lexical"
931
+ version = "0.2.1"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
934
+
935
+ [[package]]
936
+ name = "mio"
937
+ version = "0.8.2"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9"
940
+ dependencies = [
941
+ "libc",
942
+ "log",
943
+ "miow",
944
+ "ntapi",
945
+ "wasi 0.11.0+wasi-snapshot-preview1",
946
+ "winapi",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "miow"
951
+ version = "0.3.7"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
954
+ dependencies = [
955
+ "winapi",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "nom"
960
+ version = "7.1.1"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
963
+ dependencies = [
964
+ "memchr",
965
+ "minimal-lexical",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "ntapi"
970
+ version = "0.3.7"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
973
+ dependencies = [
974
+ "winapi",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "num-integer"
979
+ version = "0.1.44"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
982
+ dependencies = [
983
+ "autocfg",
984
+ "num-traits",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "num-traits"
989
+ version = "0.2.14"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
992
+ dependencies = [
993
+ "autocfg",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "num_cpus"
998
+ version = "1.13.1"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
1001
+ dependencies = [
1002
+ "hermit-abi",
1003
+ "libc",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "num_threads"
1008
+ version = "0.1.5"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "aba1801fb138d8e85e11d0fc70baf4fe1cdfffda7c6cd34a854905df588e5ed0"
1011
+ dependencies = [
1012
+ "libc",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "once_cell"
1017
+ version = "1.10.0"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
1020
+
1021
+ [[package]]
1022
+ name = "opaque-debug"
1023
+ version = "0.3.0"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
1026
+
1027
+ [[package]]
1028
+ name = "openssl-probe"
1029
+ version = "0.1.5"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1032
+
1033
+ [[package]]
1034
+ name = "peeking_take_while"
1035
+ version = "0.1.2"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
1038
+
1039
+ [[package]]
1040
+ name = "percent-encoding"
1041
+ version = "2.1.0"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
1044
+
1045
+ [[package]]
1046
+ name = "pin-project"
1047
+ version = "1.0.10"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e"
1050
+ dependencies = [
1051
+ "pin-project-internal",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "pin-project-internal"
1056
+ version = "1.0.10"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb"
1059
+ dependencies = [
1060
+ "proc-macro2",
1061
+ "quote",
1062
+ "syn",
1063
+ ]
1064
+
1065
+ [[package]]
1066
+ name = "pin-project-lite"
1067
+ version = "0.2.8"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
1070
+
1071
+ [[package]]
1072
+ name = "pin-utils"
1073
+ version = "0.1.0"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1076
+
1077
+ [[package]]
1078
+ name = "pkg-config"
1079
+ version = "0.3.25"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
1082
+
1083
+ [[package]]
1084
+ name = "polyval"
1085
+ version = "0.5.3"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1"
1088
+ dependencies = [
1089
+ "cfg-if",
1090
+ "cpufeatures",
1091
+ "opaque-debug",
1092
+ "universal-hash",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "ppv-lite86"
1097
+ version = "0.2.16"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
1100
+
1101
+ [[package]]
1102
+ name = "proc-macro2"
1103
+ version = "1.0.37"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "ec757218438d5fda206afc041538b2f6d889286160d649a86a24d37e1235afd1"
1106
+ dependencies = [
1107
+ "unicode-xid",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "quote"
1112
+ version = "1.0.18"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
1115
+ dependencies = [
1116
+ "proc-macro2",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "rand"
1121
+ version = "0.8.5"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1124
+ dependencies = [
1125
+ "libc",
1126
+ "rand_chacha",
1127
+ "rand_core",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "rand_chacha"
1132
+ version = "0.3.1"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1135
+ dependencies = [
1136
+ "ppv-lite86",
1137
+ "rand_core",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "rand_core"
1142
+ version = "0.6.3"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
1145
+ dependencies = [
1146
+ "getrandom",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "rb-sys"
1151
+ version = "0.8.1"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "4db52af35291b64ce86f23f755b4576c20e3063b517269252b2f8cc883ca00e6"
1154
+ dependencies = [
1155
+ "bindgen",
1156
+ "libc",
1157
+ "pkg-config",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "regex"
1162
+ version = "1.5.5"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
1165
+ dependencies = [
1166
+ "aho-corasick",
1167
+ "memchr",
1168
+ "regex-syntax",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "regex-syntax"
1173
+ version = "0.6.25"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
1176
+
1177
+ [[package]]
1178
+ name = "ring"
1179
+ version = "0.16.20"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
1182
+ dependencies = [
1183
+ "cc",
1184
+ "libc",
1185
+ "once_cell",
1186
+ "spin",
1187
+ "untrusted",
1188
+ "web-sys",
1189
+ "winapi",
1190
+ ]
1191
+
1192
+ [[package]]
1193
+ name = "rustc-hash"
1194
+ version = "1.1.0"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1197
+
1198
+ [[package]]
1199
+ name = "rustc_version"
1200
+ version = "0.4.0"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
1203
+ dependencies = [
1204
+ "semver",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "rustls"
1209
+ version = "0.19.1"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"
1212
+ dependencies = [
1213
+ "base64",
1214
+ "log",
1215
+ "ring",
1216
+ "sct",
1217
+ "webpki",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "rustls-native-certs"
1222
+ version = "0.5.0"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092"
1225
+ dependencies = [
1226
+ "openssl-probe",
1227
+ "rustls",
1228
+ "schannel",
1229
+ "security-framework",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "rutie"
1234
+ version = "0.8.4"
1235
+ source = "git+https://github.com/mpalmer/rutie?branch=rb_sys#c7b16b35d20c688b32b3f4092ddc6202dd9e2433"
1236
+ dependencies = [
1237
+ "lazy_static 1.4.0",
1238
+ "libc",
1239
+ "rb-sys",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "ryu"
1244
+ version = "1.0.9"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
1247
+
1248
+ [[package]]
1249
+ name = "schannel"
1250
+ version = "0.1.19"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
1253
+ dependencies = [
1254
+ "lazy_static 1.4.0",
1255
+ "winapi",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "sct"
1260
+ version = "0.6.1"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
1263
+ dependencies = [
1264
+ "ring",
1265
+ "untrusted",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "security-framework"
1270
+ version = "2.6.1"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
1273
+ dependencies = [
1274
+ "bitflags",
1275
+ "core-foundation",
1276
+ "core-foundation-sys",
1277
+ "libc",
1278
+ "security-framework-sys",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "security-framework-sys"
1283
+ version = "2.6.1"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
1286
+ dependencies = [
1287
+ "core-foundation-sys",
1288
+ "libc",
1289
+ ]
1290
+
1291
+ [[package]]
1292
+ name = "semver"
1293
+ version = "1.0.7"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "d65bd28f48be7196d222d95b9243287f48d27aca604e08497513019ff0502cc4"
1296
+
1297
+ [[package]]
1298
+ name = "serde"
1299
+ version = "1.0.136"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
1302
+ dependencies = [
1303
+ "serde_derive",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "serde_cbor"
1308
+ version = "0.11.2"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
1311
+ dependencies = [
1312
+ "half",
1313
+ "serde",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "serde_derive"
1318
+ version = "1.0.136"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
1321
+ dependencies = [
1322
+ "proc-macro2",
1323
+ "quote",
1324
+ "syn",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "shlex"
1329
+ version = "1.1.0"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
1332
+
1333
+ [[package]]
1334
+ name = "slab"
1335
+ version = "0.4.6"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
1338
+
1339
+ [[package]]
1340
+ name = "socket2"
1341
+ version = "0.4.4"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
1344
+ dependencies = [
1345
+ "libc",
1346
+ "winapi",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "spin"
1351
+ version = "0.5.2"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
1354
+
1355
+ [[package]]
1356
+ name = "strsim"
1357
+ version = "0.8.0"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
1360
+
1361
+ [[package]]
1362
+ name = "subtle"
1363
+ version = "2.4.1"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
1366
+
1367
+ [[package]]
1368
+ name = "syn"
1369
+ version = "1.0.91"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "b683b2b825c8eef438b77c36a06dc262294da3d5a5813fac20da149241dcd44d"
1372
+ dependencies = [
1373
+ "proc-macro2",
1374
+ "quote",
1375
+ "unicode-xid",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "synstructure"
1380
+ version = "0.12.6"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
1383
+ dependencies = [
1384
+ "proc-macro2",
1385
+ "quote",
1386
+ "syn",
1387
+ "unicode-xid",
1388
+ ]
1389
+
1390
+ [[package]]
1391
+ name = "termcolor"
1392
+ version = "1.1.3"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
1395
+ dependencies = [
1396
+ "winapi-util",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "textwrap"
1401
+ version = "0.11.0"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
1404
+ dependencies = [
1405
+ "unicode-width",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "thiserror"
1410
+ version = "1.0.30"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
1413
+ dependencies = [
1414
+ "thiserror-impl",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "thiserror-impl"
1419
+ version = "1.0.30"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
1422
+ dependencies = [
1423
+ "proc-macro2",
1424
+ "quote",
1425
+ "syn",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "time"
1430
+ version = "0.3.9"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd"
1433
+ dependencies = [
1434
+ "libc",
1435
+ "num_threads",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "tokio"
1440
+ version = "1.17.0"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee"
1443
+ dependencies = [
1444
+ "bytes",
1445
+ "libc",
1446
+ "memchr",
1447
+ "mio",
1448
+ "num_cpus",
1449
+ "pin-project-lite",
1450
+ "socket2",
1451
+ "winapi",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "tokio-rustls"
1456
+ version = "0.22.0"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6"
1459
+ dependencies = [
1460
+ "rustls",
1461
+ "tokio",
1462
+ "webpki",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "tokio-stream"
1467
+ version = "0.1.8"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3"
1470
+ dependencies = [
1471
+ "futures-core",
1472
+ "pin-project-lite",
1473
+ "tokio",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "tokio-util"
1478
+ version = "0.6.9"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"
1481
+ dependencies = [
1482
+ "bytes",
1483
+ "futures-core",
1484
+ "futures-sink",
1485
+ "log",
1486
+ "pin-project-lite",
1487
+ "tokio",
1488
+ ]
1489
+
1490
+ [[package]]
1491
+ name = "tokio-util"
1492
+ version = "0.7.1"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764"
1495
+ dependencies = [
1496
+ "bytes",
1497
+ "futures-core",
1498
+ "futures-sink",
1499
+ "pin-project-lite",
1500
+ "tokio",
1501
+ "tracing",
1502
+ ]
1503
+
1504
+ [[package]]
1505
+ name = "tower"
1506
+ version = "0.4.12"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "9a89fd63ad6adf737582df5db40d286574513c69a11dac5214dc3b5603d6713e"
1509
+ dependencies = [
1510
+ "futures-core",
1511
+ "futures-util",
1512
+ "pin-project",
1513
+ "pin-project-lite",
1514
+ "tokio",
1515
+ "tower-layer",
1516
+ "tower-service",
1517
+ "tracing",
1518
+ ]
1519
+
1520
+ [[package]]
1521
+ name = "tower-layer"
1522
+ version = "0.3.1"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "343bc9466d3fe6b0f960ef45960509f84480bf4fd96f92901afe7ff3df9d3a62"
1525
+
1526
+ [[package]]
1527
+ name = "tower-service"
1528
+ version = "0.3.1"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
1531
+
1532
+ [[package]]
1533
+ name = "tracing"
1534
+ version = "0.1.34"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09"
1537
+ dependencies = [
1538
+ "cfg-if",
1539
+ "log",
1540
+ "pin-project-lite",
1541
+ "tracing-attributes",
1542
+ "tracing-core",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "tracing-attributes"
1547
+ version = "0.1.20"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "2e65ce065b4b5c53e73bb28912318cb8c9e9ad3921f1d669eb0e68b4c8143a2b"
1550
+ dependencies = [
1551
+ "proc-macro2",
1552
+ "quote",
1553
+ "syn",
1554
+ ]
1555
+
1556
+ [[package]]
1557
+ name = "tracing-core"
1558
+ version = "0.1.26"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f"
1561
+ dependencies = [
1562
+ "lazy_static 1.4.0",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "try-lock"
1567
+ version = "0.2.3"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
1570
+
1571
+ [[package]]
1572
+ name = "typenum"
1573
+ version = "1.15.0"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
1576
+
1577
+ [[package]]
1578
+ name = "unicode-width"
1579
+ version = "0.1.9"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
1582
+
1583
+ [[package]]
1584
+ name = "unicode-xid"
1585
+ version = "0.2.2"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
1588
+
1589
+ [[package]]
1590
+ name = "universal-hash"
1591
+ version = "0.4.1"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
1594
+ dependencies = [
1595
+ "generic-array",
1596
+ "subtle",
1597
+ ]
1598
+
1599
+ [[package]]
1600
+ name = "untrusted"
1601
+ version = "0.7.1"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
1604
+
1605
+ [[package]]
1606
+ name = "urlencoding"
1607
+ version = "2.1.0"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "68b90931029ab9b034b300b797048cf23723400aa757e8a2bfb9d748102f9821"
1610
+
1611
+ [[package]]
1612
+ name = "vec_map"
1613
+ version = "0.8.2"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
1616
+
1617
+ [[package]]
1618
+ name = "version_check"
1619
+ version = "0.9.4"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
1622
+
1623
+ [[package]]
1624
+ name = "want"
1625
+ version = "0.3.0"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
1628
+ dependencies = [
1629
+ "log",
1630
+ "try-lock",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "wasi"
1635
+ version = "0.10.2+wasi-snapshot-preview1"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
1638
+
1639
+ [[package]]
1640
+ name = "wasi"
1641
+ version = "0.11.0+wasi-snapshot-preview1"
1642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1643
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1644
+
1645
+ [[package]]
1646
+ name = "wasm-bindgen"
1647
+ version = "0.2.80"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad"
1650
+ dependencies = [
1651
+ "cfg-if",
1652
+ "wasm-bindgen-macro",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "wasm-bindgen-backend"
1657
+ version = "0.2.80"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4"
1660
+ dependencies = [
1661
+ "bumpalo",
1662
+ "lazy_static 1.4.0",
1663
+ "log",
1664
+ "proc-macro2",
1665
+ "quote",
1666
+ "syn",
1667
+ "wasm-bindgen-shared",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "wasm-bindgen-macro"
1672
+ version = "0.2.80"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5"
1675
+ dependencies = [
1676
+ "quote",
1677
+ "wasm-bindgen-macro-support",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "wasm-bindgen-macro-support"
1682
+ version = "0.2.80"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b"
1685
+ dependencies = [
1686
+ "proc-macro2",
1687
+ "quote",
1688
+ "syn",
1689
+ "wasm-bindgen-backend",
1690
+ "wasm-bindgen-shared",
1691
+ ]
1692
+
1693
+ [[package]]
1694
+ name = "wasm-bindgen-shared"
1695
+ version = "0.2.80"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744"
1698
+
1699
+ [[package]]
1700
+ name = "web-sys"
1701
+ version = "0.3.57"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283"
1704
+ dependencies = [
1705
+ "js-sys",
1706
+ "wasm-bindgen",
1707
+ ]
1708
+
1709
+ [[package]]
1710
+ name = "webpki"
1711
+ version = "0.21.4"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
1714
+ dependencies = [
1715
+ "ring",
1716
+ "untrusted",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "which"
1721
+ version = "4.2.5"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae"
1724
+ dependencies = [
1725
+ "either",
1726
+ "lazy_static 1.4.0",
1727
+ "libc",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "winapi"
1732
+ version = "0.3.9"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1735
+ dependencies = [
1736
+ "winapi-i686-pc-windows-gnu",
1737
+ "winapi-x86_64-pc-windows-gnu",
1738
+ ]
1739
+
1740
+ [[package]]
1741
+ name = "winapi-i686-pc-windows-gnu"
1742
+ version = "0.4.0"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1745
+
1746
+ [[package]]
1747
+ name = "winapi-util"
1748
+ version = "0.1.5"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
1751
+ dependencies = [
1752
+ "winapi",
1753
+ ]
1754
+
1755
+ [[package]]
1756
+ name = "winapi-x86_64-pc-windows-gnu"
1757
+ version = "0.4.0"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1760
+
1761
+ [[package]]
1762
+ name = "xmlparser"
1763
+ version = "0.13.3"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "114ba2b24d2167ef6d67d7d04c8cc86522b87f490025f39f0303b7db5bf5e3d8"
1766
+
1767
+ [[package]]
1768
+ name = "zeroize"
1769
+ version = "1.5.5"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "94693807d016b2f2d2e14420eb3bfcca689311ff775dcf113d74ea624b7cdf07"
1772
+ dependencies = [
1773
+ "zeroize_derive",
1774
+ ]
1775
+
1776
+ [[package]]
1777
+ name = "zeroize_derive"
1778
+ version = "1.3.2"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "3f8f187641dad4f680d25c4bfc4225b418165984179f26ca76ec4fb6441d3a17"
1781
+ dependencies = [
1782
+ "proc-macro2",
1783
+ "quote",
1784
+ "syn",
1785
+ "synstructure",
1786
+ ]