confium 0.3.2-aarch64-linux

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.
Files changed (45) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +183 -0
  3. data/Cargo.lock +2635 -0
  4. data/Cargo.toml +9 -0
  5. data/LICENSE.txt +21 -0
  6. data/README.adoc +139 -0
  7. data/Rakefile +30 -0
  8. data/confium.gemspec +56 -0
  9. data/lib/confium/audit.rb +125 -0
  10. data/lib/confium/cfm.rb +23 -0
  11. data/lib/confium/crypto.rb +50 -0
  12. data/lib/confium/digest.rb +62 -0
  13. data/lib/confium/errors/coerce.rb +47 -0
  14. data/lib/confium/errors/crypto_error.rb +15 -0
  15. data/lib/confium/errors/index_error.rb +15 -0
  16. data/lib/confium/errors/not_found_error.rb +15 -0
  17. data/lib/confium/errors/parse_error.rb +15 -0
  18. data/lib/confium/errors/policy_violation_error.rb +15 -0
  19. data/lib/confium/errors/threshold_error.rb +16 -0
  20. data/lib/confium/errors/unresolved_signer_error.rb +14 -0
  21. data/lib/confium/errors/validation_error.rb +17 -0
  22. data/lib/confium/errors/verification_error.rb +15 -0
  23. data/lib/confium/errors.rb +26 -0
  24. data/lib/confium/ffi.rb +23 -0
  25. data/lib/confium/lib.rb +33 -0
  26. data/lib/confium/openpgp.rb +34 -0
  27. data/lib/confium/pki/certificate_builder.rb +60 -0
  28. data/lib/confium/pki/cms/signed_data_builder.rb +92 -0
  29. data/lib/confium/pki/cms.rb +15 -0
  30. data/lib/confium/pki/cnml.rb +80 -0
  31. data/lib/confium/pki.rb +13 -0
  32. data/lib/confium/policy.rb +138 -0
  33. data/lib/confium/secure_bytes.rb +126 -0
  34. data/lib/confium/tc/coordinator.rb +68 -0
  35. data/lib/confium/tc/session.rb +51 -0
  36. data/lib/confium/tc/session_stub.rb +43 -0
  37. data/lib/confium/tc/share_file.rb +87 -0
  38. data/lib/confium/tc.rb +17 -0
  39. data/lib/confium/transparency/ots.rb +63 -0
  40. data/lib/confium/version.rb +5 -0
  41. data/lib/confium.rb +71 -0
  42. data/lib/confium_native/3.1/confium_native.so +0 -0
  43. data/lib/confium_native/3.2/confium_native.so +0 -0
  44. data/lib/confium_native/3.3/confium_native.so +0 -0
  45. metadata +178 -0
