microsandbox-rb 0.12.0 → 0.14.0

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.
data/Cargo.lock CHANGED
@@ -43,9 +43,9 @@ dependencies = [
43
43
 
44
44
  [[package]]
45
45
  name = "aes-gcm"
46
- version = "0.11.0-rc.4"
46
+ version = "0.11.0"
47
47
  source = "registry+https://github.com/rust-lang/crates.io-index"
48
- checksum = "da8c919c118108f144adecad74b425b804ad075580d605d9b33c2d6d1c62a2f8"
48
+ checksum = "fdf011db2e21ce0d575593d749db5554b47fed37aff429e4dc50bc91ac93a028"
49
49
  dependencies = [
50
50
  "aead",
51
51
  "aes 0.9.1",
@@ -56,6 +56,31 @@ dependencies = [
56
56
  "zeroize",
57
57
  ]
58
58
 
59
+ [[package]]
60
+ name = "ahash"
61
+ version = "0.7.8"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
64
+ dependencies = [
65
+ "getrandom 0.2.17",
66
+ "once_cell",
67
+ "version_check",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "ahash"
72
+ version = "0.8.12"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
75
+ dependencies = [
76
+ "cfg-if",
77
+ "const-random",
78
+ "getrandom 0.3.4",
79
+ "once_cell",
80
+ "version_check",
81
+ "zerocopy",
82
+ ]
83
+
59
84
  [[package]]
60
85
  name = "aho-corasick"
61
86
  version = "1.1.4"
@@ -154,6 +179,177 @@ dependencies = [
154
179
  "password-hash",
155
180
  ]
156
181
 
182
+ [[package]]
183
+ name = "arrayref"
184
+ version = "0.3.9"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
187
+
188
+ [[package]]
189
+ name = "arrayvec"
190
+ version = "0.7.8"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
193
+
194
+ [[package]]
195
+ name = "arrow"
196
+ version = "58.4.0"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "6cfdd0833e32a9874d2b55089333ad310c0be208aafa277385ce2461dec90be3"
199
+ dependencies = [
200
+ "arrow-arith",
201
+ "arrow-array",
202
+ "arrow-buffer",
203
+ "arrow-cast",
204
+ "arrow-data",
205
+ "arrow-ord",
206
+ "arrow-row",
207
+ "arrow-schema",
208
+ "arrow-select",
209
+ "arrow-string",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "arrow-arith"
214
+ version = "58.4.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "0a41203398f0eaa6f7ec8e62c0da742a21abf282c148fc157f6c35c90e29981a"
217
+ dependencies = [
218
+ "arrow-array",
219
+ "arrow-buffer",
220
+ "arrow-data",
221
+ "arrow-schema",
222
+ "chrono",
223
+ "num-traits",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "arrow-array"
228
+ version = "58.4.0"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "ae33dad492b7df00a217563a7b0ef2874df68a0deea1b1a3acf628152f7f7a69"
231
+ dependencies = [
232
+ "ahash 0.8.12",
233
+ "arrow-buffer",
234
+ "arrow-data",
235
+ "arrow-schema",
236
+ "chrono",
237
+ "half",
238
+ "hashbrown 0.17.1",
239
+ "num-complex",
240
+ "num-integer",
241
+ "num-traits",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "arrow-buffer"
246
+ version = "58.4.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "b9552f96391c005e6ab449fa941420935e7e062489b12b8b1b08879b2163f5b5"
249
+ dependencies = [
250
+ "bytes",
251
+ "half",
252
+ "num-bigint",
253
+ "num-traits",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "arrow-cast"
258
+ version = "58.4.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "3a8a327c9649f30d8406995f27642b68df354713cca3baaaf100f076f18d5f34"
261
+ dependencies = [
262
+ "arrow-array",
263
+ "arrow-buffer",
264
+ "arrow-data",
265
+ "arrow-ord",
266
+ "arrow-schema",
267
+ "arrow-select",
268
+ "atoi",
269
+ "base64 0.22.1",
270
+ "chrono",
271
+ "half",
272
+ "lexical-core",
273
+ "num-traits",
274
+ "ryu",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "arrow-data"
279
+ version = "58.4.0"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "2b24852db04738907e06c04ea61e42fe7fda962a34513022dc0d0e754fb7976b"
282
+ dependencies = [
283
+ "arrow-buffer",
284
+ "arrow-schema",
285
+ "half",
286
+ "num-integer",
287
+ "num-traits",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "arrow-ord"
292
+ version = "58.4.0"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "63a083ec750f5c043f02946b4baf05fcdbb55f4560a3277055caca5cc99f3eb0"
295
+ dependencies = [
296
+ "arrow-array",
297
+ "arrow-buffer",
298
+ "arrow-data",
299
+ "arrow-schema",
300
+ "arrow-select",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "arrow-row"
305
+ version = "58.4.0"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "514ba0ef0d4c5896202dae736251ce415abb43a950bed570fb7981b8716c0e4c"
308
+ dependencies = [
309
+ "arrow-array",
310
+ "arrow-buffer",
311
+ "arrow-data",
312
+ "arrow-schema",
313
+ "half",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "arrow-schema"
318
+ version = "58.4.0"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "21ca356ad6425cecb6eb7b28e4f659f1ee7880fbb1a16127de7dd62901efee9e"
321
+
322
+ [[package]]
323
+ name = "arrow-select"
324
+ version = "58.4.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "c58da39eb3d8350ad4a549e5c2bc49284dac554016c69829310350f1731b0aad"
327
+ dependencies = [
328
+ "ahash 0.8.12",
329
+ "arrow-array",
330
+ "arrow-buffer",
331
+ "arrow-data",
332
+ "arrow-schema",
333
+ "num-traits",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "arrow-string"
338
+ version = "58.4.0"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "b6789b388467525e3271326b6b4915666ecfdf5142aef09779445c954b67543c"
341
+ dependencies = [
342
+ "arrow-array",
343
+ "arrow-buffer",
344
+ "arrow-data",
345
+ "arrow-schema",
346
+ "arrow-select",
347
+ "memchr",
348
+ "num-traits",
349
+ "regex",
350
+ "regex-syntax",
351
+ ]
352
+
157
353
  [[package]]
158
354
  name = "asn1-rs"
159
355
  version = "0.7.2"
@@ -166,7 +362,7 @@ dependencies = [
166
362
  "nom",
167
363
  "num-traits",
168
364
  "rusticata-macros",
169
- "thiserror 2.0.18",
365
+ "thiserror",
170
366
  "time",
171
367
  ]
172
368
 
@@ -178,7 +374,7 @@ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
178
374
  dependencies = [
179
375
  "proc-macro2",
180
376
  "quote",
181
- "syn",
377
+ "syn 2.0.118",
182
378
  "synstructure",
183
379
  ]
184
380
 
@@ -190,7 +386,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
190
386
  dependencies = [
191
387
  "proc-macro2",
192
388
  "quote",
193
- "syn",
389
+ "syn 2.0.118",
194
390
  ]
195
391
 
196
392
  [[package]]
@@ -300,7 +496,7 @@ checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
300
496
  dependencies = [
301
497
  "proc-macro2",
302
498
  "quote",
303
- "syn",
499
+ "syn 2.0.118",
304
500
  ]
305
501
 
306
502
  [[package]]
@@ -340,7 +536,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
340
536
  dependencies = [
341
537
  "proc-macro2",
342
538
  "quote",
343
- "syn",
539
+ "syn 2.0.118",
344
540
  ]
345
541
 
346
542
  [[package]]
@@ -357,7 +553,7 @@ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
357
553
  dependencies = [
358
554
  "proc-macro2",
359
555
  "quote",
360
- "syn",
556
+ "syn 2.0.118",
361
557
  ]
362
558
 
363
559
  [[package]]
@@ -416,6 +612,12 @@ version = "0.22.1"
416
612
  source = "registry+https://github.com/rust-lang/crates.io-index"
417
613
  checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
418
614
 
615
+ [[package]]
616
+ name = "base64"
617
+ version = "0.23.1"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
620
+
419
621
  [[package]]
420
622
  name = "base64ct"
421
623
  version = "1.8.3"
@@ -434,22 +636,17 @@ dependencies = [
434
636
  ]
435
637
 
436
638
  [[package]]
437
- name = "bincode"
438
- version = "2.0.1"
439
- source = "registry+https://github.com/rust-lang/crates.io-index"
440
- checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
441
- dependencies = [
442
- "bincode_derive",
443
- "unty",
444
- ]
445
-
446
- [[package]]
447
- name = "bincode_derive"
448
- version = "2.0.1"
639
+ name = "bigdecimal"
640
+ version = "0.4.10"
449
641
  source = "registry+https://github.com/rust-lang/crates.io-index"
450
- checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
642
+ checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695"
451
643
  dependencies = [
452
- "virtue",
644
+ "autocfg",
645
+ "libm",
646
+ "num-bigint",
647
+ "num-integer",
648
+ "num-traits",
649
+ "serde",
453
650
  ]
454
651
 
455
652
  [[package]]
@@ -461,13 +658,13 @@ dependencies = [
461
658
  "bitflags 2.13.0",
462
659
  "cexpr",
463
660
  "clang-sys",
464
- "itertools",
661
+ "itertools 0.13.0",
465
662
  "proc-macro2",
466
663
  "quote",
467
664
  "regex",
468
665
  "rustc-hash",
469
666
  "shlex 1.3.0",
470
- "syn",
667
+ "syn 2.0.118",
471
668
  ]
472
669
 
473
670
  [[package]]
@@ -494,6 +691,18 @@ dependencies = [
494
691
  "serde_core",
495
692
  ]
496
693
 
694
+ [[package]]
695
+ name = "bitvec"
696
+ version = "1.1.1"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
699
+ dependencies = [
700
+ "funty",
701
+ "radium",
702
+ "tap",
703
+ "wyz",
704
+ ]
705
+
497
706
  [[package]]
498
707
  name = "blake2"
499
708
  version = "0.11.0-rc.6"
@@ -503,6 +712,20 @@ dependencies = [
503
712
  "digest 0.11.3",
504
713
  ]
505
714
 
715
+ [[package]]
716
+ name = "blake3"
717
+ version = "1.8.6"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "76ae7bad254120e9e4c63bafc385310756f90c484eac0e36b8317cf09cb92a77"
720
+ dependencies = [
721
+ "arrayref",
722
+ "arrayvec",
723
+ "cc",
724
+ "cfg-if",
725
+ "constant_time_eq",
726
+ "cpufeatures 0.3.0",
727
+ ]
728
+
506
729
  [[package]]
507
730
  name = "block-buffer"
508
731
  version = "0.10.4"
@@ -563,12 +786,58 @@ dependencies = [
563
786
  "cipher 0.5.2",
564
787
  ]
565
788
 
789
+ [[package]]
790
+ name = "borsh"
791
+ version = "1.8.0"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "a88b7ea17d208c4193f2c1e6de3c35fe71f98c96982d5ced308bdcc749ff6e1f"
794
+ dependencies = [
795
+ "borsh-derive",
796
+ "bytes",
797
+ "cfg_aliases",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "borsh-derive"
802
+ version = "1.8.0"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "d8f347189c62a579b8cd5f80714efa178f52e461dc2e6d701d264f5ff22e566c"
805
+ dependencies = [
806
+ "once_cell",
807
+ "proc-macro-crate",
808
+ "proc-macro2",
809
+ "quote",
810
+ "syn 2.0.118",
811
+ ]
812
+
566
813
  [[package]]
567
814
  name = "bumpalo"
568
815
  version = "3.20.3"
569
816
  source = "registry+https://github.com/rust-lang/crates.io-index"
570
817
  checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
571
818
 
819
+ [[package]]
820
+ name = "bytecheck"
821
+ version = "0.6.12"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
824
+ dependencies = [
825
+ "bytecheck_derive",
826
+ "ptr_meta",
827
+ "simdutf8",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "bytecheck_derive"
832
+ version = "0.6.12"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
835
+ dependencies = [
836
+ "proc-macro2",
837
+ "quote",
838
+ "syn 1.0.109",
839
+ ]
840
+
572
841
  [[package]]
573
842
  name = "byteorder"
574
843
  version = "1.5.0"
@@ -649,12 +918,6 @@ dependencies = [
649
918
  "shlex 2.0.1",
650
919
  ]
651
920
 
652
- [[package]]
653
- name = "cesu8"
654
- version = "1.1.0"
655
- source = "registry+https://github.com/rust-lang/crates.io-index"
656
- checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
657
-
658
921
  [[package]]
659
922
  name = "cexpr"
660
923
  version = "0.6.0"
@@ -794,7 +1057,7 @@ dependencies = [
794
1057
  "heck 0.5.0",
795
1058
  "proc-macro2",
796
1059
  "quote",
797
- "syn",
1060
+ "syn 2.0.118",
798
1061
  ]
799
1062
 
800
1063
  [[package]]
@@ -864,15 +1127,29 @@ dependencies = [
864
1127
 
865
1128
  [[package]]
866
1129
  name = "const-oid"
867
- version = "0.9.6"
1130
+ version = "0.10.2"
868
1131
  source = "registry+https://github.com/rust-lang/crates.io-index"
869
- checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
1132
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
870
1133
 
871
1134
  [[package]]
872
- name = "const-oid"
873
- version = "0.10.2"
1135
+ name = "const-random"
1136
+ version = "0.1.18"
874
1137
  source = "registry+https://github.com/rust-lang/crates.io-index"
875
- checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
1138
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
1139
+ dependencies = [
1140
+ "const-random-macro",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "const-random-macro"
1145
+ version = "0.1.16"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
1148
+ dependencies = [
1149
+ "getrandom 0.2.17",
1150
+ "once_cell",
1151
+ "tiny-keccak",
1152
+ ]
876
1153
 
877
1154
  [[package]]
878
1155
  name = "const_format"
@@ -895,6 +1172,12 @@ dependencies = [
895
1172
  "unicode-xid",
896
1173
  ]
897
1174
 
1175
+ [[package]]
1176
+ name = "constant_time_eq"
1177
+ version = "0.4.2"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
1180
+
898
1181
  [[package]]
899
1182
  name = "convert_case"
900
1183
  version = "0.10.0"
@@ -993,6 +1276,25 @@ dependencies = [
993
1276
  "crossbeam-utils",
994
1277
  ]
995
1278
 
1279
+ [[package]]
1280
+ name = "crossbeam-deque"
1281
+ version = "0.8.7"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
1284
+ dependencies = [
1285
+ "crossbeam-epoch",
1286
+ "crossbeam-utils",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "crossbeam-epoch"
1291
+ version = "0.9.20"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
1294
+ dependencies = [
1295
+ "crossbeam-utils",
1296
+ ]
1297
+
996
1298
  [[package]]
997
1299
  name = "crossbeam-queue"
998
1300
  version = "0.3.12"
@@ -1043,9 +1345,9 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
1043
1345
 
1044
1346
  [[package]]
1045
1347
  name = "crypto-bigint"
1046
- version = "0.7.4"
1348
+ version = "0.7.5"
1047
1349
  source = "registry+https://github.com/rust-lang/crates.io-index"
1048
- checksum = "97bb4a855e3b10f84c4e7e895a7de01db7f9a7b7eb7f73ed9773fd52ac686451"
1350
+ checksum = "1a52aa3fcda4e6302a9f48734f234d35d4721b96f8fe07d073f07ce9df4f0271"
1049
1351
  dependencies = [
1050
1352
  "cpubits",
1051
1353
  "ctutils",
@@ -1110,15 +1412,16 @@ dependencies = [
1110
1412
 
1111
1413
  [[package]]
1112
1414
  name = "curve25519-dalek"
1113
- version = "5.0.0-rc.0"
1415
+ version = "5.0.0"
1114
1416
  source = "registry+https://github.com/rust-lang/crates.io-index"
1115
- checksum = "4f359e08ca85e7bd759e1fd933ff2bccd81864c60a8fba0e259c7f822b0924bf"
1417
+ checksum = "b5eed333089e2e1c1ac8c6c0398e5e2497b4c9926ca6d0365ed1e099afa5bc23"
1116
1418
  dependencies = [
1117
1419
  "cfg-if",
1118
1420
  "cpufeatures 0.3.0",
1119
1421
  "curve25519-dalek-derive",
1120
1422
  "digest 0.11.3",
1121
1423
  "fiat-crypto",
1424
+ "rand_core 0.10.1",
1122
1425
  "rustc_version",
1123
1426
  "subtle",
1124
1427
  "zeroize",
@@ -1132,7 +1435,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
1132
1435
  dependencies = [
1133
1436
  "proc-macro2",
1134
1437
  "quote",
1135
- "syn",
1438
+ "syn 2.0.118",
1136
1439
  ]
1137
1440
 
1138
1441
  [[package]]
@@ -1156,7 +1459,7 @@ dependencies = [
1156
1459
  "proc-macro2",
1157
1460
  "quote",
1158
1461
  "strsim",
1159
- "syn",
1462
+ "syn 2.0.118",
1160
1463
  ]
1161
1464
 
1162
1465
  [[package]]
@@ -1167,7 +1470,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
1167
1470
  dependencies = [
1168
1471
  "darling_core",
1169
1472
  "quote",
1170
- "syn",
1473
+ "syn 2.0.118",
1171
1474
  ]
1172
1475
 
1173
1476
  [[package]]
@@ -1248,7 +1551,7 @@ dependencies = [
1248
1551
  "proc-macro-error2",
1249
1552
  "proc-macro2",
1250
1553
  "quote",
1251
- "syn",
1554
+ "syn 2.0.118",
1252
1555
  ]
1253
1556
 
1254
1557
  [[package]]
@@ -1257,7 +1560,7 @@ version = "1.0.0"
1257
1560
  source = "registry+https://github.com/rust-lang/crates.io-index"
1258
1561
  checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
1259
1562
  dependencies = [
1260
- "thiserror 2.0.18",
1563
+ "thiserror",
1261
1564
  ]
1262
1565
 
1263
1566
  [[package]]
@@ -1268,18 +1571,7 @@ checksum = "780eb241654bf097afb00fc5f054a09b687dad862e485fdcf8399bb056565370"
1268
1571
  dependencies = [
1269
1572
  "proc-macro2",
1270
1573
  "quote",
1271
- "syn",
1272
- ]
1273
-
1274
- [[package]]
1275
- name = "der"
1276
- version = "0.7.10"
1277
- source = "registry+https://github.com/rust-lang/crates.io-index"
1278
- checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
1279
- dependencies = [
1280
- "const-oid 0.9.6",
1281
- "pem-rfc7468 0.7.0",
1282
- "zeroize",
1574
+ "syn 2.0.118",
1283
1575
  ]
1284
1576
 
1285
1577
  [[package]]
@@ -1288,8 +1580,8 @@ version = "0.8.0"
1288
1580
  source = "registry+https://github.com/rust-lang/crates.io-index"
1289
1581
  checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
1290
1582
  dependencies = [
1291
- "const-oid 0.10.2",
1292
- "pem-rfc7468 1.0.0",
1583
+ "const-oid",
1584
+ "pem-rfc7468",
1293
1585
  "zeroize",
1294
1586
  ]
1295
1587
 
@@ -1312,6 +1604,20 @@ name = "deranged"
1312
1604
  version = "0.5.8"
1313
1605
  source = "registry+https://github.com/rust-lang/crates.io-index"
1314
1606
  checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
1607
+ dependencies = [
1608
+ "serde_core",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "derive-where"
1613
+ version = "1.6.1"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
1616
+ dependencies = [
1617
+ "proc-macro2",
1618
+ "quote",
1619
+ "syn 2.0.118",
1620
+ ]
1315
1621
 
1316
1622
  [[package]]
1317
1623
  name = "derive_builder"
@@ -1331,7 +1637,7 @@ dependencies = [
1331
1637
  "darling",
1332
1638
  "proc-macro2",
1333
1639
  "quote",
1334
- "syn",
1640
+ "syn 2.0.118",
1335
1641
  ]
1336
1642
 
1337
1643
  [[package]]
@@ -1341,7 +1647,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
1647
  checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
1342
1648
  dependencies = [
1343
1649
  "derive_builder_core",
1344
- "syn",
1650
+ "syn 2.0.118",
1345
1651
  ]
1346
1652
 
1347
1653
  [[package]]
@@ -1363,7 +1669,7 @@ dependencies = [
1363
1669
  "proc-macro2",
1364
1670
  "quote",
1365
1671
  "rustc_version",
1366
- "syn",
1672
+ "syn 2.0.118",
1367
1673
  "unicode-xid",
1368
1674
  ]
1369
1675
 
@@ -1383,7 +1689,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
1689
  checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
1384
1690
  dependencies = [
1385
1691
  "block-buffer 0.10.4",
1386
- "const-oid 0.9.6",
1387
1692
  "crypto-common 0.1.7",
1388
1693
  "subtle",
1389
1694
  ]
@@ -1395,7 +1700,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
1700
  checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
1396
1701
  dependencies = [
1397
1702
  "block-buffer 0.12.1",
1398
- "const-oid 0.10.2",
1703
+ "const-oid",
1399
1704
  "crypto-common 0.2.2",
1400
1705
  "ctutils",
1401
1706
  ]
@@ -1429,7 +1734,7 @@ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
1429
1734
  dependencies = [
1430
1735
  "proc-macro2",
1431
1736
  "quote",
1432
- "syn",
1737
+ "syn 2.0.118",
1433
1738
  ]
1434
1739
 
1435
1740
  [[package]]
@@ -1438,7 +1743,7 @@ version = "1.4.0"
1438
1743
  source = "registry+https://github.com/rust-lang/crates.io-index"
1439
1744
  checksum = "29547a1dc60885a552306986316bc9701ba120c1a8db6769fa68691529ad373d"
1440
1745
  dependencies = [
1441
- "base64",
1746
+ "base64 0.22.1",
1442
1747
  "serde",
1443
1748
  "serde_json",
1444
1749
  ]
@@ -1466,16 +1771,16 @@ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
1466
1771
 
1467
1772
  [[package]]
1468
1773
  name = "ecdsa"
1469
- version = "0.17.0-rc.18"
1774
+ version = "0.17.0"
1470
1775
  source = "registry+https://github.com/rust-lang/crates.io-index"
1471
- checksum = "54fb064faabbee66e1fc8e5c5a9458d4269dc2d8b638fe86a425adb2510d1a96"
1776
+ checksum = "c0681a4fc24c767085329728d8dfba959af91228aa4610cca4f8ce317ba46ae0"
1472
1777
  dependencies = [
1473
- "der 0.8.0",
1778
+ "der",
1474
1779
  "digest 0.11.3",
1475
1780
  "elliptic-curve",
1476
1781
  "rfc6979",
1477
1782
  "signature 3.0.0",
1478
- "spki 0.8.0",
1783
+ "spki",
1479
1784
  "zeroize",
1480
1785
  ]
1481
1786
 
@@ -1485,15 +1790,15 @@ version = "3.0.0"
1485
1790
  source = "registry+https://github.com/rust-lang/crates.io-index"
1486
1791
  checksum = "29fcf32e6c73d1079f83ab4d782de2d81620346a5f38c6237a86a22f8368980a"
1487
1792
  dependencies = [
1488
- "pkcs8 0.11.0",
1793
+ "pkcs8",
1489
1794
  "signature 3.0.0",
1490
1795
  ]
1491
1796
 
1492
1797
  [[package]]
1493
1798
  name = "ed25519-dalek"
1494
- version = "3.0.0-rc.0"
1799
+ version = "3.0.0"
1495
1800
  source = "registry+https://github.com/rust-lang/crates.io-index"
1496
- checksum = "b011170fe4f04665565b4110afef66774fe9ffff278f3eb5b81cc73d26e27d60"
1801
+ checksum = "6ebaa1a2bf1290ab3bfe5a7b771d050ebffab2711c19a81691c683a5144a25de"
1497
1802
  dependencies = [
1498
1803
  "curve25519-dalek",
1499
1804
  "ed25519",
@@ -1516,9 +1821,9 @@ dependencies = [
1516
1821
 
1517
1822
  [[package]]
1518
1823
  name = "elliptic-curve"
1519
- version = "0.14.0-rc.33"
1824
+ version = "0.14.1"
1520
1825
  source = "registry+https://github.com/rust-lang/crates.io-index"
1521
- checksum = "102d3643d30dd8b559613c5cced68317199597fffb278cdc88daa2ef7fafc935"
1826
+ checksum = "9d65aa39b3a5c1c9c1b745c9a019234bb7a21b77abcb4f4d266d706e2d577d65"
1522
1827
  dependencies = [
1523
1828
  "base16ct",
1524
1829
  "crypto-bigint",
@@ -1528,9 +1833,8 @@ dependencies = [
1528
1833
  "group",
1529
1834
  "hkdf 0.13.0",
1530
1835
  "hybrid-array",
1531
- "once_cell",
1532
- "pem-rfc7468 1.0.0",
1533
- "pkcs8 0.11.0",
1836
+ "pem-rfc7468",
1837
+ "pkcs8",
1534
1838
  "rand_core 0.10.1",
1535
1839
  "sec1",
1536
1840
  "subtle",
@@ -1561,7 +1865,7 @@ dependencies = [
1561
1865
  "once_cell",
1562
1866
  "proc-macro2",
1563
1867
  "quote",
1564
- "syn",
1868
+ "syn 2.0.118",
1565
1869
  ]
1566
1870
 
1567
1871
  [[package]]
@@ -1582,7 +1886,7 @@ checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
1582
1886
  dependencies = [
1583
1887
  "proc-macro2",
1584
1888
  "quote",
1585
- "syn",
1889
+ "syn 2.0.118",
1586
1890
  ]
1587
1891
 
1588
1892
  [[package]]
@@ -1598,18 +1902,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
1902
  checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1599
1903
  dependencies = [
1600
1904
  "libc",
1601
- "windows-sys 0.59.0",
1905
+ "windows-sys 0.52.0",
1602
1906
  ]
1603
1907
 
1604
1908
  [[package]]
1605
1909
  name = "etcetera"
1606
- version = "0.8.0"
1910
+ version = "0.11.0"
1607
1911
  source = "registry+https://github.com/rust-lang/crates.io-index"
1608
- checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
1912
+ checksum = "de48cc4d1c1d97a20fd819def54b890cadde72ed3ad0c614822a0a433361be96"
1609
1913
  dependencies = [
1610
1914
  "cfg-if",
1611
- "home",
1612
- "windows-sys 0.48.0",
1915
+ "windows-sys 0.61.2",
1613
1916
  ]
1614
1917
 
1615
1918
  [[package]]
@@ -1684,9 +1987,9 @@ dependencies = [
1684
1987
 
1685
1988
  [[package]]
1686
1989
  name = "flume"
1687
- version = "0.11.1"
1990
+ version = "0.12.0"
1688
1991
  source = "registry+https://github.com/rust-lang/crates.io-index"
1689
- checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
1992
+ checksum = "5e139bc46ca777eb5efaf62df0ab8cc5fd400866427e56c68b22e414e53bd3be"
1690
1993
  dependencies = [
1691
1994
  "futures-core",
1692
1995
  "futures-sink",
@@ -1735,6 +2038,12 @@ dependencies = [
1735
2038
  "libc",
1736
2039
  ]
1737
2040
 
2041
+ [[package]]
2042
+ name = "funty"
2043
+ version = "2.0.0"
2044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2045
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
2046
+
1738
2047
  [[package]]
1739
2048
  name = "futures"
1740
2049
  version = "0.3.32"
@@ -1815,7 +2124,7 @@ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1815
2124
  dependencies = [
1816
2125
  "proc-macro2",
1817
2126
  "quote",
1818
- "syn",
2127
+ "syn 2.0.118",
1819
2128
  ]
1820
2129
 
1821
2130
  [[package]]
@@ -1917,7 +2226,7 @@ checksum = "6cf442baaabe4213ce7d1239afc26c039180b6456da2cededa316ae2c8a77a77"
1917
2226
  dependencies = [
1918
2227
  "proc-macro2",
1919
2228
  "quote",
1920
- "syn",
2229
+ "syn 2.0.118",
1921
2230
  ]
1922
2231
 
1923
2232
  [[package]]
@@ -1985,6 +2294,7 @@ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1985
2294
  dependencies = [
1986
2295
  "cfg-if",
1987
2296
  "crunchy",
2297
+ "num-traits",
1988
2298
  "zerocopy",
1989
2299
  ]
1990
2300
 
@@ -1997,6 +2307,15 @@ dependencies = [
1997
2307
  "byteorder",
1998
2308
  ]
1999
2309
 
2310
+ [[package]]
2311
+ name = "hashbrown"
2312
+ version = "0.12.3"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2315
+ dependencies = [
2316
+ "ahash 0.7.8",
2317
+ ]
2318
+
2000
2319
  [[package]]
2001
2320
  name = "hashbrown"
2002
2321
  version = "0.14.5"
@@ -2008,10 +2327,19 @@ name = "hashbrown"
2008
2327
  version = "0.15.5"
2009
2328
  source = "registry+https://github.com/rust-lang/crates.io-index"
2010
2329
  checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
2330
+ dependencies = [
2331
+ "foldhash 0.1.5",
2332
+ ]
2333
+
2334
+ [[package]]
2335
+ name = "hashbrown"
2336
+ version = "0.16.1"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
2011
2339
  dependencies = [
2012
2340
  "allocator-api2",
2013
2341
  "equivalent",
2014
- "foldhash 0.1.5",
2342
+ "foldhash 0.2.0",
2015
2343
  ]
2016
2344
 
2017
2345
  [[package]]
@@ -2027,11 +2355,11 @@ dependencies = [
2027
2355
 
2028
2356
  [[package]]
2029
2357
  name = "hashlink"
2030
- version = "0.10.0"
2358
+ version = "0.11.1"
2031
2359
  source = "registry+https://github.com/rust-lang/crates.io-index"
2032
- checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
2360
+ checksum = "824e001ac4f3012dd16a264bec811403a67ca9deb6c102fc5049b32c4574b35f"
2033
2361
  dependencies = [
2034
- "hashbrown 0.15.5",
2362
+ "hashbrown 0.16.1",
2035
2363
  ]
2036
2364
 
2037
2365
  [[package]]
@@ -2090,10 +2418,10 @@ dependencies = [
2090
2418
  "hickory-proto",
2091
2419
  "idna",
2092
2420
  "ipnet",
2093
- "jni 0.22.4",
2421
+ "jni",
2094
2422
  "rand 0.10.2",
2095
2423
  "rustls",
2096
- "thiserror 2.0.18",
2424
+ "thiserror",
2097
2425
  "tinyvec",
2098
2426
  "tokio",
2099
2427
  "tokio-rustls",
@@ -2110,11 +2438,11 @@ dependencies = [
2110
2438
  "data-encoding",
2111
2439
  "idna",
2112
2440
  "ipnet",
2113
- "jni 0.22.4",
2441
+ "jni",
2114
2442
  "once_cell",
2115
2443
  "rand 0.10.2",
2116
2444
  "ring",
2117
- "thiserror 2.0.18",
2445
+ "thiserror",
2118
2446
  "tinyvec",
2119
2447
  "tracing",
2120
2448
  "url",
@@ -2156,15 +2484,6 @@ dependencies = [
2156
2484
  "digest 0.11.3",
2157
2485
  ]
2158
2486
 
2159
- [[package]]
2160
- name = "home"
2161
- version = "0.5.12"
2162
- source = "registry+https://github.com/rust-lang/crates.io-index"
2163
- checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
2164
- dependencies = [
2165
- "windows-sys 0.61.2",
2166
- ]
2167
-
2168
2487
  [[package]]
2169
2488
  name = "httlib-hpack"
2170
2489
  version = "0.1.3"
@@ -2230,9 +2549,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
2230
2549
 
2231
2550
  [[package]]
2232
2551
  name = "hybrid-array"
2233
- version = "0.4.12"
2552
+ version = "0.4.14"
2234
2553
  source = "registry+https://github.com/rust-lang/crates.io-index"
2235
- checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
2554
+ checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b"
2236
2555
  dependencies = [
2237
2556
  "ctutils",
2238
2557
  "subtle",
@@ -2282,7 +2601,7 @@ version = "0.1.20"
2282
2601
  source = "registry+https://github.com/rust-lang/crates.io-index"
2283
2602
  checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
2284
2603
  dependencies = [
2285
- "base64",
2604
+ "base64 0.22.1",
2286
2605
  "bytes",
2287
2606
  "futures-channel",
2288
2607
  "futures-util",
@@ -2453,14 +2772,12 @@ dependencies = [
2453
2772
  ]
2454
2773
 
2455
2774
  [[package]]
2456
- name = "inherent"
2457
- version = "1.0.13"
2775
+ name = "indoc"
2776
+ version = "2.0.7"
2458
2777
  source = "registry+https://github.com/rust-lang/crates.io-index"
2459
- checksum = "c727f80bfa4a6c6e2508d2f05b6f4bfce242030bd88ed15ae5331c5b5d30fba7"
2778
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
2460
2779
  dependencies = [
2461
- "proc-macro2",
2462
- "quote",
2463
- "syn",
2780
+ "rustversion",
2464
2781
  ]
2465
2782
 
2466
2783
  [[package]]
@@ -2546,26 +2863,19 @@ dependencies = [
2546
2863
  ]
2547
2864
 
2548
2865
  [[package]]
2549
- name = "itoa"
2550
- version = "1.0.18"
2866
+ name = "itertools"
2867
+ version = "0.14.0"
2551
2868
  source = "registry+https://github.com/rust-lang/crates.io-index"
2552
- checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
2869
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
2870
+ dependencies = [
2871
+ "either",
2872
+ ]
2553
2873
 
2554
2874
  [[package]]
2555
- name = "jni"
2556
- version = "0.21.1"
2875
+ name = "itoa"
2876
+ version = "1.0.18"
2557
2877
  source = "registry+https://github.com/rust-lang/crates.io-index"
2558
- checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
2559
- dependencies = [
2560
- "cesu8",
2561
- "cfg-if",
2562
- "combine",
2563
- "jni-sys 0.3.1",
2564
- "log",
2565
- "thiserror 1.0.69",
2566
- "walkdir",
2567
- "windows-sys 0.45.0",
2568
- ]
2878
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
2569
2879
 
2570
2880
  [[package]]
2571
2881
  name = "jni"
@@ -2576,10 +2886,10 @@ dependencies = [
2576
2886
  "cfg-if",
2577
2887
  "combine",
2578
2888
  "jni-macros",
2579
- "jni-sys 0.4.1",
2889
+ "jni-sys",
2580
2890
  "log",
2581
2891
  "simd_cesu8",
2582
- "thiserror 2.0.18",
2892
+ "thiserror",
2583
2893
  "walkdir",
2584
2894
  "windows-link",
2585
2895
  ]
@@ -2594,16 +2904,7 @@ dependencies = [
2594
2904
  "quote",
2595
2905
  "rustc_version",
2596
2906
  "simd_cesu8",
2597
- "syn",
2598
- ]
2599
-
2600
- [[package]]
2601
- name = "jni-sys"
2602
- version = "0.3.1"
2603
- source = "registry+https://github.com/rust-lang/crates.io-index"
2604
- checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
2605
- dependencies = [
2606
- "jni-sys 0.4.1",
2907
+ "syn 2.0.118",
2607
2908
  ]
2608
2909
 
2609
2910
  [[package]]
@@ -2622,7 +2923,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
2923
  checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
2623
2924
  dependencies = [
2624
2925
  "quote",
2625
- "syn",
2926
+ "syn 2.0.118",
2626
2927
  ]
2627
2928
 
2628
2929
  [[package]]
@@ -2653,7 +2954,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
2954
  checksum = "eba32bfb4ffdeaca3e34431072faf01745c9b26d25504aa7a6cf5684334fc4fc"
2654
2955
  dependencies = [
2655
2956
  "aws-lc-rs",
2656
- "base64",
2957
+ "base64 0.22.1",
2657
2958
  "getrandom 0.2.17",
2658
2959
  "js-sys",
2659
2960
  "serde",
@@ -2760,9 +3061,6 @@ name = "lazy_static"
2760
3061
  version = "1.5.0"
2761
3062
  source = "registry+https://github.com/rust-lang/crates.io-index"
2762
3063
  checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2763
- dependencies = [
2764
- "spin",
2765
- ]
2766
3064
 
2767
3065
  [[package]]
2768
3066
  name = "leb128fmt"
@@ -2770,6 +3068,63 @@ version = "0.1.0"
2770
3068
  source = "registry+https://github.com/rust-lang/crates.io-index"
2771
3069
  checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
2772
3070
 
3071
+ [[package]]
3072
+ name = "lexical-core"
3073
+ version = "1.0.6"
3074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3075
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
3076
+ dependencies = [
3077
+ "lexical-parse-float",
3078
+ "lexical-parse-integer",
3079
+ "lexical-util",
3080
+ "lexical-write-float",
3081
+ "lexical-write-integer",
3082
+ ]
3083
+
3084
+ [[package]]
3085
+ name = "lexical-parse-float"
3086
+ version = "1.0.6"
3087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3088
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
3089
+ dependencies = [
3090
+ "lexical-parse-integer",
3091
+ "lexical-util",
3092
+ ]
3093
+
3094
+ [[package]]
3095
+ name = "lexical-parse-integer"
3096
+ version = "1.0.6"
3097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3098
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
3099
+ dependencies = [
3100
+ "lexical-util",
3101
+ ]
3102
+
3103
+ [[package]]
3104
+ name = "lexical-util"
3105
+ version = "1.0.7"
3106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3107
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
3108
+
3109
+ [[package]]
3110
+ name = "lexical-write-float"
3111
+ version = "1.0.6"
3112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3113
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
3114
+ dependencies = [
3115
+ "lexical-util",
3116
+ "lexical-write-integer",
3117
+ ]
3118
+
3119
+ [[package]]
3120
+ name = "lexical-write-integer"
3121
+ version = "1.0.6"
3122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3123
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
3124
+ dependencies = [
3125
+ "lexical-util",
3126
+ ]
3127
+
2773
3128
  [[package]]
2774
3129
  name = "libc"
2775
3130
  version = "0.2.186"
@@ -2808,10 +3163,7 @@ version = "0.1.17"
2808
3163
  source = "registry+https://github.com/rust-lang/crates.io-index"
2809
3164
  checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
2810
3165
  dependencies = [
2811
- "bitflags 2.13.0",
2812
3166
  "libc",
2813
- "plain",
2814
- "redox_syscall 0.8.1",
2815
3167
  ]
2816
3168
 
2817
3169
  [[package]]
@@ -2883,6 +3235,17 @@ version = "0.1.2"
2883
3235
  source = "registry+https://github.com/rust-lang/crates.io-index"
2884
3236
  checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2885
3237
 
3238
+ [[package]]
3239
+ name = "mac_address"
3240
+ version = "1.1.8"
3241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3242
+ checksum = "c0aeb26bf5e836cc1c341c8106051b573f1766dfa05aa87f0b98be5e51b02303"
3243
+ dependencies = [
3244
+ "nix 0.29.0",
3245
+ "serde",
3246
+ "winapi",
3247
+ ]
3248
+
2886
3249
  [[package]]
2887
3250
  name = "magnus"
2888
3251
  version = "0.8.2"
@@ -2903,7 +3266,7 @@ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
2903
3266
  dependencies = [
2904
3267
  "proc-macro2",
2905
3268
  "quote",
2906
- "syn",
3269
+ "syn 2.0.118",
2907
3270
  ]
2908
3271
 
2909
3272
  [[package]]
@@ -2923,12 +3286,12 @@ dependencies = [
2923
3286
 
2924
3287
  [[package]]
2925
3288
  name = "md-5"
2926
- version = "0.10.6"
3289
+ version = "0.11.0"
2927
3290
  source = "registry+https://github.com/rust-lang/crates.io-index"
2928
- checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
3291
+ checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
2929
3292
  dependencies = [
2930
3293
  "cfg-if",
2931
- "digest 0.10.7",
3294
+ "digest 0.11.3",
2932
3295
  ]
2933
3296
 
2934
3297
  [[package]]
@@ -2954,13 +3317,14 @@ dependencies = [
2954
3317
 
2955
3318
  [[package]]
2956
3319
  name = "microsandbox"
2957
- version = "0.6.8"
2958
- source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.8#7958cddeff2fce10dbcfd0c0d6a32dec93a9d5ea"
3320
+ version = "0.6.9"
3321
+ source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.9#664552c033a5976c5c318eb1cef94867fce619ee"
2959
3322
  dependencies = [
2960
3323
  "anyhow",
2961
3324
  "astral-tokio-tar",
2962
3325
  "async-compression",
2963
- "base64",
3326
+ "base64 0.23.1",
3327
+ "blake3",
2964
3328
  "bytes",
2965
3329
  "chrono",
2966
3330
  "ciborium",
@@ -2987,10 +3351,12 @@ dependencies = [
2987
3351
  "nix 0.31.3",
2988
3352
  "notify",
2989
3353
  "rand 0.10.2",
3354
+ "rayon",
2990
3355
  "reqwest",
2991
3356
  "russh",
2992
3357
  "russh-sftp",
2993
3358
  "rustls",
3359
+ "rustls-platform-verifier",
2994
3360
  "scopeguard",
2995
3361
  "sea-orm",
2996
3362
  "serde",
@@ -2998,13 +3364,12 @@ dependencies = [
2998
3364
  "sha2 0.11.0",
2999
3365
  "tar",
3000
3366
  "tempfile",
3001
- "thiserror 2.0.18",
3367
+ "thiserror",
3002
3368
  "tokio",
3003
3369
  "tokio-tungstenite",
3004
3370
  "tracing",
3005
3371
  "typed-builder",
3006
3372
  "typed-path",
3007
- "webpki-roots 1.0.7",
3008
3373
  "which",
3009
3374
  "windows-sys 0.61.2",
3010
3375
  "zeroize",
@@ -3012,21 +3377,21 @@ dependencies = [
3012
3377
 
3013
3378
  [[package]]
3014
3379
  name = "microsandbox-agent-client"
3015
- version = "0.6.8"
3016
- source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.8#7958cddeff2fce10dbcfd0c0d6a32dec93a9d5ea"
3380
+ version = "0.6.9"
3381
+ source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.9#664552c033a5976c5c318eb1cef94867fce619ee"
3017
3382
  dependencies = [
3018
3383
  "ciborium",
3019
3384
  "microsandbox-protocol",
3020
3385
  "serde",
3021
- "thiserror 2.0.18",
3386
+ "thiserror",
3022
3387
  "tokio",
3023
3388
  "tracing",
3024
3389
  ]
3025
3390
 
3026
3391
  [[package]]
3027
3392
  name = "microsandbox-db"
3028
- version = "0.6.8"
3029
- source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.8#7958cddeff2fce10dbcfd0c0d6a32dec93a9d5ea"
3393
+ version = "0.6.9"
3394
+ source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.9#664552c033a5976c5c318eb1cef94867fce619ee"
3030
3395
  dependencies = [
3031
3396
  "async-trait",
3032
3397
  "sea-orm",
@@ -3037,8 +3402,8 @@ dependencies = [
3037
3402
 
3038
3403
  [[package]]
3039
3404
  name = "microsandbox-filesystem"
3040
- version = "0.6.8"
3041
- source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.8#7958cddeff2fce10dbcfd0c0d6a32dec93a9d5ea"
3405
+ version = "0.6.9"
3406
+ source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.9#664552c033a5976c5c318eb1cef94867fce619ee"
3042
3407
  dependencies = [
3043
3408
  "libc",
3044
3409
  "microsandbox-utils",
@@ -3050,8 +3415,8 @@ dependencies = [
3050
3415
 
3051
3416
  [[package]]
3052
3417
  name = "microsandbox-image"
3053
- version = "0.6.8"
3054
- source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.8#7958cddeff2fce10dbcfd0c0d6a32dec93a9d5ea"
3418
+ version = "0.6.9"
3419
+ source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.9#664552c033a5976c5c318eb1cef94867fce619ee"
3055
3420
  dependencies = [
3056
3421
  "astral-tokio-tar",
3057
3422
  "async-compression",
@@ -3062,13 +3427,13 @@ dependencies = [
3062
3427
  "microsandbox-utils",
3063
3428
  "oci-client",
3064
3429
  "oci-spec 0.10.0",
3065
- "rustls-pemfile",
3430
+ "rustls-pki-types",
3066
3431
  "scopeguard",
3067
3432
  "serde",
3068
3433
  "serde_json",
3069
3434
  "sha2 0.11.0",
3070
3435
  "tar",
3071
- "thiserror 2.0.18",
3436
+ "thiserror",
3072
3437
  "tokio",
3073
3438
  "tokio-util",
3074
3439
  "tracing",
@@ -3077,20 +3442,20 @@ dependencies = [
3077
3442
 
3078
3443
  [[package]]
3079
3444
  name = "microsandbox-metrics"
3080
- version = "0.6.8"
3081
- source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.8#7958cddeff2fce10dbcfd0c0d6a32dec93a9d5ea"
3445
+ version = "0.6.9"
3446
+ source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.9#664552c033a5976c5c318eb1cef94867fce619ee"
3082
3447
  dependencies = [
3083
3448
  "chrono",
3084
3449
  "libc",
3085
- "thiserror 2.0.18",
3450
+ "thiserror",
3086
3451
  "tracing",
3087
3452
  "windows-sys 0.61.2",
3088
3453
  ]
3089
3454
 
3090
3455
  [[package]]
3091
3456
  name = "microsandbox-migration"
3092
- version = "0.6.8"
3093
- source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.8#7958cddeff2fce10dbcfd0c0d6a32dec93a9d5ea"
3457
+ version = "0.6.9"
3458
+ source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.9#664552c033a5976c5c318eb1cef94867fce619ee"
3094
3459
  dependencies = [
3095
3460
  "sea-orm-migration",
3096
3461
  "serde_json",
@@ -3098,10 +3463,10 @@ dependencies = [
3098
3463
 
3099
3464
  [[package]]
3100
3465
  name = "microsandbox-network"
3101
- version = "0.6.8"
3102
- source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.8#7958cddeff2fce10dbcfd0c0d6a32dec93a9d5ea"
3466
+ version = "0.6.9"
3467
+ source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.9#664552c033a5976c5c318eb1cef94867fce619ee"
3103
3468
  dependencies = [
3104
- "base64",
3469
+ "base64 0.22.1",
3105
3470
  "bytes",
3106
3471
  "core-foundation 0.9.4",
3107
3472
  "crossbeam-queue",
@@ -3126,12 +3491,12 @@ dependencies = [
3126
3491
  "resolv-conf",
3127
3492
  "rustls",
3128
3493
  "rustls-native-certs",
3129
- "rustls-pemfile",
3494
+ "rustls-pki-types",
3130
3495
  "serde",
3131
3496
  "smoltcp",
3132
3497
  "socket2",
3133
3498
  "system-configuration",
3134
- "thiserror 2.0.18",
3499
+ "thiserror",
3135
3500
  "time",
3136
3501
  "tokio",
3137
3502
  "tokio-rustls",
@@ -3142,8 +3507,8 @@ dependencies = [
3142
3507
 
3143
3508
  [[package]]
3144
3509
  name = "microsandbox-protocol"
3145
- version = "0.6.8"
3146
- source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.8#7958cddeff2fce10dbcfd0c0d6a32dec93a9d5ea"
3510
+ version = "0.6.9"
3511
+ source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.9#664552c033a5976c5c318eb1cef94867fce619ee"
3147
3512
  dependencies = [
3148
3513
  "chrono",
3149
3514
  "ciborium",
@@ -3151,14 +3516,14 @@ dependencies = [
3151
3516
  "serde",
3152
3517
  "serde_bytes",
3153
3518
  "strum 0.28.0",
3154
- "thiserror 2.0.18",
3519
+ "thiserror",
3155
3520
  "tokio",
3156
3521
  ]
3157
3522
 
3158
3523
  [[package]]
3159
3524
  name = "microsandbox-runtime"
3160
- version = "0.6.8"
3161
- source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.8#7958cddeff2fce10dbcfd0c0d6a32dec93a9d5ea"
3525
+ version = "0.6.9"
3526
+ source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.9#664552c033a5976c5c318eb1cef94867fce619ee"
3162
3527
  dependencies = [
3163
3528
  "bytes",
3164
3529
  "chrono",
@@ -3173,14 +3538,17 @@ dependencies = [
3173
3538
  "microsandbox-protocol",
3174
3539
  "microsandbox-types",
3175
3540
  "microsandbox-utils",
3541
+ "microsandbox-vsock",
3176
3542
  "msb_krun",
3177
3543
  "nix 0.31.3",
3544
+ "rand 0.10.2",
3178
3545
  "rustls",
3179
3546
  "sea-orm",
3180
3547
  "serde",
3181
3548
  "serde_json",
3549
+ "sha2 0.11.0",
3182
3550
  "tempfile",
3183
- "thiserror 2.0.18",
3551
+ "thiserror",
3184
3552
  "tokio",
3185
3553
  "tracing",
3186
3554
  "windows-sys 0.61.2",
@@ -3189,22 +3557,22 @@ dependencies = [
3189
3557
 
3190
3558
  [[package]]
3191
3559
  name = "microsandbox-types"
3192
- version = "0.6.8"
3193
- source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.8#7958cddeff2fce10dbcfd0c0d6a32dec93a9d5ea"
3560
+ version = "0.6.9"
3561
+ source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.9#664552c033a5976c5c318eb1cef94867fce619ee"
3194
3562
  dependencies = [
3195
3563
  "chrono",
3196
3564
  "ipnetwork",
3197
3565
  "serde",
3198
3566
  "serde_json",
3199
3567
  "sha2 0.11.0",
3200
- "thiserror 2.0.18",
3568
+ "thiserror",
3201
3569
  "zeroize",
3202
3570
  ]
3203
3571
 
3204
3572
  [[package]]
3205
3573
  name = "microsandbox-utils"
3206
- version = "0.6.8"
3207
- source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.8#7958cddeff2fce10dbcfd0c0d6a32dec93a9d5ea"
3574
+ version = "0.6.9"
3575
+ source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.9#664552c033a5976c5c318eb1cef94867fce619ee"
3208
3576
  dependencies = [
3209
3577
  "dirs",
3210
3578
  "libc",
@@ -3214,9 +3582,22 @@ dependencies = [
3214
3582
  "windows-sys 0.61.2",
3215
3583
  ]
3216
3584
 
3585
+ [[package]]
3586
+ name = "microsandbox-vsock"
3587
+ version = "0.6.9"
3588
+ source = "git+https://github.com/superradcompany/microsandbox?tag=v0.6.9#664552c033a5976c5c318eb1cef94867fce619ee"
3589
+ dependencies = [
3590
+ "libc",
3591
+ "msb_krun",
3592
+ "nix 0.31.3",
3593
+ "tempfile",
3594
+ "tracing",
3595
+ "windows-sys 0.61.2",
3596
+ ]
3597
+
3217
3598
  [[package]]
3218
3599
  name = "microsandbox_rb"
3219
- version = "0.12.0"
3600
+ version = "0.14.0"
3220
3601
  dependencies = [
3221
3602
  "chrono",
3222
3603
  "futures",
@@ -3224,6 +3605,7 @@ dependencies = [
3224
3605
  "magnus",
3225
3606
  "microsandbox",
3226
3607
  "microsandbox-network",
3608
+ "microsandbox-runtime",
3227
3609
  "rb-sys",
3228
3610
  "serde_json",
3229
3611
  "tokio",
@@ -3272,9 +3654,9 @@ dependencies = [
3272
3654
  "hybrid-array",
3273
3655
  "kem",
3274
3656
  "module-lattice",
3275
- "pkcs8 0.11.0",
3657
+ "pkcs8",
3276
3658
  "rand_core 0.10.1",
3277
- "sha3",
3659
+ "sha3 0.11.0",
3278
3660
  ]
3279
3661
 
3280
3662
  [[package]]
@@ -3290,29 +3672,39 @@ dependencies = [
3290
3672
 
3291
3673
  [[package]]
3292
3674
  name = "msb-imago"
3293
- version = "0.1.1"
3675
+ version = "0.1.5"
3294
3676
  source = "registry+https://github.com/rust-lang/crates.io-index"
3295
- checksum = "c3077f41d73d78575dd706fcb626778eea7942ab2f1402ec040a4e11badc5dfa"
3677
+ checksum = "8563624d245da0b51b13959708758f06d1412cacdd17000b001f5ccae80cf6af"
3296
3678
  dependencies = [
3297
3679
  "async-trait",
3298
- "bincode",
3299
3680
  "cfg-if",
3300
3681
  "libc",
3301
3682
  "miniz_oxide",
3683
+ "msb-vm-memory",
3302
3684
  "nix 0.30.1",
3303
3685
  "page_size",
3304
3686
  "rustc_version",
3305
3687
  "tokio",
3306
3688
  "tracing",
3307
- "vm-memory",
3308
3689
  "windows-sys 0.61.2",
3309
3690
  ]
3310
3691
 
3692
+ [[package]]
3693
+ name = "msb-vm-memory"
3694
+ version = "0.18.0-msb.1"
3695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3696
+ checksum = "4c31dfbf17e640f6d661ae17e098b87c019821fe3eb4aba0e9eeada4ba678096"
3697
+ dependencies = [
3698
+ "libc",
3699
+ "thiserror",
3700
+ "winapi",
3701
+ ]
3702
+
3311
3703
  [[package]]
3312
3704
  name = "msb_krun"
3313
- version = "0.1.25"
3705
+ version = "0.1.31"
3314
3706
  source = "registry+https://github.com/rust-lang/crates.io-index"
3315
- checksum = "70bc09516a8ed366b6f20504f434d619991dc879101462d86b24ae133937bd3b"
3707
+ checksum = "40e6b83f6cf90f676779409ac026f4429adfd7a11886085a59773ddd3aa8207f"
3316
3708
  dependencies = [
3317
3709
  "crossbeam-channel",
3318
3710
  "kvm-bindings",
@@ -3320,40 +3712,40 @@ dependencies = [
3320
3712
  "libc",
3321
3713
  "libloading",
3322
3714
  "log",
3715
+ "msb-vm-memory",
3323
3716
  "msb_krun_devices",
3324
3717
  "msb_krun_hvf",
3325
3718
  "msb_krun_polly",
3326
3719
  "msb_krun_utils",
3327
3720
  "msb_krun_vmm",
3328
- "vm-memory",
3329
3721
  ]
3330
3722
 
3331
3723
  [[package]]
3332
3724
  name = "msb_krun_arch"
3333
- version = "0.1.25"
3725
+ version = "0.1.31"
3334
3726
  source = "registry+https://github.com/rust-lang/crates.io-index"
3335
- checksum = "0d63ddae3ce5ba871a2b90bad6d789bf43583b8e587620580376222aed65e96a"
3727
+ checksum = "929f9765edd9e12cc45e5876998456bf2dfb0d2244d4fe6ddf2fdb5c3dd7e99c"
3336
3728
  dependencies = [
3337
3729
  "kvm-bindings",
3338
3730
  "kvm-ioctls",
3339
3731
  "libc",
3732
+ "msb-vm-memory",
3340
3733
  "msb_krun_arch_gen",
3341
3734
  "msb_krun_smbios",
3342
3735
  "msb_krun_utils",
3343
- "vm-memory",
3344
3736
  ]
3345
3737
 
3346
3738
  [[package]]
3347
3739
  name = "msb_krun_arch_gen"
3348
- version = "0.1.25"
3740
+ version = "0.1.31"
3349
3741
  source = "registry+https://github.com/rust-lang/crates.io-index"
3350
- checksum = "b14a030e7cd5740010a9d6eedd1002d2d42cc1481670cfa22a4dc5a89143048f"
3742
+ checksum = "df83bf780774e4e131547a4e17d0ca389e5bbb04cdebcb626880b090cae20f2c"
3351
3743
 
3352
3744
  [[package]]
3353
3745
  name = "msb_krun_cpuid"
3354
- version = "0.1.25"
3746
+ version = "0.1.31"
3355
3747
  source = "registry+https://github.com/rust-lang/crates.io-index"
3356
- checksum = "f33e9fbcbf5e27657d62177689a499a0dd64d4321afde53463f17b66c1acc2d7"
3748
+ checksum = "7c569d5d7285ed8f8f80e58454fb3ee213fd2c06ec647cc108a16a2e095558bb"
3357
3749
  dependencies = [
3358
3750
  "kvm-bindings",
3359
3751
  "kvm-ioctls",
@@ -3362,9 +3754,9 @@ dependencies = [
3362
3754
 
3363
3755
  [[package]]
3364
3756
  name = "msb_krun_devices"
3365
- version = "0.1.25"
3757
+ version = "0.1.31"
3366
3758
  source = "registry+https://github.com/rust-lang/crates.io-index"
3367
- checksum = "ca9d5c0ea156c5253c18c880aa29f038e639e9f5526d93ebb848e60d46b2bdca"
3759
+ checksum = "422da6e72923c2debae8eaeddd2990b924df9042079b51a323b4f3de37ebbdaf"
3368
3760
  dependencies = [
3369
3761
  "bitflags 1.3.2",
3370
3762
  "capng",
@@ -3377,6 +3769,7 @@ dependencies = [
3377
3769
  "log",
3378
3770
  "lru",
3379
3771
  "msb-imago",
3772
+ "msb-vm-memory",
3380
3773
  "msb_krun_arch",
3381
3774
  "msb_krun_hvf",
3382
3775
  "msb_krun_polly",
@@ -3386,15 +3779,14 @@ dependencies = [
3386
3779
  "tokio",
3387
3780
  "virtio-bindings",
3388
3781
  "vm-fdt",
3389
- "vm-memory",
3390
3782
  "windows-sys 0.61.2",
3391
3783
  ]
3392
3784
 
3393
3785
  [[package]]
3394
3786
  name = "msb_krun_hvf"
3395
- version = "0.1.25"
3787
+ version = "0.1.31"
3396
3788
  source = "registry+https://github.com/rust-lang/crates.io-index"
3397
- checksum = "500d2d1d56525119b374ca622c351115eade0a75fb4ff8a16d1cc7117b29d169"
3789
+ checksum = "e5034e7b5ebd4f2f8caefb199f5f18483f8ed0c5cc6afb944b6ed0d127d59aa9"
3398
3790
  dependencies = [
3399
3791
  "crossbeam-channel",
3400
3792
  "libloading",
@@ -3404,19 +3796,19 @@ dependencies = [
3404
3796
 
3405
3797
  [[package]]
3406
3798
  name = "msb_krun_kernel"
3407
- version = "0.1.25"
3799
+ version = "0.1.31"
3408
3800
  source = "registry+https://github.com/rust-lang/crates.io-index"
3409
- checksum = "836b43c16a0932baebf32b657f34153fd90f2e839a33e0002d54c6f91b4019b7"
3801
+ checksum = "04163d07028500bf08e6247c40c64dd5bae462bbb1997cf6a9613d019976a055"
3410
3802
  dependencies = [
3803
+ "msb-vm-memory",
3411
3804
  "msb_krun_utils",
3412
- "vm-memory",
3413
3805
  ]
3414
3806
 
3415
3807
  [[package]]
3416
3808
  name = "msb_krun_polly"
3417
- version = "0.1.25"
3809
+ version = "0.1.31"
3418
3810
  source = "registry+https://github.com/rust-lang/crates.io-index"
3419
- checksum = "6457213dc30bdb1a8bcb3ceba3a548f442fc913874f11b970745f779a6bf4842"
3811
+ checksum = "9812193639b368ab800b5f87e18509ad30fd85a2e6a77a05265ffadfed2553d1"
3420
3812
  dependencies = [
3421
3813
  "libc",
3422
3814
  "msb_krun_utils",
@@ -3424,18 +3816,18 @@ dependencies = [
3424
3816
 
3425
3817
  [[package]]
3426
3818
  name = "msb_krun_smbios"
3427
- version = "0.1.25"
3819
+ version = "0.1.31"
3428
3820
  source = "registry+https://github.com/rust-lang/crates.io-index"
3429
- checksum = "91f33a174635431e57a0d59a4aed487599c2ff2ac9ca1ea2346626112a2499af"
3821
+ checksum = "8cfd3f05f6447f0ad85f04f688b106eb9f04bb64525fee1183757cf9705070a0"
3430
3822
  dependencies = [
3431
- "vm-memory",
3823
+ "msb-vm-memory",
3432
3824
  ]
3433
3825
 
3434
3826
  [[package]]
3435
3827
  name = "msb_krun_utils"
3436
- version = "0.1.25"
3828
+ version = "0.1.31"
3437
3829
  source = "registry+https://github.com/rust-lang/crates.io-index"
3438
- checksum = "54d6f5ee4b160d020de8c91d9237a9592472ee6353b1b72cd08d51b2149c9433"
3830
+ checksum = "b5ce62484f07792ab43a5ac64baa84435556f56a7633805e15030e990c3b98a3"
3439
3831
  dependencies = [
3440
3832
  "bitflags 1.3.2",
3441
3833
  "crossbeam-channel",
@@ -3449,9 +3841,9 @@ dependencies = [
3449
3841
 
3450
3842
  [[package]]
3451
3843
  name = "msb_krun_vmm"
3452
- version = "0.1.25"
3844
+ version = "0.1.31"
3453
3845
  source = "registry+https://github.com/rust-lang/crates.io-index"
3454
- checksum = "816b34f9bf7eef3f101e84452e663cf9ac6e173377d5ff277192fb8c82cf3199"
3846
+ checksum = "67546eb70fa306e3c7e97f525dac2db44b9cc1642b6684aec4369e3b7f9b3af3"
3455
3847
  dependencies = [
3456
3848
  "bzip2",
3457
3849
  "crossbeam-channel",
@@ -3461,6 +3853,7 @@ dependencies = [
3461
3853
  "libc",
3462
3854
  "libloading",
3463
3855
  "log",
3856
+ "msb-vm-memory",
3464
3857
  "msb_krun_arch",
3465
3858
  "msb_krun_arch_gen",
3466
3859
  "msb_krun_cpuid",
@@ -3470,7 +3863,6 @@ dependencies = [
3470
3863
  "msb_krun_polly",
3471
3864
  "msb_krun_utils",
3472
3865
  "nix 0.30.1",
3473
- "vm-memory",
3474
3866
  "windows-sys 0.61.2",
3475
3867
  "zstd",
3476
3868
  ]
@@ -3511,6 +3903,7 @@ dependencies = [
3511
3903
  "cfg-if",
3512
3904
  "cfg_aliases",
3513
3905
  "libc",
3906
+ "memoffset",
3514
3907
  ]
3515
3908
 
3516
3909
  [[package]]
@@ -3574,22 +3967,6 @@ dependencies = [
3574
3967
  "num-traits",
3575
3968
  ]
3576
3969
 
3577
- [[package]]
3578
- name = "num-bigint-dig"
3579
- version = "0.8.6"
3580
- source = "registry+https://github.com/rust-lang/crates.io-index"
3581
- checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
3582
- dependencies = [
3583
- "lazy_static",
3584
- "libm",
3585
- "num-integer",
3586
- "num-iter",
3587
- "num-traits",
3588
- "rand 0.8.6",
3589
- "smallvec",
3590
- "zeroize",
3591
- ]
3592
-
3593
3970
  [[package]]
3594
3971
  name = "num-complex"
3595
3972
  version = "0.4.6"
@@ -3667,7 +4044,7 @@ dependencies = [
3667
4044
  "serde",
3668
4045
  "serde_json",
3669
4046
  "sha2 0.11.0",
3670
- "thiserror 2.0.18",
4047
+ "thiserror",
3671
4048
  "tokio",
3672
4049
  "tracing",
3673
4050
  "unicase",
@@ -3687,7 +4064,7 @@ dependencies = [
3687
4064
  "serde_json",
3688
4065
  "strum 0.27.2",
3689
4066
  "strum_macros 0.27.2",
3690
- "thiserror 2.0.18",
4067
+ "thiserror",
3691
4068
  ]
3692
4069
 
3693
4070
  [[package]]
@@ -3704,7 +4081,7 @@ dependencies = [
3704
4081
  "serde_json",
3705
4082
  "strum 0.27.2",
3706
4083
  "strum_macros 0.27.2",
3707
- "thiserror 2.0.18",
4084
+ "thiserror",
3708
4085
  ]
3709
4086
 
3710
4087
  [[package]]
@@ -3795,14 +4172,14 @@ dependencies = [
3795
4172
  "proc-macro2",
3796
4173
  "proc-macro2-diagnostics",
3797
4174
  "quote",
3798
- "syn",
4175
+ "syn 2.0.118",
3799
4176
  ]
3800
4177
 
3801
4178
  [[package]]
3802
4179
  name = "p256"
3803
- version = "0.14.0-rc.10"
4180
+ version = "0.14.0"
3804
4181
  source = "registry+https://github.com/rust-lang/crates.io-index"
3805
- checksum = "41adc63effe99d48837a8cc0e6d7a77e32ae6a07f6000df466178dbc2193093e"
4182
+ checksum = "d2c9239b2dbc807adbbe147e8cf72ea7450c3a0aabe62cb8e75ff4ec22e1f72a"
3806
4183
  dependencies = [
3807
4184
  "ecdsa",
3808
4185
  "elliptic-curve",
@@ -3813,9 +4190,9 @@ dependencies = [
3813
4190
 
3814
4191
  [[package]]
3815
4192
  name = "p384"
3816
- version = "0.14.0-rc.10"
4193
+ version = "0.14.0"
3817
4194
  source = "registry+https://github.com/rust-lang/crates.io-index"
3818
- checksum = "9bd5333afa5ae0347f39e6a0f2c9c155da431583fd71fe5555bd0521b4ccaf02"
4195
+ checksum = "d17b851e6b3e378ab4ecb07fa2ed23f4d15f075735f8fec9fa1e7bdce5f8301f"
3819
4196
  dependencies = [
3820
4197
  "ecdsa",
3821
4198
  "elliptic-curve",
@@ -3827,9 +4204,9 @@ dependencies = [
3827
4204
 
3828
4205
  [[package]]
3829
4206
  name = "p521"
3830
- version = "0.14.0-rc.10"
4207
+ version = "0.14.0"
3831
4208
  source = "registry+https://github.com/rust-lang/crates.io-index"
3832
- checksum = "a3a5297f53dc16d35909060ba3032cff7867e8809f01e273ff325579d5f0ceae"
4209
+ checksum = "4ad64cc32c2dc466317c12ee5853e61f159f9eab1fe7efade0395dc2e7b43449"
3833
4210
  dependencies = [
3834
4211
  "base16ct",
3835
4212
  "ecdsa",
@@ -3863,7 +4240,7 @@ dependencies = [
3863
4240
  "log",
3864
4241
  "rand 0.10.2",
3865
4242
  "sha2 0.11.0",
3866
- "thiserror 2.0.18",
4243
+ "thiserror",
3867
4244
  "tokio",
3868
4245
  "windows",
3869
4246
  "windows-strings",
@@ -3893,7 +4270,7 @@ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
3893
4270
  dependencies = [
3894
4271
  "cfg-if",
3895
4272
  "libc",
3896
- "redox_syscall 0.5.18",
4273
+ "redox_syscall",
3897
4274
  "smallvec",
3898
4275
  "windows-link",
3899
4276
  ]
@@ -3923,19 +4300,10 @@ version = "3.0.6"
3923
4300
  source = "registry+https://github.com/rust-lang/crates.io-index"
3924
4301
  checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
3925
4302
  dependencies = [
3926
- "base64",
4303
+ "base64 0.22.1",
3927
4304
  "serde_core",
3928
4305
  ]
3929
4306
 
3930
- [[package]]
3931
- name = "pem-rfc7468"
3932
- version = "0.7.0"
3933
- source = "registry+https://github.com/rust-lang/crates.io-index"
3934
- checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
3935
- dependencies = [
3936
- "base64ct",
3937
- ]
3938
-
3939
4307
  [[package]]
3940
4308
  name = "pem-rfc7468"
3941
4309
  version = "1.0.0"
@@ -3951,6 +4319,15 @@ version = "2.3.2"
3951
4319
  source = "registry+https://github.com/rust-lang/crates.io-index"
3952
4320
  checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
3953
4321
 
4322
+ [[package]]
4323
+ name = "pgvector"
4324
+ version = "0.4.2"
4325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4326
+ checksum = "3673cba5b9a124916096a423b806a9f29620972c6c97b08db5f2053e9428b481"
4327
+ dependencies = [
4328
+ "serde",
4329
+ ]
4330
+
3954
4331
  [[package]]
3955
4332
  name = "phc"
3956
4333
  version = "0.6.1"
@@ -3978,25 +4355,14 @@ dependencies = [
3978
4355
  "futures-io",
3979
4356
  ]
3980
4357
 
3981
- [[package]]
3982
- name = "pkcs1"
3983
- version = "0.7.5"
3984
- source = "registry+https://github.com/rust-lang/crates.io-index"
3985
- checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
3986
- dependencies = [
3987
- "der 0.7.10",
3988
- "pkcs8 0.10.2",
3989
- "spki 0.7.3",
3990
- ]
3991
-
3992
4358
  [[package]]
3993
4359
  name = "pkcs1"
3994
4360
  version = "0.8.0-rc.4"
3995
4361
  source = "registry+https://github.com/rust-lang/crates.io-index"
3996
4362
  checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e"
3997
4363
  dependencies = [
3998
- "der 0.8.0",
3999
- "spki 0.8.0",
4364
+ "der",
4365
+ "spki",
4000
4366
  ]
4001
4367
 
4002
4368
  [[package]]
@@ -4007,22 +4373,12 @@ checksum = "279a91971a1d8eb1260a30938eae3be9cb67b472dffecb222fbbbe2fd2dc1453"
4007
4373
  dependencies = [
4008
4374
  "aes 0.9.1",
4009
4375
  "cbc 0.2.1",
4010
- "der 0.8.0",
4376
+ "der",
4011
4377
  "pbkdf2",
4012
4378
  "rand_core 0.10.1",
4013
4379
  "scrypt",
4014
4380
  "sha2 0.11.0",
4015
- "spki 0.8.0",
4016
- ]
4017
-
4018
- [[package]]
4019
- name = "pkcs8"
4020
- version = "0.10.2"
4021
- source = "registry+https://github.com/rust-lang/crates.io-index"
4022
- checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
4023
- dependencies = [
4024
- "der 0.7.10",
4025
- "spki 0.7.3",
4381
+ "spki",
4026
4382
  ]
4027
4383
 
4028
4384
  [[package]]
@@ -4031,10 +4387,10 @@ version = "0.11.0"
4031
4387
  source = "registry+https://github.com/rust-lang/crates.io-index"
4032
4388
  checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7"
4033
4389
  dependencies = [
4034
- "der 0.8.0",
4390
+ "der",
4035
4391
  "pkcs5",
4036
4392
  "rand_core 0.10.1",
4037
- "spki 0.8.0",
4393
+ "spki",
4038
4394
  ]
4039
4395
 
4040
4396
  [[package]]
@@ -4044,10 +4400,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4044
4400
  checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
4045
4401
 
4046
4402
  [[package]]
4047
- name = "plain"
4048
- version = "0.2.3"
4403
+ name = "pluralizer"
4404
+ version = "0.5.0"
4049
4405
  source = "registry+https://github.com/rust-lang/crates.io-index"
4050
- checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
4406
+ checksum = "4b3eba432a00a1f6c16f39147847a870e94e2e9b992759b503e330efec778cbe"
4407
+ dependencies = [
4408
+ "once_cell",
4409
+ "regex",
4410
+ ]
4051
4411
 
4052
4412
  [[package]]
4053
4413
  name = "polling"
@@ -4122,14 +4482,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4122
4482
  checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
4123
4483
  dependencies = [
4124
4484
  "proc-macro2",
4125
- "syn",
4485
+ "syn 2.0.118",
4126
4486
  ]
4127
4487
 
4128
4488
  [[package]]
4129
4489
  name = "primefield"
4130
- version = "0.14.0-rc.11"
4490
+ version = "0.14.0"
4131
4491
  source = "registry+https://github.com/rust-lang/crates.io-index"
4132
- checksum = "b1d7e42f46a29abc16fb621a3466ee453358ebaae48a9e515f287e0af052ed8f"
4492
+ checksum = "c555a6e4eb7d4e158fcb028c835c3b8642206ddc279b5c6b202ef9a8bdb592f4"
4133
4493
  dependencies = [
4134
4494
  "crypto-bigint",
4135
4495
  "crypto-common 0.2.2",
@@ -4141,11 +4501,15 @@ dependencies = [
4141
4501
 
4142
4502
  [[package]]
4143
4503
  name = "primeorder"
4144
- version = "0.14.0-rc.10"
4504
+ version = "0.14.0"
4145
4505
  source = "registry+https://github.com/rust-lang/crates.io-index"
4146
- checksum = "7d2793f22b9b6fd11ef3ac1d59bf003c2573593e4968702341605c2748fd90bf"
4506
+ checksum = "5c9f42978c78a00e3d68f69fc03e57a234debae69da4020a4fb588fcdcd07b06"
4147
4507
  dependencies = [
4148
4508
  "elliptic-curve",
4509
+ "once_cell",
4510
+ "primefield",
4511
+ "serdect",
4512
+ "wnaf",
4149
4513
  ]
4150
4514
 
4151
4515
  [[package]]
@@ -4176,7 +4540,7 @@ dependencies = [
4176
4540
  "proc-macro-error-attr2",
4177
4541
  "proc-macro2",
4178
4542
  "quote",
4179
- "syn",
4543
+ "syn 2.0.118",
4180
4544
  ]
4181
4545
 
4182
4546
  [[package]]
@@ -4196,11 +4560,31 @@ checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
4196
4560
  dependencies = [
4197
4561
  "proc-macro2",
4198
4562
  "quote",
4199
- "syn",
4563
+ "syn 2.0.118",
4200
4564
  "version_check",
4201
4565
  "yansi",
4202
4566
  ]
4203
4567
 
4568
+ [[package]]
4569
+ name = "ptr_meta"
4570
+ version = "0.1.4"
4571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4572
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
4573
+ dependencies = [
4574
+ "ptr_meta_derive",
4575
+ ]
4576
+
4577
+ [[package]]
4578
+ name = "ptr_meta_derive"
4579
+ version = "0.1.4"
4580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4581
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
4582
+ dependencies = [
4583
+ "proc-macro2",
4584
+ "quote",
4585
+ "syn 1.0.109",
4586
+ ]
4587
+
4204
4588
  [[package]]
4205
4589
  name = "quinn"
4206
4590
  version = "0.11.9"
@@ -4215,7 +4599,7 @@ dependencies = [
4215
4599
  "rustc-hash",
4216
4600
  "rustls",
4217
4601
  "socket2",
4218
- "thiserror 2.0.18",
4602
+ "thiserror",
4219
4603
  "tokio",
4220
4604
  "tracing",
4221
4605
  "web-time",
@@ -4238,7 +4622,7 @@ dependencies = [
4238
4622
  "rustls",
4239
4623
  "rustls-pki-types",
4240
4624
  "slab",
4241
- "thiserror 2.0.18",
4625
+ "thiserror",
4242
4626
  "tinyvec",
4243
4627
  "tracing",
4244
4628
  "web-time",
@@ -4279,6 +4663,12 @@ version = "6.0.0"
4279
4663
  source = "registry+https://github.com/rust-lang/crates.io-index"
4280
4664
  checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
4281
4665
 
4666
+ [[package]]
4667
+ name = "radium"
4668
+ version = "0.7.0"
4669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4670
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
4671
+
4282
4672
  [[package]]
4283
4673
  name = "rand"
4284
4674
  version = "0.8.6"
@@ -4364,6 +4754,26 @@ dependencies = [
4364
4754
  "rand_core 0.10.1",
4365
4755
  ]
4366
4756
 
4757
+ [[package]]
4758
+ name = "rayon"
4759
+ version = "1.12.0"
4760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4761
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
4762
+ dependencies = [
4763
+ "either",
4764
+ "rayon-core",
4765
+ ]
4766
+
4767
+ [[package]]
4768
+ name = "rayon-core"
4769
+ version = "1.13.0"
4770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4771
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
4772
+ dependencies = [
4773
+ "crossbeam-deque",
4774
+ "crossbeam-utils",
4775
+ ]
4776
+
4367
4777
  [[package]]
4368
4778
  name = "rb-sys"
4369
4779
  version = "0.9.128"
@@ -4385,7 +4795,7 @@ dependencies = [
4385
4795
  "quote",
4386
4796
  "regex",
4387
4797
  "shell-words",
4388
- "syn",
4798
+ "syn 2.0.118",
4389
4799
  ]
4390
4800
 
4391
4801
  [[package]]
@@ -4417,15 +4827,6 @@ dependencies = [
4417
4827
  "bitflags 2.13.0",
4418
4828
  ]
4419
4829
 
4420
- [[package]]
4421
- name = "redox_syscall"
4422
- version = "0.8.1"
4423
- source = "registry+https://github.com/rust-lang/crates.io-index"
4424
- checksum = "5b44b894f2a6e36457d665d1e08c3866add6ed5e70050c1b4ba8a8ddedb02ce7"
4425
- dependencies = [
4426
- "bitflags 2.13.0",
4427
- ]
4428
-
4429
4830
  [[package]]
4430
4831
  name = "redox_users"
4431
4832
  version = "0.5.2"
@@ -4434,7 +4835,7 @@ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
4434
4835
  dependencies = [
4435
4836
  "getrandom 0.2.17",
4436
4837
  "libredox",
4437
- "thiserror 2.0.18",
4838
+ "thiserror",
4438
4839
  ]
4439
4840
 
4440
4841
  [[package]]
@@ -4478,13 +4879,22 @@ version = "0.8.11"
4478
4879
  source = "registry+https://github.com/rust-lang/crates.io-index"
4479
4880
  checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
4480
4881
 
4882
+ [[package]]
4883
+ name = "rend"
4884
+ version = "0.4.2"
4885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4886
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
4887
+ dependencies = [
4888
+ "bytecheck",
4889
+ ]
4890
+
4481
4891
  [[package]]
4482
4892
  name = "reqwest"
4483
4893
  version = "0.13.4"
4484
4894
  source = "registry+https://github.com/rust-lang/crates.io-index"
4485
4895
  checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
4486
4896
  dependencies = [
4487
- "base64",
4897
+ "base64 0.22.1",
4488
4898
  "bytes",
4489
4899
  "encoding_rs",
4490
4900
  "futures-core",
@@ -4504,7 +4914,7 @@ dependencies = [
4504
4914
  "quinn",
4505
4915
  "rustls",
4506
4916
  "rustls-pki-types",
4507
- "rustls-platform-verifier 0.7.0",
4917
+ "rustls-platform-verifier",
4508
4918
  "serde",
4509
4919
  "serde_json",
4510
4920
  "serde_urlencoded",
@@ -4530,12 +4940,12 @@ checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7"
4530
4940
 
4531
4941
  [[package]]
4532
4942
  name = "rfc6979"
4533
- version = "0.5.0"
4943
+ version = "0.6.0"
4534
4944
  source = "registry+https://github.com/rust-lang/crates.io-index"
4535
- checksum = "5236ce872cac07e0fb3969b0cbf468c7d2f37d432f1b627dcb7b8d34563fb0c3"
4945
+ checksum = "b4a459cddafb3fe76b31fd8f1108007566c40301feb64dc7b54656eb7388172b"
4536
4946
  dependencies = [
4947
+ "crypto-bigint",
4537
4948
  "hmac 0.13.0",
4538
- "subtle",
4539
4949
  ]
4540
4950
 
4541
4951
  [[package]]
@@ -4553,49 +4963,58 @@ dependencies = [
4553
4963
  ]
4554
4964
 
4555
4965
  [[package]]
4556
- name = "rsa"
4557
- version = "0.9.10"
4966
+ name = "rkyv"
4967
+ version = "0.7.46"
4558
4968
  source = "registry+https://github.com/rust-lang/crates.io-index"
4559
- checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
4969
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
4560
4970
  dependencies = [
4561
- "const-oid 0.9.6",
4562
- "digest 0.10.7",
4563
- "num-bigint-dig",
4564
- "num-integer",
4565
- "num-traits",
4566
- "pkcs1 0.7.5",
4567
- "pkcs8 0.10.2",
4568
- "rand_core 0.6.4",
4569
- "signature 2.2.0",
4570
- "spki 0.7.3",
4571
- "subtle",
4572
- "zeroize",
4971
+ "bitvec",
4972
+ "bytecheck",
4973
+ "bytes",
4974
+ "hashbrown 0.12.3",
4975
+ "ptr_meta",
4976
+ "rend",
4977
+ "rkyv_derive",
4978
+ "seahash",
4979
+ "tinyvec",
4980
+ "uuid",
4573
4981
  ]
4574
4982
 
4575
4983
  [[package]]
4576
- name = "rsa"
4577
- version = "0.10.0-rc.18"
4984
+ name = "rkyv_derive"
4985
+ version = "0.7.46"
4578
4986
  source = "registry+https://github.com/rust-lang/crates.io-index"
4579
- checksum = "30b2aa4ba0d89f73d1e332df05be0eeab8840351c36ca5654341dfdb57bb3caf"
4987
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
4580
4988
  dependencies = [
4581
- "const-oid 0.10.2",
4989
+ "proc-macro2",
4990
+ "quote",
4991
+ "syn 1.0.109",
4992
+ ]
4993
+
4994
+ [[package]]
4995
+ name = "rsa"
4996
+ version = "0.10.0-rc.18"
4997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4998
+ checksum = "30b2aa4ba0d89f73d1e332df05be0eeab8840351c36ca5654341dfdb57bb3caf"
4999
+ dependencies = [
5000
+ "const-oid",
4582
5001
  "crypto-bigint",
4583
5002
  "crypto-primes",
4584
5003
  "digest 0.11.3",
4585
- "pkcs1 0.8.0-rc.4",
4586
- "pkcs8 0.11.0",
5004
+ "pkcs1",
5005
+ "pkcs8",
4587
5006
  "rand_core 0.10.1",
4588
5007
  "sha2 0.11.0",
4589
5008
  "signature 3.0.0",
4590
- "spki 0.8.0",
5009
+ "spki",
4591
5010
  "zeroize",
4592
5011
  ]
4593
5012
 
4594
5013
  [[package]]
4595
5014
  name = "russh"
4596
- version = "0.61.2"
5015
+ version = "0.62.5"
4597
5016
  source = "registry+https://github.com/rust-lang/crates.io-index"
4598
- checksum = "bbf893f64684e58da8a68d56a5e84d1cf0440226274c515770fe267707a7d0b0"
5017
+ checksum = "da7c230e0ed9cbeb92fbad6c8848985d6df2a1464c0dc247a021abd666e9005e"
4599
5018
  dependencies = [
4600
5019
  "aes 0.9.1",
4601
5020
  "aws-lc-rs",
@@ -4610,7 +5029,7 @@ dependencies = [
4610
5029
  "curve25519-dalek",
4611
5030
  "data-encoding",
4612
5031
  "delegate",
4613
- "der 0.8.0",
5032
+ "der",
4614
5033
  "digest 0.11.3",
4615
5034
  "ecdsa",
4616
5035
  "ed25519-dalek",
@@ -4636,13 +5055,13 @@ dependencies = [
4636
5055
  "p521",
4637
5056
  "pageant",
4638
5057
  "pbkdf2",
4639
- "pkcs1 0.8.0-rc.4",
5058
+ "pkcs1",
4640
5059
  "pkcs5",
4641
- "pkcs8 0.11.0",
5060
+ "pkcs8",
4642
5061
  "polyval",
4643
5062
  "rand 0.10.2",
4644
5063
  "rand_core 0.10.1",
4645
- "rsa 0.10.0-rc.18",
5064
+ "rsa",
4646
5065
  "russh-cryptovec",
4647
5066
  "russh-util",
4648
5067
  "salsa20",
@@ -4650,13 +5069,13 @@ dependencies = [
4650
5069
  "sec1",
4651
5070
  "sha1 0.11.0",
4652
5071
  "sha2 0.11.0",
4653
- "sha3",
5072
+ "sha3 0.12.0",
4654
5073
  "signature 3.0.0",
4655
- "spki 0.8.0",
5074
+ "spki",
4656
5075
  "ssh-encoding",
4657
5076
  "ssh-key",
4658
5077
  "subtle",
4659
- "thiserror 2.0.18",
5078
+ "thiserror",
4660
5079
  "tokio",
4661
5080
  "typenum",
4662
5081
  "universal-hash",
@@ -4665,9 +5084,9 @@ dependencies = [
4665
5084
 
4666
5085
  [[package]]
4667
5086
  name = "russh-cryptovec"
4668
- version = "0.61.0"
5087
+ version = "0.62.0"
4669
5088
  source = "registry+https://github.com/rust-lang/crates.io-index"
4670
- checksum = "443f6bbcfacb34a1aab2b12b99bf08e0c63abdc5a0db261901365df9d57fff51"
5089
+ checksum = "3aec6cb630dbe85d72ffd7bcd95f07e1bd69f9f270ee8adfa1afe443a6331438"
4671
5090
  dependencies = [
4672
5091
  "log",
4673
5092
  "nix 0.31.3",
@@ -4689,7 +5108,7 @@ dependencies = [
4689
5108
  "log",
4690
5109
  "serde",
4691
5110
  "serde_bytes",
4692
- "thiserror 2.0.18",
5111
+ "thiserror",
4693
5112
  "tokio",
4694
5113
  "tokio-util",
4695
5114
  "wasm-bindgen-futures",
@@ -4707,6 +5126,23 @@ dependencies = [
4707
5126
  "wasm-bindgen-futures",
4708
5127
  ]
4709
5128
 
5129
+ [[package]]
5130
+ name = "rust_decimal"
5131
+ version = "1.42.1"
5132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5133
+ checksum = "be2a24f50780bc85f09cc6ac299bdf1424302742d77221106859c9d8b102126a"
5134
+ dependencies = [
5135
+ "arrayvec",
5136
+ "borsh",
5137
+ "bytes",
5138
+ "num-traits",
5139
+ "rand 0.8.6",
5140
+ "rkyv",
5141
+ "serde",
5142
+ "serde_json",
5143
+ "wasm-bindgen",
5144
+ ]
5145
+
4710
5146
  [[package]]
4711
5147
  name = "rustc-hash"
4712
5148
  version = "2.1.2"
@@ -4741,7 +5177,7 @@ dependencies = [
4741
5177
  "errno",
4742
5178
  "libc",
4743
5179
  "linux-raw-sys",
4744
- "windows-sys 0.59.0",
5180
+ "windows-sys 0.52.0",
4745
5181
  ]
4746
5182
 
4747
5183
  [[package]]
@@ -4772,15 +5208,6 @@ dependencies = [
4772
5208
  "security-framework 3.7.0",
4773
5209
  ]
4774
5210
 
4775
- [[package]]
4776
- name = "rustls-pemfile"
4777
- version = "2.2.0"
4778
- source = "registry+https://github.com/rust-lang/crates.io-index"
4779
- checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
4780
- dependencies = [
4781
- "rustls-pki-types",
4782
- ]
4783
-
4784
5211
  [[package]]
4785
5212
  name = "rustls-pki-types"
4786
5213
  version = "1.14.1"
@@ -4791,27 +5218,6 @@ dependencies = [
4791
5218
  "zeroize",
4792
5219
  ]
4793
5220
 
4794
- [[package]]
4795
- name = "rustls-platform-verifier"
4796
- version = "0.6.2"
4797
- source = "registry+https://github.com/rust-lang/crates.io-index"
4798
- checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
4799
- dependencies = [
4800
- "core-foundation 0.10.1",
4801
- "core-foundation-sys",
4802
- "jni 0.21.1",
4803
- "log",
4804
- "once_cell",
4805
- "rustls",
4806
- "rustls-native-certs",
4807
- "rustls-platform-verifier-android",
4808
- "rustls-webpki",
4809
- "security-framework 3.7.0",
4810
- "security-framework-sys",
4811
- "webpki-root-certs",
4812
- "windows-sys 0.59.0",
4813
- ]
4814
-
4815
5221
  [[package]]
4816
5222
  name = "rustls-platform-verifier"
4817
5223
  version = "0.7.0"
@@ -4820,7 +5226,7 @@ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
4820
5226
  dependencies = [
4821
5227
  "core-foundation 0.10.1",
4822
5228
  "core-foundation-sys",
4823
- "jni 0.22.4",
5229
+ "jni",
4824
5230
  "log",
4825
5231
  "once_cell",
4826
5232
  "rustls",
@@ -4830,7 +5236,7 @@ dependencies = [
4830
5236
  "security-framework 3.7.0",
4831
5237
  "security-framework-sys",
4832
5238
  "webpki-root-certs",
4833
- "windows-sys 0.59.0",
5239
+ "windows-sys 0.52.0",
4834
5240
  ]
4835
5241
 
4836
5242
  [[package]]
@@ -4919,41 +5325,66 @@ dependencies = [
4919
5325
  "proc-macro-error2",
4920
5326
  "proc-macro2",
4921
5327
  "quote",
4922
- "syn",
5328
+ "syn 2.0.118",
4923
5329
  ]
4924
5330
 
4925
5331
  [[package]]
4926
5332
  name = "sea-orm"
4927
- version = "1.1.20"
5333
+ version = "2.0.2"
4928
5334
  source = "registry+https://github.com/rust-lang/crates.io-index"
4929
- checksum = "2dc312fedd460a47ea563911761d254a84e7b51d8cc73ec92c929e78f33fa957"
5335
+ checksum = "a334e83ced3ae3ee44db0f84d1fcf8d2087a1ad9bb9036f00f9f6067156ea197"
4930
5336
  dependencies = [
4931
5337
  "async-stream",
4932
5338
  "async-trait",
5339
+ "bigdecimal",
4933
5340
  "chrono",
5341
+ "derive-where",
4934
5342
  "derive_more",
4935
5343
  "futures-util",
5344
+ "itertools 0.14.0",
4936
5345
  "log",
5346
+ "mac_address",
4937
5347
  "ouroboros",
5348
+ "pgvector",
5349
+ "rust_decimal",
5350
+ "sea-orm-arrow",
4938
5351
  "sea-orm-macros",
4939
5352
  "sea-query",
4940
- "sea-query-binder",
5353
+ "sea-query-sqlx",
5354
+ "sea-schema",
4941
5355
  "serde",
5356
+ "serde_json",
4942
5357
  "sqlx",
4943
- "strum 0.26.3",
4944
- "thiserror 2.0.18",
5358
+ "sqlx-core",
5359
+ "strum 0.28.0",
5360
+ "thiserror",
5361
+ "time",
4945
5362
  "tracing",
4946
5363
  "url",
5364
+ "uuid",
5365
+ "web-time",
5366
+ ]
5367
+
5368
+ [[package]]
5369
+ name = "sea-orm-arrow"
5370
+ version = "2.0.0-rc.4"
5371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5372
+ checksum = "4c800d9db902534d7d01728faf98e33d13c1d57bb8c57d8e4c518309172bddda"
5373
+ dependencies = [
5374
+ "arrow",
5375
+ "sea-query",
5376
+ "thiserror",
4947
5377
  ]
4948
5378
 
4949
5379
  [[package]]
4950
5380
  name = "sea-orm-cli"
4951
- version = "1.1.20"
5381
+ version = "2.0.2"
4952
5382
  source = "registry+https://github.com/rust-lang/crates.io-index"
4953
- checksum = "da80ebcdb44571e86f03a2bdcb5532136a87397f366f38bbce64673fc5e6a450"
5383
+ checksum = "5a53505884d7c907bcf4f7b4ddb1b29425e62fef8b98aea9c99e17781cceb798"
4954
5384
  dependencies = [
4955
5385
  "chrono",
4956
5386
  "glob",
5387
+ "indoc",
4957
5388
  "regex",
4958
5389
  "sea-schema",
4959
5390
  "sqlx",
@@ -4965,23 +5396,25 @@ dependencies = [
4965
5396
 
4966
5397
  [[package]]
4967
5398
  name = "sea-orm-macros"
4968
- version = "1.1.20"
5399
+ version = "2.0.2"
4969
5400
  source = "registry+https://github.com/rust-lang/crates.io-index"
4970
- checksum = "9b9a3f90e336ec74803e8eb98c61bc98754c1adfba3b4f84d946237b752b1c88"
5401
+ checksum = "4039a86f9acc4d3b52747508b347dddc6fd725bbc429902ebeb6d26225fc2528"
4971
5402
  dependencies = [
4972
5403
  "heck 0.5.0",
5404
+ "itertools 0.14.0",
5405
+ "pluralizer",
4973
5406
  "proc-macro2",
4974
5407
  "quote",
4975
5408
  "sea-bae",
4976
- "syn",
5409
+ "syn 2.0.118",
4977
5410
  "unicode-ident",
4978
5411
  ]
4979
5412
 
4980
5413
  [[package]]
4981
5414
  name = "sea-orm-migration"
4982
- version = "1.1.20"
5415
+ version = "2.0.2"
4983
5416
  source = "registry+https://github.com/rust-lang/crates.io-index"
4984
- checksum = "07c577f2959277e936c1d08109acd1e08fc36a95ef29ec028190ba82cad8f96e"
5417
+ checksum = "bd09adbef87100d07131a60a8c5508b53d0cf2136521f654aae47af5e6a097fe"
4985
5418
  dependencies = [
4986
5419
  "async-trait",
4987
5420
  "sea-orm",
@@ -4993,50 +5426,52 @@ dependencies = [
4993
5426
 
4994
5427
  [[package]]
4995
5428
  name = "sea-query"
4996
- version = "0.32.7"
5429
+ version = "1.0.2"
4997
5430
  source = "registry+https://github.com/rust-lang/crates.io-index"
4998
- checksum = "8a5d1c518eaf5eda38e5773f902b26ab6d5e9e9e2bb2349ca6c64cf96f80448c"
5431
+ checksum = "546040c653a705e60ec65ecd3191a809603734bebbc225775916dea9ae409b31"
4999
5432
  dependencies = [
5000
5433
  "chrono",
5001
- "inherent",
5002
5434
  "ordered-float",
5435
+ "rust_decimal",
5003
5436
  "sea-query-derive",
5004
- ]
5005
-
5006
- [[package]]
5007
- name = "sea-query-binder"
5008
- version = "0.7.0"
5009
- source = "registry+https://github.com/rust-lang/crates.io-index"
5010
- checksum = "b0019f47430f7995af63deda77e238c17323359af241233ec768aba1faea7608"
5011
- dependencies = [
5012
- "chrono",
5013
- "sea-query",
5014
- "sqlx",
5437
+ "serde_json",
5438
+ "time",
5439
+ "uuid",
5015
5440
  ]
5016
5441
 
5017
5442
  [[package]]
5018
5443
  name = "sea-query-derive"
5019
- version = "0.4.3"
5444
+ version = "1.0.0"
5020
5445
  source = "registry+https://github.com/rust-lang/crates.io-index"
5021
- checksum = "bae0cbad6ab996955664982739354128c58d16e126114fe88c2a493642502aab"
5446
+ checksum = "a0b0f466921cdd3cf4b89d5c3ac2173dba89a873ab395b123a645de181ec7537"
5022
5447
  dependencies = [
5023
5448
  "darling",
5024
5449
  "heck 0.4.1",
5025
5450
  "proc-macro2",
5026
5451
  "quote",
5027
- "syn",
5028
- "thiserror 2.0.18",
5452
+ "syn 2.0.118",
5453
+ "thiserror",
5454
+ ]
5455
+
5456
+ [[package]]
5457
+ name = "sea-query-sqlx"
5458
+ version = "0.9.1"
5459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5460
+ checksum = "4eaa419cdb9157da1361186b1959983eb2ea0dcb9a3c69dc45c449ecb2af8fef"
5461
+ dependencies = [
5462
+ "sea-query",
5463
+ "sqlx",
5029
5464
  ]
5030
5465
 
5031
5466
  [[package]]
5032
5467
  name = "sea-schema"
5033
- version = "0.16.2"
5468
+ version = "0.18.1"
5034
5469
  source = "registry+https://github.com/rust-lang/crates.io-index"
5035
- checksum = "2239ff574c04858ca77485f112afea1a15e53135d3097d0c86509cef1def1338"
5470
+ checksum = "3553c77dceed56e95bece9ea876c4dd67ca879ef51055a0b97a7bb89a8ae4fed"
5036
5471
  dependencies = [
5037
- "futures",
5472
+ "async-trait",
5038
5473
  "sea-query",
5039
- "sea-query-binder",
5474
+ "sea-query-sqlx",
5040
5475
  "sea-schema-derive",
5041
5476
  "sqlx",
5042
5477
  ]
@@ -5050,9 +5485,15 @@ dependencies = [
5050
5485
  "heck 0.4.1",
5051
5486
  "proc-macro2",
5052
5487
  "quote",
5053
- "syn",
5488
+ "syn 2.0.118",
5054
5489
  ]
5055
5490
 
5491
+ [[package]]
5492
+ name = "seahash"
5493
+ version = "4.1.0"
5494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5495
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
5496
+
5056
5497
  [[package]]
5057
5498
  name = "sec1"
5058
5499
  version = "0.8.1"
@@ -5061,7 +5502,7 @@ checksum = "d56d437c2f19203ce5f7122e507831de96f3d2d4d3be5af44a0b0a09d8a80e4d"
5061
5502
  dependencies = [
5062
5503
  "base16ct",
5063
5504
  "ctutils",
5064
- "der 0.8.0",
5505
+ "der",
5065
5506
  "hybrid-array",
5066
5507
  "subtle",
5067
5508
  "zeroize",
@@ -5171,7 +5612,7 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
5171
5612
  dependencies = [
5172
5613
  "proc-macro2",
5173
5614
  "quote",
5174
- "syn",
5615
+ "syn 2.0.118",
5175
5616
  ]
5176
5617
 
5177
5618
  [[package]]
@@ -5195,7 +5636,7 @@ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
5195
5636
  dependencies = [
5196
5637
  "proc-macro2",
5197
5638
  "quote",
5198
- "syn",
5639
+ "syn 2.0.118",
5199
5640
  ]
5200
5641
 
5201
5642
  [[package]]
@@ -5274,6 +5715,17 @@ dependencies = [
5274
5715
  "keccak",
5275
5716
  ]
5276
5717
 
5718
+ [[package]]
5719
+ name = "sha3"
5720
+ version = "0.12.0"
5721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5722
+ checksum = "bc9bad02c26382724b2d2692c6f179285e4b54eeecd7968f52a50059c3c11759"
5723
+ dependencies = [
5724
+ "digest 0.11.3",
5725
+ "keccak",
5726
+ "sponge-cursor",
5727
+ ]
5728
+
5277
5729
  [[package]]
5278
5730
  name = "sharded-slab"
5279
5731
  version = "0.1.7"
@@ -5338,7 +5790,6 @@ version = "2.2.0"
5338
5790
  source = "registry+https://github.com/rust-lang/crates.io-index"
5339
5791
  checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
5340
5792
  dependencies = [
5341
- "digest 0.10.7",
5342
5793
  "rand_core 0.6.4",
5343
5794
  ]
5344
5795
 
@@ -5424,29 +5875,25 @@ dependencies = [
5424
5875
 
5425
5876
  [[package]]
5426
5877
  name = "spki"
5427
- version = "0.7.3"
5878
+ version = "0.8.0"
5428
5879
  source = "registry+https://github.com/rust-lang/crates.io-index"
5429
- checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
5880
+ checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
5430
5881
  dependencies = [
5431
5882
  "base64ct",
5432
- "der 0.7.10",
5883
+ "der",
5433
5884
  ]
5434
5885
 
5435
5886
  [[package]]
5436
- name = "spki"
5437
- version = "0.8.0"
5887
+ name = "sponge-cursor"
5888
+ version = "0.1.0"
5438
5889
  source = "registry+https://github.com/rust-lang/crates.io-index"
5439
- checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
5440
- dependencies = [
5441
- "base64ct",
5442
- "der 0.8.0",
5443
- ]
5890
+ checksum = "3a0219bd7d979d58245a4f41f695e1ac9f8befdffadd7f61f1bae9e39abc6620"
5444
5891
 
5445
5892
  [[package]]
5446
5893
  name = "sqlx"
5447
- version = "0.8.6"
5894
+ version = "0.9.0"
5448
5895
  source = "registry+https://github.com/rust-lang/crates.io-index"
5449
- checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc"
5896
+ checksum = "378620ccc25c62c89d8be1c819e76a88d59bdcc3304733330788948e619bfd71"
5450
5897
  dependencies = [
5451
5898
  "sqlx-core",
5452
5899
  "sqlx-macros",
@@ -5457,12 +5904,13 @@ dependencies = [
5457
5904
 
5458
5905
  [[package]]
5459
5906
  name = "sqlx-core"
5460
- version = "0.8.6"
5907
+ version = "0.9.0"
5461
5908
  source = "registry+https://github.com/rust-lang/crates.io-index"
5462
- checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
5909
+ checksum = "05b44e85bf579a8eeb4ceaa77a3a523baf2bf0e9bac7e40f405d537b5d2d5ccb"
5463
5910
  dependencies = [
5464
- "base64",
5911
+ "base64 0.22.1",
5465
5912
  "bytes",
5913
+ "cfg-if",
5466
5914
  "chrono",
5467
5915
  "crc",
5468
5916
  "crossbeam-queue",
@@ -5472,50 +5920,52 @@ dependencies = [
5472
5920
  "futures-intrusive",
5473
5921
  "futures-io",
5474
5922
  "futures-util",
5475
- "hashbrown 0.15.5",
5923
+ "hashbrown 0.16.1",
5476
5924
  "hashlink",
5477
5925
  "indexmap",
5478
5926
  "log",
5479
5927
  "memchr",
5480
- "once_cell",
5481
5928
  "percent-encoding",
5929
+ "rust_decimal",
5482
5930
  "rustls",
5483
5931
  "serde",
5484
5932
  "serde_json",
5485
5933
  "sha2 0.10.9",
5486
5934
  "smallvec",
5487
- "thiserror 2.0.18",
5935
+ "thiserror",
5936
+ "time",
5488
5937
  "tokio",
5489
5938
  "tokio-stream",
5490
5939
  "tracing",
5491
5940
  "url",
5492
- "webpki-roots 0.26.11",
5941
+ "uuid",
5942
+ "webpki-roots 1.0.7",
5493
5943
  ]
5494
5944
 
5495
5945
  [[package]]
5496
5946
  name = "sqlx-macros"
5497
- version = "0.8.6"
5947
+ version = "0.9.0"
5498
5948
  source = "registry+https://github.com/rust-lang/crates.io-index"
5499
- checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d"
5949
+ checksum = "bd2b84f2bc39a5705ef27ec785a11c934a41bbd4a24941e257927cddc26b60bf"
5500
5950
  dependencies = [
5501
5951
  "proc-macro2",
5502
5952
  "quote",
5503
5953
  "sqlx-core",
5504
5954
  "sqlx-macros-core",
5505
- "syn",
5955
+ "syn 2.0.118",
5506
5956
  ]
5507
5957
 
5508
5958
  [[package]]
5509
5959
  name = "sqlx-macros-core"
5510
- version = "0.8.6"
5960
+ version = "0.9.0"
5511
5961
  source = "registry+https://github.com/rust-lang/crates.io-index"
5512
- checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b"
5962
+ checksum = "fb8d96de5fdc85a5c4ec813432b523ec637e80ba98f046555f75f7908ddac7c3"
5513
5963
  dependencies = [
5964
+ "cfg-if",
5514
5965
  "dotenvy",
5515
5966
  "either",
5516
5967
  "heck 0.5.0",
5517
5968
  "hex",
5518
- "once_cell",
5519
5969
  "proc-macro2",
5520
5970
  "quote",
5521
5971
  "serde",
@@ -5525,62 +5975,49 @@ dependencies = [
5525
5975
  "sqlx-mysql",
5526
5976
  "sqlx-postgres",
5527
5977
  "sqlx-sqlite",
5528
- "syn",
5978
+ "syn 2.0.118",
5529
5979
  "tokio",
5530
5980
  "url",
5531
5981
  ]
5532
5982
 
5533
5983
  [[package]]
5534
5984
  name = "sqlx-mysql"
5535
- version = "0.8.6"
5985
+ version = "0.9.0"
5536
5986
  source = "registry+https://github.com/rust-lang/crates.io-index"
5537
- checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
5987
+ checksum = "90b8020fe17c5f2c245bfa2505d7ef59c5604839527c740266ad2214acebea27"
5538
5988
  dependencies = [
5539
- "atoi",
5540
- "base64",
5541
5989
  "bitflags 2.13.0",
5542
5990
  "byteorder",
5543
5991
  "bytes",
5544
5992
  "chrono",
5545
5993
  "crc",
5546
- "digest 0.10.7",
5994
+ "digest 0.11.3",
5547
5995
  "dotenvy",
5548
5996
  "either",
5549
- "futures-channel",
5550
5997
  "futures-core",
5551
- "futures-io",
5552
5998
  "futures-util",
5553
5999
  "generic-array 0.14.7",
5554
- "hex",
5555
- "hkdf 0.12.4",
5556
- "hmac 0.12.1",
5557
- "itoa",
5558
6000
  "log",
5559
- "md-5",
5560
- "memchr",
5561
- "once_cell",
5562
6001
  "percent-encoding",
5563
- "rand 0.8.6",
5564
- "rsa 0.9.10",
6002
+ "rust_decimal",
5565
6003
  "serde",
5566
- "sha1 0.10.6",
5567
- "sha2 0.10.9",
5568
- "smallvec",
6004
+ "sha1 0.11.0",
6005
+ "sha2 0.11.0",
5569
6006
  "sqlx-core",
5570
- "stringprep",
5571
- "thiserror 2.0.18",
6007
+ "thiserror",
6008
+ "time",
5572
6009
  "tracing",
5573
- "whoami",
6010
+ "uuid",
5574
6011
  ]
5575
6012
 
5576
6013
  [[package]]
5577
6014
  name = "sqlx-postgres"
5578
- version = "0.8.6"
6015
+ version = "0.9.0"
5579
6016
  source = "registry+https://github.com/rust-lang/crates.io-index"
5580
- checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46"
6017
+ checksum = "87a2bdd6e83f6b3ea525ca9fee568030508b58355a43d0b2c1674d5f79dcd65e"
5581
6018
  dependencies = [
5582
6019
  "atoi",
5583
- "base64",
6020
+ "base64 0.22.1",
5584
6021
  "bitflags 2.13.0",
5585
6022
  "byteorder",
5586
6023
  "chrono",
@@ -5591,35 +6028,37 @@ dependencies = [
5591
6028
  "futures-core",
5592
6029
  "futures-util",
5593
6030
  "hex",
5594
- "hkdf 0.12.4",
5595
- "hmac 0.12.1",
5596
- "home",
6031
+ "hkdf 0.13.0",
6032
+ "hmac 0.13.0",
5597
6033
  "itoa",
5598
6034
  "log",
5599
6035
  "md-5",
5600
6036
  "memchr",
5601
- "once_cell",
5602
- "rand 0.8.6",
6037
+ "rand 0.10.2",
6038
+ "rust_decimal",
5603
6039
  "serde",
5604
6040
  "serde_json",
5605
- "sha2 0.10.9",
6041
+ "sha2 0.11.0",
5606
6042
  "smallvec",
5607
6043
  "sqlx-core",
5608
6044
  "stringprep",
5609
- "thiserror 2.0.18",
6045
+ "thiserror",
6046
+ "time",
5610
6047
  "tracing",
6048
+ "uuid",
5611
6049
  "whoami",
5612
6050
  ]
5613
6051
 
5614
6052
  [[package]]
5615
6053
  name = "sqlx-sqlite"
5616
- version = "0.8.6"
6054
+ version = "0.9.0"
5617
6055
  source = "registry+https://github.com/rust-lang/crates.io-index"
5618
- checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea"
6056
+ checksum = "488e99c397a62007e4229aec669a179816339afc6d2620ca6fa420dbee2e982c"
5619
6057
  dependencies = [
5620
6058
  "atoi",
5621
6059
  "chrono",
5622
6060
  "flume",
6061
+ "form_urlencoded",
5623
6062
  "futures-channel",
5624
6063
  "futures-core",
5625
6064
  "futures-executor",
@@ -5629,26 +6068,25 @@ dependencies = [
5629
6068
  "log",
5630
6069
  "percent-encoding",
5631
6070
  "serde",
5632
- "serde_urlencoded",
5633
6071
  "sqlx-core",
5634
- "thiserror 2.0.18",
6072
+ "thiserror",
6073
+ "time",
5635
6074
  "tracing",
5636
6075
  "url",
6076
+ "uuid",
5637
6077
  ]
5638
6078
 
5639
6079
  [[package]]
5640
6080
  name = "ssh-cipher"
5641
- version = "0.3.0-rc.9"
6081
+ version = "0.3.0"
5642
6082
  source = "registry+https://github.com/rust-lang/crates.io-index"
5643
- checksum = "10db6f219196a8528f9ec904d9d45cdad692d65b0e57e72be4dedd1c5fddce36"
6083
+ checksum = "d801accda99469cde6d73da741422610fdf6508a72d9a69d1b55cb241c720597"
5644
6084
  dependencies = [
5645
6085
  "aead",
5646
6086
  "aes 0.9.1",
5647
6087
  "aes-gcm",
5648
- "cbc 0.2.1",
5649
6088
  "chacha20",
5650
6089
  "cipher 0.5.2",
5651
- "ctr",
5652
6090
  "ctutils",
5653
6091
  "des",
5654
6092
  "poly1305",
@@ -5658,24 +6096,24 @@ dependencies = [
5658
6096
 
5659
6097
  [[package]]
5660
6098
  name = "ssh-encoding"
5661
- version = "0.3.0-rc.9"
6099
+ version = "0.3.0"
5662
6100
  source = "registry+https://github.com/rust-lang/crates.io-index"
5663
- checksum = "7abf34aa716da5d5b4c496936d042ea282ab392092cd68a72ef6a8863ff8c96a"
6101
+ checksum = "7b54d0ed0498daf3f78d82e00e28c8eec9d75a067c4cfbcc7a0f7d0f4077749e"
5664
6102
  dependencies = [
5665
6103
  "base64ct",
5666
6104
  "bytes",
5667
6105
  "crypto-bigint",
5668
6106
  "ctutils",
5669
6107
  "digest 0.11.3",
5670
- "pem-rfc7468 1.0.0",
6108
+ "pem-rfc7468",
5671
6109
  "zeroize",
5672
6110
  ]
5673
6111
 
5674
6112
  [[package]]
5675
6113
  name = "ssh-key"
5676
- version = "0.7.0-rc.10"
6114
+ version = "0.7.0-rc.11"
5677
6115
  source = "registry+https://github.com/rust-lang/crates.io-index"
5678
- checksum = "45735ce3dea95690e4a9e414c4cfde7f79835063c3dcd35881df85a84118e74b"
6116
+ checksum = "f9a32fae177b74a22aa9c5b01bf7e68b33545be32d9e381e248058d2adc15ce3"
5679
6117
  dependencies = [
5680
6118
  "argon2",
5681
6119
  "bcrypt-pbkdf",
@@ -5687,7 +6125,7 @@ dependencies = [
5687
6125
  "p384",
5688
6126
  "p521",
5689
6127
  "rand_core 0.10.1",
5690
- "rsa 0.10.0-rc.18",
6128
+ "rsa",
5691
6129
  "sec1",
5692
6130
  "sha1 0.11.0",
5693
6131
  "sha2 0.11.0",
@@ -5726,12 +6164,6 @@ version = "0.11.1"
5726
6164
  source = "registry+https://github.com/rust-lang/crates.io-index"
5727
6165
  checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
5728
6166
 
5729
- [[package]]
5730
- name = "strum"
5731
- version = "0.26.3"
5732
- source = "registry+https://github.com/rust-lang/crates.io-index"
5733
- checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
5734
-
5735
6167
  [[package]]
5736
6168
  name = "strum"
5737
6169
  version = "0.27.2"
@@ -5756,7 +6188,7 @@ dependencies = [
5756
6188
  "heck 0.5.0",
5757
6189
  "proc-macro2",
5758
6190
  "quote",
5759
- "syn",
6191
+ "syn 2.0.118",
5760
6192
  ]
5761
6193
 
5762
6194
  [[package]]
@@ -5768,7 +6200,7 @@ dependencies = [
5768
6200
  "heck 0.5.0",
5769
6201
  "proc-macro2",
5770
6202
  "quote",
5771
- "syn",
6203
+ "syn 2.0.118",
5772
6204
  ]
5773
6205
 
5774
6206
  [[package]]
@@ -5777,6 +6209,17 @@ version = "2.6.1"
5777
6209
  source = "registry+https://github.com/rust-lang/crates.io-index"
5778
6210
  checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
5779
6211
 
6212
+ [[package]]
6213
+ name = "syn"
6214
+ version = "1.0.109"
6215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6216
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
6217
+ dependencies = [
6218
+ "proc-macro2",
6219
+ "quote",
6220
+ "unicode-ident",
6221
+ ]
6222
+
5780
6223
  [[package]]
5781
6224
  name = "syn"
5782
6225
  version = "2.0.118"
@@ -5805,7 +6248,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
5805
6248
  dependencies = [
5806
6249
  "proc-macro2",
5807
6250
  "quote",
5808
- "syn",
6251
+ "syn 2.0.118",
5809
6252
  ]
5810
6253
 
5811
6254
  [[package]]
@@ -5829,6 +6272,12 @@ dependencies = [
5829
6272
  "libc",
5830
6273
  ]
5831
6274
 
6275
+ [[package]]
6276
+ name = "tap"
6277
+ version = "1.0.1"
6278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6279
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
6280
+
5832
6281
  [[package]]
5833
6282
  name = "tar"
5834
6283
  version = "0.4.46"
@@ -5850,16 +6299,7 @@ dependencies = [
5850
6299
  "getrandom 0.4.2",
5851
6300
  "once_cell",
5852
6301
  "rustix",
5853
- "windows-sys 0.59.0",
5854
- ]
5855
-
5856
- [[package]]
5857
- name = "thiserror"
5858
- version = "1.0.69"
5859
- source = "registry+https://github.com/rust-lang/crates.io-index"
5860
- checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
5861
- dependencies = [
5862
- "thiserror-impl 1.0.69",
6302
+ "windows-sys 0.52.0",
5863
6303
  ]
5864
6304
 
5865
6305
  [[package]]
@@ -5868,18 +6308,7 @@ version = "2.0.18"
5868
6308
  source = "registry+https://github.com/rust-lang/crates.io-index"
5869
6309
  checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
5870
6310
  dependencies = [
5871
- "thiserror-impl 2.0.18",
5872
- ]
5873
-
5874
- [[package]]
5875
- name = "thiserror-impl"
5876
- version = "1.0.69"
5877
- source = "registry+https://github.com/rust-lang/crates.io-index"
5878
- checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
5879
- dependencies = [
5880
- "proc-macro2",
5881
- "quote",
5882
- "syn",
6311
+ "thiserror-impl",
5883
6312
  ]
5884
6313
 
5885
6314
  [[package]]
@@ -5890,7 +6319,7 @@ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
5890
6319
  dependencies = [
5891
6320
  "proc-macro2",
5892
6321
  "quote",
5893
- "syn",
6322
+ "syn 2.0.118",
5894
6323
  ]
5895
6324
 
5896
6325
  [[package]]
@@ -5932,6 +6361,15 @@ dependencies = [
5932
6361
  "time-core",
5933
6362
  ]
5934
6363
 
6364
+ [[package]]
6365
+ name = "tiny-keccak"
6366
+ version = "2.0.2"
6367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6368
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
6369
+ dependencies = [
6370
+ "crunchy",
6371
+ ]
6372
+
5935
6373
  [[package]]
5936
6374
  name = "tinystr"
5937
6375
  version = "0.8.3"
@@ -5966,7 +6404,6 @@ dependencies = [
5966
6404
  "bytes",
5967
6405
  "libc",
5968
6406
  "mio",
5969
- "parking_lot",
5970
6407
  "pin-project-lite",
5971
6408
  "signal-hook-registry",
5972
6409
  "socket2",
@@ -5982,7 +6419,7 @@ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
5982
6419
  dependencies = [
5983
6420
  "proc-macro2",
5984
6421
  "quote",
5985
- "syn",
6422
+ "syn 2.0.118",
5986
6423
  ]
5987
6424
 
5988
6425
  [[package]]
@@ -6008,9 +6445,9 @@ dependencies = [
6008
6445
 
6009
6446
  [[package]]
6010
6447
  name = "tokio-tungstenite"
6011
- version = "0.29.0"
6448
+ version = "0.30.0"
6012
6449
  source = "registry+https://github.com/rust-lang/crates.io-index"
6013
- checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c"
6450
+ checksum = "17a073bfed563fa236697a068031408a93cd9522e08abf9933ead3e73411bd71"
6014
6451
  dependencies = [
6015
6452
  "futures-util",
6016
6453
  "log",
@@ -6131,7 +6568,7 @@ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
6131
6568
  dependencies = [
6132
6569
  "proc-macro2",
6133
6570
  "quote",
6134
- "syn",
6571
+ "syn 2.0.118",
6135
6572
  ]
6136
6573
 
6137
6574
  [[package]]
@@ -6166,20 +6603,20 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
6166
6603
 
6167
6604
  [[package]]
6168
6605
  name = "tungstenite"
6169
- version = "0.29.0"
6606
+ version = "0.30.0"
6170
6607
  source = "registry+https://github.com/rust-lang/crates.io-index"
6171
- checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8"
6608
+ checksum = "e48ac77174b19c110a50ab2128b24215ac9cb40e0e12e093fb602d175c569d22"
6172
6609
  dependencies = [
6173
6610
  "bytes",
6174
6611
  "data-encoding",
6175
6612
  "http",
6176
6613
  "httparse",
6177
6614
  "log",
6178
- "rand 0.9.4",
6615
+ "rand 0.10.2",
6179
6616
  "rustls",
6180
6617
  "rustls-pki-types",
6181
- "sha1 0.10.6",
6182
- "thiserror 2.0.18",
6618
+ "sha1 0.11.0",
6619
+ "thiserror",
6183
6620
  ]
6184
6621
 
6185
6622
  [[package]]
@@ -6199,7 +6636,7 @@ checksum = "076a02dc54dd46795c2e9c8282ed40bcfb1e22747e955de9389a1de28190fb26"
6199
6636
  dependencies = [
6200
6637
  "proc-macro2",
6201
6638
  "quote",
6202
- "syn",
6639
+ "syn 2.0.118",
6203
6640
  ]
6204
6641
 
6205
6642
  [[package]]
@@ -6292,25 +6729,19 @@ version = "0.9.0"
6292
6729
  source = "registry+https://github.com/rust-lang/crates.io-index"
6293
6730
  checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
6294
6731
 
6295
- [[package]]
6296
- name = "unty"
6297
- version = "0.0.4"
6298
- source = "registry+https://github.com/rust-lang/crates.io-index"
6299
- checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
6300
-
6301
6732
  [[package]]
6302
6733
  name = "ureq"
6303
- version = "3.3.0"
6734
+ version = "3.4.0"
6304
6735
  source = "registry+https://github.com/rust-lang/crates.io-index"
6305
- checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
6736
+ checksum = "972d7902c8735f2695410b8aed7df6ed12a47394aa1c8d7af49f0497b731a94d"
6306
6737
  dependencies = [
6307
- "base64",
6738
+ "base64 0.23.1",
6308
6739
  "flate2",
6309
6740
  "log",
6310
6741
  "percent-encoding",
6311
6742
  "rustls",
6312
6743
  "rustls-pki-types",
6313
- "rustls-platform-verifier 0.6.2",
6744
+ "rustls-platform-verifier",
6314
6745
  "ureq-proto",
6315
6746
  "utf8-zero",
6316
6747
  "webpki-roots 1.0.7",
@@ -6318,11 +6749,11 @@ dependencies = [
6318
6749
 
6319
6750
  [[package]]
6320
6751
  name = "ureq-proto"
6321
- version = "0.6.0"
6752
+ version = "0.6.1"
6322
6753
  source = "registry+https://github.com/rust-lang/crates.io-index"
6323
- checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
6754
+ checksum = "da5f78b09e6941e1a0f2e30e695e4b120377b54d5e0aec11b594bb57b3971613"
6324
6755
  dependencies = [
6325
- "base64",
6756
+ "base64 0.23.1",
6326
6757
  "http",
6327
6758
  "httparse",
6328
6759
  "log",
@@ -6358,6 +6789,17 @@ version = "0.2.2"
6358
6789
  source = "registry+https://github.com/rust-lang/crates.io-index"
6359
6790
  checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
6360
6791
 
6792
+ [[package]]
6793
+ name = "uuid"
6794
+ version = "1.24.1"
6795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6796
+ checksum = "2cefc03fd367c0c6d4305de1b312cf00248c4114f4a0418ce6a6af769e3b0bd9"
6797
+ dependencies = [
6798
+ "js-sys",
6799
+ "serde_core",
6800
+ "wasm-bindgen",
6801
+ ]
6802
+
6361
6803
  [[package]]
6362
6804
  name = "vcpkg"
6363
6805
  version = "0.2.15"
@@ -6376,29 +6818,12 @@ version = "0.2.7"
6376
6818
  source = "registry+https://github.com/rust-lang/crates.io-index"
6377
6819
  checksum = "091f1f09cfbf2a78563b562e7a949465cce1aef63b6065645188d995162f8868"
6378
6820
 
6379
- [[package]]
6380
- name = "virtue"
6381
- version = "0.0.18"
6382
- source = "registry+https://github.com/rust-lang/crates.io-index"
6383
- checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
6384
-
6385
6821
  [[package]]
6386
6822
  name = "vm-fdt"
6387
6823
  version = "0.3.0"
6388
6824
  source = "registry+https://github.com/rust-lang/crates.io-index"
6389
6825
  checksum = "7e21282841a059bb62627ce8441c491f09603622cd5a21c43bfedc85a2952f23"
6390
6826
 
6391
- [[package]]
6392
- name = "vm-memory"
6393
- version = "0.18.0"
6394
- source = "registry+https://github.com/rust-lang/crates.io-index"
6395
- checksum = "9b55e753c7725603745cb32b2287ef7ef3da05c03c7702cda3fa8abe25ae0465"
6396
- dependencies = [
6397
- "libc",
6398
- "thiserror 2.0.18",
6399
- "winapi",
6400
- ]
6401
-
6402
6827
  [[package]]
6403
6828
  name = "vmm-sys-util"
6404
6829
  version = "0.15.0"
@@ -6452,12 +6877,6 @@ dependencies = [
6452
6877
  "wit-bindgen 0.51.0",
6453
6878
  ]
6454
6879
 
6455
- [[package]]
6456
- name = "wasite"
6457
- version = "0.1.0"
6458
- source = "registry+https://github.com/rust-lang/crates.io-index"
6459
- checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
6460
-
6461
6880
  [[package]]
6462
6881
  name = "wasm-bindgen"
6463
6882
  version = "0.2.125"
@@ -6467,6 +6886,7 @@ dependencies = [
6467
6886
  "cfg-if",
6468
6887
  "once_cell",
6469
6888
  "rustversion",
6889
+ "serde",
6470
6890
  "wasm-bindgen-macro",
6471
6891
  "wasm-bindgen-shared",
6472
6892
  ]
@@ -6500,7 +6920,7 @@ dependencies = [
6500
6920
  "bumpalo",
6501
6921
  "proc-macro2",
6502
6922
  "quote",
6503
- "syn",
6923
+ "syn 2.0.118",
6504
6924
  "wasm-bindgen-shared",
6505
6925
  ]
6506
6926
 
@@ -6618,13 +7038,9 @@ dependencies = [
6618
7038
 
6619
7039
  [[package]]
6620
7040
  name = "whoami"
6621
- version = "1.6.1"
7041
+ version = "2.1.3"
6622
7042
  source = "registry+https://github.com/rust-lang/crates.io-index"
6623
- checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d"
6624
- dependencies = [
6625
- "libredox",
6626
- "wasite",
6627
- ]
7043
+ checksum = "626c4bac6755d76ffc12cb01b2eac751db1996b9e0041de9aa02c8c211ddc82c"
6628
7044
 
6629
7045
  [[package]]
6630
7046
  name = "winapi"
@@ -6648,7 +7064,7 @@ version = "0.1.11"
6648
7064
  source = "registry+https://github.com/rust-lang/crates.io-index"
6649
7065
  checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
6650
7066
  dependencies = [
6651
- "windows-sys 0.48.0",
7067
+ "windows-sys 0.52.0",
6652
7068
  ]
6653
7069
 
6654
7070
  [[package]]
@@ -6710,7 +7126,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
6710
7126
  dependencies = [
6711
7127
  "proc-macro2",
6712
7128
  "quote",
6713
- "syn",
7129
+ "syn 2.0.118",
6714
7130
  ]
6715
7131
 
6716
7132
  [[package]]
@@ -6721,7 +7137,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
6721
7137
  dependencies = [
6722
7138
  "proc-macro2",
6723
7139
  "quote",
6724
- "syn",
7140
+ "syn 2.0.118",
6725
7141
  ]
6726
7142
 
6727
7143
  [[package]]
@@ -6769,24 +7185,6 @@ dependencies = [
6769
7185
  "windows-link",
6770
7186
  ]
6771
7187
 
6772
- [[package]]
6773
- name = "windows-sys"
6774
- version = "0.45.0"
6775
- source = "registry+https://github.com/rust-lang/crates.io-index"
6776
- checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
6777
- dependencies = [
6778
- "windows-targets 0.42.2",
6779
- ]
6780
-
6781
- [[package]]
6782
- name = "windows-sys"
6783
- version = "0.48.0"
6784
- source = "registry+https://github.com/rust-lang/crates.io-index"
6785
- checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
6786
- dependencies = [
6787
- "windows-targets 0.48.5",
6788
- ]
6789
-
6790
7188
  [[package]]
6791
7189
  name = "windows-sys"
6792
7190
  version = "0.52.0"
@@ -6823,36 +7221,6 @@ dependencies = [
6823
7221
  "windows-link",
6824
7222
  ]
6825
7223
 
6826
- [[package]]
6827
- name = "windows-targets"
6828
- version = "0.42.2"
6829
- source = "registry+https://github.com/rust-lang/crates.io-index"
6830
- checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
6831
- dependencies = [
6832
- "windows_aarch64_gnullvm 0.42.2",
6833
- "windows_aarch64_msvc 0.42.2",
6834
- "windows_i686_gnu 0.42.2",
6835
- "windows_i686_msvc 0.42.2",
6836
- "windows_x86_64_gnu 0.42.2",
6837
- "windows_x86_64_gnullvm 0.42.2",
6838
- "windows_x86_64_msvc 0.42.2",
6839
- ]
6840
-
6841
- [[package]]
6842
- name = "windows-targets"
6843
- version = "0.48.5"
6844
- source = "registry+https://github.com/rust-lang/crates.io-index"
6845
- checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
6846
- dependencies = [
6847
- "windows_aarch64_gnullvm 0.48.5",
6848
- "windows_aarch64_msvc 0.48.5",
6849
- "windows_i686_gnu 0.48.5",
6850
- "windows_i686_msvc 0.48.5",
6851
- "windows_x86_64_gnu 0.48.5",
6852
- "windows_x86_64_gnullvm 0.48.5",
6853
- "windows_x86_64_msvc 0.48.5",
6854
- ]
6855
-
6856
7224
  [[package]]
6857
7225
  name = "windows-targets"
6858
7226
  version = "0.52.6"
@@ -6895,18 +7263,6 @@ dependencies = [
6895
7263
  "windows-link",
6896
7264
  ]
6897
7265
 
6898
- [[package]]
6899
- name = "windows_aarch64_gnullvm"
6900
- version = "0.42.2"
6901
- source = "registry+https://github.com/rust-lang/crates.io-index"
6902
- checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
6903
-
6904
- [[package]]
6905
- name = "windows_aarch64_gnullvm"
6906
- version = "0.48.5"
6907
- source = "registry+https://github.com/rust-lang/crates.io-index"
6908
- checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
6909
-
6910
7266
  [[package]]
6911
7267
  name = "windows_aarch64_gnullvm"
6912
7268
  version = "0.52.6"
@@ -6919,18 +7275,6 @@ version = "0.53.1"
6919
7275
  source = "registry+https://github.com/rust-lang/crates.io-index"
6920
7276
  checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
6921
7277
 
6922
- [[package]]
6923
- name = "windows_aarch64_msvc"
6924
- version = "0.42.2"
6925
- source = "registry+https://github.com/rust-lang/crates.io-index"
6926
- checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
6927
-
6928
- [[package]]
6929
- name = "windows_aarch64_msvc"
6930
- version = "0.48.5"
6931
- source = "registry+https://github.com/rust-lang/crates.io-index"
6932
- checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
6933
-
6934
7278
  [[package]]
6935
7279
  name = "windows_aarch64_msvc"
6936
7280
  version = "0.52.6"
@@ -6943,18 +7287,6 @@ version = "0.53.1"
6943
7287
  source = "registry+https://github.com/rust-lang/crates.io-index"
6944
7288
  checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
6945
7289
 
6946
- [[package]]
6947
- name = "windows_i686_gnu"
6948
- version = "0.42.2"
6949
- source = "registry+https://github.com/rust-lang/crates.io-index"
6950
- checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
6951
-
6952
- [[package]]
6953
- name = "windows_i686_gnu"
6954
- version = "0.48.5"
6955
- source = "registry+https://github.com/rust-lang/crates.io-index"
6956
- checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
6957
-
6958
7290
  [[package]]
6959
7291
  name = "windows_i686_gnu"
6960
7292
  version = "0.52.6"
@@ -6979,18 +7311,6 @@ version = "0.53.1"
6979
7311
  source = "registry+https://github.com/rust-lang/crates.io-index"
6980
7312
  checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
6981
7313
 
6982
- [[package]]
6983
- name = "windows_i686_msvc"
6984
- version = "0.42.2"
6985
- source = "registry+https://github.com/rust-lang/crates.io-index"
6986
- checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
6987
-
6988
- [[package]]
6989
- name = "windows_i686_msvc"
6990
- version = "0.48.5"
6991
- source = "registry+https://github.com/rust-lang/crates.io-index"
6992
- checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
6993
-
6994
7314
  [[package]]
6995
7315
  name = "windows_i686_msvc"
6996
7316
  version = "0.52.6"
@@ -7003,18 +7323,6 @@ version = "0.53.1"
7003
7323
  source = "registry+https://github.com/rust-lang/crates.io-index"
7004
7324
  checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
7005
7325
 
7006
- [[package]]
7007
- name = "windows_x86_64_gnu"
7008
- version = "0.42.2"
7009
- source = "registry+https://github.com/rust-lang/crates.io-index"
7010
- checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
7011
-
7012
- [[package]]
7013
- name = "windows_x86_64_gnu"
7014
- version = "0.48.5"
7015
- source = "registry+https://github.com/rust-lang/crates.io-index"
7016
- checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
7017
-
7018
7326
  [[package]]
7019
7327
  name = "windows_x86_64_gnu"
7020
7328
  version = "0.52.6"
@@ -7027,18 +7335,6 @@ version = "0.53.1"
7027
7335
  source = "registry+https://github.com/rust-lang/crates.io-index"
7028
7336
  checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
7029
7337
 
7030
- [[package]]
7031
- name = "windows_x86_64_gnullvm"
7032
- version = "0.42.2"
7033
- source = "registry+https://github.com/rust-lang/crates.io-index"
7034
- checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
7035
-
7036
- [[package]]
7037
- name = "windows_x86_64_gnullvm"
7038
- version = "0.48.5"
7039
- source = "registry+https://github.com/rust-lang/crates.io-index"
7040
- checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
7041
-
7042
7338
  [[package]]
7043
7339
  name = "windows_x86_64_gnullvm"
7044
7340
  version = "0.52.6"
@@ -7051,18 +7347,6 @@ version = "0.53.1"
7051
7347
  source = "registry+https://github.com/rust-lang/crates.io-index"
7052
7348
  checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
7053
7349
 
7054
- [[package]]
7055
- name = "windows_x86_64_msvc"
7056
- version = "0.42.2"
7057
- source = "registry+https://github.com/rust-lang/crates.io-index"
7058
- checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
7059
-
7060
- [[package]]
7061
- name = "windows_x86_64_msvc"
7062
- version = "0.48.5"
7063
- source = "registry+https://github.com/rust-lang/crates.io-index"
7064
- checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
7065
-
7066
7350
  [[package]]
7067
7351
  name = "windows_x86_64_msvc"
7068
7352
  version = "0.52.6"
@@ -7120,7 +7404,7 @@ dependencies = [
7120
7404
  "heck 0.5.0",
7121
7405
  "indexmap",
7122
7406
  "prettyplease",
7123
- "syn",
7407
+ "syn 2.0.118",
7124
7408
  "wasm-metadata",
7125
7409
  "wit-bindgen-core",
7126
7410
  "wit-component",
@@ -7136,7 +7420,7 @@ dependencies = [
7136
7420
  "prettyplease",
7137
7421
  "proc-macro2",
7138
7422
  "quote",
7139
- "syn",
7423
+ "syn 2.0.118",
7140
7424
  "wit-bindgen-core",
7141
7425
  "wit-bindgen-rust",
7142
7426
  ]
@@ -7178,12 +7462,32 @@ dependencies = [
7178
7462
  "wasmparser",
7179
7463
  ]
7180
7464
 
7465
+ [[package]]
7466
+ name = "wnaf"
7467
+ version = "0.14.0"
7468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
7469
+ checksum = "ab12e7090f27e2ffd9322651492942d50c2926094af30601e1964337db39daf1"
7470
+ dependencies = [
7471
+ "ff",
7472
+ "group",
7473
+ "hybrid-array",
7474
+ ]
7475
+
7181
7476
  [[package]]
7182
7477
  name = "writeable"
7183
7478
  version = "0.6.3"
7184
7479
  source = "registry+https://github.com/rust-lang/crates.io-index"
7185
7480
  checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
7186
7481
 
7482
+ [[package]]
7483
+ name = "wyz"
7484
+ version = "0.5.1"
7485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
7486
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
7487
+ dependencies = [
7488
+ "tap",
7489
+ ]
7490
+
7187
7491
  [[package]]
7188
7492
  name = "x509-parser"
7189
7493
  version = "0.18.1"
@@ -7198,7 +7502,7 @@ dependencies = [
7198
7502
  "oid-registry",
7199
7503
  "ring",
7200
7504
  "rusticata-macros",
7201
- "thiserror 2.0.18",
7505
+ "thiserror",
7202
7506
  "time",
7203
7507
  ]
7204
7508
 
@@ -7257,7 +7561,7 @@ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
7257
7561
  dependencies = [
7258
7562
  "proc-macro2",
7259
7563
  "quote",
7260
- "syn",
7564
+ "syn 2.0.118",
7261
7565
  "synstructure",
7262
7566
  ]
7263
7567
 
@@ -7302,7 +7606,7 @@ dependencies = [
7302
7606
  "proc-macro-crate",
7303
7607
  "proc-macro2",
7304
7608
  "quote",
7305
- "syn",
7609
+ "syn 2.0.118",
7306
7610
  "zvariant_utils",
7307
7611
  ]
7308
7612
 
@@ -7334,7 +7638,7 @@ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
7334
7638
  dependencies = [
7335
7639
  "proc-macro2",
7336
7640
  "quote",
7337
- "syn",
7641
+ "syn 2.0.118",
7338
7642
  ]
7339
7643
 
7340
7644
  [[package]]
@@ -7354,7 +7658,7 @@ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
7354
7658
  dependencies = [
7355
7659
  "proc-macro2",
7356
7660
  "quote",
7357
- "syn",
7661
+ "syn 2.0.118",
7358
7662
  "synstructure",
7359
7663
  ]
7360
7664
 
@@ -7376,7 +7680,7 @@ checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
7376
7680
  dependencies = [
7377
7681
  "proc-macro2",
7378
7682
  "quote",
7379
- "syn",
7683
+ "syn 2.0.118",
7380
7684
  ]
7381
7685
 
7382
7686
  [[package]]
@@ -7409,7 +7713,7 @@ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
7409
7713
  dependencies = [
7410
7714
  "proc-macro2",
7411
7715
  "quote",
7412
- "syn",
7716
+ "syn 2.0.118",
7413
7717
  ]
7414
7718
 
7415
7719
  [[package]]
@@ -7474,7 +7778,7 @@ dependencies = [
7474
7778
  "proc-macro-crate",
7475
7779
  "proc-macro2",
7476
7780
  "quote",
7477
- "syn",
7781
+ "syn 2.0.118",
7478
7782
  "zvariant_utils",
7479
7783
  ]
7480
7784
 
@@ -7486,5 +7790,5 @@ checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340"
7486
7790
  dependencies = [
7487
7791
  "proc-macro2",
7488
7792
  "quote",
7489
- "syn",
7793
+ "syn 2.0.118",
7490
7794
  ]