confium 0.2.0 → 0.3.1

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