data/Cargo.lock ADDED
@@ -0,0 +1,2635 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aead"
13
+ version = "0.5.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
16
+ dependencies = [
17
+ "crypto-common",
18
+ "generic-array",
19
+ ]
20
+
21
+ [[package]]
22
+ name = "aes"
23
+ version = "0.8.4"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
26
+ dependencies = [
27
+ "cfg-if",
28
+ "cipher",
29
+ "cpufeatures",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "aes-gcm"
34
+ version = "0.10.3"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
37
+ dependencies = [
38
+ "aead",
39
+ "aes",
40
+ "cipher",
41
+ "ctr",
42
+ "ghash",
43
+ "subtle",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "aho-corasick"
48
+ version = "1.1.4"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
51
+ dependencies = [
52
+ "memchr",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "allocator-api2"
57
+ version = "0.2.21"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
60
+
61
+ [[package]]
62
+ name = "android_system_properties"
63
+ version = "0.1.5"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
66
+ dependencies = [
67
+ "libc",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "autocfg"
72
+ version = "1.5.1"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
75
+
76
+ [[package]]
77
+ name = "base16ct"
78
+ version = "0.2.0"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
81
+
82
+ [[package]]
83
+ name = "base64"
84
+ version = "0.22.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
87
+
88
+ [[package]]
89
+ name = "base64ct"
90
+ version = "1.8.3"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
93
+
94
+ [[package]]
95
+ name = "bindgen"
96
+ version = "0.72.1"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
99
+ dependencies = [
100
+ "bitflags",
101
+ "cexpr",
102
+ "clang-sys",
103
+ "itertools",
104
+ "log",
105
+ "prettyplease",
106
+ "proc-macro2",
107
+ "quote",
108
+ "regex",
109
+ "rustc-hash",
110
+ "shlex 1.3.0",
111
+ "syn 2.0.119",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "bitflags"
116
+ version = "2.13.1"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
119
+
120
+ [[package]]
121
+ name = "bitvec"
122
+ version = "1.1.1"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
125
+ dependencies = [
126
+ "funty",
127
+ "radium",
128
+ "tap",
129
+ "wyz",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "block-buffer"
134
+ version = "0.10.4"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
137
+ dependencies = [
138
+ "generic-array",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "botan-src"
143
+ version = "0.31200.0"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "dce062ff9328d757ea205177cab939e6ce2aeb7a64bb559263fbe9251c5b1f5b"
146
+ dependencies = [
147
+ "lzma-rs",
148
+ "sha2",
149
+ "tar",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "bumpalo"
154
+ version = "3.20.3"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
157
+
158
+ [[package]]
159
+ name = "byteorder"
160
+ version = "1.5.0"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
163
+
164
+ [[package]]
165
+ name = "bytes"
166
+ version = "1.12.1"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
169
+
170
+ [[package]]
171
+ name = "cc"
172
+ version = "1.4.0"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
175
+ dependencies = [
176
+ "find-msvc-tools",
177
+ "shlex 2.0.1",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "cexpr"
182
+ version = "0.6.0"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
185
+ dependencies = [
186
+ "nom",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "cfg-if"
191
+ version = "1.0.4"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
194
+
195
+ [[package]]
196
+ name = "chrono"
197
+ version = "0.4.45"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
200
+ dependencies = [
201
+ "iana-time-zone",
202
+ "js-sys",
203
+ "num-traits",
204
+ "serde",
205
+ "wasm-bindgen",
206
+ "windows-link",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "cipher"
211
+ version = "0.4.4"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
214
+ dependencies = [
215
+ "crypto-common",
216
+ "inout",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "clang-sys"
221
+ version = "1.8.1"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
224
+ dependencies = [
225
+ "glob",
226
+ "libc",
227
+ "libloading",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "cmake"
232
+ version = "0.1.58"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
235
+ dependencies = [
236
+ "cc",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "confium-api"
241
+ version = "0.3.0"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "edbc3fc8f6518e979ff76837b40c543b85bfc764bac2855d87ae79c68cbfcc5a"
244
+ dependencies = [
245
+ "confium-macros",
246
+ "inventory",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "confium-attributes"
251
+ version = "0.3.1"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "7edc7e251d9a65d428e223ff795986e9983eff5430cc1029ddacc4451f26299a"
254
+ dependencies = [
255
+ "serde",
256
+ "serde_json",
257
+ "thiserror",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "confium-composite"
262
+ version = "0.3.1"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "317ed25adf9a1aad00722a215c3397dea694fcdf90730542e82acdea559644aa"
265
+ dependencies = [
266
+ "ed25519-dalek",
267
+ "p256",
268
+ "rand_core",
269
+ "serde",
270
+ "serde_json",
271
+ "sha2",
272
+ "thiserror",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "confium-coordinator"
277
+ version = "0.3.0"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "e8c96d4d5997726cf0eb794410e3e8bbce839cfba9c4a32e26ede0c076b02e64"
280
+ dependencies = [
281
+ "chrono",
282
+ "confium-api",
283
+ "confium-net",
284
+ "confium-store",
285
+ "confium-tc-core",
286
+ "data-encoding",
287
+ "hex",
288
+ "hmac",
289
+ "inventory",
290
+ "num-bigint",
291
+ "num-traits",
292
+ "p256",
293
+ "rand_core",
294
+ "serde",
295
+ "serde_json",
296
+ "sha2",
297
+ "snafu 0.8.9",
298
+ "thiserror",
299
+ "tracing",
300
+ "zeroize",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "confium-core"
305
+ version = "0.2.0"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "3c04ce5720fe1ce32a7b4809e2d6325f39ce9cd5795f4bd2a53c45fcfc5eae02"
308
+ dependencies = [
309
+ "aes-gcm",
310
+ "inventory",
311
+ "libloading",
312
+ "rand",
313
+ "snafu 0.8.9",
314
+ "zeroize",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "confium-crypto-vss"
319
+ version = "0.3.0"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "19bea8bcb5a76b88ccca2471352176ea234e86c1360982f4a1d7357c2f89ab73"
322
+ dependencies = [
323
+ "hex",
324
+ "hmac",
325
+ "num-bigint",
326
+ "num-integer",
327
+ "num-traits",
328
+ "p256",
329
+ "rand",
330
+ "rand_core",
331
+ "serde",
332
+ "serde_json",
333
+ "sha2",
334
+ "subtle",
335
+ "thiserror",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "confium-crypto-zk"
340
+ version = "0.3.0"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "f65c763c1e55aee550db1ba49ba0b97fbfd8373766e4ca48d9ca742897c82f34"
343
+ dependencies = [
344
+ "hex",
345
+ "hmac",
346
+ "num-bigint",
347
+ "num-traits",
348
+ "p256",
349
+ "rand_core",
350
+ "serde",
351
+ "serde_json",
352
+ "sha2",
353
+ "thiserror",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "confium-deployment"
358
+ version = "0.3.0"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "885be74ce71dceef7c5ccfad937723b99b556fdf2d003d2ca774cf42d1d7e50e"
361
+ dependencies = [
362
+ "chrono",
363
+ "data-encoding",
364
+ "serde",
365
+ "serde_json",
366
+ "snafu 0.8.9",
367
+ "thiserror",
368
+ "toml",
369
+ "url",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "confium-macros"
374
+ version = "0.3.0"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "783f0dbfa6cd490f4670a5491254f4122d1f87604931724d99a2de37f0a73123"
377
+ dependencies = [
378
+ "proc-macro2",
379
+ "quote",
380
+ "syn 2.0.119",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "confium-net"
385
+ version = "0.3.0"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "98a17fd08f3f04772fa0227e0855d38d7de0637996fb44e058da098e069fab28"
388
+ dependencies = [
389
+ "confium-api",
390
+ "inventory",
391
+ "snafu 0.8.9",
392
+ "url",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "confium-observability"
397
+ version = "0.3.0"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "767f898b6437a5cc67d403140bcf8cd1dbffa35a450afe28c64147e3175ee091"
400
+ dependencies = [
401
+ "chrono",
402
+ "hex",
403
+ "hmac",
404
+ "rand_core",
405
+ "serde",
406
+ "serde_json",
407
+ "sha2",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "confium-pki"
412
+ version = "0.3.1"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "b68dff75f1a02a0acf9145740a8e837b9c8f25cf4c71bad08d0c2b2c9bf2ac61"
415
+ dependencies = [
416
+ "chrono",
417
+ "data-encoding",
418
+ "der",
419
+ "serde",
420
+ "serde_json",
421
+ "sha2",
422
+ "snafu 0.8.9",
423
+ "spki",
424
+ "thiserror",
425
+ "x509-cert",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "confium-privacy"
430
+ version = "0.3.0"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "6dcbe8f16e42291a63bcc480745653aa1ad993982fb708531778270de9677dd9"
433
+ dependencies = [
434
+ "chrono",
435
+ "hex",
436
+ "hmac",
437
+ "num-bigint",
438
+ "num-traits",
439
+ "p256",
440
+ "rand",
441
+ "rand_core",
442
+ "serde",
443
+ "serde_json",
444
+ "sha2",
445
+ "thiserror",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "confium-store"
450
+ version = "0.3.0"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "66f760cf6182b532f7746b95842e2b4599ab78a5bbe35af2992df309417e5975"
453
+ dependencies = [
454
+ "confium-api",
455
+ "inventory",
456
+ "snafu 0.8.9",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "confium-tc"
461
+ version = "0.3.1"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "3dd7d4965aef12324cb76d397294c317b83b774de029f1d37b387cf54ba9593c"
464
+ dependencies = [
465
+ "chrono",
466
+ "confium-api",
467
+ "confium-coordinator",
468
+ "confium-net",
469
+ "confium-store",
470
+ "confium-tc-keys",
471
+ "data-encoding",
472
+ "hex",
473
+ "hmac",
474
+ "inventory",
475
+ "num-bigint",
476
+ "num-integer",
477
+ "num-prime",
478
+ "num-traits",
479
+ "p256",
480
+ "rand",
481
+ "rand_core",
482
+ "serde",
483
+ "serde_json",
484
+ "sha2",
485
+ "snafu 0.8.9",
486
+ "subtle",
487
+ "thiserror",
488
+ "tracing",
489
+ "zeroize",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "confium-tc-cmp20"
494
+ version = "0.3.1"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "7f28758121e44a86beefdf54a63428ab9bd9ec7a3797f7c065351b876518815c"
497
+ dependencies = [
498
+ "confium-tc",
499
+ "confium-tc-core",
500
+ "crypto-bigint",
501
+ "elliptic-curve",
502
+ "hex",
503
+ "inventory",
504
+ "num-bigint",
505
+ "num-integer",
506
+ "num-traits",
507
+ "p256",
508
+ "rand",
509
+ "sha2",
510
+ "snafu 0.8.9",
511
+ "zeroize",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "confium-tc-core"
516
+ version = "0.3.0"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "add3e15337ce81944f78c9ce844d870a081cbe91506a85b9a5c4e4c0da983771"
519
+ dependencies = [
520
+ "chrono",
521
+ "confium-api",
522
+ "confium-net",
523
+ "confium-store",
524
+ "data-encoding",
525
+ "hex",
526
+ "hmac",
527
+ "inventory",
528
+ "p256",
529
+ "rand_core",
530
+ "serde",
531
+ "serde_json",
532
+ "sha2",
533
+ "snafu 0.8.9",
534
+ "subtle",
535
+ "thiserror",
536
+ "tracing",
537
+ "zeroize",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "confium-tc-elgamal-p256"
542
+ version = "0.3.0"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "113058b4f2c468c2b3e8c218e88bd43aa282af99c121936ae0bb73d9051371a8"
545
+ dependencies = [
546
+ "elliptic-curve",
547
+ "p256",
548
+ "serde",
549
+ "sha2",
550
+ "thiserror",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "confium-tc-frost-p256"
555
+ version = "0.3.0"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "f7da5dc941047eb374b15ee3a31e78df1a07036a95aab48b134ee2c3d86b621d"
558
+ dependencies = [
559
+ "elliptic-curve",
560
+ "hex",
561
+ "p256",
562
+ "rand_core",
563
+ "serde",
564
+ "sha2",
565
+ "thiserror",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "confium-tc-gg18"
570
+ version = "0.3.1"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "f5e3522da6c2352ff26f1a0719781e8f392cdfb7c264c681c87d0f0207540384"
573
+ dependencies = [
574
+ "confium-tc",
575
+ "confium-tc-core",
576
+ "crypto-bigint",
577
+ "elliptic-curve",
578
+ "hex",
579
+ "inventory",
580
+ "p256",
581
+ "sha2",
582
+ "snafu 0.8.9",
583
+ "zeroize",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "confium-tc-keys"
588
+ version = "0.3.0"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "476fce2efcefa4d7a48cfe5accecd1bc3f39959b5ea719fdedac9cfcbfeeb710"
591
+ dependencies = [
592
+ "chrono",
593
+ "confium-tc-core",
594
+ "hex",
595
+ "hmac",
596
+ "p256",
597
+ "rand_core",
598
+ "serde",
599
+ "serde_json",
600
+ "sha2",
601
+ "subtle",
602
+ "thiserror",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "confium-transparency"
607
+ version = "0.4.0"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "874cdab3dded22c22980d3a5b1f802301739368a32e9196bc645600329c07dcf"
610
+ dependencies = [
611
+ "chrono",
612
+ "data-encoding",
613
+ "serde",
614
+ "serde_json",
615
+ "sha2",
616
+ "snafu 0.8.9",
617
+ "thiserror",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "confium_native"
622
+ version = "0.3.0"
623
+ dependencies = [
624
+ "chrono",
625
+ "confium-attributes",
626
+ "confium-composite",
627
+ "confium-core",
628
+ "confium-crypto-vss",
629
+ "confium-crypto-zk",
630
+ "confium-deployment",
631
+ "confium-observability",
632
+ "confium-pki",
633
+ "confium-privacy",
634
+ "confium-tc",
635
+ "confium-tc-cmp20",
636
+ "confium-tc-core",
637
+ "confium-tc-elgamal-p256",
638
+ "confium-tc-frost-p256",
639
+ "confium-tc-gg18",
640
+ "confium-transparency",
641
+ "ed25519-dalek",
642
+ "hex",
643
+ "magnus",
644
+ "p256",
645
+ "rand_core",
646
+ "rb-sys",
647
+ "rnp-rs",
648
+ "serde_json",
649
+ "sha2",
650
+ "subtle",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "const-oid"
655
+ version = "0.9.6"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
658
+
659
+ [[package]]
660
+ name = "core-foundation-sys"
661
+ version = "0.8.7"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
664
+
665
+ [[package]]
666
+ name = "cpufeatures"
667
+ version = "0.2.17"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
670
+ dependencies = [
671
+ "libc",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "crc"
676
+ version = "3.4.0"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
679
+ dependencies = [
680
+ "crc-catalog",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "crc-catalog"
685
+ version = "2.5.0"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
688
+
689
+ [[package]]
690
+ name = "crc32fast"
691
+ version = "1.5.0"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
694
+ dependencies = [
695
+ "cfg-if",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "crypto-bigint"
700
+ version = "0.5.5"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
703
+ dependencies = [
704
+ "generic-array",
705
+ "rand_core",
706
+ "subtle",
707
+ "zeroize",
708
+ ]
709
+
710
+ [[package]]
711
+ name = "crypto-common"
712
+ version = "0.1.7"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
715
+ dependencies = [
716
+ "generic-array",
717
+ "rand_core",
718
+ "typenum",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "ctr"
723
+ version = "0.9.2"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
726
+ dependencies = [
727
+ "cipher",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "curve25519-dalek"
732
+ version = "4.1.3"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
735
+ dependencies = [
736
+ "cfg-if",
737
+ "cpufeatures",
738
+ "curve25519-dalek-derive",
739
+ "digest",
740
+ "fiat-crypto",
741
+ "rustc_version",
742
+ "subtle",
743
+ "zeroize",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "curve25519-dalek-derive"
748
+ version = "0.1.1"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
751
+ dependencies = [
752
+ "proc-macro2",
753
+ "quote",
754
+ "syn 2.0.119",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "data-encoding"
759
+ version = "2.11.0"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
762
+
763
+ [[package]]
764
+ name = "der"
765
+ version = "0.7.10"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
768
+ dependencies = [
769
+ "const-oid",
770
+ "der_derive",
771
+ "flagset",
772
+ "pem-rfc7468",
773
+ "zeroize",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "der_derive"
778
+ version = "0.7.3"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18"
781
+ dependencies = [
782
+ "proc-macro2",
783
+ "quote",
784
+ "syn 2.0.119",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "digest"
789
+ version = "0.10.7"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
792
+ dependencies = [
793
+ "block-buffer",
794
+ "const-oid",
795
+ "crypto-common",
796
+ "subtle",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "displaydoc"
801
+ version = "0.2.6"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
804
+ dependencies = [
805
+ "proc-macro2",
806
+ "quote",
807
+ "syn 2.0.119",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "ecdsa"
812
+ version = "0.16.9"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
815
+ dependencies = [
816
+ "der",
817
+ "digest",
818
+ "elliptic-curve",
819
+ "rfc6979",
820
+ "serdect",
821
+ "signature",
822
+ "spki",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "ed25519"
827
+ version = "2.2.3"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
830
+ dependencies = [
831
+ "pkcs8",
832
+ "signature",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "ed25519-dalek"
837
+ version = "2.2.0"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
840
+ dependencies = [
841
+ "curve25519-dalek",
842
+ "ed25519",
843
+ "rand_core",
844
+ "serde",
845
+ "sha2",
846
+ "subtle",
847
+ "zeroize",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "either"
852
+ version = "1.17.0"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
855
+
856
+ [[package]]
857
+ name = "elliptic-curve"
858
+ version = "0.13.8"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
861
+ dependencies = [
862
+ "base16ct",
863
+ "crypto-bigint",
864
+ "digest",
865
+ "ff",
866
+ "generic-array",
867
+ "group",
868
+ "pem-rfc7468",
869
+ "pkcs8",
870
+ "rand_core",
871
+ "sec1",
872
+ "serdect",
873
+ "subtle",
874
+ "zeroize",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "equivalent"
879
+ version = "1.0.2"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
882
+
883
+ [[package]]
884
+ name = "errno"
885
+ version = "0.3.14"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
888
+ dependencies = [
889
+ "libc",
890
+ "windows-sys 0.61.2",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "ff"
895
+ version = "0.13.1"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
898
+ dependencies = [
899
+ "rand_core",
900
+ "subtle",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "fiat-crypto"
905
+ version = "0.2.9"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
908
+
909
+ [[package]]
910
+ name = "filetime"
911
+ version = "0.2.29"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
914
+ dependencies = [
915
+ "cfg-if",
916
+ "libc",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "find-msvc-tools"
921
+ version = "0.1.9"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
924
+
925
+ [[package]]
926
+ name = "flagset"
927
+ version = "0.4.7"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe"
930
+
931
+ [[package]]
932
+ name = "flate2"
933
+ version = "1.1.9"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
936
+ dependencies = [
937
+ "crc32fast",
938
+ "miniz_oxide",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "foldhash"
943
+ version = "0.1.5"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
946
+
947
+ [[package]]
948
+ name = "form_urlencoded"
949
+ version = "1.2.2"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
952
+ dependencies = [
953
+ "percent-encoding",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "funty"
958
+ version = "2.0.0"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
961
+
962
+ [[package]]
963
+ name = "futures-core"
964
+ version = "0.3.33"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
967
+
968
+ [[package]]
969
+ name = "futures-task"
970
+ version = "0.3.33"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
973
+
974
+ [[package]]
975
+ name = "futures-util"
976
+ version = "0.3.33"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
979
+ dependencies = [
980
+ "futures-core",
981
+ "futures-task",
982
+ "pin-project-lite",
983
+ "slab",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "generic-array"
988
+ version = "0.14.7"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
991
+ dependencies = [
992
+ "typenum",
993
+ "version_check",
994
+ "zeroize",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "getrandom"
999
+ version = "0.2.17"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1002
+ dependencies = [
1003
+ "cfg-if",
1004
+ "libc",
1005
+ "wasi",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "ghash"
1010
+ version = "0.5.1"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
1013
+ dependencies = [
1014
+ "opaque-debug",
1015
+ "polyval",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "glob"
1020
+ version = "0.3.4"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
1023
+
1024
+ [[package]]
1025
+ name = "group"
1026
+ version = "0.13.0"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
1029
+ dependencies = [
1030
+ "ff",
1031
+ "rand_core",
1032
+ "subtle",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "hashbrown"
1037
+ version = "0.15.5"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1040
+ dependencies = [
1041
+ "allocator-api2",
1042
+ "equivalent",
1043
+ "foldhash",
1044
+ ]
1045
+
1046
+ [[package]]
1047
+ name = "hashbrown"
1048
+ version = "0.17.1"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1051
+
1052
+ [[package]]
1053
+ name = "heck"
1054
+ version = "0.5.0"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1057
+
1058
+ [[package]]
1059
+ name = "hex"
1060
+ version = "0.4.3"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1063
+
1064
+ [[package]]
1065
+ name = "hmac"
1066
+ version = "0.12.1"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1069
+ dependencies = [
1070
+ "digest",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "http"
1075
+ version = "1.5.0"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
1078
+ dependencies = [
1079
+ "bytes",
1080
+ "itoa",
1081
+ ]
1082
+
1083
+ [[package]]
1084
+ name = "httparse"
1085
+ version = "1.10.1"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1088
+
1089
+ [[package]]
1090
+ name = "iana-time-zone"
1091
+ version = "0.1.65"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1094
+ dependencies = [
1095
+ "android_system_properties",
1096
+ "core-foundation-sys",
1097
+ "iana-time-zone-haiku",
1098
+ "js-sys",
1099
+ "log",
1100
+ "wasm-bindgen",
1101
+ "windows-core",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "iana-time-zone-haiku"
1106
+ version = "0.1.2"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1109
+ dependencies = [
1110
+ "cc",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "icu_collections"
1115
+ version = "2.2.0"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1118
+ dependencies = [
1119
+ "displaydoc",
1120
+ "potential_utf",
1121
+ "utf8_iter",
1122
+ "yoke",
1123
+ "zerofrom",
1124
+ "zerovec",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "icu_locale_core"
1129
+ version = "2.2.0"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1132
+ dependencies = [
1133
+ "displaydoc",
1134
+ "litemap",
1135
+ "tinystr",
1136
+ "writeable",
1137
+ "zerovec",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "icu_normalizer"
1142
+ version = "2.2.0"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1145
+ dependencies = [
1146
+ "icu_collections",
1147
+ "icu_normalizer_data",
1148
+ "icu_properties",
1149
+ "icu_provider",
1150
+ "smallvec",
1151
+ "zerovec",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "icu_normalizer_data"
1156
+ version = "2.2.0"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1159
+
1160
+ [[package]]
1161
+ name = "icu_properties"
1162
+ version = "2.2.0"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1165
+ dependencies = [
1166
+ "icu_collections",
1167
+ "icu_locale_core",
1168
+ "icu_properties_data",
1169
+ "icu_provider",
1170
+ "zerotrie",
1171
+ "zerovec",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "icu_properties_data"
1176
+ version = "2.2.0"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1179
+
1180
+ [[package]]
1181
+ name = "icu_provider"
1182
+ version = "2.2.0"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1185
+ dependencies = [
1186
+ "displaydoc",
1187
+ "icu_locale_core",
1188
+ "writeable",
1189
+ "yoke",
1190
+ "zerofrom",
1191
+ "zerotrie",
1192
+ "zerovec",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "idna"
1197
+ version = "1.1.0"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1200
+ dependencies = [
1201
+ "idna_adapter",
1202
+ "smallvec",
1203
+ "utf8_iter",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "idna_adapter"
1208
+ version = "1.2.2"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1211
+ dependencies = [
1212
+ "icu_normalizer",
1213
+ "icu_properties",
1214
+ ]
1215
+
1216
+ [[package]]
1217
+ name = "indexmap"
1218
+ version = "2.14.0"
1219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1220
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1221
+ dependencies = [
1222
+ "equivalent",
1223
+ "hashbrown 0.17.1",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "inout"
1228
+ version = "0.1.4"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1231
+ dependencies = [
1232
+ "generic-array",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "inventory"
1237
+ version = "0.3.24"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
1240
+ dependencies = [
1241
+ "rustversion",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "itertools"
1246
+ version = "0.13.0"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1249
+ dependencies = [
1250
+ "either",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "itoa"
1255
+ version = "1.0.18"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1258
+
1259
+ [[package]]
1260
+ name = "js-sys"
1261
+ version = "0.3.103"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1264
+ dependencies = [
1265
+ "cfg-if",
1266
+ "futures-util",
1267
+ "wasm-bindgen",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "lazy_static"
1272
+ version = "1.5.0"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1275
+
1276
+ [[package]]
1277
+ name = "libc"
1278
+ version = "0.2.189"
1279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1280
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
1281
+
1282
+ [[package]]
1283
+ name = "libloading"
1284
+ version = "0.8.9"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1287
+ dependencies = [
1288
+ "cfg-if",
1289
+ "windows-link",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "linux-raw-sys"
1294
+ version = "0.12.1"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1297
+
1298
+ [[package]]
1299
+ name = "litemap"
1300
+ version = "0.8.2"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1303
+
1304
+ [[package]]
1305
+ name = "log"
1306
+ version = "0.4.33"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1309
+
1310
+ [[package]]
1311
+ name = "lru"
1312
+ version = "0.12.5"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
1315
+ dependencies = [
1316
+ "hashbrown 0.15.5",
1317
+ ]
1318
+
1319
+ [[package]]
1320
+ name = "lzma-rs"
1321
+ version = "0.3.0"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
1324
+ dependencies = [
1325
+ "byteorder",
1326
+ "crc",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "magnus"
1331
+ version = "0.8.2"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
1334
+ dependencies = [
1335
+ "bytes",
1336
+ "magnus-macros",
1337
+ "rb-sys",
1338
+ "rb-sys-env",
1339
+ "seq-macro",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "magnus-macros"
1344
+ version = "0.8.0"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
1347
+ dependencies = [
1348
+ "proc-macro2",
1349
+ "quote",
1350
+ "syn 2.0.119",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "memchr"
1355
+ version = "2.8.3"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
1358
+
1359
+ [[package]]
1360
+ name = "minimal-lexical"
1361
+ version = "0.2.1"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1364
+
1365
+ [[package]]
1366
+ name = "miniz_oxide"
1367
+ version = "0.8.9"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1370
+ dependencies = [
1371
+ "adler2",
1372
+ "simd-adler32",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "nom"
1377
+ version = "7.1.3"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1380
+ dependencies = [
1381
+ "memchr",
1382
+ "minimal-lexical",
1383
+ ]
1384
+
1385
+ [[package]]
1386
+ name = "num-bigint"
1387
+ version = "0.4.8"
1388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
1390
+ dependencies = [
1391
+ "num-integer",
1392
+ "num-traits",
1393
+ "rand",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "num-integer"
1398
+ version = "0.1.46"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1401
+ dependencies = [
1402
+ "num-traits",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "num-modular"
1407
+ version = "0.5.1"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "64a5fe11d4135c3bcdf3a95b18b194afa9608a5f6ff034f5d857bc9a27fb0119"
1410
+ dependencies = [
1411
+ "num-bigint",
1412
+ "num-integer",
1413
+ "num-traits",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "num-prime"
1418
+ version = "0.4.4"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "e238432a7881ec7164503ccc516c014bf009be7984cde1ba56837862543bdec3"
1421
+ dependencies = [
1422
+ "bitvec",
1423
+ "either",
1424
+ "lru",
1425
+ "num-bigint",
1426
+ "num-integer",
1427
+ "num-modular",
1428
+ "num-traits",
1429
+ "rand",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "num-traits"
1434
+ version = "0.2.19"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1437
+ dependencies = [
1438
+ "autocfg",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "once_cell"
1443
+ version = "1.21.4"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1446
+
1447
+ [[package]]
1448
+ name = "opaque-debug"
1449
+ version = "0.3.1"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
1452
+
1453
+ [[package]]
1454
+ name = "p256"
1455
+ version = "0.13.2"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
1458
+ dependencies = [
1459
+ "ecdsa",
1460
+ "elliptic-curve",
1461
+ "primeorder",
1462
+ "serdect",
1463
+ "sha2",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "pem-rfc7468"
1468
+ version = "0.7.0"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1471
+ dependencies = [
1472
+ "base64ct",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "percent-encoding"
1477
+ version = "2.3.2"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1480
+
1481
+ [[package]]
1482
+ name = "pin-project-lite"
1483
+ version = "0.2.17"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1486
+
1487
+ [[package]]
1488
+ name = "pkcs8"
1489
+ version = "0.10.2"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1492
+ dependencies = [
1493
+ "der",
1494
+ "spki",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "pkg-config"
1499
+ version = "0.3.33"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1502
+
1503
+ [[package]]
1504
+ name = "polyval"
1505
+ version = "0.6.2"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
1508
+ dependencies = [
1509
+ "cfg-if",
1510
+ "cpufeatures",
1511
+ "opaque-debug",
1512
+ "universal-hash",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "potential_utf"
1517
+ version = "0.1.5"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1520
+ dependencies = [
1521
+ "zerovec",
1522
+ ]
1523
+
1524
+ [[package]]
1525
+ name = "ppv-lite86"
1526
+ version = "0.2.21"
1527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1528
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1529
+ dependencies = [
1530
+ "zerocopy",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "prettyplease"
1535
+ version = "0.2.37"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1538
+ dependencies = [
1539
+ "proc-macro2",
1540
+ "syn 2.0.119",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "primeorder"
1545
+ version = "0.13.6"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
1548
+ dependencies = [
1549
+ "elliptic-curve",
1550
+ "serdect",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "proc-macro2"
1555
+ version = "1.0.107"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
1558
+ dependencies = [
1559
+ "unicode-ident",
1560
+ ]
1561
+
1562
+ [[package]]
1563
+ name = "quote"
1564
+ version = "1.0.47"
1565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1566
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1567
+ dependencies = [
1568
+ "proc-macro2",
1569
+ ]
1570
+
1571
+ [[package]]
1572
+ name = "radium"
1573
+ version = "0.7.0"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1576
+
1577
+ [[package]]
1578
+ name = "rand"
1579
+ version = "0.8.7"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
1582
+ dependencies = [
1583
+ "libc",
1584
+ "rand_chacha",
1585
+ "rand_core",
1586
+ ]
1587
+
1588
+ [[package]]
1589
+ name = "rand_chacha"
1590
+ version = "0.3.1"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1593
+ dependencies = [
1594
+ "ppv-lite86",
1595
+ "rand_core",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "rand_core"
1600
+ version = "0.6.4"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1603
+ dependencies = [
1604
+ "getrandom",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "rb-sys"
1609
+ version = "0.9.128"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
1612
+ dependencies = [
1613
+ "rb-sys-build",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "rb-sys-build"
1618
+ version = "0.9.128"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
1621
+ dependencies = [
1622
+ "bindgen",
1623
+ "lazy_static",
1624
+ "proc-macro2",
1625
+ "quote",
1626
+ "regex",
1627
+ "shell-words",
1628
+ "syn 2.0.119",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "rb-sys-env"
1633
+ version = "0.2.3"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
1636
+
1637
+ [[package]]
1638
+ name = "regex"
1639
+ version = "1.13.1"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1642
+ dependencies = [
1643
+ "aho-corasick",
1644
+ "memchr",
1645
+ "regex-automata",
1646
+ "regex-syntax",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "regex-automata"
1651
+ version = "0.4.16"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
1654
+ dependencies = [
1655
+ "aho-corasick",
1656
+ "memchr",
1657
+ "regex-syntax",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "regex-syntax"
1662
+ version = "0.8.11"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1665
+
1666
+ [[package]]
1667
+ name = "rfc6979"
1668
+ version = "0.4.0"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
1671
+ dependencies = [
1672
+ "hmac",
1673
+ "subtle",
1674
+ ]
1675
+
1676
+ [[package]]
1677
+ name = "ring"
1678
+ version = "0.17.14"
1679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1681
+ dependencies = [
1682
+ "cc",
1683
+ "cfg-if",
1684
+ "getrandom",
1685
+ "libc",
1686
+ "untrusted",
1687
+ "windows-sys 0.52.0",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "rnp-rs"
1692
+ version = "0.1.10"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "2a2d89cee37da7283f21f7856fca63727d5e50d2d150d8f8b124d4fcd8c6a60b"
1695
+ dependencies = [
1696
+ "bindgen",
1697
+ "pkg-config",
1698
+ "rnp-src",
1699
+ "snafu 0.9.2",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "rnp-src"
1704
+ version = "0.1.2"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "852eede0415d60b1b5b586a330b94ce014bd83df69f7388205f8cfee62840f49"
1707
+ dependencies = [
1708
+ "botan-src",
1709
+ "cmake",
1710
+ "flate2",
1711
+ "tar",
1712
+ "ureq",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "rustc-hash"
1717
+ version = "2.1.3"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1720
+
1721
+ [[package]]
1722
+ name = "rustc_version"
1723
+ version = "0.4.1"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1726
+ dependencies = [
1727
+ "semver",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "rustix"
1732
+ version = "1.1.4"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1735
+ dependencies = [
1736
+ "bitflags",
1737
+ "errno",
1738
+ "libc",
1739
+ "linux-raw-sys",
1740
+ "windows-sys 0.61.2",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "rustls"
1745
+ version = "0.23.43"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
1748
+ dependencies = [
1749
+ "log",
1750
+ "once_cell",
1751
+ "ring",
1752
+ "rustls-pki-types",
1753
+ "rustls-webpki",
1754
+ "subtle",
1755
+ "zeroize",
1756
+ ]
1757
+
1758
+ [[package]]
1759
+ name = "rustls-pki-types"
1760
+ version = "1.15.1"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
1763
+ dependencies = [
1764
+ "zeroize",
1765
+ ]
1766
+
1767
+ [[package]]
1768
+ name = "rustls-webpki"
1769
+ version = "0.103.13"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1772
+ dependencies = [
1773
+ "ring",
1774
+ "rustls-pki-types",
1775
+ "untrusted",
1776
+ ]
1777
+
1778
+ [[package]]
1779
+ name = "rustversion"
1780
+ version = "1.0.23"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1783
+
1784
+ [[package]]
1785
+ name = "sec1"
1786
+ version = "0.7.3"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
1789
+ dependencies = [
1790
+ "base16ct",
1791
+ "der",
1792
+ "generic-array",
1793
+ "pkcs8",
1794
+ "serdect",
1795
+ "subtle",
1796
+ "zeroize",
1797
+ ]
1798
+
1799
+ [[package]]
1800
+ name = "semver"
1801
+ version = "1.0.28"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1804
+
1805
+ [[package]]
1806
+ name = "seq-macro"
1807
+ version = "0.3.6"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1810
+
1811
+ [[package]]
1812
+ name = "serde"
1813
+ version = "1.0.229"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1816
+ dependencies = [
1817
+ "serde_core",
1818
+ "serde_derive",
1819
+ ]
1820
+
1821
+ [[package]]
1822
+ name = "serde_core"
1823
+ version = "1.0.229"
1824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1825
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1826
+ dependencies = [
1827
+ "serde_derive",
1828
+ ]
1829
+
1830
+ [[package]]
1831
+ name = "serde_derive"
1832
+ version = "1.0.229"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1835
+ dependencies = [
1836
+ "proc-macro2",
1837
+ "quote",
1838
+ "syn 3.0.3",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "serde_json"
1843
+ version = "1.0.151"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1846
+ dependencies = [
1847
+ "itoa",
1848
+ "memchr",
1849
+ "serde",
1850
+ "serde_core",
1851
+ "zmij",
1852
+ ]
1853
+
1854
+ [[package]]
1855
+ name = "serde_spanned"
1856
+ version = "0.6.9"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1859
+ dependencies = [
1860
+ "serde",
1861
+ ]
1862
+
1863
+ [[package]]
1864
+ name = "serdect"
1865
+ version = "0.2.0"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177"
1868
+ dependencies = [
1869
+ "base16ct",
1870
+ "serde",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "sha1"
1875
+ version = "0.10.7"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
1878
+ dependencies = [
1879
+ "cfg-if",
1880
+ "cpufeatures",
1881
+ "digest",
1882
+ ]
1883
+
1884
+ [[package]]
1885
+ name = "sha2"
1886
+ version = "0.10.9"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1889
+ dependencies = [
1890
+ "cfg-if",
1891
+ "cpufeatures",
1892
+ "digest",
1893
+ ]
1894
+
1895
+ [[package]]
1896
+ name = "shell-words"
1897
+ version = "1.1.1"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
1900
+
1901
+ [[package]]
1902
+ name = "shlex"
1903
+ version = "1.3.0"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1906
+
1907
+ [[package]]
1908
+ name = "shlex"
1909
+ version = "2.0.1"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1912
+
1913
+ [[package]]
1914
+ name = "signature"
1915
+ version = "2.2.0"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
1918
+ dependencies = [
1919
+ "digest",
1920
+ "rand_core",
1921
+ ]
1922
+
1923
+ [[package]]
1924
+ name = "simd-adler32"
1925
+ version = "0.3.10"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
1928
+
1929
+ [[package]]
1930
+ name = "slab"
1931
+ version = "0.4.12"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1934
+
1935
+ [[package]]
1936
+ name = "smallvec"
1937
+ version = "1.15.2"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1940
+
1941
+ [[package]]
1942
+ name = "snafu"
1943
+ version = "0.8.9"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "6e84b3f4eacbf3a1ce05eac6763b4d629d60cbc94d632e4092c54ade71f1e1a2"
1946
+ dependencies = [
1947
+ "snafu-derive 0.8.9",
1948
+ ]
1949
+
1950
+ [[package]]
1951
+ name = "snafu"
1952
+ version = "0.9.2"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "e45cb604038abb7b926b679887b3226d8d0f23874b66623625a0454be425a4b7"
1955
+ dependencies = [
1956
+ "snafu-derive 0.9.2",
1957
+ ]
1958
+
1959
+ [[package]]
1960
+ name = "snafu-derive"
1961
+ version = "0.8.9"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451"
1964
+ dependencies = [
1965
+ "heck",
1966
+ "proc-macro2",
1967
+ "quote",
1968
+ "syn 2.0.119",
1969
+ ]
1970
+
1971
+ [[package]]
1972
+ name = "snafu-derive"
1973
+ version = "0.9.2"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "287f59010008f0d7cf5e3b03196d666c1acc46c8d3e9cf34c28a1a7157601e72"
1976
+ dependencies = [
1977
+ "heck",
1978
+ "proc-macro2",
1979
+ "quote",
1980
+ "syn 2.0.119",
1981
+ ]
1982
+
1983
+ [[package]]
1984
+ name = "spki"
1985
+ version = "0.7.3"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
1988
+ dependencies = [
1989
+ "base64ct",
1990
+ "der",
1991
+ ]
1992
+
1993
+ [[package]]
1994
+ name = "stable_deref_trait"
1995
+ version = "1.2.1"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1998
+
1999
+ [[package]]
2000
+ name = "subtle"
2001
+ version = "2.6.1"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2004
+
2005
+ [[package]]
2006
+ name = "syn"
2007
+ version = "2.0.119"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
2010
+ dependencies = [
2011
+ "proc-macro2",
2012
+ "quote",
2013
+ "unicode-ident",
2014
+ ]
2015
+
2016
+ [[package]]
2017
+ name = "syn"
2018
+ version = "3.0.3"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
2021
+ dependencies = [
2022
+ "proc-macro2",
2023
+ "quote",
2024
+ "unicode-ident",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "synstructure"
2029
+ version = "0.13.2"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2032
+ dependencies = [
2033
+ "proc-macro2",
2034
+ "quote",
2035
+ "syn 2.0.119",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "tap"
2040
+ version = "1.0.1"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2043
+
2044
+ [[package]]
2045
+ name = "tar"
2046
+ version = "0.4.46"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
2049
+ dependencies = [
2050
+ "filetime",
2051
+ "libc",
2052
+ "xattr",
2053
+ ]
2054
+
2055
+ [[package]]
2056
+ name = "thiserror"
2057
+ version = "1.0.69"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2060
+ dependencies = [
2061
+ "thiserror-impl",
2062
+ ]
2063
+
2064
+ [[package]]
2065
+ name = "thiserror-impl"
2066
+ version = "1.0.69"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2069
+ dependencies = [
2070
+ "proc-macro2",
2071
+ "quote",
2072
+ "syn 2.0.119",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "tinystr"
2077
+ version = "0.8.3"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2080
+ dependencies = [
2081
+ "displaydoc",
2082
+ "zerovec",
2083
+ ]
2084
+
2085
+ [[package]]
2086
+ name = "tls_codec"
2087
+ version = "0.4.2"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b"
2090
+ dependencies = [
2091
+ "tls_codec_derive",
2092
+ "zeroize",
2093
+ ]
2094
+
2095
+ [[package]]
2096
+ name = "tls_codec_derive"
2097
+ version = "0.4.2"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd"
2100
+ dependencies = [
2101
+ "proc-macro2",
2102
+ "quote",
2103
+ "syn 2.0.119",
2104
+ ]
2105
+
2106
+ [[package]]
2107
+ name = "toml"
2108
+ version = "0.8.23"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2111
+ dependencies = [
2112
+ "serde",
2113
+ "serde_spanned",
2114
+ "toml_datetime",
2115
+ "toml_edit",
2116
+ ]
2117
+
2118
+ [[package]]
2119
+ name = "toml_datetime"
2120
+ version = "0.6.11"
2121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2122
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2123
+ dependencies = [
2124
+ "serde",
2125
+ ]
2126
+
2127
+ [[package]]
2128
+ name = "toml_edit"
2129
+ version = "0.22.27"
2130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2131
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2132
+ dependencies = [
2133
+ "indexmap",
2134
+ "serde",
2135
+ "serde_spanned",
2136
+ "toml_datetime",
2137
+ "toml_write",
2138
+ "winnow",
2139
+ ]
2140
+
2141
+ [[package]]
2142
+ name = "toml_write"
2143
+ version = "0.1.2"
2144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2145
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2146
+
2147
+ [[package]]
2148
+ name = "tracing"
2149
+ version = "0.1.44"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2152
+ dependencies = [
2153
+ "pin-project-lite",
2154
+ "tracing-attributes",
2155
+ "tracing-core",
2156
+ ]
2157
+
2158
+ [[package]]
2159
+ name = "tracing-attributes"
2160
+ version = "0.1.31"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2163
+ dependencies = [
2164
+ "proc-macro2",
2165
+ "quote",
2166
+ "syn 2.0.119",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "tracing-core"
2171
+ version = "0.1.36"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2174
+ dependencies = [
2175
+ "once_cell",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "typenum"
2180
+ version = "1.20.1"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
2183
+
2184
+ [[package]]
2185
+ name = "unicode-ident"
2186
+ version = "1.0.24"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2189
+
2190
+ [[package]]
2191
+ name = "universal-hash"
2192
+ version = "0.5.1"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
2195
+ dependencies = [
2196
+ "crypto-common",
2197
+ "subtle",
2198
+ ]
2199
+
2200
+ [[package]]
2201
+ name = "untrusted"
2202
+ version = "0.9.0"
2203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2204
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2205
+
2206
+ [[package]]
2207
+ name = "ureq"
2208
+ version = "3.3.0"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
2211
+ dependencies = [
2212
+ "base64",
2213
+ "flate2",
2214
+ "log",
2215
+ "percent-encoding",
2216
+ "rustls",
2217
+ "rustls-pki-types",
2218
+ "ureq-proto",
2219
+ "utf8-zero",
2220
+ "webpki-roots",
2221
+ ]
2222
+
2223
+ [[package]]
2224
+ name = "ureq-proto"
2225
+ version = "0.6.0"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
2228
+ dependencies = [
2229
+ "base64",
2230
+ "http",
2231
+ "httparse",
2232
+ "log",
2233
+ ]
2234
+
2235
+ [[package]]
2236
+ name = "url"
2237
+ version = "2.5.8"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2240
+ dependencies = [
2241
+ "form_urlencoded",
2242
+ "idna",
2243
+ "percent-encoding",
2244
+ "serde",
2245
+ ]
2246
+
2247
+ [[package]]
2248
+ name = "utf8-zero"
2249
+ version = "0.8.1"
2250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2251
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
2252
+
2253
+ [[package]]
2254
+ name = "utf8_iter"
2255
+ version = "1.0.4"
2256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2258
+
2259
+ [[package]]
2260
+ name = "version_check"
2261
+ version = "0.9.5"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2264
+
2265
+ [[package]]
2266
+ name = "wasi"
2267
+ version = "0.11.1+wasi-snapshot-preview1"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2270
+
2271
+ [[package]]
2272
+ name = "wasm-bindgen"
2273
+ version = "0.2.126"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2276
+ dependencies = [
2277
+ "cfg-if",
2278
+ "once_cell",
2279
+ "rustversion",
2280
+ "wasm-bindgen-macro",
2281
+ "wasm-bindgen-shared",
2282
+ ]
2283
+
2284
+ [[package]]
2285
+ name = "wasm-bindgen-macro"
2286
+ version = "0.2.126"
2287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2288
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2289
+ dependencies = [
2290
+ "quote",
2291
+ "wasm-bindgen-macro-support",
2292
+ ]
2293
+
2294
+ [[package]]
2295
+ name = "wasm-bindgen-macro-support"
2296
+ version = "0.2.126"
2297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2298
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2299
+ dependencies = [
2300
+ "bumpalo",
2301
+ "proc-macro2",
2302
+ "quote",
2303
+ "syn 2.0.119",
2304
+ "wasm-bindgen-shared",
2305
+ ]
2306
+
2307
+ [[package]]
2308
+ name = "wasm-bindgen-shared"
2309
+ version = "0.2.126"
2310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2311
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2312
+ dependencies = [
2313
+ "unicode-ident",
2314
+ ]
2315
+
2316
+ [[package]]
2317
+ name = "webpki-roots"
2318
+ version = "1.0.9"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
2321
+ dependencies = [
2322
+ "rustls-pki-types",
2323
+ ]
2324
+
2325
+ [[package]]
2326
+ name = "windows-core"
2327
+ version = "0.62.2"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2330
+ dependencies = [
2331
+ "windows-implement",
2332
+ "windows-interface",
2333
+ "windows-link",
2334
+ "windows-result",
2335
+ "windows-strings",
2336
+ ]
2337
+
2338
+ [[package]]
2339
+ name = "windows-implement"
2340
+ version = "0.60.2"
2341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2342
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2343
+ dependencies = [
2344
+ "proc-macro2",
2345
+ "quote",
2346
+ "syn 2.0.119",
2347
+ ]
2348
+
2349
+ [[package]]
2350
+ name = "windows-interface"
2351
+ version = "0.59.3"
2352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2353
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2354
+ dependencies = [
2355
+ "proc-macro2",
2356
+ "quote",
2357
+ "syn 2.0.119",
2358
+ ]
2359
+
2360
+ [[package]]
2361
+ name = "windows-link"
2362
+ version = "0.2.1"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2365
+
2366
+ [[package]]
2367
+ name = "windows-result"
2368
+ version = "0.4.1"
2369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2370
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2371
+ dependencies = [
2372
+ "windows-link",
2373
+ ]
2374
+
2375
+ [[package]]
2376
+ name = "windows-strings"
2377
+ version = "0.5.1"
2378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2379
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2380
+ dependencies = [
2381
+ "windows-link",
2382
+ ]
2383
+
2384
+ [[package]]
2385
+ name = "windows-sys"
2386
+ version = "0.52.0"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2389
+ dependencies = [
2390
+ "windows-targets",
2391
+ ]
2392
+
2393
+ [[package]]
2394
+ name = "windows-sys"
2395
+ version = "0.61.2"
2396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2397
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2398
+ dependencies = [
2399
+ "windows-link",
2400
+ ]
2401
+
2402
+ [[package]]
2403
+ name = "windows-targets"
2404
+ version = "0.52.6"
2405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2406
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2407
+ dependencies = [
2408
+ "windows_aarch64_gnullvm",
2409
+ "windows_aarch64_msvc",
2410
+ "windows_i686_gnu",
2411
+ "windows_i686_gnullvm",
2412
+ "windows_i686_msvc",
2413
+ "windows_x86_64_gnu",
2414
+ "windows_x86_64_gnullvm",
2415
+ "windows_x86_64_msvc",
2416
+ ]
2417
+
2418
+ [[package]]
2419
+ name = "windows_aarch64_gnullvm"
2420
+ version = "0.52.6"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2423
+
2424
+ [[package]]
2425
+ name = "windows_aarch64_msvc"
2426
+ version = "0.52.6"
2427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2428
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2429
+
2430
+ [[package]]
2431
+ name = "windows_i686_gnu"
2432
+ version = "0.52.6"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2435
+
2436
+ [[package]]
2437
+ name = "windows_i686_gnullvm"
2438
+ version = "0.52.6"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2441
+
2442
+ [[package]]
2443
+ name = "windows_i686_msvc"
2444
+ version = "0.52.6"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2447
+
2448
+ [[package]]
2449
+ name = "windows_x86_64_gnu"
2450
+ version = "0.52.6"
2451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2453
+
2454
+ [[package]]
2455
+ name = "windows_x86_64_gnullvm"
2456
+ version = "0.52.6"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2459
+
2460
+ [[package]]
2461
+ name = "windows_x86_64_msvc"
2462
+ version = "0.52.6"
2463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2464
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2465
+
2466
+ [[package]]
2467
+ name = "winnow"
2468
+ version = "0.7.15"
2469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2470
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2471
+ dependencies = [
2472
+ "memchr",
2473
+ ]
2474
+
2475
+ [[package]]
2476
+ name = "writeable"
2477
+ version = "0.6.3"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2480
+
2481
+ [[package]]
2482
+ name = "wyz"
2483
+ version = "0.5.1"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
2486
+ dependencies = [
2487
+ "tap",
2488
+ ]
2489
+
2490
+ [[package]]
2491
+ name = "x509-cert"
2492
+ version = "0.2.5"
2493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2494
+ checksum = "1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94"
2495
+ dependencies = [
2496
+ "const-oid",
2497
+ "der",
2498
+ "sha1",
2499
+ "signature",
2500
+ "spki",
2501
+ "tls_codec",
2502
+ ]
2503
+
2504
+ [[package]]
2505
+ name = "xattr"
2506
+ version = "1.6.1"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
2509
+ dependencies = [
2510
+ "libc",
2511
+ "rustix",
2512
+ ]
2513
+
2514
+ [[package]]
2515
+ name = "yoke"
2516
+ version = "0.8.3"
2517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2518
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
2519
+ dependencies = [
2520
+ "stable_deref_trait",
2521
+ "yoke-derive",
2522
+ "zerofrom",
2523
+ ]
2524
+
2525
+ [[package]]
2526
+ name = "yoke-derive"
2527
+ version = "0.8.2"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2530
+ dependencies = [
2531
+ "proc-macro2",
2532
+ "quote",
2533
+ "syn 2.0.119",
2534
+ "synstructure",
2535
+ ]
2536
+
2537
+ [[package]]
2538
+ name = "zerocopy"
2539
+ version = "0.8.55"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
2542
+ dependencies = [
2543
+ "zerocopy-derive",
2544
+ ]
2545
+
2546
+ [[package]]
2547
+ name = "zerocopy-derive"
2548
+ version = "0.8.55"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
2551
+ dependencies = [
2552
+ "proc-macro2",
2553
+ "quote",
2554
+ "syn 2.0.119",
2555
+ ]
2556
+
2557
+ [[package]]
2558
+ name = "zerofrom"
2559
+ version = "0.1.8"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2562
+ dependencies = [
2563
+ "zerofrom-derive",
2564
+ ]
2565
+
2566
+ [[package]]
2567
+ name = "zerofrom-derive"
2568
+ version = "0.1.7"
2569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2570
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2571
+ dependencies = [
2572
+ "proc-macro2",
2573
+ "quote",
2574
+ "syn 2.0.119",
2575
+ "synstructure",
2576
+ ]
2577
+
2578
+ [[package]]
2579
+ name = "zeroize"
2580
+ version = "1.9.0"
2581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2582
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
2583
+ dependencies = [
2584
+ "zeroize_derive",
2585
+ ]
2586
+
2587
+ [[package]]
2588
+ name = "zeroize_derive"
2589
+ version = "1.5.0"
2590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2591
+ checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
2592
+ dependencies = [
2593
+ "proc-macro2",
2594
+ "quote",
2595
+ "syn 2.0.119",
2596
+ ]
2597
+
2598
+ [[package]]
2599
+ name = "zerotrie"
2600
+ version = "0.2.4"
2601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2602
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2603
+ dependencies = [
2604
+ "displaydoc",
2605
+ "yoke",
2606
+ "zerofrom",
2607
+ ]
2608
+
2609
+ [[package]]
2610
+ name = "zerovec"
2611
+ version = "0.11.6"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2614
+ dependencies = [
2615
+ "yoke",
2616
+ "zerofrom",
2617
+ "zerovec-derive",
2618
+ ]
2619
+
2620
+ [[package]]
2621
+ name = "zerovec-derive"
2622
+ version = "0.11.3"
2623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2624
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2625
+ dependencies = [
2626
+ "proc-macro2",
2627
+ "quote",
2628
+ "syn 2.0.119",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "zmij"
2633
+ version = "1.0.23"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"