red-candle 0.0.5 → 0.0.6

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
@@ -2,6 +2,15 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 3
4
4
 
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.22.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
5
14
  [[package]]
6
15
  name = "adler"
7
16
  version = "1.0.2"
@@ -65,12 +74,33 @@ dependencies = [
65
74
  "windows-sys 0.52.0",
66
75
  ]
67
76
 
77
+ [[package]]
78
+ name = "atomic-waker"
79
+ version = "1.1.2"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
82
+
68
83
  [[package]]
69
84
  name = "autocfg"
70
85
  version = "1.1.0"
71
86
  source = "registry+https://github.com/rust-lang/crates.io-index"
72
87
  checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
73
88
 
89
+ [[package]]
90
+ name = "backtrace"
91
+ version = "0.3.73"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
94
+ dependencies = [
95
+ "addr2line",
96
+ "cc",
97
+ "cfg-if",
98
+ "libc",
99
+ "miniz_oxide",
100
+ "object",
101
+ "rustc-demangle",
102
+ ]
103
+
74
104
  [[package]]
75
105
  name = "base64"
76
106
  version = "0.13.1"
@@ -83,6 +113,12 @@ version = "0.21.7"
83
113
  source = "registry+https://github.com/rust-lang/crates.io-index"
84
114
  checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
85
115
 
116
+ [[package]]
117
+ name = "base64"
118
+ version = "0.22.1"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
121
+
86
122
  [[package]]
87
123
  name = "bindgen"
88
124
  version = "0.69.4"
