obcrypt-cli 0.1.0__tar.gz → 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. {obcrypt_cli-0.1.0 → obcrypt_cli-1.0.0}/Cargo.lock +108 -408
  2. obcrypt_cli-1.0.0/Cargo.toml +47 -0
  3. obcrypt_cli-1.0.0/LICENSE-APACHE +202 -0
  4. {obcrypt_cli-0.1.0 → obcrypt_cli-1.0.0}/PKG-INFO +26 -11
  5. {obcrypt_cli-0.1.0 → obcrypt_cli-1.0.0}/README.md +20 -5
  6. {obcrypt_cli-0.1.0 → obcrypt_cli-1.0.0}/obcrypt-cli/CHANGELOG.md +32 -0
  7. {obcrypt_cli-0.1.0 → obcrypt_cli-1.0.0}/obcrypt-cli/Cargo.toml +12 -13
  8. obcrypt_cli-1.0.0/obcrypt-cli/LICENSE-APACHE +202 -0
  9. {obcrypt_cli-0.1.0 → obcrypt_cli-1.0.0}/obcrypt-cli/README.md +38 -28
  10. {obcrypt_cli-0.1.0 → obcrypt_cli-1.0.0}/obcrypt-cli/src/config.rs +1 -1
  11. {obcrypt_cli-0.1.0 → obcrypt_cli-1.0.0}/obcrypt-cli/src/main.rs +42 -52
  12. obcrypt_cli-1.0.0/oboron-cli-core/CHANGELOG.md +85 -0
  13. obcrypt_cli-1.0.0/oboron-cli-core/Cargo.toml +21 -0
  14. obcrypt_cli-1.0.0/oboron-cli-core/LICENSE-APACHE +202 -0
  15. obcrypt_cli-1.0.0/oboron-cli-core/LICENSE-MIT +21 -0
  16. obcrypt_cli-1.0.0/oboron-cli-core/README.md +45 -0
  17. obcrypt_cli-1.0.0/oboron-cli-core/src/commands.rs +274 -0
  18. obcrypt_cli-1.0.0/oboron-cli-core/src/config.rs +120 -0
  19. obcrypt_cli-1.0.0/oboron-cli-core/src/env.rs +53 -0
  20. obcrypt_cli-1.0.0/oboron-cli-core/src/key.rs +66 -0
  21. obcrypt_cli-1.0.0/oboron-cli-core/src/lib.rs +52 -0
  22. obcrypt_cli-1.0.0/oboron-cli-core/src/migration.rs +218 -0
  23. obcrypt_cli-1.0.0/oboron-cli-core/src/paths.rs +32 -0
  24. obcrypt_cli-1.0.0/oboron-cli-core/src/profile.rs +157 -0
  25. {obcrypt_cli-0.1.0 → obcrypt_cli-1.0.0}/pyproject.toml +4 -5
  26. obcrypt_cli-0.1.0/Cargo.toml +0 -41
  27. /obcrypt_cli-0.1.0/LICENSE → /obcrypt_cli-1.0.0/LICENSE-MIT +0 -0
  28. /obcrypt_cli-0.1.0/obcrypt-cli/LICENSE → /obcrypt_cli-1.0.0/obcrypt-cli/LICENSE-MIT +0 -0
  29. {obcrypt_cli-0.1.0 → obcrypt_cli-1.0.0}/obcrypt-cli/src/completions.rs +0 -0
@@ -9,7 +9,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
9
9
  checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
10
10
  dependencies = [
11
11
  "crypto-common",
12
- "generic-array 0.14.7",
12
+ "generic-array",
13
13
  ]
14
14
 
15
15
  [[package]]
