klock 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.
klock-0.1.0/Cargo.lock ADDED
@@ -0,0 +1,1692 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "once_cell",
13
+ "version_check",
14
+ "zerocopy",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "aho-corasick"
19
+ version = "1.1.4"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
22
+ dependencies = [
23
+ "memchr",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "anes"
28
+ version = "0.1.6"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
31
+
32
+ [[package]]
33
+ name = "anstream"
34
+ version = "0.6.21"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
37
+ dependencies = [
38
+ "anstyle",
39
+ "anstyle-parse",
40
+ "anstyle-query",
41
+ "anstyle-wincon",
42
+ "colorchoice",
43
+ "is_terminal_polyfill",
44
+ "utf8parse",
45
+ ]
46
+
47
+ [[package]]
48
+ name = "anstyle"
49
+ version = "1.0.13"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
52
+
53
+ [[package]]
54
+ name = "anstyle-parse"
55
+ version = "0.2.7"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
58
+ dependencies = [
59
+ "utf8parse",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "anstyle-query"
64
+ version = "1.1.5"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
67
+ dependencies = [
68
+ "windows-sys 0.61.2",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "anstyle-wincon"
73
+ version = "3.0.11"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
76
+ dependencies = [
77
+ "anstyle",
78
+ "once_cell_polyfill",
79
+ "windows-sys 0.61.2",
80
+ ]
81
+
82
+ [[package]]
83
+ name = "atomic-waker"
84
+ version = "1.1.2"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
87
+
88
+ [[package]]
89
+ name = "autocfg"
90
+ version = "1.5.0"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
93
+
94
+ [[package]]
95
+ name = "axum"
96
+ version = "0.8.8"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
99
+ dependencies = [
100
+ "axum-core",
101
+ "bytes",
102
+ "form_urlencoded",
103
+ "futures-util",
104
+ "http",
105
+ "http-body",
106
+ "http-body-util",
107
+ "hyper",
108
+ "hyper-util",
109
+ "itoa",
110
+ "matchit",
111
+ "memchr",
112
+ "mime",
113
+ "percent-encoding",
114
+ "pin-project-lite",
115
+ "serde_core",
116
+ "serde_json",
117
+ "serde_path_to_error",
118
+ "serde_urlencoded",
119
+ "sync_wrapper",
120
+ "tokio",
121
+ "tower",
122
+ "tower-layer",
123
+ "tower-service",
124
+ "tracing",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "axum-core"
129
+ version = "0.5.6"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
132
+ dependencies = [
133
+ "bytes",
134
+ "futures-core",
135
+ "http",
136
+ "http-body",
137
+ "http-body-util",
138
+ "mime",
139
+ "pin-project-lite",
140
+ "sync_wrapper",
141
+ "tower-layer",
142
+ "tower-service",
143
+ "tracing",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "bitflags"
148
+ version = "2.11.0"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
151
+
152
+ [[package]]
153
+ name = "bumpalo"
154
+ version = "3.20.2"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
157
+
158
+ [[package]]
159
+ name = "bytes"
160
+ version = "1.11.1"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
163
+
164
+ [[package]]
165
+ name = "cast"
166
+ version = "0.3.0"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
169
+
170
+ [[package]]
171
+ name = "cc"
172
+ version = "1.2.56"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
175
+ dependencies = [
176
+ "find-msvc-tools",
177
+ "shlex",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "cfg-if"
182
+ version = "1.0.4"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
185
+
186
+ [[package]]
187
+ name = "ciborium"
188
+ version = "0.2.2"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
191
+ dependencies = [
192
+ "ciborium-io",
193
+ "ciborium-ll",
194
+ "serde",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "ciborium-io"
199
+ version = "0.2.2"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
202
+
203
+ [[package]]
204
+ name = "ciborium-ll"
205
+ version = "0.2.2"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
208
+ dependencies = [
209
+ "ciborium-io",
210
+ "half",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "clap"
215
+ version = "4.5.60"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
218
+ dependencies = [
219
+ "clap_builder",
220
+ "clap_derive",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "clap_builder"
225
+ version = "4.5.60"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
228
+ dependencies = [
229
+ "anstream",
230
+ "anstyle",
231
+ "clap_lex",
232
+ "strsim",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "clap_derive"
237
+ version = "4.5.55"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
240
+ dependencies = [
241
+ "heck",
242
+ "proc-macro2",
243
+ "quote",
244
+ "syn",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "clap_lex"
249
+ version = "1.0.0"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
252
+
253
+ [[package]]
254
+ name = "colorchoice"
255
+ version = "1.0.4"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
258
+
259
+ [[package]]
260
+ name = "convert_case"
261
+ version = "0.6.0"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
264
+ dependencies = [
265
+ "unicode-segmentation",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "criterion"
270
+ version = "0.5.1"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
273
+ dependencies = [
274
+ "anes",
275
+ "cast",
276
+ "ciborium",
277
+ "clap",
278
+ "criterion-plot",
279
+ "is-terminal",
280
+ "itertools",
281
+ "num-traits",
282
+ "once_cell",
283
+ "oorandom",
284
+ "plotters",
285
+ "rayon",
286
+ "regex",
287
+ "serde",
288
+ "serde_derive",
289
+ "serde_json",
290
+ "tinytemplate",
291
+ "walkdir",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "criterion-plot"
296
+ version = "0.5.0"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
299
+ dependencies = [
300
+ "cast",
301
+ "itertools",
302
+ ]
303
+
304
+ [[package]]
305
+ name = "crossbeam-deque"
306
+ version = "0.8.6"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
309
+ dependencies = [
310
+ "crossbeam-epoch",
311
+ "crossbeam-utils",
312
+ ]
313
+
314
+ [[package]]
315
+ name = "crossbeam-epoch"
316
+ version = "0.9.18"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
319
+ dependencies = [
320
+ "crossbeam-utils",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "crossbeam-utils"
325
+ version = "0.8.21"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
328
+
329
+ [[package]]
330
+ name = "crunchy"
331
+ version = "0.2.4"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
334
+
335
+ [[package]]
336
+ name = "ctor"
337
+ version = "0.2.9"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
340
+ dependencies = [
341
+ "quote",
342
+ "syn",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "either"
347
+ version = "1.15.0"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
350
+
351
+ [[package]]
352
+ name = "errno"
353
+ version = "0.3.14"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
356
+ dependencies = [
357
+ "libc",
358
+ "windows-sys 0.61.2",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "fallible-iterator"
363
+ version = "0.3.0"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
366
+
367
+ [[package]]
368
+ name = "fallible-streaming-iterator"
369
+ version = "0.1.9"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
372
+
373
+ [[package]]
374
+ name = "find-msvc-tools"
375
+ version = "0.1.9"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
378
+
379
+ [[package]]
380
+ name = "form_urlencoded"
381
+ version = "1.2.2"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
384
+ dependencies = [
385
+ "percent-encoding",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "futures-channel"
390
+ version = "0.3.32"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
393
+ dependencies = [
394
+ "futures-core",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "futures-core"
399
+ version = "0.3.32"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
402
+
403
+ [[package]]
404
+ name = "futures-sink"
405
+ version = "0.3.32"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
408
+
409
+ [[package]]
410
+ name = "futures-task"
411
+ version = "0.3.32"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
414
+
415
+ [[package]]
416
+ name = "futures-util"
417
+ version = "0.3.32"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
420
+ dependencies = [
421
+ "futures-core",
422
+ "futures-task",
423
+ "pin-project-lite",
424
+ "slab",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "getrandom"
429
+ version = "0.2.17"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
432
+ dependencies = [
433
+ "cfg-if",
434
+ "libc",
435
+ "wasi",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "half"
440
+ version = "2.7.1"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
443
+ dependencies = [
444
+ "cfg-if",
445
+ "crunchy",
446
+ "zerocopy",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "hashbrown"
451
+ version = "0.14.5"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
454
+ dependencies = [
455
+ "ahash",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "hashlink"
460
+ version = "0.9.1"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
463
+ dependencies = [
464
+ "hashbrown",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "heck"
469
+ version = "0.5.0"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
472
+
473
+ [[package]]
474
+ name = "hermit-abi"
475
+ version = "0.5.2"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
478
+
479
+ [[package]]
480
+ name = "http"
481
+ version = "1.4.0"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
484
+ dependencies = [
485
+ "bytes",
486
+ "itoa",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "http-body"
491
+ version = "1.0.1"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
494
+ dependencies = [
495
+ "bytes",
496
+ "http",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "http-body-util"
501
+ version = "0.1.3"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
504
+ dependencies = [
505
+ "bytes",
506
+ "futures-core",
507
+ "http",
508
+ "http-body",
509
+ "pin-project-lite",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "httparse"
514
+ version = "1.10.1"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
517
+
518
+ [[package]]
519
+ name = "httpdate"
520
+ version = "1.0.3"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
523
+
524
+ [[package]]
525
+ name = "hyper"
526
+ version = "1.8.1"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
529
+ dependencies = [
530
+ "atomic-waker",
531
+ "bytes",
532
+ "futures-channel",
533
+ "futures-core",
534
+ "http",
535
+ "http-body",
536
+ "httparse",
537
+ "httpdate",
538
+ "itoa",
539
+ "pin-project-lite",
540
+ "pin-utils",
541
+ "smallvec",
542
+ "tokio",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "hyper-util"
547
+ version = "0.1.20"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
550
+ dependencies = [
551
+ "bytes",
552
+ "http",
553
+ "http-body",
554
+ "hyper",
555
+ "pin-project-lite",
556
+ "tokio",
557
+ "tower-service",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "indoc"
562
+ version = "2.0.7"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
565
+ dependencies = [
566
+ "rustversion",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "is-terminal"
571
+ version = "0.4.17"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
574
+ dependencies = [
575
+ "hermit-abi",
576
+ "libc",
577
+ "windows-sys 0.61.2",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "is_terminal_polyfill"
582
+ version = "1.70.2"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
585
+
586
+ [[package]]
587
+ name = "itertools"
588
+ version = "0.10.5"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
591
+ dependencies = [
592
+ "either",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "itoa"
597
+ version = "1.0.17"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
600
+
601
+ [[package]]
602
+ name = "js-sys"
603
+ version = "0.3.88"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "c7e709f3e3d22866f9c25b3aff01af289b18422cc8b4262fb19103ee80fe513d"
606
+ dependencies = [
607
+ "once_cell",
608
+ "wasm-bindgen",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "klock-cli"
613
+ version = "0.1.0"
614
+ dependencies = [
615
+ "axum",
616
+ "clap",
617
+ "klock-core",
618
+ "serde",
619
+ "serde_json",
620
+ "tokio",
621
+ "tower",
622
+ "tower-http",
623
+ "tracing",
624
+ "tracing-subscriber",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "klock-core"
629
+ version = "0.1.0"
630
+ dependencies = [
631
+ "criterion",
632
+ "nanoid",
633
+ "rusqlite",
634
+ "serde",
635
+ "serde_json",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "klock-js"
640
+ version = "0.1.0"
641
+ dependencies = [
642
+ "klock-core",
643
+ "napi",
644
+ "napi-build",
645
+ "napi-derive",
646
+ "serde",
647
+ "serde_json",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "klock-py"
652
+ version = "0.1.0"
653
+ dependencies = [
654
+ "klock-core",
655
+ "pyo3",
656
+ "serde",
657
+ "serde_json",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "lazy_static"
662
+ version = "1.5.0"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
665
+
666
+ [[package]]
667
+ name = "libc"
668
+ version = "0.2.182"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
671
+
672
+ [[package]]
673
+ name = "libloading"
674
+ version = "0.8.9"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
677
+ dependencies = [
678
+ "cfg-if",
679
+ "windows-link",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "libsqlite3-sys"
684
+ version = "0.30.1"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
687
+ dependencies = [
688
+ "cc",
689
+ "pkg-config",
690
+ "vcpkg",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "lock_api"
695
+ version = "0.4.14"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
698
+ dependencies = [
699
+ "scopeguard",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "log"
704
+ version = "0.4.29"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
707
+
708
+ [[package]]
709
+ name = "matchit"
710
+ version = "0.8.4"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
713
+
714
+ [[package]]
715
+ name = "memchr"
716
+ version = "2.8.0"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
719
+
720
+ [[package]]
721
+ name = "memoffset"
722
+ version = "0.9.1"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
725
+ dependencies = [
726
+ "autocfg",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "mime"
731
+ version = "0.3.17"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
734
+
735
+ [[package]]
736
+ name = "mio"
737
+ version = "1.1.1"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
740
+ dependencies = [
741
+ "libc",
742
+ "wasi",
743
+ "windows-sys 0.61.2",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "nanoid"
748
+ version = "0.4.0"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8"
751
+ dependencies = [
752
+ "rand",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "napi"
757
+ version = "2.16.17"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
760
+ dependencies = [
761
+ "bitflags",
762
+ "ctor",
763
+ "napi-derive",
764
+ "napi-sys",
765
+ "once_cell",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "napi-build"
770
+ version = "2.3.1"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
773
+
774
+ [[package]]
775
+ name = "napi-derive"
776
+ version = "2.16.13"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
779
+ dependencies = [
780
+ "cfg-if",
781
+ "convert_case",
782
+ "napi-derive-backend",
783
+ "proc-macro2",
784
+ "quote",
785
+ "syn",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "napi-derive-backend"
790
+ version = "1.0.75"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
793
+ dependencies = [
794
+ "convert_case",
795
+ "once_cell",
796
+ "proc-macro2",
797
+ "quote",
798
+ "regex",
799
+ "semver",
800
+ "syn",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "napi-sys"
805
+ version = "2.4.0"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
808
+ dependencies = [
809
+ "libloading",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "nu-ansi-term"
814
+ version = "0.50.3"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
817
+ dependencies = [
818
+ "windows-sys 0.61.2",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "num-traits"
823
+ version = "0.2.19"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
826
+ dependencies = [
827
+ "autocfg",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "once_cell"
832
+ version = "1.21.3"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
835
+
836
+ [[package]]
837
+ name = "once_cell_polyfill"
838
+ version = "1.70.2"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
841
+
842
+ [[package]]
843
+ name = "oorandom"
844
+ version = "11.1.5"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
847
+
848
+ [[package]]
849
+ name = "parking_lot"
850
+ version = "0.12.5"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
853
+ dependencies = [
854
+ "lock_api",
855
+ "parking_lot_core",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "parking_lot_core"
860
+ version = "0.9.12"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
863
+ dependencies = [
864
+ "cfg-if",
865
+ "libc",
866
+ "redox_syscall",
867
+ "smallvec",
868
+ "windows-link",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "percent-encoding"
873
+ version = "2.3.2"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
876
+
877
+ [[package]]
878
+ name = "pin-project-lite"
879
+ version = "0.2.16"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
882
+
883
+ [[package]]
884
+ name = "pin-utils"
885
+ version = "0.1.0"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
888
+
889
+ [[package]]
890
+ name = "pkg-config"
891
+ version = "0.3.32"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
894
+
895
+ [[package]]
896
+ name = "plotters"
897
+ version = "0.3.7"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
900
+ dependencies = [
901
+ "num-traits",
902
+ "plotters-backend",
903
+ "plotters-svg",
904
+ "wasm-bindgen",
905
+ "web-sys",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "plotters-backend"
910
+ version = "0.3.7"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
913
+
914
+ [[package]]
915
+ name = "plotters-svg"
916
+ version = "0.3.7"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
919
+ dependencies = [
920
+ "plotters-backend",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "portable-atomic"
925
+ version = "1.13.1"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
928
+
929
+ [[package]]
930
+ name = "ppv-lite86"
931
+ version = "0.2.21"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
934
+ dependencies = [
935
+ "zerocopy",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "proc-macro2"
940
+ version = "1.0.106"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
943
+ dependencies = [
944
+ "unicode-ident",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "pyo3"
949
+ version = "0.24.2"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
952
+ dependencies = [
953
+ "cfg-if",
954
+ "indoc",
955
+ "libc",
956
+ "memoffset",
957
+ "once_cell",
958
+ "portable-atomic",
959
+ "pyo3-build-config",
960
+ "pyo3-ffi",
961
+ "pyo3-macros",
962
+ "unindent",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "pyo3-build-config"
967
+ version = "0.24.2"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
970
+ dependencies = [
971
+ "once_cell",
972
+ "target-lexicon",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "pyo3-ffi"
977
+ version = "0.24.2"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
980
+ dependencies = [
981
+ "libc",
982
+ "pyo3-build-config",
983
+ ]
984
+
985
+ [[package]]
986
+ name = "pyo3-macros"
987
+ version = "0.24.2"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
990
+ dependencies = [
991
+ "proc-macro2",
992
+ "pyo3-macros-backend",
993
+ "quote",
994
+ "syn",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "pyo3-macros-backend"
999
+ version = "0.24.2"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
1002
+ dependencies = [
1003
+ "heck",
1004
+ "proc-macro2",
1005
+ "pyo3-build-config",
1006
+ "quote",
1007
+ "syn",
1008
+ ]
1009
+
1010
+ [[package]]
1011
+ name = "quote"
1012
+ version = "1.0.44"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1015
+ dependencies = [
1016
+ "proc-macro2",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "rand"
1021
+ version = "0.8.5"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1024
+ dependencies = [
1025
+ "libc",
1026
+ "rand_chacha",
1027
+ "rand_core",
1028
+ ]
1029
+
1030
+ [[package]]
1031
+ name = "rand_chacha"
1032
+ version = "0.3.1"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1035
+ dependencies = [
1036
+ "ppv-lite86",
1037
+ "rand_core",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "rand_core"
1042
+ version = "0.6.4"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1045
+ dependencies = [
1046
+ "getrandom",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "rayon"
1051
+ version = "1.11.0"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1054
+ dependencies = [
1055
+ "either",
1056
+ "rayon-core",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "rayon-core"
1061
+ version = "1.13.0"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1064
+ dependencies = [
1065
+ "crossbeam-deque",
1066
+ "crossbeam-utils",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "redox_syscall"
1071
+ version = "0.5.18"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1074
+ dependencies = [
1075
+ "bitflags",
1076
+ ]
1077
+
1078
+ [[package]]
1079
+ name = "regex"
1080
+ version = "1.12.3"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1083
+ dependencies = [
1084
+ "aho-corasick",
1085
+ "memchr",
1086
+ "regex-automata",
1087
+ "regex-syntax",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "regex-automata"
1092
+ version = "0.4.14"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1095
+ dependencies = [
1096
+ "aho-corasick",
1097
+ "memchr",
1098
+ "regex-syntax",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "regex-syntax"
1103
+ version = "0.8.9"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
1106
+
1107
+ [[package]]
1108
+ name = "rusqlite"
1109
+ version = "0.32.1"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
1112
+ dependencies = [
1113
+ "bitflags",
1114
+ "fallible-iterator",
1115
+ "fallible-streaming-iterator",
1116
+ "hashlink",
1117
+ "libsqlite3-sys",
1118
+ "smallvec",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "rustversion"
1123
+ version = "1.0.22"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1126
+
1127
+ [[package]]
1128
+ name = "ryu"
1129
+ version = "1.0.23"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1132
+
1133
+ [[package]]
1134
+ name = "same-file"
1135
+ version = "1.0.6"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1138
+ dependencies = [
1139
+ "winapi-util",
1140
+ ]
1141
+
1142
+ [[package]]
1143
+ name = "scopeguard"
1144
+ version = "1.2.0"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1147
+
1148
+ [[package]]
1149
+ name = "semver"
1150
+ version = "1.0.27"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1153
+
1154
+ [[package]]
1155
+ name = "serde"
1156
+ version = "1.0.228"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1159
+ dependencies = [
1160
+ "serde_core",
1161
+ "serde_derive",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "serde_core"
1166
+ version = "1.0.228"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1169
+ dependencies = [
1170
+ "serde_derive",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "serde_derive"
1175
+ version = "1.0.228"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1178
+ dependencies = [
1179
+ "proc-macro2",
1180
+ "quote",
1181
+ "syn",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "serde_json"
1186
+ version = "1.0.149"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1189
+ dependencies = [
1190
+ "itoa",
1191
+ "memchr",
1192
+ "serde",
1193
+ "serde_core",
1194
+ "zmij",
1195
+ ]
1196
+
1197
+ [[package]]
1198
+ name = "serde_path_to_error"
1199
+ version = "0.1.20"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
1202
+ dependencies = [
1203
+ "itoa",
1204
+ "serde",
1205
+ "serde_core",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "serde_urlencoded"
1210
+ version = "0.7.1"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1213
+ dependencies = [
1214
+ "form_urlencoded",
1215
+ "itoa",
1216
+ "ryu",
1217
+ "serde",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "sharded-slab"
1222
+ version = "0.1.7"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1225
+ dependencies = [
1226
+ "lazy_static",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "shlex"
1231
+ version = "1.3.0"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1234
+
1235
+ [[package]]
1236
+ name = "signal-hook-registry"
1237
+ version = "1.4.8"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1240
+ dependencies = [
1241
+ "errno",
1242
+ "libc",
1243
+ ]
1244
+
1245
+ [[package]]
1246
+ name = "slab"
1247
+ version = "0.4.12"
1248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1249
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1250
+
1251
+ [[package]]
1252
+ name = "smallvec"
1253
+ version = "1.15.1"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1256
+
1257
+ [[package]]
1258
+ name = "socket2"
1259
+ version = "0.6.2"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
1262
+ dependencies = [
1263
+ "libc",
1264
+ "windows-sys 0.60.2",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "strsim"
1269
+ version = "0.11.1"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1272
+
1273
+ [[package]]
1274
+ name = "syn"
1275
+ version = "2.0.117"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1278
+ dependencies = [
1279
+ "proc-macro2",
1280
+ "quote",
1281
+ "unicode-ident",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "sync_wrapper"
1286
+ version = "1.0.2"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1289
+
1290
+ [[package]]
1291
+ name = "target-lexicon"
1292
+ version = "0.13.5"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1295
+
1296
+ [[package]]
1297
+ name = "thread_local"
1298
+ version = "1.1.9"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1301
+ dependencies = [
1302
+ "cfg-if",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "tinytemplate"
1307
+ version = "1.2.1"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1310
+ dependencies = [
1311
+ "serde",
1312
+ "serde_json",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "tokio"
1317
+ version = "1.49.0"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1320
+ dependencies = [
1321
+ "bytes",
1322
+ "libc",
1323
+ "mio",
1324
+ "parking_lot",
1325
+ "pin-project-lite",
1326
+ "signal-hook-registry",
1327
+ "socket2",
1328
+ "tokio-macros",
1329
+ "windows-sys 0.61.2",
1330
+ ]
1331
+
1332
+ [[package]]
1333
+ name = "tokio-macros"
1334
+ version = "2.6.0"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
1337
+ dependencies = [
1338
+ "proc-macro2",
1339
+ "quote",
1340
+ "syn",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "tokio-util"
1345
+ version = "0.7.18"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1348
+ dependencies = [
1349
+ "bytes",
1350
+ "futures-core",
1351
+ "futures-sink",
1352
+ "pin-project-lite",
1353
+ "tokio",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "tower"
1358
+ version = "0.5.3"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1361
+ dependencies = [
1362
+ "futures-core",
1363
+ "futures-util",
1364
+ "pin-project-lite",
1365
+ "sync_wrapper",
1366
+ "tokio",
1367
+ "tokio-util",
1368
+ "tower-layer",
1369
+ "tower-service",
1370
+ "tracing",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "tower-http"
1375
+ version = "0.6.8"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
1378
+ dependencies = [
1379
+ "bitflags",
1380
+ "bytes",
1381
+ "http",
1382
+ "pin-project-lite",
1383
+ "tower-layer",
1384
+ "tower-service",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "tower-layer"
1389
+ version = "0.3.3"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1392
+
1393
+ [[package]]
1394
+ name = "tower-service"
1395
+ version = "0.3.3"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1398
+
1399
+ [[package]]
1400
+ name = "tracing"
1401
+ version = "0.1.44"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1404
+ dependencies = [
1405
+ "log",
1406
+ "pin-project-lite",
1407
+ "tracing-attributes",
1408
+ "tracing-core",
1409
+ ]
1410
+
1411
+ [[package]]
1412
+ name = "tracing-attributes"
1413
+ version = "0.1.31"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1416
+ dependencies = [
1417
+ "proc-macro2",
1418
+ "quote",
1419
+ "syn",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "tracing-core"
1424
+ version = "0.1.36"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1427
+ dependencies = [
1428
+ "once_cell",
1429
+ "valuable",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "tracing-log"
1434
+ version = "0.2.0"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1437
+ dependencies = [
1438
+ "log",
1439
+ "once_cell",
1440
+ "tracing-core",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "tracing-subscriber"
1445
+ version = "0.3.22"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
1448
+ dependencies = [
1449
+ "nu-ansi-term",
1450
+ "sharded-slab",
1451
+ "smallvec",
1452
+ "thread_local",
1453
+ "tracing-core",
1454
+ "tracing-log",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "unicode-ident"
1459
+ version = "1.0.24"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1462
+
1463
+ [[package]]
1464
+ name = "unicode-segmentation"
1465
+ version = "1.12.0"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1468
+
1469
+ [[package]]
1470
+ name = "unindent"
1471
+ version = "0.2.4"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1474
+
1475
+ [[package]]
1476
+ name = "utf8parse"
1477
+ version = "0.2.2"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1480
+
1481
+ [[package]]
1482
+ name = "valuable"
1483
+ version = "0.1.1"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1486
+
1487
+ [[package]]
1488
+ name = "vcpkg"
1489
+ version = "0.2.15"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1492
+
1493
+ [[package]]
1494
+ name = "version_check"
1495
+ version = "0.9.5"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1498
+
1499
+ [[package]]
1500
+ name = "walkdir"
1501
+ version = "2.5.0"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1504
+ dependencies = [
1505
+ "same-file",
1506
+ "winapi-util",
1507
+ ]
1508
+
1509
+ [[package]]
1510
+ name = "wasi"
1511
+ version = "0.11.1+wasi-snapshot-preview1"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1514
+
1515
+ [[package]]
1516
+ name = "wasm-bindgen"
1517
+ version = "0.2.111"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "ec1adf1535672f5b7824f817792b1afd731d7e843d2d04ec8f27e8cb51edd8ac"
1520
+ dependencies = [
1521
+ "cfg-if",
1522
+ "once_cell",
1523
+ "rustversion",
1524
+ "wasm-bindgen-macro",
1525
+ "wasm-bindgen-shared",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "wasm-bindgen-macro"
1530
+ version = "0.2.111"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "19e638317c08b21663aed4d2b9a2091450548954695ff4efa75bff5fa546b3b1"
1533
+ dependencies = [
1534
+ "quote",
1535
+ "wasm-bindgen-macro-support",
1536
+ ]
1537
+
1538
+ [[package]]
1539
+ name = "wasm-bindgen-macro-support"
1540
+ version = "0.2.111"
1541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1542
+ checksum = "2c64760850114d03d5f65457e96fc988f11f01d38fbaa51b254e4ab5809102af"
1543
+ dependencies = [
1544
+ "bumpalo",
1545
+ "proc-macro2",
1546
+ "quote",
1547
+ "syn",
1548
+ "wasm-bindgen-shared",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "wasm-bindgen-shared"
1553
+ version = "0.2.111"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "60eecd4fe26177cfa3339eb00b4a36445889ba3ad37080c2429879718e20ca41"
1556
+ dependencies = [
1557
+ "unicode-ident",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "web-sys"
1562
+ version = "0.3.88"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "9d6bb20ed2d9572df8584f6dc81d68a41a625cadc6f15999d649a70ce7e3597a"
1565
+ dependencies = [
1566
+ "js-sys",
1567
+ "wasm-bindgen",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "winapi-util"
1572
+ version = "0.1.11"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1575
+ dependencies = [
1576
+ "windows-sys 0.61.2",
1577
+ ]
1578
+
1579
+ [[package]]
1580
+ name = "windows-link"
1581
+ version = "0.2.1"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1584
+
1585
+ [[package]]
1586
+ name = "windows-sys"
1587
+ version = "0.60.2"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1590
+ dependencies = [
1591
+ "windows-targets",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "windows-sys"
1596
+ version = "0.61.2"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1599
+ dependencies = [
1600
+ "windows-link",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "windows-targets"
1605
+ version = "0.53.5"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1608
+ dependencies = [
1609
+ "windows-link",
1610
+ "windows_aarch64_gnullvm",
1611
+ "windows_aarch64_msvc",
1612
+ "windows_i686_gnu",
1613
+ "windows_i686_gnullvm",
1614
+ "windows_i686_msvc",
1615
+ "windows_x86_64_gnu",
1616
+ "windows_x86_64_gnullvm",
1617
+ "windows_x86_64_msvc",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "windows_aarch64_gnullvm"
1622
+ version = "0.53.1"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1625
+
1626
+ [[package]]
1627
+ name = "windows_aarch64_msvc"
1628
+ version = "0.53.1"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1631
+
1632
+ [[package]]
1633
+ name = "windows_i686_gnu"
1634
+ version = "0.53.1"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1637
+
1638
+ [[package]]
1639
+ name = "windows_i686_gnullvm"
1640
+ version = "0.53.1"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1643
+
1644
+ [[package]]
1645
+ name = "windows_i686_msvc"
1646
+ version = "0.53.1"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1649
+
1650
+ [[package]]
1651
+ name = "windows_x86_64_gnu"
1652
+ version = "0.53.1"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1655
+
1656
+ [[package]]
1657
+ name = "windows_x86_64_gnullvm"
1658
+ version = "0.53.1"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1661
+
1662
+ [[package]]
1663
+ name = "windows_x86_64_msvc"
1664
+ version = "0.53.1"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1667
+
1668
+ [[package]]
1669
+ name = "zerocopy"
1670
+ version = "0.8.39"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
1673
+ dependencies = [
1674
+ "zerocopy-derive",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "zerocopy-derive"
1679
+ version = "0.8.39"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
1682
+ dependencies = [
1683
+ "proc-macro2",
1684
+ "quote",
1685
+ "syn",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "zmij"
1690
+ version = "1.0.21"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"