@@ -92,7 +128,7 @@ dependencies = [
92
128
  "bitflags 2.4.2",
93
129
  "cexpr",
94
130
  "clang-sys",
95
- "itertools 0.11.0",
131
+ "itertools 0.12.1",
96
132
  "lazy_static",
97
133
  "lazycell",
98
134
  "proc-macro2",
@@ -100,7 +136,7 @@ dependencies = [
100
136
  "regex",
101
137
  "rustc-hash",
102
138
  "shlex",
103
- "syn 2.0.52",
139
+ "syn 2.0.104",
104
140
  ]
105
141
 
106
142
  [[package]]
@@ -130,6 +166,12 @@ version = "2.4.2"
130
166
  source = "registry+https://github.com/rust-lang/crates.io-index"
131
167
  checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
132
168
 
169
+ [[package]]
170
+ name = "bumpalo"
171
+ version = "3.19.0"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
174
+
133
175
  [[package]]
134
176
  name = "bytemuck"
135
177
  version = "1.14.3"
@@ -147,7 +189,7 @@ checksum = "4da9a32f3fed317401fa3c862968128267c3106685286e15d5aaa3d7389c2f60"
147
189
  dependencies = [
148
190
  "proc-macro2",
149
191
  "quote",
150
- "syn 2.0.52",
192
+ "syn 2.0.104",
151
193
  ]
152
194
 
153
195
  [[package]]
@@ -156,6 +198,12 @@ version = "1.5.0"
156
198
  source = "registry+https://github.com/rust-lang/crates.io-index"
157
199
  checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
158
200
 
201
+ [[package]]
202
+ name = "bytes"
203
+ version = "1.10.1"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
206
+
159
207
  [[package]]
160
208
  name = "candle"
161
209
  version = "0.1.0"
@@ -181,11 +229,11 @@ dependencies = [
181
229
  "memmap2",
182
230
  "num-traits",
183
231
  "num_cpus",
184
- "rand",
232
+ "rand 0.8.5",
185
233
  "rand_distr",
186
234
  "rayon",
187
235
  "safetensors",
188
- "thiserror",
236
+ "thiserror 1.0.58",
189
237
  "yoke",
190
238
  "zip",
191
239
  ]
@@ -202,7 +250,7 @@ dependencies = [
202
250
  "rayon",
203
251
  "safetensors",
204
252
  "serde",
205
- "thiserror",
253
+ "thiserror 1.0.58",
206
254
  ]
207
255
 
208
256
  [[package]]
@@ -215,7 +263,7 @@ dependencies = [
215
263
  "candle-core",
216
264
  "candle-nn",
217
265
  "num-traits",
218
- "rand",
266
+ "rand 0.8.5",
219
267
  "rayon",
220
268
  "serde",
221
269
  "serde_json",
@@ -225,9 +273,12 @@ dependencies = [
225
273
 
226
274
  [[package]]
227
275
  name = "cc"
228
- version = "1.0.90"
276
+ version = "1.2.29"
229
277
  source = "registry+https://github.com/rust-lang/crates.io-index"
230
- checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5"
278
+ checksum = "5c1599538de2394445747c8cf7935946e3cc27e9625f889d979bfb2aaf569362"
279
+ dependencies = [
280
+ "shlex",
281
+ ]
231
282
 
232
283
  [[package]]
233
284
  name = "cexpr"
@@ -286,7 +337,7 @@ dependencies = [
286
337
  "heck",
287
338
  "proc-macro2",
288
339
  "quote",
289
- "syn 2.0.52",
340
+ "syn 2.0.104",
290
341
  ]
291
342
 
292
343
  [[package]]
@@ -438,23 +489,23 @@ dependencies = [
438
489
 
439
490
  [[package]]
440
491
  name = "dirs"
441
- version = "5.0.1"
492
+ version = "6.0.0"
442
493
  source = "registry+https://github.com/rust-lang/crates.io-index"
443
- checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
494
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
444
495
  dependencies = [
445
496
  "dirs-sys",
446
497
  ]
447
498
 
448
499
  [[package]]
449
500
  name = "dirs-sys"
450
- version = "0.4.1"
501
+ version = "0.5.0"
451
502
  source = "registry+https://github.com/rust-lang/crates.io-index"
452
- checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
503
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
453
504
  dependencies = [
454
505
  "libc",
455
506
  "option-ext",
456
507
  "redox_users",
457
- "windows-sys 0.48.0",
508
+ "windows-sys 0.60.2",
458
509
  ]
459
510
 
460
511
  [[package]]
@@ -479,6 +530,15 @@ version = "0.3.6"
479
530
  source = "registry+https://github.com/rust-lang/crates.io-index"
480
531
  checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
481
532
 
533
+ [[package]]
534
+ name = "encoding_rs"
535
+ version = "0.8.35"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
538
+ dependencies = [
539
+ "cfg-if",
540
+ ]
541
+
482
542
  [[package]]
483
543
  name = "enum-as-inner"
484
544
  version = "0.6.0"
@@ -488,9 +548,15 @@ dependencies = [
488
548
  "heck",
489
549
  "proc-macro2",
490
550
  "quote",
491
- "syn 2.0.52",
551
+ "syn 2.0.104",
492
552
  ]
493
553
 
554
+ [[package]]
555
+ name = "equivalent"
556
+ version = "1.0.2"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
559
+
494
560
  [[package]]
495
561
  name = "errno"
496
562
  version = "0.3.8"
@@ -567,6 +633,95 @@ dependencies = [
567
633
  "percent-encoding",
568
634
  ]
569
635
 
636
+ [[package]]
637
+ name = "futures"
638
+ version = "0.3.31"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
641
+ dependencies = [
642
+ "futures-channel",
643
+ "futures-core",
644
+ "futures-executor",
645
+ "futures-io",
646
+ "futures-sink",
647
+ "futures-task",
648
+ "futures-util",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "futures-channel"
653
+ version = "0.3.31"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
656
+ dependencies = [
657
+ "futures-core",
658
+ "futures-sink",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "futures-core"
663
+ version = "0.3.31"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
666
+
667
+ [[package]]
668
+ name = "futures-executor"
669
+ version = "0.3.31"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
672
+ dependencies = [
673
+ "futures-core",
674
+ "futures-task",
675
+ "futures-util",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "futures-io"
680
+ version = "0.3.31"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
683
+
684
+ [[package]]
685
+ name = "futures-macro"
686
+ version = "0.3.31"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
689
+ dependencies = [
690
+ "proc-macro2",
691
+ "quote",
692
+ "syn 2.0.104",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "futures-sink"
697
+ version = "0.3.31"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
700
+
701
+ [[package]]
702
+ name = "futures-task"
703
+ version = "0.3.31"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
706
+
707
+ [[package]]
708
+ name = "futures-util"
709
+ version = "0.3.31"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
712
+ dependencies = [
713
+ "futures-channel",
714
+ "futures-core",
715
+ "futures-io",
716
+ "futures-macro",
717
+ "futures-sink",
718
+ "futures-task",
719
+ "memchr",
720
+ "pin-project-lite",
721
+ "pin-utils",
722
+ "slab",
723
+ ]
724
+
570
725
  [[package]]
571
726
  name = "gemm"
572
727
  version = "0.17.1"
@@ -693,15 +848,52 @@ checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
693
848
  dependencies = [
694
849
  "cfg-if",
695
850
  "libc",
696
- "wasi",
851
+ "wasi 0.11.0+wasi-snapshot-preview1",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "getrandom"
856
+ version = "0.3.3"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
859
+ dependencies = [
860
+ "cfg-if",
861
+ "libc",
862
+ "r-efi",
863
+ "wasi 0.14.2+wasi-0.2.4",
697
864
  ]
698
865
 
866
+ [[package]]
867
+ name = "gimli"
868
+ version = "0.29.0"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
871
+
699
872
  [[package]]
700
873
  name = "glob"
701
874
  version = "0.3.1"
702
875
  source = "registry+https://github.com/rust-lang/crates.io-index"
703
876
  checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
704
877
 
878
+ [[package]]
879
+ name = "h2"
880
+ version = "0.4.11"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785"
883
+ dependencies = [
884
+ "atomic-waker",
885
+ "bytes",
886
+ "fnv",
887
+ "futures-core",
888
+ "futures-sink",
889
+ "http",
890
+ "indexmap",
891
+ "slab",
892
+ "tokio",
893
+ "tokio-util",
894
+ "tracing",
895
+ ]
896
+
705
897
  [[package]]
706
898
  name = "half"
707
899
  version = "2.4.0"
@@ -712,10 +904,16 @@ dependencies = [
712
904
  "cfg-if",
713
905
  "crunchy",
714
906
  "num-traits",
715
- "rand",
907
+ "rand 0.8.5",
716
908
  "rand_distr",
717
909
  ]
718
910
 
911
+ [[package]]
912
+ name = "hashbrown"
913
+ version = "0.15.4"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
916
+
719
917
  [[package]]
720
918
  name = "heck"
721
919
  version = "0.4.1"
@@ -730,19 +928,144 @@ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
730
928
 
731
929
  [[package]]
732
930
  name = "hf-hub"
733
- version = "0.3.2"
931
+ version = "0.4.3"
734
932
  source = "registry+https://github.com/rust-lang/crates.io-index"
735
- checksum = "2b780635574b3d92f036890d8373433d6f9fc7abb320ee42a5c25897fc8ed732"
933
+ checksum = "629d8f3bbeda9d148036d6b0de0a3ab947abd08ce90626327fc3547a49d59d97"
736
934
  dependencies = [
737
935
  "dirs",
936
+ "futures",
937
+ "http",
738
938
  "indicatif",
939
+ "libc",
739
940
  "log",
740
941
  "native-tls",
741
- "rand",
942
+ "num_cpus",
943
+ "rand 0.9.1",
944
+ "reqwest",
742
945
  "serde",
743
946
  "serde_json",
744
- "thiserror",
947
+ "thiserror 2.0.12",
948
+ "tokio",
745
949
  "ureq",
950
+ "windows-sys 0.60.2",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "http"
955
+ version = "1.3.1"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
958
+ dependencies = [
959
+ "bytes",
960
+ "fnv",
961
+ "itoa",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "http-body"
966
+ version = "1.0.1"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
969
+ dependencies = [
970
+ "bytes",
971
+ "http",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "http-body-util"
976
+ version = "0.1.3"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
979
+ dependencies = [
980
+ "bytes",
981
+ "futures-core",
982
+ "http",
983
+ "http-body",
984
+ "pin-project-lite",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "httparse"
989
+ version = "1.10.1"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
992
+
993
+ [[package]]
994
+ name = "hyper"
995
+ version = "1.6.0"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
998
+ dependencies = [
999
+ "bytes",
1000
+ "futures-channel",
1001
+ "futures-util",
1002
+ "h2",
1003
+ "http",
1004
+ "http-body",
1005
+ "httparse",
1006
+ "itoa",
1007
+ "pin-project-lite",
1008
+ "smallvec",
1009
+ "tokio",
1010
+ "want",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "hyper-rustls"
1015
+ version = "0.27.7"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1018
+ dependencies = [
1019
+ "http",
1020
+ "hyper",
1021
+ "hyper-util",
1022
+ "rustls 0.23.28",
1023
+ "rustls-pki-types",
1024
+ "tokio",
1025
+ "tokio-rustls",
1026
+ "tower-service",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "hyper-tls"
1031
+ version = "0.6.0"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
1034
+ dependencies = [
1035
+ "bytes",
1036
+ "http-body-util",
1037
+ "hyper",
1038
+ "hyper-util",
1039
+ "native-tls",
1040
+ "tokio",
1041
+ "tokio-native-tls",
1042
+ "tower-service",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "hyper-util"
1047
+ version = "0.1.15"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "7f66d5bd4c6f02bf0542fad85d626775bab9258cf795a4256dcaf3161114d1df"
1050
+ dependencies = [
1051
+ "base64 0.22.1",
1052
+ "bytes",
1053
+ "futures-channel",
1054
+ "futures-core",
1055
+ "futures-util",
1056
+ "http",
1057
+ "http-body",
1058
+ "hyper",
1059
+ "ipnet",
1060
+ "libc",
1061
+ "percent-encoding",
1062
+ "pin-project-lite",
1063
+ "socket2",
1064
+ "system-configuration",
1065
+ "tokio",
1066
+ "tower-service",
1067
+ "tracing",
1068
+ "windows-registry",
746
1069
  ]
747
1070
 
748
1071
  [[package]]
@@ -761,6 +1084,16 @@ dependencies = [
761
1084
  "unicode-normalization",
762
1085
  ]
763
1086
 
1087
+ [[package]]
1088
+ name = "indexmap"
1089
+ version = "2.10.0"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
1092
+ dependencies = [
1093
+ "equivalent",
1094
+ "hashbrown",
1095
+ ]
1096
+
764
1097
  [[package]]
765
1098
  name = "indicatif"
766
1099
  version = "0.17.8"
@@ -783,6 +1116,33 @@ dependencies = [
783
1116
  "cfg-if",
784
1117
  ]
785
1118
 
1119
+ [[package]]
1120
+ name = "io-uring"
1121
+ version = "0.7.8"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013"
1124
+ dependencies = [
1125
+ "bitflags 2.4.2",
1126
+ "cfg-if",
1127
+ "libc",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "ipnet"
1132
+ version = "2.11.0"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1135
+
1136
+ [[package]]
1137
+ name = "iri-string"
1138
+ version = "0.7.8"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1141
+ dependencies = [
1142
+ "memchr",
1143
+ "serde",
1144
+ ]
1145
+
786
1146
  [[package]]
787
1147
  name = "itertools"
788
1148
  version = "0.11.0"
@@ -807,6 +1167,16 @@ version = "1.0.10"
807
1167
  source = "registry+https://github.com/rust-lang/crates.io-index"
808
1168
  checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
809
1169
 
1170
+ [[package]]
1171
+ name = "js-sys"
1172
+ version = "0.3.77"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1175
+ dependencies = [
1176
+ "once_cell",
1177
+ "wasm-bindgen",
1178
+ ]
1179
+
810
1180
  [[package]]
811
1181
  name = "lazy_static"
812
1182
  version = "1.4.0"
@@ -821,9 +1191,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
821
1191
 
822
1192
  [[package]]
823
1193
  name = "libc"
824
- version = "0.2.153"
1194
+ version = "0.2.174"
825
1195
  source = "registry+https://github.com/rust-lang/crates.io-index"
826
- checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
1196
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
827
1197
 
828
1198
  [[package]]
829
1199
  name = "libloading"
@@ -832,7 +1202,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
832
1202
  checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
833
1203
  dependencies = [
834
1204
  "cfg-if",
835
- "windows-targets 0.48.5",
1205
+ "windows-targets 0.52.4",
836
1206
  ]
837
1207
 
838
1208
  [[package]]
@@ -843,13 +1213,12 @@ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
843
1213
 
844
1214
  [[package]]
845
1215
  name = "libredox"
846
- version = "0.0.1"
1216
+ version = "0.1.4"
847
1217
  source = "registry+https://github.com/rust-lang/crates.io-index"
848
- checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
1218
+ checksum = "1580801010e535496706ba011c15f8532df6b42297d2e471fec38ceadd8c0638"
849
1219
  dependencies = [
850
1220
  "bitflags 2.4.2",
851
1221
  "libc",
852
- "redox_syscall",
853
1222
  ]
854
1223
 
855
1224
  [[package]]
@@ -900,7 +1269,7 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
900
1269
  dependencies = [
901
1270
  "proc-macro2",
902
1271
  "quote",
903
- "syn 2.0.52",
1272
+ "syn 2.0.104",
904
1273
  ]
905
1274
 
906
1275
  [[package]]
@@ -919,6 +1288,12 @@ dependencies = [
919
1288
  "stable_deref_trait",
920
1289
  ]
921
1290
 
1291
+ [[package]]
1292
+ name = "mime"
1293
+ version = "0.3.17"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1296
+
922
1297
  [[package]]
923
1298
  name = "minimal-lexical"
924
1299
  version = "0.2.1"
@@ -934,6 +1309,17 @@ dependencies = [
934
1309
  "adler",
935
1310
  ]
936
1311
 
1312
+ [[package]]
1313
+ name = "mio"
1314
+ version = "1.0.3"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1317
+ dependencies = [
1318
+ "libc",
1319
+ "wasi 0.11.0+wasi-snapshot-preview1",
1320
+ "windows-sys 0.52.0",
1321
+ ]
1322
+
937
1323
  [[package]]
938
1324
  name = "monostate"
939
1325
  version = "0.1.11"
@@ -952,16 +1338,15 @@ checksum = "f686d68a09079e63b1d2c64aa305095887ce50565f00a922ebfaeeee0d9ba6ce"
952
1338
  dependencies = [
953
1339
  "proc-macro2",
954
1340
  "quote",
955
- "syn 2.0.52",
1341
+ "syn 2.0.104",
956
1342
  ]
957
1343
 
958
1344
  [[package]]
959
1345
  name = "native-tls"
960
- version = "0.2.11"
1346
+ version = "0.2.14"
961
1347
  source = "registry+https://github.com/rust-lang/crates.io-index"
962
- checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
1348
+ checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
963
1349
  dependencies = [
964
- "lazy_static",
965
1350
  "libc",
966
1351
  "log",
967
1352
  "openssl",
@@ -1019,6 +1404,15 @@ version = "0.4.0"
1019
1404
  source = "registry+https://github.com/rust-lang/crates.io-index"
1020
1405
  checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1021
1406
 
1407
+ [[package]]
1408
+ name = "object"
1409
+ version = "0.36.7"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1412
+ dependencies = [
1413
+ "memchr",
1414
+ ]
1415
+
1022
1416
  [[package]]
1023
1417
  name = "once_cell"
1024
1418
  version = "1.19.0"
@@ -1049,9 +1443,9 @@ dependencies = [
1049
1443
 
1050
1444
  [[package]]
1051
1445
  name = "openssl"
1052
- version = "0.10.64"
1446
+ version = "0.10.73"
1053
1447
  source = "registry+https://github.com/rust-lang/crates.io-index"
1054
- checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
1448
+ checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
1055
1449
  dependencies = [
1056
1450
  "bitflags 2.4.2",
1057
1451
  "cfg-if",
@@ -1070,7 +1464,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1070
1464
  dependencies = [
1071
1465
  "proc-macro2",
1072
1466
  "quote",
1073
- "syn 2.0.52",
1467
+ "syn 2.0.104",
1074
1468
  ]
1075
1469
 
1076
1470
  [[package]]
@@ -1081,9 +1475,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1081
1475
 
1082
1476
  [[package]]
1083
1477
  name = "openssl-sys"
1084
- version = "0.9.101"
1478
+ version = "0.9.109"
1085
1479
  source = "registry+https://github.com/rust-lang/crates.io-index"
1086
- checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff"
1480
+ checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
1087
1481
  dependencies = [
1088
1482
  "cc",
1089
1483
  "libc",
@@ -1115,6 +1509,12 @@ version = "0.2.13"
1115
1509
  source = "registry+https://github.com/rust-lang/crates.io-index"
1116
1510
  checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
1117
1511
 
1512
+ [[package]]
1513
+ name = "pin-utils"
1514
+ version = "0.1.0"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1517
+
1118
1518
  [[package]]
1119
1519
  name = "pkg-config"
1120
1520
  version = "0.3.30"
@@ -1135,9 +1535,9 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
1135
1535
 
1136
1536
  [[package]]
1137
1537
  name = "proc-macro2"
1138
- version = "1.0.79"
1538
+ version = "1.0.95"
1139
1539
  source = "registry+https://github.com/rust-lang/crates.io-index"
1140
- checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e"
1540
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
1141
1541
  dependencies = [
1142
1542
  "unicode-ident",
1143
1543
  ]
@@ -1163,6 +1563,12 @@ dependencies = [
1163
1563
  "proc-macro2",
1164
1564
  ]
1165
1565
 
1566
+ [[package]]
1567
+ name = "r-efi"
1568
+ version = "5.3.0"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1571
+
1166
1572
  [[package]]
1167
1573
  name = "rand"
1168
1574
  version = "0.8.5"
@@ -1170,8 +1576,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
1576
  checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1171
1577
  dependencies = [
1172
1578
  "libc",
1173
- "rand_chacha",
1174
- "rand_core",
1579
+ "rand_chacha 0.3.1",
1580
+ "rand_core 0.6.4",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "rand"
1585
+ version = "0.9.1"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
1588
+ dependencies = [
1589
+ "rand_chacha 0.9.0",
1590
+ "rand_core 0.9.3",
1175
1591
  ]
1176
1592
 
1177
1593
  [[package]]
@@ -1181,7 +1597,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
1597
  checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1182
1598
  dependencies = [
1183
1599
  "ppv-lite86",
1184
- "rand_core",
1600
+ "rand_core 0.6.4",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "rand_chacha"
1605
+ version = "0.9.0"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1608
+ dependencies = [
1609
+ "ppv-lite86",
1610
+ "rand_core 0.9.3",
1185
1611
  ]
1186
1612
 
1187
1613
  [[package]]
@@ -1190,7 +1616,16 @@ version = "0.6.4"
1190
1616
  source = "registry+https://github.com/rust-lang/crates.io-index"
1191
1617
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1192
1618
  dependencies = [
1193
- "getrandom",
1619
+ "getrandom 0.2.12",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "rand_core"
1624
+ version = "0.9.3"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1627
+ dependencies = [
1628
+ "getrandom 0.3.3",
1194
1629
  ]
1195
1630
 
1196
1631
  [[package]]
@@ -1200,7 +1635,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
1635
  checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
1201
1636
  dependencies = [
1202
1637
  "num-traits",
1203
- "rand",
1638
+ "rand 0.8.5",
1204
1639
  ]
1205
1640
 
1206
1641
  [[package]]
@@ -1264,7 +1699,7 @@ dependencies = [
1264
1699
  "quote",
1265
1700
  "regex",
1266
1701
  "shell-words",
1267
- "syn 2.0.52",
1702
+ "syn 2.0.104",
1268
1703
  ]
1269
1704
 
1270
1705
  [[package]]
@@ -1279,24 +1714,15 @@ version = "0.5.5"
1279
1714
  source = "registry+https://github.com/rust-lang/crates.io-index"
1280
1715
  checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
1281
1716
 
1282
- [[package]]
1283
- name = "redox_syscall"
1284
- version = "0.4.1"
1285
- source = "registry+https://github.com/rust-lang/crates.io-index"
1286
- checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
1287
- dependencies = [
1288
- "bitflags 1.3.2",
1289
- ]
1290
-
1291
1717
  [[package]]
1292
1718
  name = "redox_users"
1293
- version = "0.4.4"
1719
+ version = "0.5.0"
1294
1720
  source = "registry+https://github.com/rust-lang/crates.io-index"
1295
- checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
1721
+ checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
1296
1722
  dependencies = [
1297
- "getrandom",
1723
+ "getrandom 0.2.12",
1298
1724
  "libredox",
1299
- "thiserror",
1725
+ "thiserror 2.0.12",
1300
1726
  ]
1301
1727
 
1302
1728
  [[package]]
@@ -1329,20 +1755,69 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
1755
  checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
1330
1756
 
1331
1757
  [[package]]
1332
- name = "ring"
1333
- version = "0.17.8"
1334
- source = "registry+https://github.com/rust-lang/crates.io-index"
1335
- checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
1336
- dependencies = [
1337
- "cc",
1338
- "cfg-if",
1339
- "getrandom",
1758
+ name = "reqwest"
1759
+ version = "0.12.22"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
1762
+ dependencies = [
1763
+ "base64 0.22.1",
1764
+ "bytes",
1765
+ "encoding_rs",
1766
+ "futures-core",
1767
+ "futures-util",
1768
+ "h2",
1769
+ "http",
1770
+ "http-body",
1771
+ "http-body-util",
1772
+ "hyper",
1773
+ "hyper-rustls",
1774
+ "hyper-tls",
1775
+ "hyper-util",
1776
+ "js-sys",
1777
+ "log",
1778
+ "mime",
1779
+ "native-tls",
1780
+ "percent-encoding",
1781
+ "pin-project-lite",
1782
+ "rustls-pki-types",
1783
+ "serde",
1784
+ "serde_json",
1785
+ "serde_urlencoded",
1786
+ "sync_wrapper",
1787
+ "tokio",
1788
+ "tokio-native-tls",
1789
+ "tokio-util",
1790
+ "tower",
1791
+ "tower-http",
1792
+ "tower-service",
1793
+ "url",
1794
+ "wasm-bindgen",
1795
+ "wasm-bindgen-futures",
1796
+ "wasm-streams",
1797
+ "web-sys",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "ring"
1802
+ version = "0.17.8"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
1805
+ dependencies = [
1806
+ "cc",
1807
+ "cfg-if",
1808
+ "getrandom 0.2.12",
1340
1809
  "libc",
1341
1810
  "spin",
1342
1811
  "untrusted",
1343
1812
  "windows-sys 0.52.0",
1344
1813
  ]
1345
1814
 
1815
+ [[package]]
1816
+ name = "rustc-demangle"
1817
+ version = "0.1.25"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
1820
+
1346
1821
  [[package]]
1347
1822
  name = "rustc-hash"
1348
1823
  version = "1.1.0"
@@ -1371,16 +1846,32 @@ dependencies = [
1371
1846
  "log",
1372
1847
  "ring",
1373
1848
  "rustls-pki-types",
1374
- "rustls-webpki",
1849
+ "rustls-webpki 0.102.2",
1850
+ "subtle",
1851
+ "zeroize",
1852
+ ]
1853
+
1854
+ [[package]]
1855
+ name = "rustls"
1856
+ version = "0.23.28"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643"
1859
+ dependencies = [
1860
+ "once_cell",
1861
+ "rustls-pki-types",
1862
+ "rustls-webpki 0.103.3",
1375
1863
  "subtle",
1376
1864
  "zeroize",
1377
1865
  ]
1378
1866
 
1379
1867
  [[package]]
1380
1868
  name = "rustls-pki-types"
1381
- version = "1.3.1"
1869
+ version = "1.12.0"
1382
1870
  source = "registry+https://github.com/rust-lang/crates.io-index"
1383
- checksum = "5ede67b28608b4c60685c7d54122d4400d90f62b40caee7700e700380a390fa8"
1871
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
1872
+ dependencies = [
1873
+ "zeroize",
1874
+ ]
1384
1875
 
1385
1876
  [[package]]
1386
1877
  name = "rustls-webpki"
@@ -1393,6 +1884,23 @@ dependencies = [
1393
1884
  "untrusted",
1394
1885
  ]
1395
1886
 
1887
+ [[package]]
1888
+ name = "rustls-webpki"
1889
+ version = "0.103.3"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
1892
+ dependencies = [
1893
+ "ring",
1894
+ "rustls-pki-types",
1895
+ "untrusted",
1896
+ ]
1897
+
1898
+ [[package]]
1899
+ name = "rustversion"
1900
+ version = "1.0.21"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
1903
+
1396
1904
  [[package]]
1397
1905
  name = "ryu"
1398
1906
  version = "1.0.17"
@@ -1473,7 +1981,7 @@ checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
1473
1981
  dependencies = [
1474
1982
  "proc-macro2",
1475
1983
  "quote",
1476
- "syn 2.0.52",
1984
+ "syn 2.0.104",
1477
1985
  ]
1478
1986
 
1479
1987
  [[package]]
@@ -1496,6 +2004,18 @@ dependencies = [
1496
2004
  "serde",
1497
2005
  ]
1498
2006
 
2007
+ [[package]]
2008
+ name = "serde_urlencoded"
2009
+ version = "0.7.1"
2010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2011
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2012
+ dependencies = [
2013
+ "form_urlencoded",
2014
+ "itoa",
2015
+ "ryu",
2016
+ "serde",
2017
+ ]
2018
+
1499
2019
  [[package]]
1500
2020
  name = "shell-words"
1501
2021
  version = "1.1.0"
@@ -1508,12 +2028,39 @@ version = "1.3.0"
1508
2028
  source = "registry+https://github.com/rust-lang/crates.io-index"
1509
2029
  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1510
2030
 
2031
+ [[package]]
2032
+ name = "slab"
2033
+ version = "0.4.10"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
2036
+
1511
2037
  [[package]]
1512
2038
  name = "smallvec"
1513
2039
  version = "1.13.1"
1514
2040
  source = "registry+https://github.com/rust-lang/crates.io-index"
1515
2041
  checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
1516
2042
 
2043
+ [[package]]
2044
+ name = "socket2"
2045
+ version = "0.5.10"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2048
+ dependencies = [
2049
+ "libc",
2050
+ "windows-sys 0.52.0",
2051
+ ]
2052
+
2053
+ [[package]]
2054
+ name = "socks"
2055
+ version = "0.3.4"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
2058
+ dependencies = [
2059
+ "byteorder",
2060
+ "libc",
2061
+ "winapi",
2062
+ ]
2063
+
1517
2064
  [[package]]
1518
2065
  name = "spin"
1519
2066
  version = "0.9.8"
@@ -1569,15 +2116,24 @@ dependencies = [
1569
2116
 
1570
2117
  [[package]]
1571
2118
  name = "syn"
1572
- version = "2.0.52"
2119
+ version = "2.0.104"
1573
2120
  source = "registry+https://github.com/rust-lang/crates.io-index"
1574
- checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07"
2121
+ checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
1575
2122
  dependencies = [
1576
2123
  "proc-macro2",
1577
2124
  "quote",
1578
2125
  "unicode-ident",
1579
2126
  ]
1580
2127
 
2128
+ [[package]]
2129
+ name = "sync_wrapper"
2130
+ version = "1.0.2"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2133
+ dependencies = [
2134
+ "futures-core",
2135
+ ]
2136
+
1581
2137
  [[package]]
1582
2138
  name = "synstructure"
1583
2139
  version = "0.13.1"
@@ -1586,7 +2142,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
1586
2142
  dependencies = [
1587
2143
  "proc-macro2",
1588
2144
  "quote",
1589
- "syn 2.0.52",
2145
+ "syn 2.0.104",
1590
2146
  ]
1591
2147
 
1592
2148
  [[package]]
@@ -1599,10 +2155,31 @@ dependencies = [
1599
2155
  "byteorder",
1600
2156
  "enum-as-inner",
1601
2157
  "libc",
1602
- "thiserror",
2158
+ "thiserror 1.0.58",
1603
2159
  "walkdir",
1604
2160
  ]
1605
2161
 
2162
+ [[package]]
2163
+ name = "system-configuration"
2164
+ version = "0.6.1"
2165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2166
+ checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
2167
+ dependencies = [
2168
+ "bitflags 2.4.2",
2169
+ "core-foundation",
2170
+ "system-configuration-sys",
2171
+ ]
2172
+
2173
+ [[package]]
2174
+ name = "system-configuration-sys"
2175
+ version = "0.6.0"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2178
+ dependencies = [
2179
+ "core-foundation-sys",
2180
+ "libc",
2181
+ ]
2182
+
1606
2183
  [[package]]
1607
2184
  name = "tempfile"
1608
2185
  version = "3.10.1"
@@ -1621,7 +2198,16 @@ version = "1.0.58"
1621
2198
  source = "registry+https://github.com/rust-lang/crates.io-index"
1622
2199
  checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297"
1623
2200
  dependencies = [
1624
- "thiserror-impl",
2201
+ "thiserror-impl 1.0.58",
2202
+ ]
2203
+
2204
+ [[package]]
2205
+ name = "thiserror"
2206
+ version = "2.0.12"
2207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2208
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
2209
+ dependencies = [
2210
+ "thiserror-impl 2.0.12",
1625
2211
  ]
1626
2212
 
1627
2213
  [[package]]
@@ -1632,7 +2218,18 @@ checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7"
1632
2218
  dependencies = [
1633
2219
  "proc-macro2",
1634
2220
  "quote",
1635
- "syn 2.0.52",
2221
+ "syn 2.0.104",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "thiserror-impl"
2226
+ version = "2.0.12"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2229
+ dependencies = [
2230
+ "proc-macro2",
2231
+ "quote",
2232
+ "syn 2.0.104",
1636
2233
  ]
1637
2234
 
1638
2235
  [[package]]
@@ -1661,7 +2258,7 @@ dependencies = [
1661
2258
  "derive_builder",
1662
2259
  "esaxx-rs",
1663
2260
  "fancy-regex",
1664
- "getrandom",
2261
+ "getrandom 0.2.12",
1665
2262
  "indicatif",
1666
2263
  "itertools 0.12.1",
1667
2264
  "lazy_static",
@@ -1670,7 +2267,7 @@ dependencies = [
1670
2267
  "monostate",
1671
2268
  "onig",
1672
2269
  "paste",
1673
- "rand",
2270
+ "rand 0.8.5",
1674
2271
  "rayon",
1675
2272
  "rayon-cond",
1676
2273
  "regex",
@@ -1678,12 +2275,119 @@ dependencies = [
1678
2275
  "serde",
1679
2276
  "serde_json",
1680
2277
  "spm_precompiled",
1681
- "thiserror",
2278
+ "thiserror 1.0.58",
1682
2279
  "unicode-normalization-alignments",
1683
2280
  "unicode-segmentation",
1684
2281
  "unicode_categories",
1685
2282
  ]
1686
2283
 
2284
+ [[package]]
2285
+ name = "tokio"
2286
+ version = "1.46.1"
2287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2288
+ checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17"
2289
+ dependencies = [
2290
+ "backtrace",
2291
+ "bytes",
2292
+ "io-uring",
2293
+ "libc",
2294
+ "mio",
2295
+ "pin-project-lite",
2296
+ "slab",
2297
+ "socket2",
2298
+ "tokio-macros",
2299
+ "windows-sys 0.52.0",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "tokio-macros"
2304
+ version = "2.5.0"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2307
+ dependencies = [
2308
+ "proc-macro2",
2309
+ "quote",
2310
+ "syn 2.0.104",
2311
+ ]
2312
+
2313
+ [[package]]
2314
+ name = "tokio-native-tls"
2315
+ version = "0.3.1"
2316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2317
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2318
+ dependencies = [
2319
+ "native-tls",
2320
+ "tokio",
2321
+ ]
2322
+
2323
+ [[package]]
2324
+ name = "tokio-rustls"
2325
+ version = "0.26.2"
2326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
2328
+ dependencies = [
2329
+ "rustls 0.23.28",
2330
+ "tokio",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "tokio-util"
2335
+ version = "0.7.15"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
2338
+ dependencies = [
2339
+ "bytes",
2340
+ "futures-core",
2341
+ "futures-sink",
2342
+ "pin-project-lite",
2343
+ "tokio",
2344
+ ]
2345
+
2346
+ [[package]]
2347
+ name = "tower"
2348
+ version = "0.5.2"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
2351
+ dependencies = [
2352
+ "futures-core",
2353
+ "futures-util",
2354
+ "pin-project-lite",
2355
+ "sync_wrapper",
2356
+ "tokio",
2357
+ "tower-layer",
2358
+ "tower-service",
2359
+ ]
2360
+
2361
+ [[package]]
2362
+ name = "tower-http"
2363
+ version = "0.6.6"
2364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2365
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
2366
+ dependencies = [
2367
+ "bitflags 2.4.2",
2368
+ "bytes",
2369
+ "futures-util",
2370
+ "http",
2371
+ "http-body",
2372
+ "iri-string",
2373
+ "pin-project-lite",
2374
+ "tower",
2375
+ "tower-layer",
2376
+ "tower-service",
2377
+ ]
2378
+
2379
+ [[package]]
2380
+ name = "tower-layer"
2381
+ version = "0.3.3"
2382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2383
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2384
+
2385
+ [[package]]
2386
+ name = "tower-service"
2387
+ version = "0.3.3"
2388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2389
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2390
+
1687
2391
  [[package]]
1688
2392
  name = "tracing"
1689
2393
  version = "0.1.40"
@@ -1703,7 +2407,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
1703
2407
  dependencies = [
1704
2408
  "proc-macro2",
1705
2409
  "quote",
1706
- "syn 2.0.52",
2410
+ "syn 2.0.104",
1707
2411
  ]
1708
2412
 
1709
2413
  [[package]]
@@ -1715,6 +2419,12 @@ dependencies = [
1715
2419
  "once_cell",
1716
2420
  ]
1717
2421
 
2422
+ [[package]]
2423
+ name = "try-lock"
2424
+ version = "0.2.5"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2427
+
1718
2428
  [[package]]
1719
2429
  name = "unicode-bidi"
1720
2430
  version = "0.3.15"
@@ -1780,11 +2490,12 @@ dependencies = [
1780
2490
  "log",
1781
2491
  "native-tls",
1782
2492
  "once_cell",
1783
- "rustls",
2493
+ "rustls 0.22.2",
1784
2494
  "rustls-pki-types",
1785
- "rustls-webpki",
2495
+ "rustls-webpki 0.102.2",
1786
2496
  "serde",
1787
2497
  "serde_json",
2498
+ "socks",
1788
2499
  "url",
1789
2500
  "webpki-roots",
1790
2501
  ]
@@ -1822,12 +2533,124 @@ dependencies = [
1822
2533
  "winapi-util",
1823
2534
  ]
1824
2535
 
2536
+ [[package]]
2537
+ name = "want"
2538
+ version = "0.3.1"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2541
+ dependencies = [
2542
+ "try-lock",
2543
+ ]
2544
+
1825
2545
  [[package]]
1826
2546
  name = "wasi"
1827
2547
  version = "0.11.0+wasi-snapshot-preview1"
1828
2548
  source = "registry+https://github.com/rust-lang/crates.io-index"
1829
2549
  checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1830
2550
 
2551
+ [[package]]
2552
+ name = "wasi"
2553
+ version = "0.14.2+wasi-0.2.4"
2554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2555
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
2556
+ dependencies = [
2557
+ "wit-bindgen-rt",
2558
+ ]
2559
+
2560
+ [[package]]
2561
+ name = "wasm-bindgen"
2562
+ version = "0.2.100"
2563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2564
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2565
+ dependencies = [
2566
+ "cfg-if",
2567
+ "once_cell",
2568
+ "rustversion",
2569
+ "wasm-bindgen-macro",
2570
+ ]
2571
+
2572
+ [[package]]
2573
+ name = "wasm-bindgen-backend"
2574
+ version = "0.2.100"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2577
+ dependencies = [
2578
+ "bumpalo",
2579
+ "log",
2580
+ "proc-macro2",
2581
+ "quote",
2582
+ "syn 2.0.104",
2583
+ "wasm-bindgen-shared",
2584
+ ]
2585
+
2586
+ [[package]]
2587
+ name = "wasm-bindgen-futures"
2588
+ version = "0.4.50"
2589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2590
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
2591
+ dependencies = [
2592
+ "cfg-if",
2593
+ "js-sys",
2594
+ "once_cell",
2595
+ "wasm-bindgen",
2596
+ "web-sys",
2597
+ ]
2598
+
2599
+ [[package]]
2600
+ name = "wasm-bindgen-macro"
2601
+ version = "0.2.100"
2602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2603
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2604
+ dependencies = [
2605
+ "quote",
2606
+ "wasm-bindgen-macro-support",
2607
+ ]
2608
+
2609
+ [[package]]
2610
+ name = "wasm-bindgen-macro-support"
2611
+ version = "0.2.100"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2614
+ dependencies = [
2615
+ "proc-macro2",
2616
+ "quote",
2617
+ "syn 2.0.104",
2618
+ "wasm-bindgen-backend",
2619
+ "wasm-bindgen-shared",
2620
+ ]
2621
+
2622
+ [[package]]
2623
+ name = "wasm-bindgen-shared"
2624
+ version = "0.2.100"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
2627
+ dependencies = [
2628
+ "unicode-ident",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "wasm-streams"
2633
+ version = "0.4.2"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
2636
+ dependencies = [
2637
+ "futures-util",
2638
+ "js-sys",
2639
+ "wasm-bindgen",
2640
+ "wasm-bindgen-futures",
2641
+ "web-sys",
2642
+ ]
2643
+
2644
+ [[package]]
2645
+ name = "web-sys"
2646
+ version = "0.3.77"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
2649
+ dependencies = [
2650
+ "js-sys",
2651
+ "wasm-bindgen",
2652
+ ]
2653
+
1831
2654
  [[package]]
1832
2655
  name = "webpki-roots"
1833
2656
  version = "0.26.1"
@@ -1869,12 +2692,38 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
2692
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1870
2693
 
1871
2694
  [[package]]
1872
- name = "windows-sys"
1873
- version = "0.48.0"
2695
+ name = "windows-link"
2696
+ version = "0.1.3"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2699
+
2700
+ [[package]]
2701
+ name = "windows-registry"
2702
+ version = "0.5.3"
1874
2703
  source = "registry+https://github.com/rust-lang/crates.io-index"
1875
- checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2704
+ checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
1876
2705
  dependencies = [
1877
- "windows-targets 0.48.5",
2706
+ "windows-link",
2707
+ "windows-result",
2708
+ "windows-strings",
2709
+ ]
2710
+
2711
+ [[package]]
2712
+ name = "windows-result"
2713
+ version = "0.3.4"
2714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2715
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2716
+ dependencies = [
2717
+ "windows-link",
2718
+ ]
2719
+
2720
+ [[package]]
2721
+ name = "windows-strings"
2722
+ version = "0.4.2"
2723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2724
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2725
+ dependencies = [
2726
+ "windows-link",
1878
2727
  ]
1879
2728
 
1880
2729
  [[package]]
@@ -1887,18 +2736,12 @@ dependencies = [
1887
2736
  ]
1888
2737
 
1889
2738
  [[package]]
1890
- name = "windows-targets"
1891
- version = "0.48.5"
2739
+ name = "windows-sys"
2740
+ version = "0.60.2"
1892
2741
  source = "registry+https://github.com/rust-lang/crates.io-index"
1893
- checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2742
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1894
2743
  dependencies = [
1895
- "windows_aarch64_gnullvm 0.48.5",
1896
- "windows_aarch64_msvc 0.48.5",
1897
- "windows_i686_gnu 0.48.5",
1898
- "windows_i686_msvc 0.48.5",
1899
- "windows_x86_64_gnu 0.48.5",
1900
- "windows_x86_64_gnullvm 0.48.5",
1901
- "windows_x86_64_msvc 0.48.5",
2744
+ "windows-targets 0.53.2",
1902
2745
  ]
1903
2746
 
1904
2747
  [[package]]
@@ -1917,10 +2760,20 @@ dependencies = [
1917
2760
  ]
1918
2761
 
1919
2762
  [[package]]
1920
- name = "windows_aarch64_gnullvm"
1921
- version = "0.48.5"
2763
+ name = "windows-targets"
2764
+ version = "0.53.2"
1922
2765
  source = "registry+https://github.com/rust-lang/crates.io-index"
1923
- checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2766
+ checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
2767
+ dependencies = [
2768
+ "windows_aarch64_gnullvm 0.53.0",
2769
+ "windows_aarch64_msvc 0.53.0",
2770
+ "windows_i686_gnu 0.53.0",
2771
+ "windows_i686_gnullvm",
2772
+ "windows_i686_msvc 0.53.0",
2773
+ "windows_x86_64_gnu 0.53.0",
2774
+ "windows_x86_64_gnullvm 0.53.0",
2775
+ "windows_x86_64_msvc 0.53.0",
2776
+ ]
1924
2777
 
1925
2778
  [[package]]
1926
2779
  name = "windows_aarch64_gnullvm"
@@ -1929,10 +2782,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
2782
  checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
1930
2783
 
1931
2784
  [[package]]
1932
- name = "windows_aarch64_msvc"
1933
- version = "0.48.5"
2785
+ name = "windows_aarch64_gnullvm"
2786
+ version = "0.53.0"
1934
2787
  source = "registry+https://github.com/rust-lang/crates.io-index"
1935
- checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2788
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
1936
2789
 
1937
2790
  [[package]]
1938
2791
  name = "windows_aarch64_msvc"
@@ -1941,10 +2794,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
2794
  checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
1942
2795
 
1943
2796
  [[package]]
1944
- name = "windows_i686_gnu"
1945
- version = "0.48.5"
2797
+ name = "windows_aarch64_msvc"
2798
+ version = "0.53.0"
1946
2799
  source = "registry+https://github.com/rust-lang/crates.io-index"
1947
- checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2800
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
1948
2801
 
1949
2802
  [[package]]
1950
2803
  name = "windows_i686_gnu"
@@ -1953,10 +2806,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
2806
  checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
1954
2807
 
1955
2808
  [[package]]
1956
- name = "windows_i686_msvc"
1957
- version = "0.48.5"
2809
+ name = "windows_i686_gnu"
2810
+ version = "0.53.0"
2811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2812
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2813
+
2814
+ [[package]]
2815
+ name = "windows_i686_gnullvm"
2816
+ version = "0.53.0"
1958
2817
  source = "registry+https://github.com/rust-lang/crates.io-index"
1959
- checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2818
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
1960
2819
 
1961
2820
  [[package]]
1962
2821
  name = "windows_i686_msvc"
@@ -1965,10 +2824,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1965
2824
  checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
1966
2825
 
1967
2826
  [[package]]
1968
- name = "windows_x86_64_gnu"
1969
- version = "0.48.5"
2827
+ name = "windows_i686_msvc"
2828
+ version = "0.53.0"
1970
2829
  source = "registry+https://github.com/rust-lang/crates.io-index"
1971
- checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2830
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
1972
2831
 
1973
2832
  [[package]]
1974
2833
  name = "windows_x86_64_gnu"
@@ -1977,10 +2836,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
2836
  checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
1978
2837
 
1979
2838
  [[package]]
1980
- name = "windows_x86_64_gnullvm"
1981
- version = "0.48.5"
2839
+ name = "windows_x86_64_gnu"
2840
+ version = "0.53.0"
1982
2841
  source = "registry+https://github.com/rust-lang/crates.io-index"
1983
- checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2842
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
1984
2843
 
1985
2844
  [[package]]
1986
2845
  name = "windows_x86_64_gnullvm"
@@ -1989,10 +2848,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1989
2848
  checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
1990
2849
 
1991
2850
  [[package]]
1992
- name = "windows_x86_64_msvc"
1993
- version = "0.48.5"
2851
+ name = "windows_x86_64_gnullvm"
2852
+ version = "0.53.0"
1994
2853
  source = "registry+https://github.com/rust-lang/crates.io-index"
1995
- checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2854
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
1996
2855
 
1997
2856
  [[package]]
1998
2857
  name = "windows_x86_64_msvc"
@@ -2000,6 +2859,21 @@ version = "0.52.4"
2000
2859
  source = "registry+https://github.com/rust-lang/crates.io-index"
2001
2860
  checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
2002
2861
 
2862
+ [[package]]
2863
+ name = "windows_x86_64_msvc"
2864
+ version = "0.53.0"
2865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2866
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2867
+
2868
+ [[package]]
2869
+ name = "wit-bindgen-rt"
2870
+ version = "0.39.0"
2871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2872
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
2873
+ dependencies = [
2874
+ "bitflags 2.4.2",
2875
+ ]
2876
+
2003
2877
  [[package]]
2004
2878
  name = "yoke"
2005
2879
  version = "0.7.3"
@@ -2020,7 +2894,7 @@ checksum = "9e6936f0cce458098a201c245a11bef556c6a0181129c7034d10d76d1ec3a2b8"
2020
2894
  dependencies = [
2021
2895
  "proc-macro2",
2022
2896
  "quote",
2023
- "syn 2.0.52",
2897
+ "syn 2.0.104",
2024
2898
  "synstructure",
2025
2899
  ]
2026
2900
 
@@ -2041,7 +2915,7 @@ checksum = "e6a647510471d372f2e6c2e6b7219e44d8c574d24fdc11c610a61455782f18c3"
2041
2915
  dependencies = [
2042
2916
  "proc-macro2",
2043
2917
  "quote",
2044
- "syn 2.0.52",
2918
+ "syn 2.0.104",
2045
2919
  "synstructure",
2046
2920
  ]
2047
2921