@@ -115,9 +115,9 @@ dependencies = [
115
115
 
116
116
  [[package]]
117
117
  name = "anyhow"
118
- version = "1.0.102"
118
+ version = "1.0.103"
119
119
  source = "registry+https://github.com/rust-lang/crates.io-index"
120
- checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
120
+ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
121
121
 
122
122
  [[package]]
123
123
  name = "assert_cmd"
@@ -140,19 +140,13 @@ version = "1.5.1"
140
140
  source = "registry+https://github.com/rust-lang/crates.io-index"
141
141
  checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
142
142
 
143
- [[package]]
144
- name = "bitflags"
145
- version = "2.11.1"
146
- source = "registry+https://github.com/rust-lang/crates.io-index"
147
- checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
148
-
149
143
  [[package]]
150
144
  name = "block-buffer"
151
145
  version = "0.10.4"
152
146
  source = "registry+https://github.com/rust-lang/crates.io-index"
153
147
  checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
154
148
  dependencies = [
155
- "generic-array 0.14.7",
149
+ "generic-array",
156
150
  ]
157
151
 
158
152
  [[package]]
@@ -161,18 +155,18 @@ version = "0.3.3"
161
155
  source = "registry+https://github.com/rust-lang/crates.io-index"
162
156
  checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
163
157
  dependencies = [
164
- "generic-array 0.14.7",
158
+ "generic-array",
165
159
  ]
166
160
 
167
161
  [[package]]
168
162
  name = "bstr"
169
- version = "1.12.1"
163
+ version = "1.12.3"
170
164
  source = "registry+https://github.com/rust-lang/crates.io-index"
171
- checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
165
+ checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
172
166
  dependencies = [
173
167
  "memchr",
174
168
  "regex-automata",
175
- "serde",
169
+ "serde_core",
176
170
  ]
177
171
 
178
172
  [[package]]
@@ -216,15 +210,6 @@ dependencies = [
216
210
  "clap_derive",
217
211
  ]
218
212
 
219
- [[package]]
220
- name = "clap-markdown"
221
- version = "0.1.5"
222
- source = "registry+https://github.com/rust-lang/crates.io-index"
223
- checksum = "d2a2617956a06d4885b490697b5307ebb09fec10b088afc18c81762d848c2339"
224
- dependencies = [
225
- "clap",
226
- ]
227
-
228
213
  [[package]]
229
214
  name = "clap_builder"
230
215
  version = "4.6.0"
@@ -296,7 +281,7 @@ version = "0.1.7"
296
281
  source = "registry+https://github.com/rust-lang/crates.io-index"
297
282
  checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
298
283
  dependencies = [
299
- "generic-array 0.14.7",
284
+ "generic-array",
300
285
  "rand_core",
301
286
  "typenum",
302
287
  ]
@@ -322,7 +307,7 @@ version = "0.3.2"
322
307
  source = "registry+https://github.com/rust-lang/crates.io-index"
323
308
  checksum = "bd2735a791158376708f9347fe8faba9667589d82427ef3aed6794a8981de3d9"
324
309
  dependencies = [
325
- "generic-array 0.14.7",
310
+ "generic-array",
326
311
  ]
327
312
 
328
313
  [[package]]
@@ -363,28 +348,6 @@ dependencies = [
363
348
  "windows-sys 0.48.0",
364
349
  ]
365
350
 
366
- [[package]]
367
- name = "equivalent"
368
- version = "1.0.2"
369
- source = "registry+https://github.com/rust-lang/crates.io-index"
370
- checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
371
-
372
- [[package]]
373
- name = "errno"
374
- version = "0.3.14"
375
- source = "registry+https://github.com/rust-lang/crates.io-index"
376
- checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
377
- dependencies = [
378
- "libc",
379
- "windows-sys 0.61.2",
380
- ]
381
-
382
- [[package]]
383
- name = "fastrand"
384
- version = "2.4.1"
385
- source = "registry+https://github.com/rust-lang/crates.io-index"
386
- checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
387
-
388
351
  [[package]]
389
352
  name = "float-cmp"
390
353
  version = "0.10.0"
@@ -394,12 +357,6 @@ dependencies = [
394
357
  "num-traits",
395
358
  ]
396
359
 
397
- [[package]]
398
- name = "foldhash"
399
- version = "0.1.5"
400
- source = "registry+https://github.com/rust-lang/crates.io-index"
401
- checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
402
-
403
360
  [[package]]
404
361
  name = "futures-core"
405
362
  version = "0.3.32"
@@ -434,16 +391,6 @@ dependencies = [
434
391
  "version_check",
435
392
  ]
436
393
 
437
- [[package]]
438
- name = "generic-array"
439
- version = "1.4.1"
440
- source = "registry+https://github.com/rust-lang/crates.io-index"
441
- checksum = "dab9e9188e97a93276e1fe7b56401b851e2b45a46d045ca658100c1303ada649"
442
- dependencies = [
443
- "rustversion",
444
- "typenum",
445
- ]
446
-
447
394
  [[package]]
448
395
  name = "getrandom"
449
396
  version = "0.2.17"
@@ -457,34 +404,6 @@ dependencies = [
457
404
  "wasm-bindgen",
458
405
  ]
459
406
 
460
- [[package]]
461
- name = "getrandom"
462
- version = "0.4.2"
463
- source = "registry+https://github.com/rust-lang/crates.io-index"
464
- checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
465
- dependencies = [
466
- "cfg-if",
467
- "libc",
468
- "r-efi",
469
- "wasip2",
470
- "wasip3",
471
- ]
472
-
473
- [[package]]
474
- name = "hashbrown"
475
- version = "0.15.5"
476
- source = "registry+https://github.com/rust-lang/crates.io-index"
477
- checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
478
- dependencies = [
479
- "foldhash",
480
- ]
481
-
482
- [[package]]
483
- name = "hashbrown"
484
- version = "0.17.1"
485
- source = "registry+https://github.com/rust-lang/crates.io-index"
486
- checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
487
-
488
407
  [[package]]
489
408
  name = "heck"
490
409
  version = "0.5.0"
@@ -498,21 +417,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
498
417
  checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
499
418
 
500
419
  [[package]]
501
- name = "id-arena"
502
- version = "2.3.0"
420
+ name = "hkdf"
421
+ version = "0.12.4"
503
422
  source = "registry+https://github.com/rust-lang/crates.io-index"
504
- checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
423
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
424
+ dependencies = [
425
+ "hmac",
426
+ ]
505
427
 
506
428
  [[package]]
507
- name = "indexmap"
508
- version = "2.14.0"
429
+ name = "hmac"
430
+ version = "0.12.1"
509
431
  source = "registry+https://github.com/rust-lang/crates.io-index"
510
- checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
432
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
511
433
  dependencies = [
512
- "equivalent",
513
- "hashbrown 0.17.1",
514
- "serde",
515
- "serde_core",
434
+ "digest",
516
435
  ]
517
436
 
518
437
  [[package]]
@@ -522,7 +441,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
522
441
  checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
523
442
  dependencies = [
524
443
  "block-padding",
525
- "generic-array 0.14.7",
444
+ "generic-array",
526
445
  ]
527
446
 
528
447
  [[package]]
@@ -539,22 +458,15 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
539
458
 
540
459
  [[package]]
541
460
  name = "js-sys"
542
- version = "0.3.99"
461
+ version = "0.3.103"
543
462
  source = "registry+https://github.com/rust-lang/crates.io-index"
544
- checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
463
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
545
464
  dependencies = [
546
465
  "cfg-if",
547
466
  "futures-util",
548
- "once_cell",
549
467
  "wasm-bindgen",
550
468
  ]
551
469
 
552
- [[package]]
553
- name = "leb128fmt"
554
- version = "0.1.0"
555
- source = "registry+https://github.com/rust-lang/crates.io-index"
556
- checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
557
-
558
470
  [[package]]
559
471
  name = "libc"
560
472
  version = "0.2.186"
@@ -563,30 +475,18 @@ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
563
475
 
564
476
  [[package]]
565
477
  name = "libredox"
566
- version = "0.1.16"
478
+ version = "0.1.17"
567
479
  source = "registry+https://github.com/rust-lang/crates.io-index"
568
- checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
480
+ checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
569
481
  dependencies = [
570
482
  "libc",
571
483
  ]
572
484
 
573
- [[package]]
574
- name = "linux-raw-sys"
575
- version = "0.12.1"
576
- source = "registry+https://github.com/rust-lang/crates.io-index"
577
- checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
578
-
579
- [[package]]
580
- name = "log"
581
- version = "0.4.29"
582
- source = "registry+https://github.com/rust-lang/crates.io-index"
583
- checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
584
-
585
485
  [[package]]
586
486
  name = "memchr"
587
- version = "2.8.0"
487
+ version = "2.8.2"
588
488
  source = "registry+https://github.com/rust-lang/crates.io-index"
589
- checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
489
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
590
490
 
591
491
  [[package]]
592
492
  name = "normalize-line-endings"
@@ -594,25 +494,6 @@ version = "0.3.0"
594
494
  source = "registry+https://github.com/rust-lang/crates.io-index"
595
495
  checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
596
496
 
597
- [[package]]
598
- name = "num-bigint"
599
- version = "0.4.6"
600
- source = "registry+https://github.com/rust-lang/crates.io-index"
601
- checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
602
- dependencies = [
603
- "num-integer",
604
- "num-traits",
605
- ]
606
-
607
- [[package]]
608
- name = "num-integer"
609
- version = "0.1.46"
610
- source = "registry+https://github.com/rust-lang/crates.io-index"
611
- checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
612
- dependencies = [
613
- "num-traits",
614
- ]
615
-
616
497
  [[package]]
617
498
  name = "num-traits"
618
499
  version = "0.2.19"
@@ -624,26 +505,25 @@ dependencies = [
624
505
 
625
506
  [[package]]
626
507
  name = "obcrypt"
627
- version = "0.2.0"
508
+ version = "1.0.0"
628
509
  source = "registry+https://github.com/rust-lang/crates.io-index"
629
- checksum = "2eaead5c348b452836bb4870d78cbe4a86002adcfe598cdc339a96705c2007f4"
510
+ checksum = "b1d8cd71887cb295623ca6c0a316a3ec3570609b939f22d2a50e7fa3c73f190a"
630
511
  dependencies = [
631
512
  "aead",
632
- "aes",
633
513
  "aes-gcm-siv",
634
514
  "aes-siv",
635
- "cbc",
636
- "cipher",
637
- "getrandom 0.2.17",
515
+ "getrandom",
638
516
  "hex",
517
+ "hkdf",
639
518
  "rand",
519
+ "sha2",
640
520
  "thiserror",
641
521
  "zeroize",
642
522
  ]
643
523
 
644
524
  [[package]]
645
525
  name = "obcrypt-cli"
646
- version = "0.1.0"
526
+ version = "1.0.0"
647
527
  dependencies = [
648
528
  "anyhow",
649
529
  "clap",
@@ -651,25 +531,20 @@ dependencies = [
651
531
  "dirs",
652
532
  "hex",
653
533
  "obcrypt",
654
- "oboron-cli-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
534
+ "oboron-cli-core",
655
535
  "serde",
656
536
  "serde_json",
657
537
  ]
658
538
 
659
539
  [[package]]
660
540
  name = "oboron"
661
- version = "0.9.0"
541
+ version = "1.0.1"
662
542
  source = "registry+https://github.com/rust-lang/crates.io-index"
663
- checksum = "6d8d2181793138fb19422d9494629e09a24b551b35d3e07c51a98a3631d31ff6"
543
+ checksum = "aaaae674f422fb9cc5128bcc7ea2655f65c3ed966a231d3e0153eb10701c9425"
664
544
  dependencies = [
665
- "aes",
666
- "cbc",
667
- "cipher",
668
545
  "data-encoding",
669
- "generic-array 1.4.1",
670
- "getrandom 0.2.17",
546
+ "getrandom",
671
547
  "hex",
672
- "num-bigint",
673
548
  "obcrypt",
674
549
  "once_cell",
675
550
  "rand",
@@ -679,28 +554,20 @@ dependencies = [
679
554
 
680
555
  [[package]]
681
556
  name = "oboron-cli"
682
- version = "0.4.0"
557
+ version = "1.0.0"
683
558
  dependencies = [
684
559
  "anyhow",
685
560
  "assert_cmd",
686
561
  "clap",
687
- "clap-markdown",
688
562
  "clap_complete",
689
- "data-encoding",
690
- "dirs",
691
- "hex",
692
563
  "oboron",
693
- "oboron-cli-core 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
564
+ "oboron-cli-core",
694
565
  "predicates",
695
- "rand",
696
- "serde",
697
- "serde_json",
698
- "tempfile",
699
566
  ]
700
567
 
701
568
  [[package]]
702
569
  name = "oboron-cli-conformance"
703
- version = "0.2.0"
570
+ version = "1.0.0"
704
571
  dependencies = [
705
572
  "clap",
706
573
  "serde",
@@ -709,10 +576,9 @@ dependencies = [
709
576
 
710
577
  [[package]]
711
578
  name = "oboron-cli-core"
712
- version = "0.1.0"
579
+ version = "1.0.0"
713
580
  dependencies = [
714
581
  "anyhow",
715
- "data-encoding",
716
582
  "dirs",
717
583
  "hex",
718
584
  "serde",
@@ -720,15 +586,38 @@ dependencies = [
720
586
  ]
721
587
 
722
588
  [[package]]
723
- name = "oboron-cli-core"
724
- version = "0.1.0"
589
+ name = "obu"
590
+ version = "1.0.0"
725
591
  source = "registry+https://github.com/rust-lang/crates.io-index"
726
- checksum = "5c19868842bfe6221e0a6638c9b35bad746efa67929cf620e57cfc3ea088e82a"
592
+ checksum = "bf6d2ebd1b9bd0f83ff0d1ce2e126330adaf4c81beff0722b3df20e06875d5e2"
727
593
  dependencies = [
728
- "anyhow",
594
+ "aes",
595
+ "cbc",
596
+ "cipher",
729
597
  "data-encoding",
730
- "dirs",
598
+ "getrandom",
731
599
  "hex",
600
+ "once_cell",
601
+ "rand",
602
+ "thiserror",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "obu-cli"
607
+ version = "1.0.0"
608
+ dependencies = [
609
+ "anyhow",
610
+ "clap",
611
+ "clap_complete",
612
+ "oboron-cli-core",
613
+ "obu",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "obu-cli-conformance"
618
+ version = "1.0.0"
619
+ dependencies = [
620
+ "clap",
732
621
  "serde",
733
622
  "serde_json",
734
623
  ]
@@ -814,16 +703,6 @@ dependencies = [
814
703
  "termtree",
815
704
  ]
816
705
 
817
- [[package]]
818
- name = "prettyplease"
819
- version = "0.2.37"
820
- source = "registry+https://github.com/rust-lang/crates.io-index"
821
- checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
822
- dependencies = [
823
- "proc-macro2",
824
- "syn",
825
- ]
826
-
827
706
  [[package]]
828
707
  name = "proc-macro2"
829
708
  version = "1.0.106"
@@ -835,19 +714,13 @@ dependencies = [
835
714
 
836
715
  [[package]]
837
716
  name = "quote"
838
- version = "1.0.45"
717
+ version = "1.0.46"
839
718
  source = "registry+https://github.com/rust-lang/crates.io-index"
840
- checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
719
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
841
720
  dependencies = [
842
721
  "proc-macro2",
843
722
  ]
844
723
 
845
- [[package]]
846
- name = "r-efi"
847
- version = "6.0.0"
848
- source = "registry+https://github.com/rust-lang/crates.io-index"
849
- checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
850
-
851
724
  [[package]]
852
725
  name = "rand"
853
726
  version = "0.8.6"
@@ -875,7 +748,7 @@ version = "0.6.4"
875
748
  source = "registry+https://github.com/rust-lang/crates.io-index"
876
749
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
877
750
  dependencies = [
878
- "getrandom 0.2.17",
751
+ "getrandom",
879
752
  ]
880
753
 
881
754
  [[package]]
@@ -884,16 +757,16 @@ version = "0.4.6"
884
757
  source = "registry+https://github.com/rust-lang/crates.io-index"
885
758
  checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
886
759
  dependencies = [
887
- "getrandom 0.2.17",
760
+ "getrandom",
888
761
  "libredox",
889
762
  "thiserror",
890
763
  ]
891
764
 
892
765
  [[package]]
893
766
  name = "regex"
894
- version = "1.12.3"
767
+ version = "1.12.4"
895
768
  source = "registry+https://github.com/rust-lang/crates.io-index"
896
- checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
769
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
897
770
  dependencies = [
898
771
  "aho-corasick",
899
772
  "memchr",
@@ -914,22 +787,9 @@ dependencies = [
914
787
 
915
788
  [[package]]
916
789
  name = "regex-syntax"
917
- version = "0.8.10"
790
+ version = "0.8.11"
918
791
  source = "registry+https://github.com/rust-lang/crates.io-index"
919
- checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
920
-
921
- [[package]]
922
- name = "rustix"
923
- version = "1.1.4"
924
- source = "registry+https://github.com/rust-lang/crates.io-index"
925
- checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
926
- dependencies = [
927
- "bitflags",
928
- "errno",
929
- "libc",
930
- "linux-raw-sys",
931
- "windows-sys 0.61.2",
932
- ]
792
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
933
793
 
934
794
  [[package]]
935
795
  name = "rustversion"
@@ -937,12 +797,6 @@ version = "1.0.22"
937
797
  source = "registry+https://github.com/rust-lang/crates.io-index"
938
798
  checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
939
799
 
940
- [[package]]
941
- name = "semver"
942
- version = "1.0.28"
943
- source = "registry+https://github.com/rust-lang/crates.io-index"
944
- checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
945
-
946
800
  [[package]]
947
801
  name = "serde"
948
802
  version = "1.0.228"
@@ -986,6 +840,17 @@ dependencies = [
986
840
  "zmij",
987
841
  ]
988
842
 
843
+ [[package]]
844
+ name = "sha2"
845
+ version = "0.10.9"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
848
+ dependencies = [
849
+ "cfg-if",
850
+ "cpufeatures",
851
+ "digest",
852
+ ]
853
+
989
854
  [[package]]
990
855
  name = "slab"
991
856
  version = "0.4.12"
@@ -1006,28 +871,15 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1006
871
 
1007
872
  [[package]]
1008
873
  name = "syn"
1009
- version = "2.0.117"
874
+ version = "2.0.118"
1010
875
  source = "registry+https://github.com/rust-lang/crates.io-index"
1011
- checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
876
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
1012
877
  dependencies = [
1013
878
  "proc-macro2",
1014
879
  "quote",
1015
880
  "unicode-ident",
1016
881
  ]
1017
882
 
1018
- [[package]]
1019
- name = "tempfile"
1020
- version = "3.27.0"
1021
- source = "registry+https://github.com/rust-lang/crates.io-index"
1022
- checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1023
- dependencies = [
1024
- "fastrand",
1025
- "getrandom 0.4.2",
1026
- "once_cell",
1027
- "rustix",
1028
- "windows-sys 0.61.2",
1029
- ]
1030
-
1031
883
  [[package]]
1032
884
  name = "termtree"
1033
885
  version = "0.5.1"
@@ -1056,9 +908,9 @@ dependencies = [
1056
908
 
1057
909
  [[package]]
1058
910
  name = "typenum"
1059
- version = "1.20.0"
911
+ version = "1.20.1"
1060
912
  source = "registry+https://github.com/rust-lang/crates.io-index"
1061
- checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
913
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1062
914
 
1063
915
  [[package]]
1064
916
  name = "unicode-ident"
@@ -1066,12 +918,6 @@ version = "1.0.24"
1066
918
  source = "registry+https://github.com/rust-lang/crates.io-index"
1067
919
  checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1068
920
 
1069
- [[package]]
1070
- name = "unicode-xid"
1071
- version = "0.2.6"
1072
- source = "registry+https://github.com/rust-lang/crates.io-index"
1073
- checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1074
-
1075
921
  [[package]]
1076
922
  name = "universal-hash"
1077
923
  version = "0.5.1"
@@ -1109,29 +955,11 @@ version = "0.11.1+wasi-snapshot-preview1"
1109
955
  source = "registry+https://github.com/rust-lang/crates.io-index"
1110
956
  checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1111
957
 
1112
- [[package]]
1113
- name = "wasip2"
1114
- version = "1.0.3+wasi-0.2.9"
1115
- source = "registry+https://github.com/rust-lang/crates.io-index"
1116
- checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1117
- dependencies = [
1118
- "wit-bindgen 0.57.1",
1119
- ]
1120
-
1121
- [[package]]
1122
- name = "wasip3"
1123
- version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1124
- source = "registry+https://github.com/rust-lang/crates.io-index"
1125
- checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1126
- dependencies = [
1127
- "wit-bindgen 0.51.0",
1128
- ]
1129
-
1130
958
  [[package]]
1131
959
  name = "wasm-bindgen"
1132
- version = "0.2.122"
960
+ version = "0.2.126"
1133
961
  source = "registry+https://github.com/rust-lang/crates.io-index"
1134
- checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
962
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
1135
963
  dependencies = [
1136
964
  "cfg-if",
1137
965
  "once_cell",
@@ -1142,9 +970,9 @@ dependencies = [
1142
970
 
1143
971
  [[package]]
1144
972
  name = "wasm-bindgen-macro"
1145
- version = "0.2.122"
973
+ version = "0.2.126"
1146
974
  source = "registry+https://github.com/rust-lang/crates.io-index"
1147
- checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
975
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1148
976
  dependencies = [
1149
977
  "quote",
1150
978
  "wasm-bindgen-macro-support",
@@ -1152,9 +980,9 @@ dependencies = [
1152
980
 
1153
981
  [[package]]
1154
982
  name = "wasm-bindgen-macro-support"
1155
- version = "0.2.122"
983
+ version = "0.2.126"
1156
984
  source = "registry+https://github.com/rust-lang/crates.io-index"
1157
- checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
985
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1158
986
  dependencies = [
1159
987
  "bumpalo",
1160
988
  "proc-macro2",
@@ -1165,47 +993,13 @@ dependencies = [
1165
993
 
1166
994
  [[package]]
1167
995
  name = "wasm-bindgen-shared"
1168
- version = "0.2.122"
996
+ version = "0.2.126"
1169
997
  source = "registry+https://github.com/rust-lang/crates.io-index"
1170
- checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
998
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1171
999
  dependencies = [
1172
1000
  "unicode-ident",
1173
1001
  ]
1174
1002
 
1175
- [[package]]
1176
- name = "wasm-encoder"
1177
- version = "0.244.0"
1178
- source = "registry+https://github.com/rust-lang/crates.io-index"
1179
- checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1180
- dependencies = [
1181
- "leb128fmt",
1182
- "wasmparser",
1183
- ]
1184
-
1185
- [[package]]
1186
- name = "wasm-metadata"
1187
- version = "0.244.0"
1188
- source = "registry+https://github.com/rust-lang/crates.io-index"
1189
- checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1190
- dependencies = [
1191
- "anyhow",
1192
- "indexmap",
1193
- "wasm-encoder",
1194
- "wasmparser",
1195
- ]
1196
-
1197
- [[package]]
1198
- name = "wasmparser"
1199
- version = "0.244.0"
1200
- source = "registry+https://github.com/rust-lang/crates.io-index"
1201
- checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1202
- dependencies = [
1203
- "bitflags",
1204
- "hashbrown 0.15.5",
1205
- "indexmap",
1206
- "semver",
1207
- ]
1208
-
1209
1003
  [[package]]
1210
1004
  name = "windows-link"
1211
1005
  version = "0.2.1"
@@ -1287,114 +1081,20 @@ version = "0.48.5"
1287
1081
  source = "registry+https://github.com/rust-lang/crates.io-index"
1288
1082
  checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1289
1083
 
1290
- [[package]]
1291
- name = "wit-bindgen"
1292
- version = "0.51.0"
1293
- source = "registry+https://github.com/rust-lang/crates.io-index"
1294
- checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1295
- dependencies = [
1296
- "wit-bindgen-rust-macro",
1297
- ]
1298
-
1299
- [[package]]
1300
- name = "wit-bindgen"
1301
- version = "0.57.1"
1302
- source = "registry+https://github.com/rust-lang/crates.io-index"
1303
- checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1304
-
1305
- [[package]]
1306
- name = "wit-bindgen-core"
1307
- version = "0.51.0"
1308
- source = "registry+https://github.com/rust-lang/crates.io-index"
1309
- checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1310
- dependencies = [
1311
- "anyhow",
1312
- "heck",
1313
- "wit-parser",
1314
- ]
1315
-
1316
- [[package]]
1317
- name = "wit-bindgen-rust"
1318
- version = "0.51.0"
1319
- source = "registry+https://github.com/rust-lang/crates.io-index"
1320
- checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1321
- dependencies = [
1322
- "anyhow",
1323
- "heck",
1324
- "indexmap",
1325
- "prettyplease",
1326
- "syn",
1327
- "wasm-metadata",
1328
- "wit-bindgen-core",
1329
- "wit-component",
1330
- ]
1331
-
1332
- [[package]]
1333
- name = "wit-bindgen-rust-macro"
1334
- version = "0.51.0"
1335
- source = "registry+https://github.com/rust-lang/crates.io-index"
1336
- checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1337
- dependencies = [
1338
- "anyhow",
1339
- "prettyplease",
1340
- "proc-macro2",
1341
- "quote",
1342
- "syn",
1343
- "wit-bindgen-core",
1344
- "wit-bindgen-rust",
1345
- ]
1346
-
1347
- [[package]]
1348
- name = "wit-component"
1349
- version = "0.244.0"
1350
- source = "registry+https://github.com/rust-lang/crates.io-index"
1351
- checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1352
- dependencies = [
1353
- "anyhow",
1354
- "bitflags",
1355
- "indexmap",
1356
- "log",
1357
- "serde",
1358
- "serde_derive",
1359
- "serde_json",
1360
- "wasm-encoder",
1361
- "wasm-metadata",
1362
- "wasmparser",
1363
- "wit-parser",
1364
- ]
1365
-
1366
- [[package]]
1367
- name = "wit-parser"
1368
- version = "0.244.0"
1369
- source = "registry+https://github.com/rust-lang/crates.io-index"
1370
- checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1371
- dependencies = [
1372
- "anyhow",
1373
- "id-arena",
1374
- "indexmap",
1375
- "log",
1376
- "semver",
1377
- "serde",
1378
- "serde_derive",
1379
- "serde_json",
1380
- "unicode-xid",
1381
- "wasmparser",
1382
- ]
1383
-
1384
1084
  [[package]]
1385
1085
  name = "zerocopy"
1386
- version = "0.8.48"
1086
+ version = "0.8.52"
1387
1087
  source = "registry+https://github.com/rust-lang/crates.io-index"
1388
- checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1088
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
1389
1089
  dependencies = [
1390
1090
  "zerocopy-derive",
1391
1091
  ]
1392
1092
 
1393
1093
  [[package]]
1394
1094
  name = "zerocopy-derive"
1395
- version = "0.8.48"
1095
+ version = "0.8.52"
1396
1096
  source = "registry+https://github.com/rust-lang/crates.io-index"
1397
- checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1097
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
1398
1098
  dependencies = [
1399
1099
  "proc-macro2",
1400
1100
  "quote",
@@ -1403,18 +1103,18 @@ dependencies = [
1403
1103
 
1404
1104
  [[package]]
1405
1105
  name = "zeroize"
1406
- version = "1.8.2"
1106
+ version = "1.9.0"
1407
1107
  source = "registry+https://github.com/rust-lang/crates.io-index"
1408
- checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
1108
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
1409
1109
  dependencies = [
1410
1110
  "zeroize_derive",
1411
1111
  ]
1412
1112
 
1413
1113
  [[package]]
1414
1114
  name = "zeroize_derive"
1415
- version = "1.4.3"
1115
+ version = "1.5.0"
1416
1116
  source = "registry+https://github.com/rust-lang/crates.io-index"
1417
- checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
1117
+ checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
1418
1118
  dependencies = [
1419
1119
  "proc-macro2",
1420
1120
  "quote",