hexy-py 0.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. hexy_py-0.2.0/Cargo.lock +730 -0
  2. hexy_py-0.2.0/Cargo.toml +39 -0
  3. hexy_py-0.2.0/PKG-INFO +38 -0
  4. hexy_py-0.2.0/README.md +26 -0
  5. hexy_py-0.2.0/crates/hexy-core/Cargo.toml +22 -0
  6. hexy_py-0.2.0/crates/hexy-core/src/hexfile.rs +475 -0
  7. hexy_py-0.2.0/crates/hexy-core/src/io/binary.rs +112 -0
  8. hexy_py-0.2.0/crates/hexy-core/src/io/c_code.rs +214 -0
  9. hexy_py-0.2.0/crates/hexy-core/src/io/error.rs +29 -0
  10. hexy_py-0.2.0/crates/hexy-core/src/io/file.rs +181 -0
  11. hexy_py-0.2.0/crates/hexy-core/src/io/hex_ascii.rs +205 -0
  12. hexy_py-0.2.0/crates/hexy-core/src/io/intel_hex.rs +497 -0
  13. hexy_py-0.2.0/crates/hexy-core/src/io/mod.rs +56 -0
  14. hexy_py-0.2.0/crates/hexy-core/src/io/srec.rs +288 -0
  15. hexy_py-0.2.0/crates/hexy-core/src/lib.rs +43 -0
  16. hexy_py-0.2.0/crates/hexy-core/src/ops/checksum.rs +1351 -0
  17. hexy_py-0.2.0/crates/hexy-core/src/ops/error.rs +47 -0
  18. hexy_py-0.2.0/crates/hexy-core/src/ops/filter.rs +729 -0
  19. hexy_py-0.2.0/crates/hexy-core/src/ops/log.rs +180 -0
  20. hexy_py-0.2.0/crates/hexy-core/src/ops/mod.rs +14 -0
  21. hexy_py-0.2.0/crates/hexy-core/src/ops/transform.rs +1197 -0
  22. hexy_py-0.2.0/crates/hexy-core/src/range.rs +418 -0
  23. hexy_py-0.2.0/crates/hexy-core/src/segment.rs +64 -0
  24. hexy_py-0.2.0/crates/hexy-core/src/signature.rs +392 -0
  25. hexy_py-0.2.0/crates/hexy-core/tests/compat_multistage.rs +137 -0
  26. hexy_py-0.2.0/crates/hexy-core/tests/compat_ranges.rs +41 -0
  27. hexy_py-0.2.0/crates/hexy-core/tests/operations.rs +350 -0
  28. hexy_py-0.2.0/crates/hexy-core/tests/signature.rs +165 -0
  29. hexy_py-0.2.0/crates/hexy-py/Cargo.toml +27 -0
  30. hexy_py-0.2.0/crates/hexy-py/README.md +26 -0
  31. hexy_py-0.2.0/crates/hexy-py/src/hexfile.rs +417 -0
  32. hexy_py-0.2.0/crates/hexy-py/src/lib.rs +26 -0
  33. hexy_py-0.2.0/crates/hexy-py/src/pipeline.rs +294 -0
  34. hexy_py-0.2.0/crates/hexy-py/src/types.rs +124 -0
  35. hexy_py-0.2.0/crates/hexy-py/src/util.rs +106 -0
  36. hexy_py-0.2.0/crates/hexy-py/tests/test_bindings.py +214 -0
  37. hexy_py-0.2.0/crates/hexy-py/uv.lock +212 -0
  38. hexy_py-0.2.0/pyproject.toml +32 -0
  39. hexy_py-0.2.0/python/hexy/__init__.py +3 -0
  40. hexy_py-0.2.0/python/hexy/__init__.pyi +173 -0
  41. hexy_py-0.2.0/python/hexy/py.typed +1 -0
