netlify-cli 12.7.1 → 12.8.0

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.
@@ -2,6 +2,21 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 3
4
4
 
5
+ [[package]]
6
+ name = "adler"
7
+ version = "1.0.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
10
+
11
+ [[package]]
12
+ name = "android_system_properties"
13
+ version = "0.1.5"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
16
+ dependencies = [
17
+ "libc",
18
+ ]
19
+
5
20
  [[package]]
6
21
  name = "async-stream"
7
22
  version = "0.3.2"
@@ -36,46 +51,56 @@ dependencies = [
36
51
 
37
52
  [[package]]
38
53
  name = "autocfg"
39
- version = "1.0.1"
54
+ version = "1.1.0"
40
55
  source = "registry+https://github.com/rust-lang/crates.io-index"
41
- checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
56
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
42
57
 
43
58
  [[package]]
44
59
  name = "aws_lambda_events"
45
- version = "0.4.0"
60
+ version = "0.7.3"
46
61
  source = "registry+https://github.com/rust-lang/crates.io-index"
47
- checksum = "663ef110325f68726f4bc51d12c610b9700f70e8bb8a55279cdeca01b12b5491"
62
+ checksum = "d376097ccf49a2699d554558267b2735f62ce94ee1840a9f73253ad7c26fbaa7"
48
63
  dependencies = [
49
64
  "base64",
50
- "bytes 0.5.6",
65
+ "bytes",
51
66
  "chrono",
67
+ "flate2",
52
68
  "http",
69
+ "http-body",
53
70
  "http-serde",
71
+ "query_map",
54
72
  "serde",
55
73
  "serde_derive",
56
74
  "serde_json",
75
+ "serde_with",
57
76
  ]
58
77
 
59
78
  [[package]]
60
79
  name = "base64"
61
- version = "0.12.3"
80
+ version = "0.13.1"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
83
+
84
+ [[package]]
85
+ name = "bumpalo"
86
+ version = "3.11.1"
62
87
  source = "registry+https://github.com/rust-lang/crates.io-index"
63
- checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
88
+ checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
64
89
 
65
90
  [[package]]
66
91
  name = "bytes"
67
- version = "0.5.6"
92
+ version = "1.0.1"
68
93
  source = "registry+https://github.com/rust-lang/crates.io-index"
69
- checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
94
+ checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
70
95
  dependencies = [
71
96
  "serde",
72
97
  ]
73
98
 
74
99
  [[package]]
75
- name = "bytes"
76
- version = "1.0.1"
100
+ name = "cc"
101
+ version = "1.0.78"
77
102
  source = "registry+https://github.com/rust-lang/crates.io-index"
78
- checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
103
+ checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
79
104
 
80
105
  [[package]]
81
106
  name = "cfg-if"
@@ -85,18 +110,27 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
85
110
 
86
111
  [[package]]
87
112
  name = "chrono"
88
- version = "0.4.19"
113
+ version = "0.4.23"
89
114
  source = "registry+https://github.com/rust-lang/crates.io-index"
90
- checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
115
+ checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
91
116
  dependencies = [
92
- "libc",
117
+ "iana-time-zone",
93
118
  "num-integer",
94
119
  "num-traits",
95
120
  "serde",
96
- "time",
97
121
  "winapi",
98
122
  ]
99
123
 
124
+ [[package]]
125
+ name = "codespan-reporting"
126
+ version = "0.11.1"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
129
+ dependencies = [
130
+ "termcolor",
131
+ "unicode-width",
132
+ ]
133
+
100
134
  [[package]]
101
135
  name = "colored"
102
136
  version = "1.9.3"
@@ -108,12 +142,125 @@ dependencies = [
108
142
  "winapi",
109
143
  ]
110
144
 
145
+ [[package]]
146
+ name = "core-foundation-sys"
147
+ version = "0.8.3"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
150
+
151
+ [[package]]
152
+ name = "crc32fast"
153
+ version = "1.3.2"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
156
+ dependencies = [
157
+ "cfg-if",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "cxx"
162
+ version = "1.0.86"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "51d1075c37807dcf850c379432f0df05ba52cc30f279c5cfc43cc221ce7f8579"
165
+ dependencies = [
166
+ "cc",
167
+ "cxxbridge-flags",
168
+ "cxxbridge-macro",
169
+ "link-cplusplus",
170
+ ]
171
+
172
+ [[package]]
173
+ name = "cxx-build"
174
+ version = "1.0.86"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "5044281f61b27bc598f2f6647d480aed48d2bf52d6eb0b627d84c0361b17aa70"
177
+ dependencies = [
178
+ "cc",
179
+ "codespan-reporting",
180
+ "once_cell",
181
+ "proc-macro2",
182
+ "quote",
183
+ "scratch",
184
+ "syn",
185
+ ]
186
+
187
+ [[package]]
188
+ name = "cxxbridge-flags"
189
+ version = "1.0.86"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "61b50bc93ba22c27b0d31128d2d130a0a6b3d267ae27ef7e4fae2167dfe8781c"
192
+
193
+ [[package]]
194
+ name = "cxxbridge-macro"
195
+ version = "1.0.86"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "39e61fda7e62115119469c7b3591fd913ecca96fb766cfd3f2e2502ab7bc87a5"
198
+ dependencies = [
199
+ "proc-macro2",
200
+ "quote",
201
+ "syn",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "darling"
206
+ version = "0.14.2"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "b0dd3cd20dc6b5a876612a6e5accfe7f3dd883db6d07acfbf14c128f61550dfa"
209
+ dependencies = [
210
+ "darling_core",
211
+ "darling_macro",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "darling_core"
216
+ version = "0.14.2"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "a784d2ccaf7c98501746bf0be29b2022ba41fd62a2e622af997a03e9f972859f"
219
+ dependencies = [
220
+ "fnv",
221
+ "ident_case",
222
+ "proc-macro2",
223
+ "quote",
224
+ "strsim",
225
+ "syn",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "darling_macro"
230
+ version = "0.14.2"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "7618812407e9402654622dd402b0a89dff9ba93badd6540781526117b92aab7e"
233
+ dependencies = [
234
+ "darling_core",
235
+ "quote",
236
+ "syn",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "flate2"
241
+ version = "1.0.25"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
244
+ dependencies = [
245
+ "crc32fast",
246
+ "miniz_oxide",
247
+ ]
248
+
111
249
  [[package]]
112
250
  name = "fnv"
113
251
  version = "1.0.7"
114
252
  source = "registry+https://github.com/rust-lang/crates.io-index"
115
253
  checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
116
254
 
255
+ [[package]]
256
+ name = "form_urlencoded"
257
+ version = "1.1.0"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
260
+ dependencies = [
261
+ "percent-encoding",
262
+ ]
263
+
117
264
  [[package]]
118
265
  name = "futures"
119
266
  version = "0.3.15"
@@ -209,16 +356,10 @@ dependencies = [
209
356
  ]
210
357
 
211
358
  [[package]]
212
- name = "hello"
213
- version = "0.1.0"
214
- dependencies = [
215
- "aws_lambda_events",
216
- "http",
217
- "lambda_runtime",
218
- "log",
219
- "simple_logger",
220
- "tokio",
221
- ]
359
+ name = "hashbrown"
360
+ version = "0.12.3"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
222
363
 
223
364
  [[package]]
224
365
  name = "hermit-abi"
@@ -229,15 +370,21 @@ dependencies = [
229
370
  "libc",
230
371
  ]
231
372
 
373
+ [[package]]
374
+ name = "hex"
375
+ version = "0.4.3"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
378
+
232
379
  [[package]]
233
380
  name = "http"
234
- version = "0.2.4"
381
+ version = "0.2.8"
235
382
  source = "registry+https://github.com/rust-lang/crates.io-index"
236
- checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
383
+ checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
237
384
  dependencies = [
238
- "bytes 1.0.1",
385
+ "bytes",
239
386
  "fnv",
240
- "itoa",
387
+ "itoa 1.0.5",
241
388
  ]
242
389
 
243
390
  [[package]]
@@ -246,7 +393,7 @@ version = "0.4.2"
246
393
  source = "registry+https://github.com/rust-lang/crates.io-index"
247
394
  checksum = "60daa14be0e0786db0f03a9e57cb404c9d756eed2b6c62b9ea98ec5743ec75a9"
248
395
  dependencies = [
249
- "bytes 1.0.1",
396
+ "bytes",
250
397
  "http",
251
398
  "pin-project-lite",
252
399
  ]
@@ -263,9 +410,9 @@ dependencies = [
263
410
 
264
411
  [[package]]
265
412
  name = "httparse"
266
- version = "1.4.1"
413
+ version = "1.8.0"
267
414
  source = "registry+https://github.com/rust-lang/crates.io-index"
268
- checksum = "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68"
415
+ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
269
416
 
270
417
  [[package]]
271
418
  name = "httpdate"
@@ -275,11 +422,11 @@ checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
275
422
 
276
423
  [[package]]
277
424
  name = "hyper"
278
- version = "0.14.10"
425
+ version = "0.14.23"
279
426
  source = "registry+https://github.com/rust-lang/crates.io-index"
280
- checksum = "7728a72c4c7d72665fde02204bcbd93b247721025b222ef78606f14513e0fd03"
427
+ checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c"
281
428
  dependencies = [
282
- "bytes 1.0.1",
429
+ "bytes",
283
430
  "futures-channel",
284
431
  "futures-core",
285
432
  "futures-util",
@@ -287,7 +434,7 @@ dependencies = [
287
434
  "http-body",
288
435
  "httparse",
289
436
  "httpdate",
290
- "itoa",
437
+ "itoa 1.0.5",
291
438
  "pin-project-lite",
292
439
  "socket2",
293
440
  "tokio",
@@ -296,30 +443,98 @@ dependencies = [
296
443
  "want",
297
444
  ]
298
445
 
446
+ [[package]]
447
+ name = "iana-time-zone"
448
+ version = "0.1.53"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
451
+ dependencies = [
452
+ "android_system_properties",
453
+ "core-foundation-sys",
454
+ "iana-time-zone-haiku",
455
+ "js-sys",
456
+ "wasm-bindgen",
457
+ "winapi",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "iana-time-zone-haiku"
462
+ version = "0.1.1"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
465
+ dependencies = [
466
+ "cxx",
467
+ "cxx-build",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "ident_case"
472
+ version = "1.0.1"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
475
+
476
+ [[package]]
477
+ name = "indexmap"
478
+ version = "1.9.2"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
481
+ dependencies = [
482
+ "autocfg",
483
+ "hashbrown",
484
+ "serde",
485
+ ]
486
+
299
487
  [[package]]
300
488
  name = "itoa"
301
489
  version = "0.4.7"
302
490
  source = "registry+https://github.com/rust-lang/crates.io-index"
303
491
  checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
304
492
 
493
+ [[package]]
494
+ name = "itoa"
495
+ version = "1.0.5"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
498
+
499
+ [[package]]
500
+ name = "js-sys"
501
+ version = "0.3.60"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
504
+ dependencies = [
505
+ "wasm-bindgen",
506
+ ]
507
+
305
508
  [[package]]
306
509
  name = "lambda_runtime"
307
- version = "0.3.0"
510
+ version = "0.7.3"
308
511
  source = "registry+https://github.com/rust-lang/crates.io-index"
309
- checksum = "f9b08856997d11ca8122121b26b17a27ef1dce689d71ccd754e051f2417aebdd"
512
+ checksum = "bd32d5799db2155ae4d47116bb3e169b59f531ced4d5762a10c2125bdd2bf134"
310
513
  dependencies = [
311
514
  "async-stream",
312
- "bytes 1.0.1",
515
+ "bytes",
313
516
  "futures",
314
517
  "http",
315
518
  "hyper",
519
+ "lambda_runtime_api_client",
316
520
  "serde",
317
521
  "serde_json",
318
522
  "tokio",
319
523
  "tokio-stream",
320
- "tower-service",
524
+ "tower",
321
525
  "tracing",
322
- "tracing-error",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "lambda_runtime_api_client"
530
+ version = "0.7.0"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "7210012be904051520f0dc502140ba599bae3042b65b3737b87727f1aa88a7d6"
533
+ dependencies = [
534
+ "http",
535
+ "hyper",
536
+ "tokio",
537
+ "tower-service",
323
538
  ]
324
539
 
325
540
  [[package]]
@@ -330,15 +545,24 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
330
545
 
331
546
  [[package]]
332
547
  name = "libc"
333
- version = "0.2.98"
548
+ version = "0.2.139"
334
549
  source = "registry+https://github.com/rust-lang/crates.io-index"
335
- checksum = "320cfe77175da3a483efed4bc0adc1968ca050b098ce4f2f1c13a56626128790"
550
+ checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
551
+
552
+ [[package]]
553
+ name = "link-cplusplus"
554
+ version = "1.0.8"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
557
+ dependencies = [
558
+ "cc",
559
+ ]
336
560
 
337
561
  [[package]]
338
562
  name = "log"
339
- version = "0.4.14"
563
+ version = "0.4.17"
340
564
  source = "registry+https://github.com/rust-lang/crates.io-index"
341
- checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
565
+ checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
342
566
  dependencies = [
343
567
  "cfg-if",
344
568
  ]
@@ -350,34 +574,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
350
574
  checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
351
575
 
352
576
  [[package]]
353
- name = "mio"
354
- version = "0.7.13"
577
+ name = "miniz_oxide"
578
+ version = "0.6.2"
355
579
  source = "registry+https://github.com/rust-lang/crates.io-index"
356
- checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
580
+ checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
357
581
  dependencies = [
358
- "libc",
359
- "log",
360
- "miow",
361
- "ntapi",
362
- "winapi",
582
+ "adler",
363
583
  ]
364
584
 
365
585
  [[package]]
366
- name = "miow"
367
- version = "0.3.7"
368
- source = "registry+https://github.com/rust-lang/crates.io-index"
369
- checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
370
- dependencies = [
371
- "winapi",
372
- ]
373
-
374
- [[package]]
375
- name = "ntapi"
376
- version = "0.3.6"
586
+ name = "mio"
587
+ version = "0.8.5"
377
588
  source = "registry+https://github.com/rust-lang/crates.io-index"
378
- checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
589
+ checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
379
590
  dependencies = [
380
- "winapi",
591
+ "libc",
592
+ "log",
593
+ "wasi",
594
+ "windows-sys",
381
595
  ]
382
596
 
383
597
  [[package]]
@@ -409,17 +623,52 @@ dependencies = [
409
623
  "libc",
410
624
  ]
411
625
 
626
+ [[package]]
627
+ name = "num_threads"
628
+ version = "0.1.6"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
631
+ dependencies = [
632
+ "libc",
633
+ ]
634
+
412
635
  [[package]]
413
636
  name = "once_cell"
414
- version = "1.8.0"
637
+ version = "1.17.0"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
640
+
641
+ [[package]]
642
+ name = "percent-encoding"
643
+ version = "2.2.0"
415
644
  source = "registry+https://github.com/rust-lang/crates.io-index"
416
- checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
645
+ checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
646
+
647
+ [[package]]
648
+ name = "pin-project"
649
+ version = "1.0.12"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
652
+ dependencies = [
653
+ "pin-project-internal",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "pin-project-internal"
658
+ version = "1.0.12"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
661
+ dependencies = [
662
+ "proc-macro2",
663
+ "quote",
664
+ "syn",
665
+ ]
417
666
 
418
667
  [[package]]
419
668
  name = "pin-project-lite"
420
- version = "0.2.7"
669
+ version = "0.2.9"
421
670
  source = "registry+https://github.com/rust-lang/crates.io-index"
422
- checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
671
+ checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
423
672
 
424
673
  [[package]]
425
674
  name = "pin-utils"
@@ -441,18 +690,29 @@ checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
441
690
 
442
691
  [[package]]
443
692
  name = "proc-macro2"
444
- version = "1.0.27"
693
+ version = "1.0.49"
445
694
  source = "registry+https://github.com/rust-lang/crates.io-index"
446
- checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
695
+ checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5"
447
696
  dependencies = [
448
- "unicode-xid",
697
+ "unicode-ident",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "query_map"
702
+ version = "0.6.0"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "4465aacac3bebc9484cf7a56dc8b2d7feacb657da6002a9198b4f7af4247a204"
705
+ dependencies = [
706
+ "form_urlencoded",
707
+ "serde",
708
+ "serde_derive",
449
709
  ]
450
710
 
451
711
  [[package]]
452
712
  name = "quote"
453
- version = "1.0.9"
713
+ version = "1.0.23"
454
714
  source = "registry+https://github.com/rust-lang/crates.io-index"
455
- checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
715
+ checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
456
716
  dependencies = [
457
717
  "proc-macro2",
458
718
  ]
@@ -463,6 +723,12 @@ version = "1.0.5"
463
723
  source = "registry+https://github.com/rust-lang/crates.io-index"
464
724
  checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
465
725
 
726
+ [[package]]
727
+ name = "scratch"
728
+ version = "1.0.3"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2"
731
+
466
732
  [[package]]
467
733
  name = "serde"
468
734
  version = "1.0.126"
@@ -489,30 +755,49 @@ version = "1.0.64"
489
755
  source = "registry+https://github.com/rust-lang/crates.io-index"
490
756
  checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
491
757
  dependencies = [
492
- "itoa",
758
+ "itoa 0.4.7",
493
759
  "ryu",
494
760
  "serde",
495
761
  ]
496
762
 
497
763
  [[package]]
498
- name = "sharded-slab"
499
- version = "0.1.1"
764
+ name = "serde_with"
765
+ version = "2.2.0"
500
766
  source = "registry+https://github.com/rust-lang/crates.io-index"
501
- checksum = "79c719719ee05df97490f80a45acfc99e5a30ce98a1e4fb67aee422745ae14e3"
767
+ checksum = "30d904179146de381af4c93d3af6ca4984b3152db687dacb9c3c35e86f39809c"
502
768
  dependencies = [
503
- "lazy_static",
769
+ "base64",
770
+ "chrono",
771
+ "hex",
772
+ "indexmap",
773
+ "serde",
774
+ "serde_json",
775
+ "serde_with_macros",
776
+ "time",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "serde_with_macros"
781
+ version = "2.2.0"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "a1966009f3c05f095697c537312f5415d1e3ed31ce0a56942bac4c771c5c335e"
784
+ dependencies = [
785
+ "darling",
786
+ "proc-macro2",
787
+ "quote",
788
+ "syn",
504
789
  ]
505
790
 
506
791
  [[package]]
507
792
  name = "simple_logger"
508
- version = "1.11.0"
793
+ version = "1.16.0"
509
794
  source = "registry+https://github.com/rust-lang/crates.io-index"
510
- checksum = "cd57f17c093ead1d4a1499dc9acaafdd71240908d64775465543b8d9a9f1d198"
795
+ checksum = "45b60258a35dc3cb8a16890b8fd6723349bfa458d7960e25e633f1b1c19d7b5e"
511
796
  dependencies = [
512
797
  "atty",
513
- "chrono",
514
798
  "colored",
515
799
  "log",
800
+ "time",
516
801
  "winapi",
517
802
  ]
518
803
 
@@ -524,67 +809,92 @@ checksum = "f173ac3d1a7e3b28003f40de0b5ce7fe2710f9b9dc3fc38664cebee46b3b6527"
524
809
 
525
810
  [[package]]
526
811
  name = "socket2"
527
- version = "0.4.0"
812
+ version = "0.4.7"
528
813
  source = "registry+https://github.com/rust-lang/crates.io-index"
529
- checksum = "9e3dfc207c526015c632472a77be09cf1b6e46866581aecae5cc38fb4235dea2"
814
+ checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
530
815
  dependencies = [
531
816
  "libc",
532
817
  "winapi",
533
818
  ]
534
819
 
820
+ [[package]]
821
+ name = "strsim"
822
+ version = "0.10.0"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
825
+
535
826
  [[package]]
536
827
  name = "syn"
537
- version = "1.0.73"
828
+ version = "1.0.107"
538
829
  source = "registry+https://github.com/rust-lang/crates.io-index"
539
- checksum = "f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7"
830
+ checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
540
831
  dependencies = [
541
832
  "proc-macro2",
542
833
  "quote",
543
- "unicode-xid",
834
+ "unicode-ident",
544
835
  ]
545
836
 
546
837
  [[package]]
547
- name = "thread_local"
548
- version = "1.1.3"
838
+ name = "termcolor"
839
+ version = "1.2.0"
549
840
  source = "registry+https://github.com/rust-lang/crates.io-index"
550
- checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"
841
+ checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
551
842
  dependencies = [
552
- "once_cell",
843
+ "winapi-util",
553
844
  ]
554
845
 
555
846
  [[package]]
556
847
  name = "time"
557
- version = "0.1.44"
848
+ version = "0.3.17"
558
849
  source = "registry+https://github.com/rust-lang/crates.io-index"
559
- checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
850
+ checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376"
560
851
  dependencies = [
852
+ "itoa 1.0.5",
561
853
  "libc",
562
- "wasi",
563
- "winapi",
854
+ "num_threads",
855
+ "serde",
856
+ "time-core",
857
+ "time-macros",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "time-core"
862
+ version = "0.1.0"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
865
+
866
+ [[package]]
867
+ name = "time-macros"
868
+ version = "0.2.6"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2"
871
+ dependencies = [
872
+ "time-core",
564
873
  ]
565
874
 
566
875
  [[package]]
567
876
  name = "tokio"
568
- version = "1.8.2"
877
+ version = "1.24.1"
569
878
  source = "registry+https://github.com/rust-lang/crates.io-index"
570
- checksum = "c2602b8af3767c285202012822834005f596c811042315fa7e9f5b12b2a43207"
879
+ checksum = "1d9f76183f91ecfb55e1d7d5602bd1d979e38a3a522fe900241cf195624d67ae"
571
880
  dependencies = [
572
881
  "autocfg",
573
- "bytes 1.0.1",
882
+ "bytes",
574
883
  "libc",
575
884
  "memchr",
576
885
  "mio",
577
886
  "num_cpus",
578
887
  "pin-project-lite",
888
+ "socket2",
579
889
  "tokio-macros",
580
- "winapi",
890
+ "windows-sys",
581
891
  ]
582
892
 
583
893
  [[package]]
584
894
  name = "tokio-macros"
585
- version = "1.3.0"
895
+ version = "1.8.2"
586
896
  source = "registry+https://github.com/rust-lang/crates.io-index"
587
- checksum = "54473be61f4ebe4efd09cec9bd5d16fa51d70ea0192213d754d2d500457db110"
897
+ checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
588
898
  dependencies = [
589
899
  "proc-macro2",
590
900
  "quote",
@@ -602,6 +912,27 @@ dependencies = [
602
912
  "tokio",
603
913
  ]
604
914
 
915
+ [[package]]
916
+ name = "tower"
917
+ version = "0.4.13"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
920
+ dependencies = [
921
+ "futures-core",
922
+ "futures-util",
923
+ "pin-project",
924
+ "pin-project-lite",
925
+ "tower-layer",
926
+ "tower-service",
927
+ "tracing",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "tower-layer"
932
+ version = "0.3.2"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
935
+
605
936
  [[package]]
606
937
  name = "tower-service"
607
938
  version = "0.3.1"
@@ -610,9 +941,9 @@ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
610
941
 
611
942
  [[package]]
612
943
  name = "tracing"
613
- version = "0.1.26"
944
+ version = "0.1.37"
614
945
  source = "registry+https://github.com/rust-lang/crates.io-index"
615
- checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d"
946
+ checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
616
947
  dependencies = [
617
948
  "cfg-if",
618
949
  "log",
@@ -623,9 +954,9 @@ dependencies = [
623
954
 
624
955
  [[package]]
625
956
  name = "tracing-attributes"
626
- version = "0.1.15"
957
+ version = "0.1.23"
627
958
  source = "registry+https://github.com/rust-lang/crates.io-index"
628
- checksum = "c42e6fa53307c8a17e4ccd4dc81cf5ec38db9209f59b222210375b54ee40d1e2"
959
+ checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
629
960
  dependencies = [
630
961
  "proc-macro2",
631
962
  "quote",
@@ -634,61 +965,100 @@ dependencies = [
634
965
 
635
966
  [[package]]
636
967
  name = "tracing-core"
637
- version = "0.1.18"
968
+ version = "0.1.30"
638
969
  source = "registry+https://github.com/rust-lang/crates.io-index"
639
- checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052"
970
+ checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
640
971
  dependencies = [
641
- "lazy_static",
972
+ "once_cell",
642
973
  ]
643
974
 
644
975
  [[package]]
645
- name = "tracing-error"
646
- version = "0.1.2"
976
+ name = "try-lock"
977
+ version = "0.2.3"
647
978
  source = "registry+https://github.com/rust-lang/crates.io-index"
648
- checksum = "b4d7c0b83d4a500748fa5879461652b361edf5c9d51ede2a2ac03875ca185e24"
979
+ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
980
+
981
+ [[package]]
982
+ name = "unicode-ident"
983
+ version = "1.0.6"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
986
+
987
+ [[package]]
988
+ name = "unicode-width"
989
+ version = "0.1.10"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
992
+
993
+ [[package]]
994
+ name = "want"
995
+ version = "0.3.0"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
649
998
  dependencies = [
650
- "tracing",
651
- "tracing-subscriber",
999
+ "log",
1000
+ "try-lock",
652
1001
  ]
653
1002
 
654
1003
  [[package]]
655
- name = "tracing-subscriber"
656
- version = "0.2.19"
1004
+ name = "wasi"
1005
+ version = "0.11.0+wasi-snapshot-preview1"
657
1006
  source = "registry+https://github.com/rust-lang/crates.io-index"
658
- checksum = "ab69019741fca4d98be3c62d2b75254528b5432233fd8a4d2739fec20278de48"
1007
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1008
+
1009
+ [[package]]
1010
+ name = "wasm-bindgen"
1011
+ version = "0.2.83"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
659
1014
  dependencies = [
660
- "sharded-slab",
661
- "thread_local",
662
- "tracing-core",
1015
+ "cfg-if",
1016
+ "wasm-bindgen-macro",
663
1017
  ]
664
1018
 
665
1019
  [[package]]
666
- name = "try-lock"
667
- version = "0.2.3"
1020
+ name = "wasm-bindgen-backend"
1021
+ version = "0.2.83"
668
1022
  source = "registry+https://github.com/rust-lang/crates.io-index"
669
- checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
1023
+ checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
1024
+ dependencies = [
1025
+ "bumpalo",
1026
+ "log",
1027
+ "once_cell",
1028
+ "proc-macro2",
1029
+ "quote",
1030
+ "syn",
1031
+ "wasm-bindgen-shared",
1032
+ ]
670
1033
 
671
1034
  [[package]]
672
- name = "unicode-xid"
673
- version = "0.2.2"
1035
+ name = "wasm-bindgen-macro"
1036
+ version = "0.2.83"
674
1037
  source = "registry+https://github.com/rust-lang/crates.io-index"
675
- checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
1038
+ checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
1039
+ dependencies = [
1040
+ "quote",
1041
+ "wasm-bindgen-macro-support",
1042
+ ]
676
1043
 
677
1044
  [[package]]
678
- name = "want"
679
- version = "0.3.0"
1045
+ name = "wasm-bindgen-macro-support"
1046
+ version = "0.2.83"
680
1047
  source = "registry+https://github.com/rust-lang/crates.io-index"
681
- checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
1048
+ checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
682
1049
  dependencies = [
683
- "log",
684
- "try-lock",
1050
+ "proc-macro2",
1051
+ "quote",
1052
+ "syn",
1053
+ "wasm-bindgen-backend",
1054
+ "wasm-bindgen-shared",
685
1055
  ]
686
1056
 
687
1057
  [[package]]
688
- name = "wasi"
689
- version = "0.10.0+wasi-snapshot-preview1"
1058
+ name = "wasm-bindgen-shared"
1059
+ version = "0.2.83"
690
1060
  source = "registry+https://github.com/rust-lang/crates.io-index"
691
- checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
1061
+ checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
692
1062
 
693
1063
  [[package]]
694
1064
  name = "winapi"
@@ -706,8 +1076,74 @@ version = "0.4.0"
706
1076
  source = "registry+https://github.com/rust-lang/crates.io-index"
707
1077
  checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
708
1078
 
1079
+ [[package]]
1080
+ name = "winapi-util"
1081
+ version = "0.1.5"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
1084
+ dependencies = [
1085
+ "winapi",
1086
+ ]
1087
+
709
1088
  [[package]]
710
1089
  name = "winapi-x86_64-pc-windows-gnu"
711
1090
  version = "0.4.0"
712
1091
  source = "registry+https://github.com/rust-lang/crates.io-index"
713
1092
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1093
+
1094
+ [[package]]
1095
+ name = "windows-sys"
1096
+ version = "0.42.0"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
1099
+ dependencies = [
1100
+ "windows_aarch64_gnullvm",
1101
+ "windows_aarch64_msvc",
1102
+ "windows_i686_gnu",
1103
+ "windows_i686_msvc",
1104
+ "windows_x86_64_gnu",
1105
+ "windows_x86_64_gnullvm",
1106
+ "windows_x86_64_msvc",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "windows_aarch64_gnullvm"
1111
+ version = "0.42.1"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
1114
+
1115
+ [[package]]
1116
+ name = "windows_aarch64_msvc"
1117
+ version = "0.42.1"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
1120
+
1121
+ [[package]]
1122
+ name = "windows_i686_gnu"
1123
+ version = "0.42.1"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
1126
+
1127
+ [[package]]
1128
+ name = "windows_i686_msvc"
1129
+ version = "0.42.1"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
1132
+
1133
+ [[package]]
1134
+ name = "windows_x86_64_gnu"
1135
+ version = "0.42.1"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
1138
+
1139
+ [[package]]
1140
+ name = "windows_x86_64_gnullvm"
1141
+ version = "0.42.1"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
1144
+
1145
+ [[package]]
1146
+ name = "windows_x86_64_msvc"
1147
+ version = "0.42.1"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"