tibet-core 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,853 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "android_system_properties"
7
+ version = "0.1.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
10
+ dependencies = [
11
+ "libc",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "autocfg"
16
+ version = "1.5.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
19
+
20
+ [[package]]
21
+ name = "base64ct"
22
+ version = "1.8.3"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
25
+
26
+ [[package]]
27
+ name = "bitflags"
28
+ version = "2.10.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
31
+
32
+ [[package]]
33
+ name = "block-buffer"
34
+ version = "0.10.4"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
37
+ dependencies = [
38
+ "generic-array",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "bumpalo"
43
+ version = "3.19.1"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
46
+
47
+ [[package]]
48
+ name = "cc"
49
+ version = "1.2.55"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
52
+ dependencies = [
53
+ "find-msvc-tools",
54
+ "shlex",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "cfg-if"
59
+ version = "1.0.4"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
62
+
63
+ [[package]]
64
+ name = "chrono"
65
+ version = "0.4.43"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
68
+ dependencies = [
69
+ "iana-time-zone",
70
+ "num-traits",
71
+ "windows-link",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "const-oid"
76
+ version = "0.9.6"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
79
+
80
+ [[package]]
81
+ name = "core-foundation-sys"
82
+ version = "0.8.7"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
85
+
86
+ [[package]]
87
+ name = "cpufeatures"
88
+ version = "0.2.17"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
91
+ dependencies = [
92
+ "libc",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "crypto-common"
97
+ version = "0.1.7"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
100
+ dependencies = [
101
+ "generic-array",
102
+ "typenum",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "curve25519-dalek"
107
+ version = "4.1.3"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
110
+ dependencies = [
111
+ "cfg-if",
112
+ "cpufeatures",
113
+ "curve25519-dalek-derive",
114
+ "digest",
115
+ "fiat-crypto",
116
+ "rustc_version",
117
+ "subtle",
118
+ "zeroize",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "curve25519-dalek-derive"
123
+ version = "0.1.1"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
126
+ dependencies = [
127
+ "proc-macro2",
128
+ "quote",
129
+ "syn",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "der"
134
+ version = "0.7.10"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
137
+ dependencies = [
138
+ "const-oid",
139
+ "zeroize",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "digest"
144
+ version = "0.10.7"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
147
+ dependencies = [
148
+ "block-buffer",
149
+ "crypto-common",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "ed25519"
154
+ version = "2.2.3"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
157
+ dependencies = [
158
+ "pkcs8",
159
+ "signature",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "ed25519-dalek"
164
+ version = "2.2.0"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
167
+ dependencies = [
168
+ "curve25519-dalek",
169
+ "ed25519",
170
+ "rand_core",
171
+ "serde",
172
+ "sha2",
173
+ "subtle",
174
+ "zeroize",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "fiat-crypto"
179
+ version = "0.2.9"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
182
+
183
+ [[package]]
184
+ name = "find-msvc-tools"
185
+ version = "0.1.9"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
188
+
189
+ [[package]]
190
+ name = "generic-array"
191
+ version = "0.14.7"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
194
+ dependencies = [
195
+ "typenum",
196
+ "version_check",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "getrandom"
201
+ version = "0.2.17"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
204
+ dependencies = [
205
+ "cfg-if",
206
+ "js-sys",
207
+ "libc",
208
+ "wasi",
209
+ "wasm-bindgen",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "getrandom"
214
+ version = "0.3.4"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
217
+ dependencies = [
218
+ "cfg-if",
219
+ "libc",
220
+ "r-efi",
221
+ "wasip2",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "heck"
226
+ version = "0.4.1"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
229
+
230
+ [[package]]
231
+ name = "hex"
232
+ version = "0.4.3"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
235
+
236
+ [[package]]
237
+ name = "iana-time-zone"
238
+ version = "0.1.65"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
241
+ dependencies = [
242
+ "android_system_properties",
243
+ "core-foundation-sys",
244
+ "iana-time-zone-haiku",
245
+ "js-sys",
246
+ "log",
247
+ "wasm-bindgen",
248
+ "windows-core",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "iana-time-zone-haiku"
253
+ version = "0.1.2"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
256
+ dependencies = [
257
+ "cc",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "indoc"
262
+ version = "2.0.7"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
265
+ dependencies = [
266
+ "rustversion",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "itoa"
271
+ version = "1.0.17"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
274
+
275
+ [[package]]
276
+ name = "js-sys"
277
+ version = "0.3.85"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
280
+ dependencies = [
281
+ "once_cell",
282
+ "wasm-bindgen",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "libc"
287
+ version = "0.2.180"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
290
+
291
+ [[package]]
292
+ name = "lock_api"
293
+ version = "0.4.14"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
296
+ dependencies = [
297
+ "scopeguard",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "log"
302
+ version = "0.4.29"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
305
+
306
+ [[package]]
307
+ name = "memchr"
308
+ version = "2.7.6"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
311
+
312
+ [[package]]
313
+ name = "memoffset"
314
+ version = "0.9.1"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
317
+ dependencies = [
318
+ "autocfg",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "num-traits"
323
+ version = "0.2.19"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
326
+ dependencies = [
327
+ "autocfg",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "once_cell"
332
+ version = "1.21.3"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
335
+
336
+ [[package]]
337
+ name = "parking_lot"
338
+ version = "0.12.5"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
341
+ dependencies = [
342
+ "lock_api",
343
+ "parking_lot_core",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "parking_lot_core"
348
+ version = "0.9.12"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
351
+ dependencies = [
352
+ "cfg-if",
353
+ "libc",
354
+ "redox_syscall",
355
+ "smallvec",
356
+ "windows-link",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "pkcs8"
361
+ version = "0.10.2"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
364
+ dependencies = [
365
+ "der",
366
+ "spki",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "portable-atomic"
371
+ version = "1.13.1"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
374
+
375
+ [[package]]
376
+ name = "ppv-lite86"
377
+ version = "0.2.21"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
380
+ dependencies = [
381
+ "zerocopy",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "proc-macro2"
386
+ version = "1.0.106"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
389
+ dependencies = [
390
+ "unicode-ident",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "pyo3"
395
+ version = "0.20.3"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
398
+ dependencies = [
399
+ "cfg-if",
400
+ "indoc",
401
+ "libc",
402
+ "memoffset",
403
+ "parking_lot",
404
+ "portable-atomic",
405
+ "pyo3-build-config",
406
+ "pyo3-ffi",
407
+ "pyo3-macros",
408
+ "unindent",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "pyo3-build-config"
413
+ version = "0.20.3"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
416
+ dependencies = [
417
+ "once_cell",
418
+ "target-lexicon",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "pyo3-ffi"
423
+ version = "0.20.3"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
426
+ dependencies = [
427
+ "libc",
428
+ "pyo3-build-config",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "pyo3-macros"
433
+ version = "0.20.3"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
436
+ dependencies = [
437
+ "proc-macro2",
438
+ "pyo3-macros-backend",
439
+ "quote",
440
+ "syn",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "pyo3-macros-backend"
445
+ version = "0.20.3"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
448
+ dependencies = [
449
+ "heck",
450
+ "proc-macro2",
451
+ "pyo3-build-config",
452
+ "quote",
453
+ "syn",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "quote"
458
+ version = "1.0.44"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
461
+ dependencies = [
462
+ "proc-macro2",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "r-efi"
467
+ version = "5.3.0"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
470
+
471
+ [[package]]
472
+ name = "rand"
473
+ version = "0.8.5"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
476
+ dependencies = [
477
+ "libc",
478
+ "rand_chacha",
479
+ "rand_core",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "rand_chacha"
484
+ version = "0.3.1"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
487
+ dependencies = [
488
+ "ppv-lite86",
489
+ "rand_core",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "rand_core"
494
+ version = "0.6.4"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
497
+ dependencies = [
498
+ "getrandom 0.2.17",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "redox_syscall"
503
+ version = "0.5.18"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
506
+ dependencies = [
507
+ "bitflags",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "rustc_version"
512
+ version = "0.4.1"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
515
+ dependencies = [
516
+ "semver",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "rustversion"
521
+ version = "1.0.22"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
524
+
525
+ [[package]]
526
+ name = "scopeguard"
527
+ version = "1.2.0"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
530
+
531
+ [[package]]
532
+ name = "semver"
533
+ version = "1.0.27"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
536
+
537
+ [[package]]
538
+ name = "serde"
539
+ version = "1.0.228"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
542
+ dependencies = [
543
+ "serde_core",
544
+ "serde_derive",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "serde_core"
549
+ version = "1.0.228"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
552
+ dependencies = [
553
+ "serde_derive",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "serde_derive"
558
+ version = "1.0.228"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
561
+ dependencies = [
562
+ "proc-macro2",
563
+ "quote",
564
+ "syn",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "serde_json"
569
+ version = "1.0.149"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
572
+ dependencies = [
573
+ "itoa",
574
+ "memchr",
575
+ "serde",
576
+ "serde_core",
577
+ "zmij",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "sha2"
582
+ version = "0.10.9"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
585
+ dependencies = [
586
+ "cfg-if",
587
+ "cpufeatures",
588
+ "digest",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "shlex"
593
+ version = "1.3.0"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
596
+
597
+ [[package]]
598
+ name = "signature"
599
+ version = "2.2.0"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
602
+ dependencies = [
603
+ "rand_core",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "smallvec"
608
+ version = "1.15.1"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
611
+
612
+ [[package]]
613
+ name = "spki"
614
+ version = "0.7.3"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
617
+ dependencies = [
618
+ "base64ct",
619
+ "der",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "subtle"
624
+ version = "2.6.1"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
627
+
628
+ [[package]]
629
+ name = "syn"
630
+ version = "2.0.114"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
633
+ dependencies = [
634
+ "proc-macro2",
635
+ "quote",
636
+ "unicode-ident",
637
+ ]
638
+
639
+ [[package]]
640
+ name = "target-lexicon"
641
+ version = "0.12.16"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
644
+
645
+ [[package]]
646
+ name = "tibet-core"
647
+ version = "0.1.0"
648
+ dependencies = [
649
+ "chrono",
650
+ "ed25519-dalek",
651
+ "getrandom 0.2.17",
652
+ "hex",
653
+ "pyo3",
654
+ "rand",
655
+ "rand_core",
656
+ "serde",
657
+ "serde_json",
658
+ "sha2",
659
+ "uuid",
660
+ "wasm-bindgen",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "typenum"
665
+ version = "1.19.0"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
668
+
669
+ [[package]]
670
+ name = "unicode-ident"
671
+ version = "1.0.22"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
674
+
675
+ [[package]]
676
+ name = "unindent"
677
+ version = "0.2.4"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
680
+
681
+ [[package]]
682
+ name = "uuid"
683
+ version = "1.20.0"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
686
+ dependencies = [
687
+ "getrandom 0.3.4",
688
+ "js-sys",
689
+ "wasm-bindgen",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "version_check"
694
+ version = "0.9.5"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
697
+
698
+ [[package]]
699
+ name = "wasi"
700
+ version = "0.11.1+wasi-snapshot-preview1"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
703
+
704
+ [[package]]
705
+ name = "wasip2"
706
+ version = "1.0.2+wasi-0.2.9"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
709
+ dependencies = [
710
+ "wit-bindgen",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "wasm-bindgen"
715
+ version = "0.2.108"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
718
+ dependencies = [
719
+ "cfg-if",
720
+ "once_cell",
721
+ "rustversion",
722
+ "wasm-bindgen-macro",
723
+ "wasm-bindgen-shared",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "wasm-bindgen-macro"
728
+ version = "0.2.108"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
731
+ dependencies = [
732
+ "quote",
733
+ "wasm-bindgen-macro-support",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "wasm-bindgen-macro-support"
738
+ version = "0.2.108"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
741
+ dependencies = [
742
+ "bumpalo",
743
+ "proc-macro2",
744
+ "quote",
745
+ "syn",
746
+ "wasm-bindgen-shared",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "wasm-bindgen-shared"
751
+ version = "0.2.108"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
754
+ dependencies = [
755
+ "unicode-ident",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "windows-core"
760
+ version = "0.62.2"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
763
+ dependencies = [
764
+ "windows-implement",
765
+ "windows-interface",
766
+ "windows-link",
767
+ "windows-result",
768
+ "windows-strings",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "windows-implement"
773
+ version = "0.60.2"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
776
+ dependencies = [
777
+ "proc-macro2",
778
+ "quote",
779
+ "syn",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "windows-interface"
784
+ version = "0.59.3"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
787
+ dependencies = [
788
+ "proc-macro2",
789
+ "quote",
790
+ "syn",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "windows-link"
795
+ version = "0.2.1"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
798
+
799
+ [[package]]
800
+ name = "windows-result"
801
+ version = "0.4.1"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
804
+ dependencies = [
805
+ "windows-link",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "windows-strings"
810
+ version = "0.5.1"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
813
+ dependencies = [
814
+ "windows-link",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "wit-bindgen"
819
+ version = "0.51.0"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
822
+
823
+ [[package]]
824
+ name = "zerocopy"
825
+ version = "0.8.37"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "7456cf00f0685ad319c5b1693f291a650eaf345e941d082fc4e03df8a03996ac"
828
+ dependencies = [
829
+ "zerocopy-derive",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "zerocopy-derive"
834
+ version = "0.8.37"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "1328722bbf2115db7e19d69ebcc15e795719e2d66b60827c6a69a117365e37a0"
837
+ dependencies = [
838
+ "proc-macro2",
839
+ "quote",
840
+ "syn",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "zeroize"
845
+ version = "1.8.2"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
848
+
849
+ [[package]]
850
+ name = "zmij"
851
+ version = "1.0.19"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445"