@@ -0,0 +1,730 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "autocfg"
7
+ version = "1.5.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
10
+
11
+ [[package]]
12
+ name = "base64ct"
13
+ version = "1.8.3"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
16
+
17
+ [[package]]
18
+ name = "block-buffer"
19
+ version = "0.10.4"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
22
+ dependencies = [
23
+ "generic-array",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "cfg-if"
28
+ version = "1.0.4"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
31
+
32
+ [[package]]
33
+ name = "const-oid"
34
+ version = "0.9.6"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
37
+
38
+ [[package]]
39
+ name = "cpufeatures"
40
+ version = "0.2.17"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
43
+ dependencies = [
44
+ "libc",
45
+ ]
46
+
47
+ [[package]]
48
+ name = "crc"
49
+ version = "3.4.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
52
+ dependencies = [
53
+ "crc-catalog",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "crc-catalog"
58
+ version = "2.4.0"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
61
+
62
+ [[package]]
63
+ name = "crypto-common"
64
+ version = "0.1.7"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
67
+ dependencies = [
68
+ "generic-array",
69
+ "typenum",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "curve25519-dalek"
74
+ version = "4.1.3"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
77
+ dependencies = [
78
+ "cfg-if",
79
+ "cpufeatures",
80
+ "curve25519-dalek-derive",
81
+ "digest",
82
+ "fiat-crypto",
83
+ "rustc_version",
84
+ "subtle",
85
+ "zeroize",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "curve25519-dalek-derive"
90
+ version = "0.1.1"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
93
+ dependencies = [
94
+ "proc-macro2",
95
+ "quote",
96
+ "syn",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "der"
101
+ version = "0.7.10"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
104
+ dependencies = [
105
+ "const-oid",
106
+ "der_derive",
107
+ "flagset",
108
+ "pem-rfc7468",
109
+ "zeroize",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "der_derive"
114
+ version = "0.7.3"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18"
117
+ dependencies = [
118
+ "proc-macro2",
119
+ "quote",
120
+ "syn",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "digest"
125
+ version = "0.10.7"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
128
+ dependencies = [
129
+ "block-buffer",
130
+ "const-oid",
131
+ "crypto-common",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "ed25519"
136
+ version = "2.2.3"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
139
+ dependencies = [
140
+ "pkcs8",
141
+ "signature",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "ed25519-dalek"
146
+ version = "2.2.0"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
149
+ dependencies = [
150
+ "curve25519-dalek",
151
+ "ed25519",
152
+ "serde",
153
+ "sha2",
154
+ "signature",
155
+ "subtle",
156
+ "zeroize",
157
+ ]
158
+
159
+ [[package]]
160
+ name = "fiat-crypto"
161
+ version = "0.2.9"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
164
+
165
+ [[package]]
166
+ name = "flagset"
167
+ version = "0.4.7"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe"
170
+
171
+ [[package]]
172
+ name = "generic-array"
173
+ version = "0.14.7"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
176
+ dependencies = [
177
+ "typenum",
178
+ "version_check",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "getrandom"
183
+ version = "0.2.17"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
186
+ dependencies = [
187
+ "cfg-if",
188
+ "libc",
189
+ "wasi",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "heck"
194
+ version = "0.5.0"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
197
+
198
+ [[package]]
199
+ name = "hexy-compat"
200
+ version = "0.2.0"
201
+ dependencies = [
202
+ "ed25519-dalek",
203
+ "hexy-core",
204
+ "rsa",
205
+ "thiserror",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "hexy-core"
210
+ version = "0.2.0"
211
+ dependencies = [
212
+ "crc",
213
+ "ed25519-dalek",
214
+ "md-5",
215
+ "ripemd",
216
+ "rsa",
217
+ "sha1",
218
+ "sha2",
219
+ "thiserror",
220
+ "x509-cert",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "hexy-py"
225
+ version = "0.2.0"
226
+ dependencies = [
227
+ "hexy-core",
228
+ "pyo3",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "lazy_static"
233
+ version = "1.5.0"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
236
+ dependencies = [
237
+ "spin",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "libc"
242
+ version = "0.2.185"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
245
+
246
+ [[package]]
247
+ name = "libm"
248
+ version = "0.2.16"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
251
+
252
+ [[package]]
253
+ name = "md-5"
254
+ version = "0.10.6"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
257
+ dependencies = [
258
+ "cfg-if",
259
+ "digest",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "num-bigint-dig"
264
+ version = "0.8.6"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
267
+ dependencies = [
268
+ "lazy_static",
269
+ "libm",
270
+ "num-integer",
271
+ "num-iter",
272
+ "num-traits",
273
+ "rand",
274
+ "smallvec",
275
+ "zeroize",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "num-integer"
280
+ version = "0.1.46"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
283
+ dependencies = [
284
+ "num-traits",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "num-iter"
289
+ version = "0.1.45"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
292
+ dependencies = [
293
+ "autocfg",
294
+ "num-integer",
295
+ "num-traits",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "num-traits"
300
+ version = "0.2.19"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
303
+ dependencies = [
304
+ "autocfg",
305
+ "libm",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "once_cell"
310
+ version = "1.21.4"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
313
+
314
+ [[package]]
315
+ name = "pem-rfc7468"
316
+ version = "0.7.0"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
319
+ dependencies = [
320
+ "base64ct",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "pkcs1"
325
+ version = "0.7.5"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
328
+ dependencies = [
329
+ "der",
330
+ "pkcs8",
331
+ "spki",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "pkcs8"
336
+ version = "0.10.2"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
339
+ dependencies = [
340
+ "der",
341
+ "spki",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "portable-atomic"
346
+ version = "1.13.1"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
349
+
350
+ [[package]]
351
+ name = "ppv-lite86"
352
+ version = "0.2.21"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
355
+ dependencies = [
356
+ "zerocopy",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "proc-macro2"
361
+ version = "1.0.106"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
364
+ dependencies = [
365
+ "unicode-ident",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "pyo3"
370
+ version = "0.28.3"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
373
+ dependencies = [
374
+ "libc",
375
+ "once_cell",
376
+ "portable-atomic",
377
+ "pyo3-build-config",
378
+ "pyo3-ffi",
379
+ "pyo3-macros",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "pyo3-build-config"
384
+ version = "0.28.3"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
387
+ dependencies = [
388
+ "target-lexicon",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "pyo3-ffi"
393
+ version = "0.28.3"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
396
+ dependencies = [
397
+ "libc",
398
+ "pyo3-build-config",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "pyo3-macros"
403
+ version = "0.28.3"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
406
+ dependencies = [
407
+ "proc-macro2",
408
+ "pyo3-macros-backend",
409
+ "quote",
410
+ "syn",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "pyo3-macros-backend"
415
+ version = "0.28.3"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
418
+ dependencies = [
419
+ "heck",
420
+ "proc-macro2",
421
+ "pyo3-build-config",
422
+ "quote",
423
+ "syn",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "quote"
428
+ version = "1.0.45"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
431
+ dependencies = [
432
+ "proc-macro2",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "rand"
437
+ version = "0.8.6"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
440
+ dependencies = [
441
+ "rand_chacha",
442
+ "rand_core",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "rand_chacha"
447
+ version = "0.3.1"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
450
+ dependencies = [
451
+ "ppv-lite86",
452
+ "rand_core",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "rand_core"
457
+ version = "0.6.4"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
460
+ dependencies = [
461
+ "getrandom",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "ripemd"
466
+ version = "0.1.3"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f"
469
+ dependencies = [
470
+ "digest",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "rsa"
475
+ version = "0.9.10"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
478
+ dependencies = [
479
+ "const-oid",
480
+ "digest",
481
+ "num-bigint-dig",
482
+ "num-integer",
483
+ "num-traits",
484
+ "pkcs1",
485
+ "pkcs8",
486
+ "rand_core",
487
+ "sha2",
488
+ "signature",
489
+ "spki",
490
+ "subtle",
491
+ "zeroize",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "rustc_version"
496
+ version = "0.4.1"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
499
+ dependencies = [
500
+ "semver",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "semver"
505
+ version = "1.0.28"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
508
+
509
+ [[package]]
510
+ name = "serde"
511
+ version = "1.0.228"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
514
+ dependencies = [
515
+ "serde_core",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "serde_core"
520
+ version = "1.0.228"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
523
+ dependencies = [
524
+ "serde_derive",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "serde_derive"
529
+ version = "1.0.228"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
532
+ dependencies = [
533
+ "proc-macro2",
534
+ "quote",
535
+ "syn",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "sha1"
540
+ version = "0.10.6"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
543
+ dependencies = [
544
+ "cfg-if",
545
+ "cpufeatures",
546
+ "digest",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "sha2"
551
+ version = "0.10.9"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
554
+ dependencies = [
555
+ "cfg-if",
556
+ "cpufeatures",
557
+ "digest",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "signature"
562
+ version = "2.2.0"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
565
+ dependencies = [
566
+ "digest",
567
+ "rand_core",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "smallvec"
572
+ version = "1.15.1"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
575
+
576
+ [[package]]
577
+ name = "spin"
578
+ version = "0.9.8"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
581
+
582
+ [[package]]
583
+ name = "spki"
584
+ version = "0.7.3"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
587
+ dependencies = [
588
+ "base64ct",
589
+ "der",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "subtle"
594
+ version = "2.6.1"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
597
+
598
+ [[package]]
599
+ name = "syn"
600
+ version = "2.0.117"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
603
+ dependencies = [
604
+ "proc-macro2",
605
+ "quote",
606
+ "unicode-ident",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "target-lexicon"
611
+ version = "0.13.5"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
614
+
615
+ [[package]]
616
+ name = "thiserror"
617
+ version = "2.0.18"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
620
+ dependencies = [
621
+ "thiserror-impl",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "thiserror-impl"
626
+ version = "2.0.18"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
629
+ dependencies = [
630
+ "proc-macro2",
631
+ "quote",
632
+ "syn",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "tls_codec"
637
+ version = "0.4.2"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b"
640
+ dependencies = [
641
+ "tls_codec_derive",
642
+ "zeroize",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "tls_codec_derive"
647
+ version = "0.4.2"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd"
650
+ dependencies = [
651
+ "proc-macro2",
652
+ "quote",
653
+ "syn",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "typenum"
658
+ version = "1.19.0"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
661
+
662
+ [[package]]
663
+ name = "unicode-ident"
664
+ version = "1.0.24"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
667
+
668
+ [[package]]
669
+ name = "version_check"
670
+ version = "0.9.5"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
673
+
674
+ [[package]]
675
+ name = "wasi"
676
+ version = "0.11.1+wasi-snapshot-preview1"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
679
+
680
+ [[package]]
681
+ name = "x509-cert"
682
+ version = "0.2.5"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94"
685
+ dependencies = [
686
+ "const-oid",
687
+ "der",
688
+ "spki",
689
+ "tls_codec",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "zerocopy"
694
+ version = "0.8.48"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
697
+ dependencies = [
698
+ "zerocopy-derive",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "zerocopy-derive"
703
+ version = "0.8.48"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
706
+ dependencies = [
707
+ "proc-macro2",
708
+ "quote",
709
+ "syn",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "zeroize"
714
+ version = "1.8.2"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
717
+ dependencies = [
718
+ "zeroize_derive",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "zeroize_derive"
723
+ version = "1.4.3"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
726
+ dependencies = [
727
+ "proc-macro2",
728
+ "quote",
729
+ "syn",
730
+ ]