Cargo.lock 73.5 KB
Newer Older
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1
2
3
4
5
6
7
8
9
10
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3

[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"

11
12
13
14
15
16
17
18
19
20
21
[[package]]
name = "ahash"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
 "getrandom",
 "once_cell",
 "version_check",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
22
23
[[package]]
name = "aho-corasick"
24
version = "0.7.20"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
25
source = "registry+https://github.com/rust-lang/crates.io-index"
26
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
dependencies = [
 "memchr",
]

[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
 "winapi",
]

[[package]]
name = "anyhow"
42
version = "1.0.69"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
43
source = "registry+https://github.com/rust-lang/crates.io-index"
44
checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68

[[package]]
name = "async-stream"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e"
dependencies = [
 "async-stream-impl",
 "futures-core",
]

[[package]]
name = "async-stream-impl"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "async-trait"
69
version = "0.1.64"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
70
source = "registry+https://github.com/rust-lang/crates.io-index"
71
checksum = "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
72
73
74
75
76
77
78
79
80
81
82
83
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
84
 "hermit-abi 0.1.19",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
85
86
87
88
89
90
91
92
93
94
 "libc",
 "winapi",
]

[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"

Olivier Dehaene's avatar
Olivier Dehaene committed
95
96
[[package]]
name = "axum"
97
version = "0.6.4"
Olivier Dehaene's avatar
Olivier Dehaene committed
98
source = "registry+https://github.com/rust-lang/crates.io-index"
99
checksum = "e5694b64066a2459918d8074c2ce0d5a88f409431994c2356617c8ae0c4721fc"
Olivier Dehaene's avatar
Olivier Dehaene committed
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
dependencies = [
 "async-trait",
 "axum-core",
 "bitflags",
 "bytes",
 "futures-util",
 "http",
 "http-body",
 "hyper",
 "itoa",
 "matchit",
 "memchr",
 "mime",
 "percent-encoding",
 "pin-project-lite",
115
 "rustversion",
Olivier Dehaene's avatar
Olivier Dehaene committed
116
117
 "serde",
 "serde_json",
118
 "serde_path_to_error",
Olivier Dehaene's avatar
Olivier Dehaene committed
119
120
121
122
123
124
125
126
127
128
129
 "serde_urlencoded",
 "sync_wrapper",
 "tokio",
 "tower",
 "tower-http",
 "tower-layer",
 "tower-service",
]

[[package]]
name = "axum-core"
130
version = "0.3.2"
Olivier Dehaene's avatar
Olivier Dehaene committed
131
source = "registry+https://github.com/rust-lang/crates.io-index"
132
checksum = "1cae3e661676ffbacb30f1a824089a8c9150e71017f7e1e38f2aa32009188d34"
Olivier Dehaene's avatar
Olivier Dehaene committed
133
134
135
136
137
138
139
dependencies = [
 "async-trait",
 "bytes",
 "futures-util",
 "http",
 "http-body",
 "mime",
140
 "rustversion",
Olivier Dehaene's avatar
Olivier Dehaene committed
141
142
143
144
 "tower-layer",
 "tower-service",
]

145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
[[package]]
name = "axum-tracing-opentelemetry"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a43f5b506fc945900d08e541de14b5b9c82860637702ae082888b0fc2654d86"
dependencies = [
 "axum",
 "futures",
 "http",
 "opentelemetry",
 "tower",
 "tower-http",
 "tracing",
 "tracing-opentelemetry",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
161
162
[[package]]
name = "base64"
163
version = "0.13.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
164
source = "registry+https://github.com/rust-lang/crates.io-index"
165
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
166

167
168
169
170
171
172
[[package]]
name = "base64"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"

[[package]]
name = "block-buffer"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
dependencies = [
 "generic-array",
]

[[package]]
name = "bumpalo"
190
version = "3.12.0"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
191
source = "registry+https://github.com/rust-lang/crates.io-index"
192
checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
193
194
195
196
197
198
199
200
201

[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"

[[package]]
name = "bytes"
202
version = "1.4.0"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
203
source = "registry+https://github.com/rust-lang/crates.io-index"
204
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
205
206
207

[[package]]
name = "bzip2"
208
version = "0.4.4"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
209
source = "registry+https://github.com/rust-lang/crates.io-index"
210
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
dependencies = [
 "bzip2-sys",
 "libc",
]

[[package]]
name = "bzip2-sys"
version = "0.1.11+1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
dependencies = [
 "cc",
 "libc",
 "pkg-config",
]

[[package]]
name = "cached-path"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f1c56d30236522ab3393a08746b138d4e16372001f42d29c88d513aeb8ab7ef"
dependencies = [
 "flate2",
 "fs2",
 "glob",
 "indicatif 0.16.2",
 "log",
 "rand",
 "reqwest",
 "serde",
 "serde_json",
 "sha2",
 "tar",
 "tempfile",
 "thiserror",
246
 "zip 0.5.13",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
247
248
249
250
251
 "zip-extensions",
]

[[package]]
name = "cc"
252
version = "1.0.79"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
253
source = "registry+https://github.com/rust-lang/crates.io-index"
254
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276

[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"

[[package]]
name = "clap"
version = "2.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
dependencies = [
 "ansi_term",
 "atty",
 "bitflags",
 "strsim 0.8.0",
 "textwrap",
 "unicode-width",
 "vec_map",
]

Olivier Dehaene's avatar
Olivier Dehaene committed
277
278
[[package]]
name = "clap"
279
version = "4.1.4"
Olivier Dehaene's avatar
Olivier Dehaene committed
280
source = "registry+https://github.com/rust-lang/crates.io-index"
281
checksum = "f13b9c79b5d1dd500d20ef541215a6423c75829ef43117e1b4d17fd8af0b5d76"
Olivier Dehaene's avatar
Olivier Dehaene committed
282
283
284
285
dependencies = [
 "bitflags",
 "clap_derive",
 "clap_lex",
286
 "is-terminal",
Olivier Dehaene's avatar
Olivier Dehaene committed
287
288
289
290
291
292
293
 "once_cell",
 "strsim 0.10.0",
 "termcolor",
]

[[package]]
name = "clap_derive"
294
version = "4.1.0"
Olivier Dehaene's avatar
Olivier Dehaene committed
295
source = "registry+https://github.com/rust-lang/crates.io-index"
296
checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8"
Olivier Dehaene's avatar
Olivier Dehaene committed
297
dependencies = [
298
 "heck",
Olivier Dehaene's avatar
Olivier Dehaene committed
299
300
301
302
303
304
305
306
 "proc-macro-error",
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "clap_lex"
307
version = "0.3.1"
Olivier Dehaene's avatar
Olivier Dehaene committed
308
source = "registry+https://github.com/rust-lang/crates.io-index"
309
checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade"
Olivier Dehaene's avatar
Olivier Dehaene committed
310
311
312
313
dependencies = [
 "os_str_bytes",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
314
315
[[package]]
name = "console"
316
version = "0.15.5"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
317
source = "registry+https://github.com/rust-lang/crates.io-index"
318
checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
319
320
321
322
323
dependencies = [
 "encode_unicode",
 "lazy_static",
 "libc",
 "unicode-width",
324
 "windows-sys 0.42.0",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
]

[[package]]
name = "core-foundation"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
dependencies = [
 "core-foundation-sys",
 "libc",
]

[[package]]
name = "core-foundation-sys"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"

[[package]]
name = "cpufeatures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
dependencies = [
 "libc",
]

[[package]]
name = "crc32fast"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
 "cfg-if",
]

[[package]]
name = "crossbeam-channel"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
dependencies = [
 "cfg-if",
 "crossbeam-utils",
]

[[package]]
name = "crossbeam-deque"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
dependencies = [
 "cfg-if",
 "crossbeam-epoch",
 "crossbeam-utils",
]

[[package]]
name = "crossbeam-epoch"
384
version = "0.9.13"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
385
source = "registry+https://github.com/rust-lang/crates.io-index"
386
checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
387
388
389
390
391
392
393
394
395
396
dependencies = [
 "autocfg",
 "cfg-if",
 "crossbeam-utils",
 "memoffset",
 "scopeguard",
]

[[package]]
name = "crossbeam-utils"
397
version = "0.8.14"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
398
source = "registry+https://github.com/rust-lang/crates.io-index"
399
checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
400
401
402
403
404
405
406
407
408
409
410
411
412
413
dependencies = [
 "cfg-if",
]

[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
 "generic-array",
 "typenum",
]

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
414
415
[[package]]
name = "ctrlc"
416
version = "3.2.5"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
417
source = "registry+https://github.com/rust-lang/crates.io-index"
418
checksum = "bbcf33c2a618cbe41ee43ae6e9f2e48368cd9f9db2896f10167d8d762679f639"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
419
420
dependencies = [
 "nix",
421
 "windows-sys 0.45.0",
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
422
423
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
[[package]]
name = "darling"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
dependencies = [
 "darling_core",
 "darling_macro",
]

[[package]]
name = "darling_core"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
dependencies = [
 "fnv",
 "ident_case",
 "proc-macro2",
 "quote",
 "strsim 0.9.3",
 "syn",
]

[[package]]
name = "darling_macro"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
dependencies = [
 "darling_core",
 "quote",
 "syn",
]

459
460
461
462
463
464
465
466
467
468
469
470
471
[[package]]
name = "dashmap"
version = "5.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
dependencies = [
 "cfg-if",
 "hashbrown",
 "lock_api",
 "once_cell",
 "parking_lot_core",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
[[package]]
name = "derive_builder"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0"
dependencies = [
 "darling",
 "derive_builder_core",
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "derive_builder_core"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef"
dependencies = [
 "darling",
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "digest"
499
version = "0.10.6"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
500
source = "registry+https://github.com/rust-lang/crates.io-index"
501
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
502
503
504
505
506
507
508
509
510
511
512
513
514
515
dependencies = [
 "block-buffer",
 "crypto-common",
]

[[package]]
name = "dirs"
version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30baa043103c9d0c2a57cf537cc2f35623889dc0d405e6c3cccfadbc81c71309"
dependencies = [
 "dirs-sys",
]

516
517
518
519
520
521
522
523
524
[[package]]
name = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
 "dirs-sys",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
525
526
527
528
529
530
531
532
533
534
535
536
537
[[package]]
name = "dirs-sys"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
 "libc",
 "redox_users",
 "winapi",
]

[[package]]
name = "either"
538
version = "1.8.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
539
source = "registry+https://github.com/rust-lang/crates.io-index"
540
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
541
542
543
544
545
546
547
548
549

[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"

[[package]]
name = "encoding_rs"
550
version = "0.8.32"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
551
source = "registry+https://github.com/rust-lang/crates.io-index"
552
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
553
554
555
556
dependencies = [
 "cfg-if",
]

557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
[[package]]
name = "errno"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [
 "errno-dragonfly",
 "libc",
 "winapi",
]

[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
 "cc",
 "libc",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
[[package]]
name = "esaxx-rs"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f748b253ceca9fed5f42f8b5ceb3851e93102199bc25b64b65369f76e5c0a35"
dependencies = [
 "cc",
]

[[package]]
name = "fastrand"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
dependencies = [
 "instant",
]

[[package]]
name = "filetime"
598
version = "0.2.20"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
599
source = "registry+https://github.com/rust-lang/crates.io-index"
600
checksum = "8a3de6e8d11b22ff9edc6d916f890800597d60f8b2da1caf2955c274638d6412"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
601
602
603
604
dependencies = [
 "cfg-if",
 "libc",
 "redox_syscall",
605
 "windows-sys 0.45.0",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
606
607
608
609
610
611
612
613
614
615
]

[[package]]
name = "fixedbitset"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"

[[package]]
name = "flate2"
616
version = "1.0.25"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
617
source = "registry+https://github.com/rust-lang/crates.io-index"
618
checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
619
620
621
622
623
dependencies = [
 "crc32fast",
 "miniz_oxide",
]

624
625
626
627
628
629
[[package]]
name = "float_eq"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28a80e3145d8ad11ba0995949bbcf48b9df2be62772b3d351ef017dff6ecb853"

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"

[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
 "foreign-types-shared",
]

[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"

[[package]]
name = "form_urlencoded"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
dependencies = [
 "percent-encoding",
]

[[package]]
name = "fs2"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
dependencies = [
 "libc",
 "winapi",
]

[[package]]
name = "futures"
672
version = "0.3.26"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
673
source = "registry+https://github.com/rust-lang/crates.io-index"
674
checksum = "13e2792b0ff0340399d58445b88fd9770e3489eff258a4cbc1523418f12abf84"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
675
676
677
678
679
680
681
682
683
684
685
686
dependencies = [
 "futures-channel",
 "futures-core",
 "futures-executor",
 "futures-io",
 "futures-sink",
 "futures-task",
 "futures-util",
]

[[package]]
name = "futures-channel"
687
version = "0.3.26"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
688
source = "registry+https://github.com/rust-lang/crates.io-index"
689
checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
690
691
692
693
694
695
696
dependencies = [
 "futures-core",
 "futures-sink",
]

[[package]]
name = "futures-core"
697
version = "0.3.26"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
698
source = "registry+https://github.com/rust-lang/crates.io-index"
699
checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
700
701
702

[[package]]
name = "futures-executor"
703
version = "0.3.26"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
704
source = "registry+https://github.com/rust-lang/crates.io-index"
705
checksum = "e8de0a35a6ab97ec8869e32a2473f4b1324459e14c29275d14b10cb1fd19b50e"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
706
707
708
709
710
711
712
713
dependencies = [
 "futures-core",
 "futures-task",
 "futures-util",
]

[[package]]
name = "futures-io"
714
version = "0.3.26"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
715
source = "registry+https://github.com/rust-lang/crates.io-index"
716
checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
717
718
719

[[package]]
name = "futures-macro"
720
version = "0.3.26"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
721
source = "registry+https://github.com/rust-lang/crates.io-index"
722
checksum = "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
723
724
725
726
727
728
729
730
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "futures-sink"
731
version = "0.3.26"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
732
source = "registry+https://github.com/rust-lang/crates.io-index"
733
checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
734
735
736

[[package]]
name = "futures-task"
737
version = "0.3.26"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
738
source = "registry+https://github.com/rust-lang/crates.io-index"
739
checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
740
741
742

[[package]]
name = "futures-util"
743
version = "0.3.26"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
744
source = "registry+https://github.com/rust-lang/crates.io-index"
745
checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
dependencies = [
 "futures-channel",
 "futures-core",
 "futures-io",
 "futures-macro",
 "futures-sink",
 "futures-task",
 "memchr",
 "pin-project-lite",
 "pin-utils",
 "slab",
]

[[package]]
name = "generic-array"
version = "0.14.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
dependencies = [
 "typenum",
 "version_check",
]

[[package]]
name = "getrandom"
771
version = "0.2.8"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
772
source = "registry+https://github.com/rust-lang/crates.io-index"
773
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
774
775
776
777
778
779
780
781
dependencies = [
 "cfg-if",
 "libc",
 "wasi 0.11.0+wasi-snapshot-preview1",
]

[[package]]
name = "glob"
782
version = "0.3.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
783
source = "registry+https://github.com/rust-lang/crates.io-index"
784
785
786
787
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"

[[package]]
name = "grpc-metadata"
OlivierDehaene's avatar
OlivierDehaene committed
788
version = "0.3.0"
789
790
791
792
793
794
dependencies = [
 "opentelemetry",
 "tonic",
 "tracing",
 "tracing-opentelemetry",
]
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
795
796
797

[[package]]
name = "h2"
798
version = "0.3.15"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
799
source = "registry+https://github.com/rust-lang/crates.io-index"
800
checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
801
802
803
804
805
806
807
808
809
810
dependencies = [
 "bytes",
 "fnv",
 "futures-core",
 "futures-sink",
 "futures-util",
 "http",
 "indexmap",
 "slab",
 "tokio",
811
 "tokio-util",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
812
813
814
815
816
817
818
819
 "tracing",
]

[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
820
821
822
dependencies = [
 "ahash",
]
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
823
824
825

[[package]]
name = "heck"
826
version = "0.4.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
827
source = "registry+https://github.com/rust-lang/crates.io-index"
828
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
829

Olivier Dehaene's avatar
Olivier Dehaene committed
830
[[package]]
831
832
name = "hermit-abi"
version = "0.1.19"
Olivier Dehaene's avatar
Olivier Dehaene committed
833
source = "registry+https://github.com/rust-lang/crates.io-index"
834
835
836
837
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
 "libc",
]
Olivier Dehaene's avatar
Olivier Dehaene committed
838

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
839
840
[[package]]
name = "hermit-abi"
841
version = "0.2.6"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
842
source = "registry+https://github.com/rust-lang/crates.io-index"
843
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
844
845
846
847
dependencies = [
 "libc",
]

848
849
850
851
852
853
[[package]]
name = "hermit-abi"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
[[package]]
name = "http"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
dependencies = [
 "bytes",
 "fnv",
 "itoa",
]

[[package]]
name = "http-body"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
dependencies = [
 "bytes",
 "http",
 "pin-project-lite",
]

Olivier Dehaene's avatar
Olivier Dehaene committed
876
877
878
879
880
881
[[package]]
name = "http-range-header"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
882
883
884
885
886
887
888
889
890
891
892
893
894
895
[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"

[[package]]
name = "httpdate"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"

[[package]]
name = "hyper"
896
version = "0.14.24"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
897
source = "registry+https://github.com/rust-lang/crates.io-index"
898
checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
dependencies = [
 "bytes",
 "futures-channel",
 "futures-core",
 "futures-util",
 "h2",
 "http",
 "http-body",
 "httparse",
 "httpdate",
 "itoa",
 "pin-project-lite",
 "socket2",
 "tokio",
 "tower-service",
 "tracing",
 "want",
]

[[package]]
name = "hyper-timeout"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
dependencies = [
 "hyper",
 "pin-project-lite",
 "tokio",
 "tokio-io-timeout",
]

[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
 "bytes",
 "hyper",
 "native-tls",
 "tokio",
 "tokio-native-tls",
]

[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"

[[package]]
name = "idna"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
 "unicode-bidi",
 "unicode-normalization",
]

[[package]]
name = "indexmap"
961
version = "1.9.2"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
962
source = "registry+https://github.com/rust-lang/crates.io-index"
963
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
964
965
966
dependencies = [
 "autocfg",
 "hashbrown",
967
 "serde",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
]

[[package]]
name = "indicatif"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7baab56125e25686df467fe470785512329883aab42696d661247aca2a2896e4"
dependencies = [
 "console",
 "lazy_static",
 "number_prefix 0.3.0",
 "regex",
]

[[package]]
name = "indicatif"
version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b"
dependencies = [
 "console",
 "lazy_static",
 "number_prefix 0.4.0",
 "regex",
]

[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
 "cfg-if",
]

1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
[[package]]
name = "io-lifetimes"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3"
dependencies = [
 "libc",
 "windows-sys 0.45.0",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1013
1014
[[package]]
name = "ipnet"
1015
version = "2.7.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1016
source = "registry+https://github.com/rust-lang/crates.io-index"
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146"

[[package]]
name = "is-terminal"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22e18b0a45d56fe973d6db23972bf5bc46f988a4a2385deac9cc29572f09daef"
dependencies = [
 "hermit-abi 0.3.1",
 "io-lifetimes",
 "rustix",
 "windows-sys 0.45.0",
]
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059

[[package]]
name = "itertools"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484"
dependencies = [
 "either",
]

[[package]]
name = "itertools"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
dependencies = [
 "either",
]

[[package]]
name = "itertools"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
dependencies = [
 "either",
]

[[package]]
name = "itoa"
1060
version = "1.0.5"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1061
source = "registry+https://github.com/rust-lang/crates.io-index"
1062
checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1063
1064
1065

[[package]]
name = "js-sys"
1066
version = "0.3.61"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1067
source = "registry+https://github.com/rust-lang/crates.io-index"
1068
checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
dependencies = [
 "wasm-bindgen",
]

[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"

[[package]]
name = "libc"
1081
version = "0.2.139"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1082
source = "registry+https://github.com/rust-lang/crates.io-index"
1083
1084
1085
1086
1087
1088
1089
checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"

[[package]]
name = "linux-raw-sys"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109

[[package]]
name = "lock_api"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
dependencies = [
 "autocfg",
 "scopeguard",
]

[[package]]
name = "log"
version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
 "cfg-if",
]

1110
1111
1112
1113
1114
1115
1116
1117
1118
[[package]]
name = "mach"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
dependencies = [
 "libc",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1119
1120
[[package]]
name = "macro_rules_attribute"
1121
version = "0.1.3"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1122
source = "registry+https://github.com/rust-lang/crates.io-index"
1123
checksum = "cf0c9b980bf4f3a37fd7b1c066941dd1b1d0152ce6ee6e8fe8c49b9f6810d862"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1124
1125
1126
1127
1128
1129
1130
dependencies = [
 "macro_rules_attribute-proc_macro",
 "paste",
]

[[package]]
name = "macro_rules_attribute-proc_macro"
1131
version = "0.1.3"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1132
source = "registry+https://github.com/rust-lang/crates.io-index"
1133
checksum = "58093314a45e00c77d5c508f76e77c3396afbbc0d01506e7fae47b018bac2b1d"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1134

1135
1136
1137
1138
1139
1140
1141
1142
1143
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
 "regex-automata",
]

Olivier Dehaene's avatar
Olivier Dehaene committed
1144
1145
[[package]]
name = "matchit"
1146
version = "0.7.0"
Olivier Dehaene's avatar
Olivier Dehaene committed
1147
source = "registry+https://github.com/rust-lang/crates.io-index"
1148
checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
Olivier Dehaene's avatar
Olivier Dehaene committed
1149

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1150
1151
1152
1153
1154
1155
1156
1157
[[package]]
name = "memchr"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"

[[package]]
name = "memoffset"
1158
version = "0.7.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1159
source = "registry+https://github.com/rust-lang/crates.io-index"
1160
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1161
1162
1163
1164
dependencies = [
 "autocfg",
]

1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
[[package]]
name = "metrics"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b9b8653cec6897f73b519a43fba5ee3d50f62fe9af80b428accdcc093b4a849"
dependencies = [
 "ahash",
 "metrics-macros",
 "portable-atomic",
]

[[package]]
name = "metrics-exporter-prometheus"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8603921e1f54ef386189335f288441af761e0fc61bcb552168d9cedfe63ebc70"
dependencies = [
 "hyper",
 "indexmap",
 "ipnet",
 "metrics",
 "metrics-util",
 "parking_lot",
 "portable-atomic",
 "quanta",
 "thiserror",
 "tokio",
 "tracing",
]

[[package]]
name = "metrics-macros"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "731f8ecebd9f3a4aa847dfe75455e4757a45da40a7793d2f0b1f9b6ed18b23f3"
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "metrics-util"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d24dc2dbae22bff6f1f9326ffce828c9f07ef9cc1e8002e5279f845432a30a"
dependencies = [
 "crossbeam-epoch",
 "crossbeam-utils",
 "hashbrown",
 "metrics",
 "num_cpus",
 "parking_lot",
 "portable-atomic",
 "quanta",
 "sketches-ddsketch",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1223
1224
1225
1226
1227
1228
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"

1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
[[package]]
name = "mime_guess"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
dependencies = [
 "mime",
 "unicase",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1239
1240
1241
1242
1243
1244
1245
1246
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"

[[package]]
name = "miniz_oxide"
1247
version = "0.6.2"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1248
source = "registry+https://github.com/rust-lang/crates.io-index"
1249
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1250
1251
1252
1253
1254
1255
dependencies = [
 "adler",
]

[[package]]
name = "mio"
1256
version = "0.8.5"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1257
source = "registry+https://github.com/rust-lang/crates.io-index"
1258
checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1259
1260
1261
1262
dependencies = [
 "libc",
 "log",
 "wasi 0.11.0+wasi-snapshot-preview1",
1263
 "windows-sys 0.42.0",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
]

[[package]]
name = "multimap"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"

[[package]]
name = "native-tls"
1274
version = "0.2.11"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1275
source = "registry+https://github.com/rust-lang/crates.io-index"
1276
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
dependencies = [
 "lazy_static",
 "libc",
 "log",
 "openssl",
 "openssl-probe",
 "openssl-sys",
 "schannel",
 "security-framework",
 "security-framework-sys",
 "tempfile",
]

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
1290
1291
[[package]]
name = "nix"
1292
version = "0.26.2"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
1293
source = "registry+https://github.com/rust-lang/crates.io-index"
1294
checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
1295
1296
1297
1298
dependencies = [
 "bitflags",
 "cfg-if",
 "libc",
1299
 "static_assertions",
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
1300
1301
]

1302
1303
1304
1305
1306
1307
[[package]]
name = "nohash-hasher"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1308
1309
[[package]]
name = "nom"
1310
version = "7.1.3"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1311
source = "registry+https://github.com/rust-lang/crates.io-index"
1312
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1313
1314
1315
1316
1317
dependencies = [
 "memchr",
 "minimal-lexical",
]

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
 "overload",
 "winapi",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1328
1329
[[package]]
name = "num_cpus"
1330
version = "1.15.0"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1331
source = "registry+https://github.com/rust-lang/crates.io-index"
1332
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1333
dependencies = [
1334
 "hermit-abi 0.2.6",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
 "libc",
]

[[package]]
name = "number_prefix"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a"

[[package]]
name = "number_prefix"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"

[[package]]
name = "once_cell"
1352
version = "1.17.0"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1353
source = "registry+https://github.com/rust-lang/crates.io-index"
1354
checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379

[[package]]
name = "onig"
version = "6.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
dependencies = [
 "bitflags",
 "libc",
 "once_cell",
 "onig_sys",
]

[[package]]
name = "onig_sys"
version = "69.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
dependencies = [
 "cc",
 "pkg-config",
]

[[package]]
name = "openssl"
1380
version = "0.10.45"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1381
source = "registry+https://github.com/rust-lang/crates.io-index"
1382
checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
dependencies = [
 "bitflags",
 "cfg-if",
 "foreign-types",
 "libc",
 "once_cell",
 "openssl-macros",
 "openssl-sys",
]

[[package]]
name = "openssl-macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"

[[package]]
name = "openssl-sys"
1412
version = "0.9.80"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1413
source = "registry+https://github.com/rust-lang/crates.io-index"
1414
checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1415
1416
1417
1418
1419
1420
1421
1422
dependencies = [
 "autocfg",
 "cc",
 "libc",
 "pkg-config",
 "vcpkg",
]

1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
[[package]]
name = "opentelemetry"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69d6c3d7288a106c0a363e4b0e8d308058d56902adefb16f4936f417ffef086e"
dependencies = [
 "opentelemetry_api",
 "opentelemetry_sdk",
]

[[package]]
name = "opentelemetry-otlp"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1c928609d087790fc936a1067bdc310ae702bdf3b090c3f281b713622c8bbde"
dependencies = [
 "async-trait",
 "futures",
 "futures-util",
 "http",
 "opentelemetry",
 "opentelemetry-proto",
 "prost",
 "thiserror",
 "tokio",
 "tonic",
]

[[package]]
name = "opentelemetry-proto"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d61a2f56df5574508dd86aaca016c917489e589ece4141df1b5e349af8d66c28"
dependencies = [
 "futures",
 "futures-util",
 "opentelemetry",
 "prost",
 "tonic",
 "tonic-build",
]

[[package]]
name = "opentelemetry_api"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c24f96e21e7acc813c7a8394ee94978929db2bcc46cf6b5014fc612bf7760c22"
dependencies = [
 "fnv",
 "futures-channel",
 "futures-util",
 "indexmap",
 "js-sys",
 "once_cell",
 "pin-project-lite",
 "thiserror",
]

[[package]]
name = "opentelemetry_sdk"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ca41c4933371b61c2a2f214bf16931499af4ec90543604ec828f7a625c09113"
dependencies = [
 "async-trait",
 "crossbeam-channel",
 "dashmap",
 "fnv",
 "futures-channel",
 "futures-executor",
 "futures-util",
 "once_cell",
 "opentelemetry_api",
 "percent-encoding",
 "rand",
 "thiserror",
 "tokio",
 "tokio-stream",
]

Olivier Dehaene's avatar
Olivier Dehaene committed
1503
1504
[[package]]
name = "os_str_bytes"
1505
version = "6.4.1"
Olivier Dehaene's avatar
Olivier Dehaene committed
1506
source = "registry+https://github.com/rust-lang/crates.io-index"
1507
checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
Olivier Dehaene's avatar
Olivier Dehaene committed
1508

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
1509
1510
1511
1512
1513
1514
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
 "lock_api",
 "parking_lot_core",
]

[[package]]
name = "parking_lot_core"
1527
version = "0.9.7"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1528
source = "registry+https://github.com/rust-lang/crates.io-index"
1529
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1530
1531
1532
1533
1534
dependencies = [
 "cfg-if",
 "libc",
 "redox_syscall",
 "smallvec",
1535
 "windows-sys 0.45.0",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1536
1537
1538
1539
]

[[package]]
name = "paste"
1540
version = "1.0.11"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1541
source = "registry+https://github.com/rust-lang/crates.io-index"
1542
checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1543
1544
1545
1546
1547
1548
1549
1550
1551

[[package]]
name = "percent-encoding"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"

[[package]]
name = "petgraph"
1552
version = "0.6.3"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1553
source = "registry+https://github.com/rust-lang/crates.io-index"
1554
checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
dependencies = [
 "fixedbitset",
 "indexmap",
]

[[package]]
name = "pin-project"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
dependencies = [
 "pin-project-internal",
]

[[package]]
name = "pin-project-internal"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "pin-project-lite"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"

[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"

[[package]]
name = "pkg-config"
1594
version = "0.3.26"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1595
source = "registry+https://github.com/rust-lang/crates.io-index"
1596
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1597

1598
1599
1600
1601
1602
1603
[[package]]
name = "portable-atomic"
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26f6a7b87c2e435a3241addceeeff740ff8b7e76b74c13bf9acb17fa454ea00b"

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1604
1605
[[package]]
name = "ppv-lite86"
1606
version = "0.2.17"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1607
source = "registry+https://github.com/rust-lang/crates.io-index"
1608
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1609

1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
[[package]]
name = "prettyplease"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e97e3215779627f01ee256d2fad52f3d95e8e1c11e9fc6fd08f7cd455d5d5c78"
dependencies = [
 "proc-macro2",
 "syn",
]

Olivier Dehaene's avatar
Olivier Dehaene committed
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
 "proc-macro-error-attr",
 "proc-macro2",
 "quote",
 "syn",
 "version_check",
]

[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
 "proc-macro2",
 "quote",
 "version_check",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1644
1645
[[package]]
name = "proc-macro2"
1646
version = "1.0.51"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1647
source = "registry+https://github.com/rust-lang/crates.io-index"
1648
checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1649
1650
1651
1652
1653
1654
dependencies = [
 "unicode-ident",
]

[[package]]
name = "prost"
1655
version = "0.11.6"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1656
source = "registry+https://github.com/rust-lang/crates.io-index"
1657
checksum = "21dc42e00223fc37204bd4aa177e69420c604ca4a183209a8f9de30c6d934698"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1658
1659
1660
1661
1662
1663
1664
dependencies = [
 "bytes",
 "prost-derive",
]

[[package]]
name = "prost-build"
1665
version = "0.11.6"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1666
source = "registry+https://github.com/rust-lang/crates.io-index"
1667
checksum = "a3f8ad728fb08fe212df3c05169e940fbb6d9d16a877ddde14644a983ba2012e"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1668
1669
dependencies = [
 "bytes",
1670
 "heck",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1671
1672
1673
1674
1675
 "itertools 0.10.5",
 "lazy_static",
 "log",
 "multimap",
 "petgraph",
1676
 "prettyplease",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1677
1678
1679
 "prost",
 "prost-types",
 "regex",
1680
 "syn",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1681
1682
1683
1684
1685
1686
 "tempfile",
 "which",
]

[[package]]
name = "prost-derive"
1687
version = "0.11.6"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1688
source = "registry+https://github.com/rust-lang/crates.io-index"
1689
checksum = "8bda8c0881ea9f722eb9629376db3d0b903b462477c1aafcb0566610ac28ac5d"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
dependencies = [
 "anyhow",
 "itertools 0.10.5",
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "prost-types"
1700
version = "0.11.6"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1701
source = "registry+https://github.com/rust-lang/crates.io-index"
1702
checksum = "a5e0526209433e96d83d750dd81a99118edbc55739e7e61a46764fd2ad537788"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1703
1704
1705
1706
1707
dependencies = [
 "bytes",
 "prost",
]

1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
[[package]]
name = "quanta"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7e31331286705f455e56cca62e0e717158474ff02b7936c1fa596d983f4ae27"
dependencies = [
 "crossbeam-utils",
 "libc",
 "mach",
 "once_cell",
 "raw-cpuid",
 "wasi 0.10.0+wasi-snapshot-preview1",
 "web-sys",
 "winapi",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1724
1725
[[package]]
name = "quote"
1726
version = "1.0.23"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1727
source = "registry+https://github.com/rust-lang/crates.io-index"
1728
checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
dependencies = [
 "proc-macro2",
]

[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
 "libc",
 "rand_chacha",
 "rand_core",
]

[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
 "ppv-lite86",
 "rand_core",
]

[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
 "getrandom",
]

1763
1764
1765
1766
1767
1768
1769
1770
1771
[[package]]
name = "raw-cpuid"
version = "10.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c307f7aacdbab3f0adee67d52739a1d71112cc068d6fab169ddeb18e48877fad"
dependencies = [
 "bitflags",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1772
1773
[[package]]
name = "rayon"
1774
version = "1.6.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1775
source = "registry+https://github.com/rust-lang/crates.io-index"
1776
checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
dependencies = [
 "either",
 "rayon-core",
]

[[package]]
name = "rayon-cond"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd1259362c9065e5ea39a789ef40b1e3fd934c94beb7b5ab3ac6629d3b5e7cb7"
dependencies = [
 "either",
 "itertools 0.8.2",
 "rayon",
]

[[package]]
name = "rayon-core"
1795
version = "1.10.2"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1796
source = "registry+https://github.com/rust-lang/crates.io-index"
1797
checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
dependencies = [
 "crossbeam-channel",
 "crossbeam-deque",
 "crossbeam-utils",
 "num_cpus",
]

[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
 "bitflags",
]

[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
 "getrandom",
 "redox_syscall",
 "thiserror",
]

[[package]]
name = "regex"
1827
version = "1.7.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1828
source = "registry+https://github.com/rust-lang/crates.io-index"
1829
checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1830
1831
1832
1833
1834
1835
dependencies = [
 "aho-corasick",
 "memchr",
 "regex-syntax",
]

1836
1837
1838
1839
1840
1841
1842
1843
1844
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
 "regex-syntax",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1845
1846
[[package]]
name = "regex-syntax"
1847
version = "0.6.28"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1848
source = "registry+https://github.com/rust-lang/crates.io-index"
1849
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861

[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
 "winapi",
]

[[package]]
name = "reqwest"
1862
version = "0.11.14"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1863
source = "registry+https://github.com/rust-lang/crates.io-index"
1864
checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1865
dependencies = [
1866
 "base64 0.21.0",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
 "bytes",
 "encoding_rs",
 "futures-core",
 "futures-util",
 "h2",
 "http",
 "http-body",
 "hyper",
 "hyper-tls",
 "ipnet",
 "js-sys",
 "log",
 "mime",
 "native-tls",
 "once_cell",
 "percent-encoding",
 "pin-project-lite",
 "serde",
 "serde_json",
 "serde_urlencoded",
 "tokio",
 "tokio-native-tls",
 "tower-service",
 "url",
 "wasm-bindgen",
 "wasm-bindgen-futures",
 "web-sys",
 "winreg",
]

1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
[[package]]
name = "rust-embed"
version = "6.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "283ffe2f866869428c92e0d61c2f35dfb4355293cdfdc48f49e895c15f1333d1"
dependencies = [
 "rust-embed-impl",
 "rust-embed-utils",
 "walkdir",
]

[[package]]
name = "rust-embed-impl"
version = "6.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31ab23d42d71fb9be1b643fe6765d292c5e14d46912d13f3ae2815ca048ea04d"
dependencies = [
 "proc-macro2",
 "quote",
 "rust-embed-utils",
 "shellexpand",
 "syn",
 "walkdir",
]

[[package]]
name = "rust-embed-utils"
version = "7.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1669d81dfabd1b5f8e2856b8bbe146c6192b0ba22162edc738ac0a5de18f054"
dependencies = [
 "sha2",
 "walkdir",
]

1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
[[package]]
name = "rustix"
version = "0.36.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644"
dependencies = [
 "bitflags",
 "errno",
 "io-lifetimes",
 "libc",
 "linux-raw-sys",
 "windows-sys 0.45.0",
]

1946
1947
1948
1949
1950
1951
[[package]]
name = "rustversion"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70"

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1952
1953
[[package]]
name = "ryu"
1954
version = "1.0.12"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1955
source = "registry+https://github.com/rust-lang/crates.io-index"
1956
checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1957

1958
1959
1960
1961
1962
1963
1964
1965
1966
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
 "winapi-util",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1967
1968
[[package]]
name = "schannel"
1969
version = "0.1.21"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1970
source = "registry+https://github.com/rust-lang/crates.io-index"
1971
checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1972
dependencies = [
1973
 "windows-sys 0.42.0",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
]

[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"

[[package]]
name = "security-framework"
1984
version = "2.8.2"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1985
source = "registry+https://github.com/rust-lang/crates.io-index"
1986
checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
dependencies = [
 "bitflags",
 "core-foundation",
 "core-foundation-sys",
 "libc",
 "security-framework-sys",
]

[[package]]
name = "security-framework-sys"
1997
version = "2.8.0"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1998
source = "registry+https://github.com/rust-lang/crates.io-index"
1999
checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2000
2001
2002
2003
2004
2005
2006
dependencies = [
 "core-foundation-sys",
 "libc",
]

[[package]]
name = "serde"
2007
version = "1.0.152"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2008
source = "registry+https://github.com/rust-lang/crates.io-index"
2009
checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2010
2011
2012
2013
2014
2015
dependencies = [
 "serde_derive",
]

[[package]]
name = "serde_derive"
2016
version = "1.0.152"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2017
source = "registry+https://github.com/rust-lang/crates.io-index"
2018
checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2019
2020
2021
2022
2023
2024
2025
2026
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "serde_json"
2027
version = "1.0.93"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2028
source = "registry+https://github.com/rust-lang/crates.io-index"
2029
checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2030
2031
2032
2033
2034
2035
dependencies = [
 "itoa",
 "ryu",
 "serde",
]

2036
2037
2038
2039
2040
2041
2042
2043
2044
[[package]]
name = "serde_path_to_error"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26b04f22b563c91331a10074bda3dd5492e3cc39d56bd557e91c0af42b6c7341"
dependencies = [
 "serde",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
 "form_urlencoded",
 "itoa",
 "ryu",
 "serde",
]

[[package]]
name = "sha2"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
dependencies = [
 "cfg-if",
 "cpufeatures",
 "digest",
]

[[package]]
name = "sharded-slab"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
 "lazy_static",
]

2077
2078
2079
2080
2081
2082
2083
2084
2085
[[package]]
name = "shellexpand"
version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4"
dependencies = [
 "dirs 4.0.0",
]

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2086
2087
2088
2089
2090
2091
2092
2093
2094
[[package]]
name = "signal-hook-registry"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
 "libc",
]

2095
2096
2097
2098
2099
2100
[[package]]
name = "sketches-ddsketch"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ceb945e54128e09c43d8e4f1277851bd5044c6fc540bbaa2ad888f60b3da9ae7"

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
[[package]]
name = "slab"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
 "autocfg",
]

[[package]]
name = "smallvec"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"

[[package]]
name = "socket2"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
dependencies = [
 "libc",
 "winapi",
]

[[package]]
name = "spm_precompiled"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
dependencies = [
2132
 "base64 0.13.1",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2133
2134
2135
2136
2137
 "nom",
 "serde",
 "unicode-segmentation",
]

2138
2139
2140
2141
2142
2143
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"

[[package]]
name = "strsim"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"

Olivier Dehaene's avatar
Olivier Dehaene committed
2156
2157
2158
2159
2160
2161
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
[[package]]
name = "subprocess"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c2e86926081dda636c546d8c5e641661049d7562a68f5488be4a1f7f66f6086"
dependencies = [
 "libc",
 "winapi",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2172
2173
[[package]]
name = "syn"
2174
version = "1.0.107"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2175
source = "registry+https://github.com/rust-lang/crates.io-index"
2176
checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2177
2178
2179
2180
2181
2182
dependencies = [
 "proc-macro2",
 "quote",
 "unicode-ident",
]

Olivier Dehaene's avatar
Olivier Dehaene committed
2183
2184
[[package]]
name = "sync_wrapper"
2185
version = "0.1.2"
Olivier Dehaene's avatar
Olivier Dehaene committed
2186
source = "registry+https://github.com/rust-lang/crates.io-index"
2187
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
Olivier Dehaene's avatar
Olivier Dehaene committed
2188

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
[[package]]
name = "tar"
version = "0.4.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
dependencies = [
 "filetime",
 "libc",
 "xattr",
]

[[package]]
name = "tempfile"
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
dependencies = [
 "cfg-if",
 "fastrand",
 "libc",
 "redox_syscall",
 "remove_dir_all",
 "winapi",
]

Olivier Dehaene's avatar
Olivier Dehaene committed
2214
2215
[[package]]
name = "termcolor"
2216
version = "1.2.0"
Olivier Dehaene's avatar
Olivier Dehaene committed
2217
source = "registry+https://github.com/rust-lang/crates.io-index"
2218
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
Olivier Dehaene's avatar
Olivier Dehaene committed
2219
2220
2221
2222
dependencies = [
 "winapi-util",
]

2223
2224
[[package]]
name = "text-generation-client"
OlivierDehaene's avatar
OlivierDehaene committed
2225
version = "0.3.0"
2226
2227
dependencies = [
 "futures",
2228
 "grpc-metadata",
2229
 "prost",
2230
 "prost-build",
2231
2232
2233
2234
2235
2236
2237
2238
2239
 "thiserror",
 "tokio",
 "tonic",
 "tonic-build",
 "tower",
 "tracing",
 "tracing-error",
]

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2240
2241
[[package]]
name = "text-generation-launcher"
OlivierDehaene's avatar
OlivierDehaene committed
2242
version = "0.3.0"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2243
dependencies = [
2244
 "clap 4.1.4",
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2245
 "ctrlc",
2246
2247
2248
2249
 "float_eq",
 "reqwest",
 "serde",
 "serde_json",
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2250
2251
2252
2253
2254
 "subprocess",
 "tracing",
 "tracing-subscriber",
]

Olivier Dehaene's avatar
Olivier Dehaene committed
2255
2256
[[package]]
name = "text-generation-router"
OlivierDehaene's avatar
OlivierDehaene committed
2257
version = "0.3.0"
Olivier Dehaene's avatar
Olivier Dehaene committed
2258
dependencies = [
2259
 "async-stream",
Olivier Dehaene's avatar
Olivier Dehaene committed
2260
 "axum",
2261
2262
 "axum-tracing-opentelemetry",
 "clap 4.1.4",
Olivier Dehaene's avatar
Olivier Dehaene committed
2263
 "futures",
2264
2265
 "metrics",
 "metrics-exporter-prometheus",
2266
 "nohash-hasher",
2267
2268
 "opentelemetry",
 "opentelemetry-otlp",
Olivier Dehaene's avatar
Olivier Dehaene committed
2269
 "parking_lot",
2270
 "rand",
Olivier Dehaene's avatar
Olivier Dehaene committed
2271
2272
 "serde",
 "serde_json",
2273
 "text-generation-client",
Olivier Dehaene's avatar
Olivier Dehaene committed
2274
2275
2276
 "thiserror",
 "tokenizers",
 "tokio",
2277
 "tokio-stream",
2278
 "tower-http",
Olivier Dehaene's avatar
Olivier Dehaene committed
2279
 "tracing",
2280
 "tracing-opentelemetry",
Olivier Dehaene's avatar
Olivier Dehaene committed
2281
 "tracing-subscriber",
2282
2283
 "utoipa",
 "utoipa-swagger-ui",
Olivier Dehaene's avatar
Olivier Dehaene committed
2284
2285
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
 "unicode-width",
]

[[package]]
name = "thiserror"
2297
version = "1.0.38"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2298
source = "registry+https://github.com/rust-lang/crates.io-index"
2299
checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2300
2301
2302
2303
2304
2305
dependencies = [
 "thiserror-impl",
]

[[package]]
name = "thiserror-impl"
2306
version = "1.0.38"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2307
source = "registry+https://github.com/rust-lang/crates.io-index"
2308
checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2309
2310
2311
2312
2313
2314
2315
2316
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "thread_local"
2317
version = "1.1.6"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2318
source = "registry+https://github.com/rust-lang/crates.io-index"
2319
checksum = "50f297120ff9d4efe680df143d5631bba9c75fa371992b7fcb33eb3453cb0a07"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2320
dependencies = [
2321
 "cfg-if",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2322
2323
2324
2325
2326
 "once_cell",
]

[[package]]
name = "time"
2327
version = "0.1.45"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2328
source = "registry+https://github.com/rust-lang/crates.io-index"
2329
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
dependencies = [
 "libc",
 "wasi 0.10.0+wasi-snapshot-preview1",
 "winapi",
]

[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
 "tinyvec_macros",
]

[[package]]
name = "tinyvec_macros"
2347
version = "0.1.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2348
source = "registry+https://github.com/rust-lang/crates.io-index"
2349
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2350
2351
2352

[[package]]
name = "tokenizers"
2353
version = "0.13.2"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2354
source = "registry+https://github.com/rust-lang/crates.io-index"
2355
checksum = "f4ff2dd291eac98dcea13e8cf7a0b28c373a90dc9210ccdab0fa9e69ee0cac69"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2356
2357
2358
dependencies = [
 "aho-corasick",
 "cached-path",
Olivier Dehaene's avatar
Olivier Dehaene committed
2359
 "clap 2.34.0",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2360
 "derive_builder",
2361
 "dirs 3.0.2",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
 "esaxx-rs",
 "getrandom",
 "indicatif 0.15.0",
 "itertools 0.9.0",
 "lazy_static",
 "log",
 "macro_rules_attribute",
 "onig",
 "paste",
 "rand",
 "rayon",
 "rayon-cond",
 "regex",
 "regex-syntax",
 "reqwest",
 "serde",
 "serde_json",
 "spm_precompiled",
 "thiserror",
 "unicode-normalization-alignments",
 "unicode-segmentation",
 "unicode_categories",
]

[[package]]
name = "tokio"
2388
version = "1.25.0"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2389
source = "registry+https://github.com/rust-lang/crates.io-index"
2390
checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2391
2392
2393
2394
2395
2396
2397
2398
2399
dependencies = [
 "autocfg",
 "bytes",
 "libc",
 "memchr",
 "mio",
 "num_cpus",
 "parking_lot",
 "pin-project-lite",
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2400
 "signal-hook-registry",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2401
2402
 "socket2",
 "tokio-macros",
2403
 "windows-sys 0.42.0",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
]

[[package]]
name = "tokio-io-timeout"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
dependencies = [
 "pin-project-lite",
 "tokio",
]

[[package]]
name = "tokio-macros"
2418
version = "1.8.2"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2419
source = "registry+https://github.com/rust-lang/crates.io-index"
2420
checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2421
2422
2423
2424
2425
2426
2427
2428
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "tokio-native-tls"
2429
version = "0.3.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2430
source = "registry+https://github.com/rust-lang/crates.io-index"
2431
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2432
2433
2434
2435
2436
2437
2438
dependencies = [
 "native-tls",
 "tokio",
]

[[package]]
name = "tokio-stream"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2439
version = "0.1.11"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2440
source = "registry+https://github.com/rust-lang/crates.io-index"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2441
checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2442
2443
2444
2445
2446
2447
2448
2449
dependencies = [
 "futures-core",
 "pin-project-lite",
 "tokio",
]

[[package]]
name = "tokio-util"
2450
version = "0.7.6"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2451
source = "registry+https://github.com/rust-lang/crates.io-index"
2452
checksum = "bc6a3b08b64e6dfad376fa2432c7b1f01522e37a623c3050bc95db2d3ff21583"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
dependencies = [
 "bytes",
 "futures-core",
 "futures-sink",
 "pin-project-lite",
 "tokio",
 "tracing",
]

[[package]]
name = "tonic"
2464
version = "0.8.3"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2465
source = "registry+https://github.com/rust-lang/crates.io-index"
2466
checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2467
2468
2469
dependencies = [
 "async-stream",
 "async-trait",
2470
2471
 "axum",
 "base64 0.13.1",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
 "bytes",
 "futures-core",
 "futures-util",
 "h2",
 "http",
 "http-body",
 "hyper",
 "hyper-timeout",
 "percent-encoding",
 "pin-project",
 "prost",
 "prost-derive",
 "tokio",
 "tokio-stream",
2486
 "tokio-util",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2487
2488
2489
2490
2491
2492
2493
2494
2495
 "tower",
 "tower-layer",
 "tower-service",
 "tracing",
 "tracing-futures",
]

[[package]]
name = "tonic-build"
2496
version = "0.8.4"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2497
source = "registry+https://github.com/rust-lang/crates.io-index"
2498
checksum = "5bf5e9b9c0f7e0a7c027dcfaba7b2c60816c7049171f679d99ee2ff65d0de8c4"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2499
dependencies = [
2500
 "prettyplease",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
 "proc-macro2",
 "prost-build",
 "quote",
 "syn",
]

[[package]]
name = "tower"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
dependencies = [
 "futures-core",
 "futures-util",
 "indexmap",
 "pin-project",
 "pin-project-lite",
 "rand",
 "slab",
 "tokio",
2521
 "tokio-util",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2522
2523
2524
2525
2526
 "tower-layer",
 "tower-service",
 "tracing",
]

Olivier Dehaene's avatar
Olivier Dehaene committed
2527
2528
[[package]]
name = "tower-http"
2529
version = "0.3.5"
Olivier Dehaene's avatar
Olivier Dehaene committed
2530
source = "registry+https://github.com/rust-lang/crates.io-index"
2531
checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858"
Olivier Dehaene's avatar
Olivier Dehaene committed
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
dependencies = [
 "bitflags",
 "bytes",
 "futures-core",
 "futures-util",
 "http",
 "http-body",
 "http-range-header",
 "pin-project-lite",
 "tower",
 "tower-layer",
 "tower-service",
2544
 "tracing",
Olivier Dehaene's avatar
Olivier Dehaene committed
2545
2546
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2547
2548
[[package]]
name = "tower-layer"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2549
version = "0.3.2"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2550
source = "registry+https://github.com/rust-lang/crates.io-index"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2551
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2552
2553
2554
2555
2556
2557
2558
2559
2560

[[package]]
name = "tower-service"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"

[[package]]
name = "tracing"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2561
version = "0.1.37"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2562
source = "registry+https://github.com/rust-lang/crates.io-index"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2563
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
dependencies = [
 "cfg-if",
 "log",
 "pin-project-lite",
 "tracing-attributes",
 "tracing-core",
]

[[package]]
name = "tracing-attributes"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2574
version = "0.1.23"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2575
source = "registry+https://github.com/rust-lang/crates.io-index"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2576
checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2577
2578
2579
2580
2581
2582
2583
2584
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "tracing-core"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2585
version = "0.1.30"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2586
source = "registry+https://github.com/rust-lang/crates.io-index"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2587
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
dependencies = [
 "once_cell",
 "valuable",
]

[[package]]
name = "tracing-error"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e"
dependencies = [
 "tracing",
 "tracing-subscriber",
]

[[package]]
name = "tracing-futures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [
 "pin-project",
 "tracing",
]

[[package]]
name = "tracing-log"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
dependencies = [
 "lazy_static",
 "log",
 "tracing-core",
]

2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
[[package]]
name = "tracing-opentelemetry"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21ebb87a95ea13271332df069020513ab70bdb5637ca42d6e492dc3bbbad48de"
dependencies = [
 "once_cell",
 "opentelemetry",
 "tracing",
 "tracing-core",
 "tracing-log",
 "tracing-subscriber",
]

2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
[[package]]
name = "tracing-serde"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
dependencies = [
 "serde",
 "tracing-core",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2648
2649
[[package]]
name = "tracing-subscriber"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2650
version = "0.3.16"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2651
source = "registry+https://github.com/rust-lang/crates.io-index"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2652
checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2653
dependencies = [
2654
 "matchers",
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2655
 "nu-ansi-term",
2656
2657
 "once_cell",
 "regex",
2658
2659
 "serde",
 "serde_json",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2660
2661
2662
 "sharded-slab",
 "smallvec",
 "thread_local",
2663
 "tracing",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2664
2665
 "tracing-core",
 "tracing-log",
2666
 "tracing-serde",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2667
2668
2669
2670
]

[[package]]
name = "try-lock"
2671
version = "0.2.4"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2672
source = "registry+https://github.com/rust-lang/crates.io-index"
2673
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2674
2675
2676

[[package]]
name = "typenum"
2677
version = "1.16.0"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2678
source = "registry+https://github.com/rust-lang/crates.io-index"
2679
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2680

2681
2682
2683
2684
2685
2686
2687
2688
2689
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
 "version_check",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2690
2691
[[package]]
name = "unicode-bidi"
2692
version = "0.3.10"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2693
source = "registry+https://github.com/rust-lang/crates.io-index"
2694
checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2695
2696
2697

[[package]]
name = "unicode-ident"
2698
version = "1.0.6"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2699
source = "registry+https://github.com/rust-lang/crates.io-index"
2700
checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721

[[package]]
name = "unicode-normalization"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
 "tinyvec",
]

[[package]]
name = "unicode-normalization-alignments"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de"
dependencies = [
 "smallvec",
]

[[package]]
name = "unicode-segmentation"
2722
version = "1.10.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2723
source = "registry+https://github.com/rust-lang/crates.io-index"
2724
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748

[[package]]
name = "unicode-width"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"

[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"

[[package]]
name = "url"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
dependencies = [
 "form_urlencoded",
 "idna",
 "percent-encoding",
]

2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
[[package]]
name = "utoipa"
version = "3.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3920fa753064b1be7842bea26175ffa0dfc4a8f30bcb52b8ff03fddf8889914c"
dependencies = [
 "indexmap",
 "serde",
 "serde_json",
 "utoipa-gen",
]

[[package]]
name = "utoipa-gen"
version = "3.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "720298fac6efca20df9e457e67a1eab41a20d1c3101380b5c4dca1ca60ae0062"
dependencies = [
 "proc-macro-error",
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "utoipa-swagger-ui"
version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae3d4f4da6408f0f20ff58196ed619c94306ab32635aeca3d3fa0768c0bd0de2"
dependencies = [
 "axum",
 "mime_guess",
 "regex",
 "rust-embed",
 "serde",
 "serde_json",
 "utoipa",
 "zip 0.6.4",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"

[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"

[[package]]
name = "vec_map"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"

[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"

2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
[[package]]
name = "walkdir"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
dependencies = [
 "same-file",
 "winapi",
 "winapi-util",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
 "log",
 "try-lock",
]

[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"

[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"

[[package]]
name = "wasm-bindgen"
2848
version = "0.2.84"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2849
source = "registry+https://github.com/rust-lang/crates.io-index"
2850
checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2851
2852
2853
2854
2855
2856
2857
dependencies = [
 "cfg-if",
 "wasm-bindgen-macro",
]

[[package]]
name = "wasm-bindgen-backend"
2858
version = "0.2.84"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2859
source = "registry+https://github.com/rust-lang/crates.io-index"
2860
checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
dependencies = [
 "bumpalo",
 "log",
 "once_cell",
 "proc-macro2",
 "quote",
 "syn",
 "wasm-bindgen-shared",
]

[[package]]
name = "wasm-bindgen-futures"
2873
version = "0.4.34"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2874
source = "registry+https://github.com/rust-lang/crates.io-index"
2875
checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2876
2877
2878
2879
2880
2881
2882
2883
2884
dependencies = [
 "cfg-if",
 "js-sys",
 "wasm-bindgen",
 "web-sys",
]

[[package]]
name = "wasm-bindgen-macro"
2885
version = "0.2.84"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2886
source = "registry+https://github.com/rust-lang/crates.io-index"
2887
checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2888
2889
2890
2891
2892
2893
2894
dependencies = [
 "quote",
 "wasm-bindgen-macro-support",
]

[[package]]
name = "wasm-bindgen-macro-support"
2895
version = "0.2.84"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2896
source = "registry+https://github.com/rust-lang/crates.io-index"
2897
checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
 "wasm-bindgen-backend",
 "wasm-bindgen-shared",
]

[[package]]
name = "wasm-bindgen-shared"
2908
version = "0.2.84"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2909
source = "registry+https://github.com/rust-lang/crates.io-index"
2910
checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2911
2912
2913

[[package]]
name = "web-sys"
2914
version = "0.3.61"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2915
source = "registry+https://github.com/rust-lang/crates.io-index"
2916
checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2917
2918
2919
2920
2921
2922
2923
dependencies = [
 "js-sys",
 "wasm-bindgen",
]

[[package]]
name = "which"
2924
version = "4.4.0"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2925
source = "registry+https://github.com/rust-lang/crates.io-index"
2926
checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
dependencies = [
 "either",
 "libc",
 "once_cell",
]

[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
 "winapi-i686-pc-windows-gnu",
 "winapi-x86_64-pc-windows-gnu",
]

[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"

Olivier Dehaene's avatar
Olivier Dehaene committed
2949
2950
2951
2952
2953
2954
2955
2956
2957
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
 "winapi",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2958
2959
2960
2961
2962
2963
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2964
2965
2966
2967
2968
2969
2970
[[package]]
name = "windows-sys"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
 "windows_aarch64_gnullvm",
2971
2972
2973
2974
 "windows_aarch64_msvc",
 "windows_i686_gnu",
 "windows_i686_msvc",
 "windows_x86_64_gnu",
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2975
 "windows_x86_64_gnullvm",
2976
 "windows_x86_64_msvc",
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2977
2978
2979
]

[[package]]
2980
2981
name = "windows-sys"
version = "0.45.0"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2982
source = "registry+https://github.com/rust-lang/crates.io-index"
2983
2984
2985
2986
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
 "windows-targets",
]
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
2987

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2988
[[package]]
2989
2990
name = "windows-targets"
version = "0.42.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
2991
source = "registry+https://github.com/rust-lang/crates.io-index"
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
dependencies = [
 "windows_aarch64_gnullvm",
 "windows_aarch64_msvc",
 "windows_i686_gnu",
 "windows_i686_msvc",
 "windows_x86_64_gnu",
 "windows_x86_64_gnullvm",
 "windows_x86_64_msvc",
]
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
3002

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
3003
[[package]]
3004
3005
name = "windows_aarch64_gnullvm"
version = "0.42.1"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
3006
source = "registry+https://github.com/rust-lang/crates.io-index"
3007
checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
3008

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
3009
[[package]]
3010
3011
name = "windows_aarch64_msvc"
version = "0.42.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
3012
source = "registry+https://github.com/rust-lang/crates.io-index"
3013
checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
3014

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
3015
3016
[[package]]
name = "windows_i686_gnu"
3017
version = "0.42.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
3018
source = "registry+https://github.com/rust-lang/crates.io-index"
3019
checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
3020

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
3021
3022
[[package]]
name = "windows_i686_msvc"
3023
version = "0.42.1"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
3024
source = "registry+https://github.com/rust-lang/crates.io-index"
3025
checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
3026

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
3027
3028
[[package]]
name = "windows_x86_64_gnu"
3029
version = "0.42.1"
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
3030
source = "registry+https://github.com/rust-lang/crates.io-index"
3031
checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
3032
3033
3034

[[package]]
name = "windows_x86_64_gnullvm"
3035
version = "0.42.1"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
3036
source = "registry+https://github.com/rust-lang/crates.io-index"
3037
checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
3038

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
3039
3040
[[package]]
name = "windows_x86_64_msvc"
3041
version = "0.42.1"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
3042
source = "registry+https://github.com/rust-lang/crates.io-index"
3043
checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
3044

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
 "winapi",
]

[[package]]
name = "xattr"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
dependencies = [
 "libc",
]

[[package]]
name = "zip"
version = "0.5.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93ab48844d61251bb3835145c521d88aa4031d7139e8485990f60ca911fa0815"
dependencies = [
 "byteorder",
 "bzip2",
 "crc32fast",
 "flate2",
 "thiserror",
 "time",
]

3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
[[package]]
name = "zip"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0445d0fbc924bb93539b4316c11afb121ea39296f99a3c4c9edad09e3658cdef"
dependencies = [
 "byteorder",
 "crc32fast",
 "crossbeam-utils",
 "flate2",
]

Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
3089
3090
3091
3092
3093
3094
[[package]]
name = "zip-extensions"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a64c3c977bc3434ce2d4bcea8ad3c644672de0f2c402b72b9171ca80a8885d14"
dependencies = [
3095
 "zip 0.5.13",
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
3096
]