tenement 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,822 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anstream"
16
+ version = "0.6.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
19
+ dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.13"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
34
+
35
+ [[package]]
36
+ name = "anstyle-parse"
37
+ version = "0.2.7"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
40
+ dependencies = [
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-query"
46
+ version = "1.1.5"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
+ dependencies = [
50
+ "windows-sys 0.61.2",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-wincon"
55
+ version = "3.0.11"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
+ dependencies = [
59
+ "anstyle",
60
+ "once_cell_polyfill",
61
+ "windows-sys 0.61.2",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anyhow"
66
+ version = "1.0.100"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
69
+
70
+ [[package]]
71
+ name = "bitflags"
72
+ version = "2.10.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
75
+
76
+ [[package]]
77
+ name = "bytes"
78
+ version = "1.11.0"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
81
+
82
+ [[package]]
83
+ name = "cfg-if"
84
+ version = "1.0.4"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
87
+
88
+ [[package]]
89
+ name = "clap"
90
+ version = "4.5.53"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
93
+ dependencies = [
94
+ "clap_builder",
95
+ "clap_derive",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "clap_builder"
100
+ version = "4.5.53"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
103
+ dependencies = [
104
+ "anstream",
105
+ "anstyle",
106
+ "clap_lex",
107
+ "strsim",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "clap_derive"
112
+ version = "4.5.49"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
115
+ dependencies = [
116
+ "heck",
117
+ "proc-macro2",
118
+ "quote",
119
+ "syn",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "clap_lex"
124
+ version = "0.7.6"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
127
+
128
+ [[package]]
129
+ name = "colorchoice"
130
+ version = "1.0.4"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
133
+
134
+ [[package]]
135
+ name = "equivalent"
136
+ version = "1.0.2"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
139
+
140
+ [[package]]
141
+ name = "errno"
142
+ version = "0.3.14"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
145
+ dependencies = [
146
+ "libc",
147
+ "windows-sys 0.61.2",
148
+ ]
149
+
150
+ [[package]]
151
+ name = "fastrand"
152
+ version = "2.3.0"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
155
+
156
+ [[package]]
157
+ name = "getrandom"
158
+ version = "0.3.4"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
161
+ dependencies = [
162
+ "cfg-if",
163
+ "libc",
164
+ "r-efi",
165
+ "wasip2",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "hashbrown"
170
+ version = "0.16.1"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
173
+
174
+ [[package]]
175
+ name = "heck"
176
+ version = "0.5.0"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
179
+
180
+ [[package]]
181
+ name = "indexmap"
182
+ version = "2.12.1"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
185
+ dependencies = [
186
+ "equivalent",
187
+ "hashbrown",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "is_terminal_polyfill"
192
+ version = "1.70.2"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
195
+
196
+ [[package]]
197
+ name = "itoa"
198
+ version = "1.0.15"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
201
+
202
+ [[package]]
203
+ name = "lazy_static"
204
+ version = "1.5.0"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
207
+
208
+ [[package]]
209
+ name = "libc"
210
+ version = "0.2.178"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
213
+
214
+ [[package]]
215
+ name = "linux-raw-sys"
216
+ version = "0.11.0"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
219
+
220
+ [[package]]
221
+ name = "lock_api"
222
+ version = "0.4.14"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
225
+ dependencies = [
226
+ "scopeguard",
227
+ ]
228
+
229
+ [[package]]
230
+ name = "log"
231
+ version = "0.4.29"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
234
+
235
+ [[package]]
236
+ name = "matchers"
237
+ version = "0.2.0"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
240
+ dependencies = [
241
+ "regex-automata",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "memchr"
246
+ version = "2.7.6"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
249
+
250
+ [[package]]
251
+ name = "mio"
252
+ version = "1.1.1"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
255
+ dependencies = [
256
+ "libc",
257
+ "wasi",
258
+ "windows-sys 0.61.2",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "nu-ansi-term"
263
+ version = "0.50.3"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
266
+ dependencies = [
267
+ "windows-sys 0.61.2",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "once_cell"
272
+ version = "1.21.3"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
275
+
276
+ [[package]]
277
+ name = "once_cell_polyfill"
278
+ version = "1.70.2"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
281
+
282
+ [[package]]
283
+ name = "parking_lot"
284
+ version = "0.12.5"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
287
+ dependencies = [
288
+ "lock_api",
289
+ "parking_lot_core",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "parking_lot_core"
294
+ version = "0.9.12"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
297
+ dependencies = [
298
+ "cfg-if",
299
+ "libc",
300
+ "redox_syscall",
301
+ "smallvec",
302
+ "windows-link",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "pin-project-lite"
307
+ version = "0.2.16"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
310
+
311
+ [[package]]
312
+ name = "proc-macro2"
313
+ version = "1.0.103"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
316
+ dependencies = [
317
+ "unicode-ident",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "quote"
322
+ version = "1.0.42"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
325
+ dependencies = [
326
+ "proc-macro2",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "r-efi"
331
+ version = "5.3.0"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
334
+
335
+ [[package]]
336
+ name = "redox_syscall"
337
+ version = "0.5.18"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
340
+ dependencies = [
341
+ "bitflags",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "regex-automata"
346
+ version = "0.4.13"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
349
+ dependencies = [
350
+ "aho-corasick",
351
+ "memchr",
352
+ "regex-syntax",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "regex-syntax"
357
+ version = "0.8.8"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
360
+
361
+ [[package]]
362
+ name = "rustix"
363
+ version = "1.1.2"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
366
+ dependencies = [
367
+ "bitflags",
368
+ "errno",
369
+ "libc",
370
+ "linux-raw-sys",
371
+ "windows-sys 0.61.2",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "ryu"
376
+ version = "1.0.20"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
379
+
380
+ [[package]]
381
+ name = "scopeguard"
382
+ version = "1.2.0"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
385
+
386
+ [[package]]
387
+ name = "serde"
388
+ version = "1.0.228"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
391
+ dependencies = [
392
+ "serde_core",
393
+ "serde_derive",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "serde_core"
398
+ version = "1.0.228"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
401
+ dependencies = [
402
+ "serde_derive",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "serde_derive"
407
+ version = "1.0.228"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
410
+ dependencies = [
411
+ "proc-macro2",
412
+ "quote",
413
+ "syn",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "serde_json"
418
+ version = "1.0.145"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
421
+ dependencies = [
422
+ "itoa",
423
+ "memchr",
424
+ "ryu",
425
+ "serde",
426
+ "serde_core",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "serde_spanned"
431
+ version = "0.6.9"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
434
+ dependencies = [
435
+ "serde",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "sharded-slab"
440
+ version = "0.1.7"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
443
+ dependencies = [
444
+ "lazy_static",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "signal-hook-registry"
449
+ version = "1.4.7"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad"
452
+ dependencies = [
453
+ "libc",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "smallvec"
458
+ version = "1.15.1"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
461
+
462
+ [[package]]
463
+ name = "socket2"
464
+ version = "0.6.1"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
467
+ dependencies = [
468
+ "libc",
469
+ "windows-sys 0.60.2",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "strsim"
474
+ version = "0.11.1"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
477
+
478
+ [[package]]
479
+ name = "syn"
480
+ version = "2.0.111"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
483
+ dependencies = [
484
+ "proc-macro2",
485
+ "quote",
486
+ "unicode-ident",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "tempfile"
491
+ version = "3.23.0"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
494
+ dependencies = [
495
+ "fastrand",
496
+ "getrandom",
497
+ "once_cell",
498
+ "rustix",
499
+ "windows-sys 0.61.2",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "tenement"
504
+ version = "0.1.0"
505
+ dependencies = [
506
+ "anyhow",
507
+ "serde",
508
+ "serde_json",
509
+ "tempfile",
510
+ "thiserror",
511
+ "tokio",
512
+ "toml",
513
+ "tracing",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "tenement-cli"
518
+ version = "0.1.0"
519
+ dependencies = [
520
+ "anyhow",
521
+ "clap",
522
+ "tenement",
523
+ "tokio",
524
+ "tracing",
525
+ "tracing-subscriber",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "thiserror"
530
+ version = "1.0.69"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
533
+ dependencies = [
534
+ "thiserror-impl",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "thiserror-impl"
539
+ version = "1.0.69"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
542
+ dependencies = [
543
+ "proc-macro2",
544
+ "quote",
545
+ "syn",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "thread_local"
550
+ version = "1.1.9"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
553
+ dependencies = [
554
+ "cfg-if",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "tokio"
559
+ version = "1.48.0"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
562
+ dependencies = [
563
+ "bytes",
564
+ "libc",
565
+ "mio",
566
+ "parking_lot",
567
+ "pin-project-lite",
568
+ "signal-hook-registry",
569
+ "socket2",
570
+ "tokio-macros",
571
+ "windows-sys 0.61.2",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "tokio-macros"
576
+ version = "2.6.0"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
579
+ dependencies = [
580
+ "proc-macro2",
581
+ "quote",
582
+ "syn",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "toml"
587
+ version = "0.8.23"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
590
+ dependencies = [
591
+ "serde",
592
+ "serde_spanned",
593
+ "toml_datetime",
594
+ "toml_edit",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "toml_datetime"
599
+ version = "0.6.11"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
602
+ dependencies = [
603
+ "serde",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "toml_edit"
608
+ version = "0.22.27"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
611
+ dependencies = [
612
+ "indexmap",
613
+ "serde",
614
+ "serde_spanned",
615
+ "toml_datetime",
616
+ "toml_write",
617
+ "winnow",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "toml_write"
622
+ version = "0.1.2"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
625
+
626
+ [[package]]
627
+ name = "tracing"
628
+ version = "0.1.43"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
631
+ dependencies = [
632
+ "pin-project-lite",
633
+ "tracing-attributes",
634
+ "tracing-core",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "tracing-attributes"
639
+ version = "0.1.31"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
642
+ dependencies = [
643
+ "proc-macro2",
644
+ "quote",
645
+ "syn",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "tracing-core"
650
+ version = "0.1.35"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
653
+ dependencies = [
654
+ "once_cell",
655
+ "valuable",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "tracing-log"
660
+ version = "0.2.0"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
663
+ dependencies = [
664
+ "log",
665
+ "once_cell",
666
+ "tracing-core",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "tracing-subscriber"
671
+ version = "0.3.22"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
674
+ dependencies = [
675
+ "matchers",
676
+ "nu-ansi-term",
677
+ "once_cell",
678
+ "regex-automata",
679
+ "sharded-slab",
680
+ "smallvec",
681
+ "thread_local",
682
+ "tracing",
683
+ "tracing-core",
684
+ "tracing-log",
685
+ ]
686
+
687
+ [[package]]
688
+ name = "unicode-ident"
689
+ version = "1.0.22"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
692
+
693
+ [[package]]
694
+ name = "utf8parse"
695
+ version = "0.2.2"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
698
+
699
+ [[package]]
700
+ name = "valuable"
701
+ version = "0.1.1"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
704
+
705
+ [[package]]
706
+ name = "wasi"
707
+ version = "0.11.1+wasi-snapshot-preview1"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
710
+
711
+ [[package]]
712
+ name = "wasip2"
713
+ version = "1.0.1+wasi-0.2.4"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
716
+ dependencies = [
717
+ "wit-bindgen",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "windows-link"
722
+ version = "0.2.1"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
725
+
726
+ [[package]]
727
+ name = "windows-sys"
728
+ version = "0.60.2"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
731
+ dependencies = [
732
+ "windows-targets",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "windows-sys"
737
+ version = "0.61.2"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
740
+ dependencies = [
741
+ "windows-link",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "windows-targets"
746
+ version = "0.53.5"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
749
+ dependencies = [
750
+ "windows-link",
751
+ "windows_aarch64_gnullvm",
752
+ "windows_aarch64_msvc",
753
+ "windows_i686_gnu",
754
+ "windows_i686_gnullvm",
755
+ "windows_i686_msvc",
756
+ "windows_x86_64_gnu",
757
+ "windows_x86_64_gnullvm",
758
+ "windows_x86_64_msvc",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "windows_aarch64_gnullvm"
763
+ version = "0.53.1"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
766
+
767
+ [[package]]
768
+ name = "windows_aarch64_msvc"
769
+ version = "0.53.1"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
772
+
773
+ [[package]]
774
+ name = "windows_i686_gnu"
775
+ version = "0.53.1"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
778
+
779
+ [[package]]
780
+ name = "windows_i686_gnullvm"
781
+ version = "0.53.1"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
784
+
785
+ [[package]]
786
+ name = "windows_i686_msvc"
787
+ version = "0.53.1"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
790
+
791
+ [[package]]
792
+ name = "windows_x86_64_gnu"
793
+ version = "0.53.1"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
796
+
797
+ [[package]]
798
+ name = "windows_x86_64_gnullvm"
799
+ version = "0.53.1"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
802
+
803
+ [[package]]
804
+ name = "windows_x86_64_msvc"
805
+ version = "0.53.1"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
808
+
809
+ [[package]]
810
+ name = "winnow"
811
+ version = "0.7.14"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
814
+ dependencies = [
815
+ "memchr",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "wit-bindgen"
820
+ version = "0.46.0"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"