datago 2025.4.3__tar.gz → 2025.6.1__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 (36) hide show
  1. {datago-2025.4.3 → datago-2025.6.1}/Cargo.lock +651 -54
  2. {datago-2025.4.3 → datago-2025.6.1}/Cargo.toml +11 -2
  3. {datago-2025.4.3 → datago-2025.6.1}/PKG-INFO +98 -22
  4. datago-2025.6.1/README.md +241 -0
  5. datago-2025.6.1/assets/447175851-2277afcb-8abf-4d17-b2db-dae27c6056d0.png +0 -0
  6. {datago-2025.4.3 → datago-2025.6.1}/python/benchmark_db.py +2 -2
  7. {datago-2025.4.3 → datago-2025.6.1}/python/benchmark_filesystem.py +19 -7
  8. datago-2025.6.1/python/benchmark_webdataset.py +126 -0
  9. {datago-2025.4.3 → datago-2025.6.1}/python/dataset.py +26 -21
  10. {datago-2025.4.3 → datago-2025.6.1}/python/test_datago_db.py +2 -2
  11. {datago-2025.4.3 → datago-2025.6.1}/python/test_datago_filesystem.py +6 -5
  12. {datago-2025.4.3 → datago-2025.6.1}/requirements-tests.txt +1 -0
  13. datago-2025.6.1/src/client.rs +666 -0
  14. datago-2025.6.1/src/generator_files.rs +169 -0
  15. datago-2025.6.1/src/generator_http.rs +778 -0
  16. datago-2025.6.1/src/generator_wds.rs +676 -0
  17. {datago-2025.4.3 → datago-2025.6.1}/src/image_processing.rs +2 -1
  18. {datago-2025.4.3 → datago-2025.6.1}/src/lib.rs +5 -1
  19. {datago-2025.4.3 → datago-2025.6.1}/src/main.rs +15 -8
  20. {datago-2025.4.3 → datago-2025.6.1}/src/structs.rs +69 -2
  21. {datago-2025.4.3 → datago-2025.6.1}/src/worker_files.rs +19 -28
  22. {datago-2025.4.3 → datago-2025.6.1}/src/worker_http.rs +90 -60
  23. datago-2025.6.1/src/worker_wds.rs +248 -0
  24. datago-2025.4.3/README.md +0 -165
  25. datago-2025.4.3/src/client.rs +0 -266
  26. datago-2025.4.3/src/generator_files.rs +0 -122
  27. datago-2025.4.3/src/generator_http.rs +0 -508
  28. datago-2025.4.3/tests/client_test.rs +0 -482
  29. {datago-2025.4.3 → datago-2025.6.1}/.github/workflows/ci-cd.yml +0 -0
  30. {datago-2025.4.3 → datago-2025.6.1}/.github/workflows/rust.yml +0 -0
  31. {datago-2025.4.3 → datago-2025.6.1}/.gitignore +0 -0
  32. {datago-2025.4.3 → datago-2025.6.1}/.pre-commit-config.yaml +0 -0
  33. {datago-2025.4.3 → datago-2025.6.1}/LICENSE +0 -0
  34. {datago-2025.4.3 → datago-2025.6.1}/pyproject.toml +0 -0
  35. {datago-2025.4.3 → datago-2025.6.1}/python/raw_types.py +0 -0
  36. {datago-2025.4.3 → datago-2025.6.1}/requirements.txt +0 -0
@@ -17,6 +17,15 @@ version = "2.0.0"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
18
  checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
19
19
 
20
+ [[package]]
21
+ name = "aho-corasick"
22
+ version = "1.1.3"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
25
+ dependencies = [
26
+ "memchr",
27
+ ]
28
+
20
29
  [[package]]
21
30
  name = "aligned-vec"
22
31
  version = "0.5.0"
@@ -102,6 +111,184 @@ version = "0.7.6"
102
111
  source = "registry+https://github.com/rust-lang/crates.io-index"
103
112
  checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
104
113
 
114
+ [[package]]
115
+ name = "async-channel"
116
+ version = "1.9.0"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
119
+ dependencies = [
120
+ "concurrent-queue",
121
+ "event-listener 2.5.3",
122
+ "futures-core",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "async-channel"
127
+ version = "2.3.1"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
130
+ dependencies = [
131
+ "concurrent-queue",
132
+ "event-listener-strategy",
133
+ "futures-core",
134
+ "pin-project-lite",
135
+ ]
136
+
137
+ [[package]]
138
+ name = "async-compression"
139
+ version = "0.4.23"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "b37fc50485c4f3f736a4fb14199f6d5f5ba008d7f28fe710306c92780f004c07"
142
+ dependencies = [
143
+ "futures-core",
144
+ "memchr",
145
+ "pin-project-lite",
146
+ "tokio",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "async-executor"
151
+ version = "1.13.2"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "bb812ffb58524bdd10860d7d974e2f01cc0950c2438a74ee5ec2e2280c6c4ffa"
154
+ dependencies = [
155
+ "async-task",
156
+ "concurrent-queue",
157
+ "fastrand",
158
+ "futures-lite",
159
+ "pin-project-lite",
160
+ "slab",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "async-global-executor"
165
+ version = "2.4.1"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
168
+ dependencies = [
169
+ "async-channel 2.3.1",
170
+ "async-executor",
171
+ "async-io",
172
+ "async-lock",
173
+ "blocking",
174
+ "futures-lite",
175
+ "once_cell",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "async-io"
180
+ version = "2.4.0"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059"
183
+ dependencies = [
184
+ "async-lock",
185
+ "cfg-if",
186
+ "concurrent-queue",
187
+ "futures-io",
188
+ "futures-lite",
189
+ "parking",
190
+ "polling",
191
+ "rustix 0.38.44",
192
+ "slab",
193
+ "tracing",
194
+ "windows-sys 0.59.0",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "async-lock"
199
+ version = "3.4.0"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
202
+ dependencies = [
203
+ "event-listener 5.4.0",
204
+ "event-listener-strategy",
205
+ "pin-project-lite",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "async-process"
210
+ version = "2.3.0"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb"
213
+ dependencies = [
214
+ "async-channel 2.3.1",
215
+ "async-io",
216
+ "async-lock",
217
+ "async-signal",
218
+ "async-task",
219
+ "blocking",
220
+ "cfg-if",
221
+ "event-listener 5.4.0",
222
+ "futures-lite",
223
+ "rustix 0.38.44",
224
+ "tracing",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "async-signal"
229
+ version = "0.2.10"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3"
232
+ dependencies = [
233
+ "async-io",
234
+ "async-lock",
235
+ "atomic-waker",
236
+ "cfg-if",
237
+ "futures-core",
238
+ "futures-io",
239
+ "rustix 0.38.44",
240
+ "signal-hook-registry",
241
+ "slab",
242
+ "windows-sys 0.59.0",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "async-std"
247
+ version = "1.13.1"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "730294c1c08c2e0f85759590518f6333f0d5a0a766a27d519c1b244c3dfd8a24"
250
+ dependencies = [
251
+ "async-channel 1.9.0",
252
+ "async-global-executor",
253
+ "async-io",
254
+ "async-lock",
255
+ "async-process",
256
+ "crossbeam-utils",
257
+ "futures-channel",
258
+ "futures-core",
259
+ "futures-io",
260
+ "futures-lite",
261
+ "gloo-timers",
262
+ "kv-log-macro",
263
+ "log",
264
+ "memchr",
265
+ "once_cell",
266
+ "pin-project-lite",
267
+ "pin-utils",
268
+ "slab",
269
+ "wasm-bindgen-futures",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "async-tar"
274
+ version = "0.5.0"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "a42f905d4f623faf634bbd1e001e84e0efc24694afa64be9ad239bf6ca49e1f8"
277
+ dependencies = [
278
+ "async-std",
279
+ "filetime",
280
+ "libc",
281
+ "pin-project",
282
+ "redox_syscall 0.2.16",
283
+ "xattr 0.2.3",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "async-task"
288
+ version = "4.7.1"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
291
+
105
292
  [[package]]
106
293
  name = "async-trait"
107
294
  version = "0.1.88"
@@ -160,7 +347,7 @@ dependencies = [
160
347
  "miniz_oxide",
161
348
  "object",
162
349
  "rustc-demangle",
163
- "windows-targets",
350
+ "windows-targets 0.52.6",
164
351
  ]
165
352
 
166
353
  [[package]]
@@ -193,6 +380,25 @@ version = "2.6.0"
193
380
  source = "registry+https://github.com/rust-lang/crates.io-index"
194
381
  checksum = "6099cdc01846bc367c4e7dd630dc5966dccf36b652fae7a74e17b640411a91b2"
195
382
 
383
+ [[package]]
384
+ name = "blocking"
385
+ version = "1.6.1"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea"
388
+ dependencies = [
389
+ "async-channel 2.3.1",
390
+ "async-task",
391
+ "futures-io",
392
+ "futures-lite",
393
+ "piper",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "bracoxide"
398
+ version = "0.1.6"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "3572b24445a122332bb25a2637248d62ca8b567351d98b1194ca4132c61810bd"
401
+
196
402
  [[package]]
197
403
  name = "built"
198
404
  version = "0.7.7"
@@ -308,6 +514,15 @@ version = "1.0.3"
308
514
  source = "registry+https://github.com/rust-lang/crates.io-index"
309
515
  checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
310
516
 
517
+ [[package]]
518
+ name = "concurrent-queue"
519
+ version = "2.5.0"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
522
+ dependencies = [
523
+ "crossbeam-utils",
524
+ ]
525
+
311
526
  [[package]]
312
527
  name = "core-foundation"
313
528
  version = "0.9.4"
@@ -387,11 +602,18 @@ dependencies = [
387
602
 
388
603
  [[package]]
389
604
  name = "datago"
390
- version = "2025.4.3"
605
+ version = "2025.6.1"
391
606
  dependencies = [
607
+ "async-compression",
608
+ "async-tar",
609
+ "bracoxide",
392
610
  "clap",
611
+ "env_logger",
612
+ "flate2",
613
+ "futures",
393
614
  "image",
394
615
  "kanal",
616
+ "log",
395
617
  "num_cpus",
396
618
  "openssl",
397
619
  "prettytable-rs",
@@ -402,8 +624,10 @@ dependencies = [
402
624
  "reqwest-retry",
403
625
  "serde",
404
626
  "serde_json",
627
+ "tar",
405
628
  "threadpool",
406
629
  "tokio",
630
+ "tokio-util",
407
631
  "url",
408
632
  "walkdir",
409
633
  ]
@@ -461,6 +685,29 @@ dependencies = [
461
685
  "cfg-if",
462
686
  ]
463
687
 
688
+ [[package]]
689
+ name = "env_filter"
690
+ version = "0.1.3"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
693
+ dependencies = [
694
+ "log",
695
+ "regex",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "env_logger"
700
+ version = "0.11.8"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
703
+ dependencies = [
704
+ "anstream",
705
+ "anstyle",
706
+ "env_filter",
707
+ "jiff",
708
+ "log",
709
+ ]
710
+
464
711
  [[package]]
465
712
  name = "equivalent"
466
713
  version = "1.0.2"
@@ -469,14 +716,41 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
469
716
 
470
717
  [[package]]
471
718
  name = "errno"
472
- version = "0.3.10"
719
+ version = "0.3.12"
473
720
  source = "registry+https://github.com/rust-lang/crates.io-index"
474
- checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
721
+ checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
475
722
  dependencies = [
476
723
  "libc",
477
724
  "windows-sys 0.59.0",
478
725
  ]
479
726
 
727
+ [[package]]
728
+ name = "event-listener"
729
+ version = "2.5.3"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
732
+
733
+ [[package]]
734
+ name = "event-listener"
735
+ version = "5.4.0"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
738
+ dependencies = [
739
+ "concurrent-queue",
740
+ "parking",
741
+ "pin-project-lite",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "event-listener-strategy"
746
+ version = "0.5.4"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
749
+ dependencies = [
750
+ "event-listener 5.4.0",
751
+ "pin-project-lite",
752
+ ]
753
+
480
754
  [[package]]
481
755
  name = "exr"
482
756
  version = "1.73.0"
@@ -507,11 +781,23 @@ dependencies = [
507
781
  "simd-adler32",
508
782
  ]
509
783
 
784
+ [[package]]
785
+ name = "filetime"
786
+ version = "0.2.25"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
789
+ dependencies = [
790
+ "cfg-if",
791
+ "libc",
792
+ "libredox",
793
+ "windows-sys 0.59.0",
794
+ ]
795
+
510
796
  [[package]]
511
797
  name = "flate2"
512
- version = "1.1.0"
798
+ version = "1.1.1"
513
799
  source = "registry+https://github.com/rust-lang/crates.io-index"
514
- checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
800
+ checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
515
801
  dependencies = [
516
802
  "crc32fast",
517
803
  "miniz_oxide",
@@ -595,6 +881,19 @@ version = "0.3.31"
595
881
  source = "registry+https://github.com/rust-lang/crates.io-index"
596
882
  checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
597
883
 
884
+ [[package]]
885
+ name = "futures-lite"
886
+ version = "2.6.0"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532"
889
+ dependencies = [
890
+ "fastrand",
891
+ "futures-core",
892
+ "futures-io",
893
+ "parking",
894
+ "pin-project-lite",
895
+ ]
896
+
598
897
  [[package]]
599
898
  name = "futures-macro"
600
899
  version = "0.3.31"
@@ -658,7 +957,7 @@ dependencies = [
658
957
  "cfg-if",
659
958
  "libc",
660
959
  "wasi 0.13.3+wasi-0.2.2",
661
- "windows-targets",
960
+ "windows-targets 0.52.6",
662
961
  ]
663
962
 
664
963
  [[package]]
@@ -677,11 +976,23 @@ version = "0.31.1"
677
976
  source = "registry+https://github.com/rust-lang/crates.io-index"
678
977
  checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
679
978
 
979
+ [[package]]
980
+ name = "gloo-timers"
981
+ version = "0.3.0"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
984
+ dependencies = [
985
+ "futures-channel",
986
+ "futures-core",
987
+ "js-sys",
988
+ "wasm-bindgen",
989
+ ]
990
+
680
991
  [[package]]
681
992
  name = "h2"
682
- version = "0.4.8"
993
+ version = "0.4.10"
683
994
  source = "registry+https://github.com/rust-lang/crates.io-index"
684
- checksum = "5017294ff4bb30944501348f6f8e42e6ad28f42c8bbef7a74029aff064a4e3c2"
995
+ checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
685
996
  dependencies = [
686
997
  "atomic-waker",
687
998
  "bytes",
@@ -792,11 +1103,10 @@ dependencies = [
792
1103
 
793
1104
  [[package]]
794
1105
  name = "hyper-rustls"
795
- version = "0.27.5"
1106
+ version = "0.27.6"
796
1107
  source = "registry+https://github.com/rust-lang/crates.io-index"
797
- checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1108
+ checksum = "03a01595e11bdcec50946522c32dde3fc6914743000a68b93000965f2f02406d"
798
1109
  dependencies = [
799
- "futures-util",
800
1110
  "http",
801
1111
  "hyper",
802
1112
  "hyper-util",
@@ -983,9 +1293,9 @@ dependencies = [
983
1293
 
984
1294
  [[package]]
985
1295
  name = "image"
986
- version = "0.25.5"
1296
+ version = "0.25.6"
987
1297
  source = "registry+https://github.com/rust-lang/crates.io-index"
988
- checksum = "cd6f44aed642f18953a158afeb30206f4d50da59fbc66ecb53c66488de73563b"
1298
+ checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a"
989
1299
  dependencies = [
990
1300
  "bytemuck",
991
1301
  "byteorder-lite",
@@ -1097,6 +1407,30 @@ version = "1.0.15"
1097
1407
  source = "registry+https://github.com/rust-lang/crates.io-index"
1098
1408
  checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1099
1409
 
1410
+ [[package]]
1411
+ name = "jiff"
1412
+ version = "0.2.10"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "5a064218214dc6a10fbae5ec5fa888d80c45d611aba169222fc272072bf7aef6"
1415
+ dependencies = [
1416
+ "jiff-static",
1417
+ "log",
1418
+ "portable-atomic",
1419
+ "portable-atomic-util",
1420
+ "serde",
1421
+ ]
1422
+
1423
+ [[package]]
1424
+ name = "jiff-static"
1425
+ version = "0.2.10"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "199b7932d97e325aff3a7030e141eafe7f2c6268e1d1b24859b753a627f45254"
1428
+ dependencies = [
1429
+ "proc-macro2",
1430
+ "quote",
1431
+ "syn",
1432
+ ]
1433
+
1100
1434
  [[package]]
1101
1435
  name = "jobserver"
1102
1436
  version = "0.1.32"
@@ -1132,6 +1466,15 @@ dependencies = [
1132
1466
  "lock_api",
1133
1467
  ]
1134
1468
 
1469
+ [[package]]
1470
+ name = "kv-log-macro"
1471
+ version = "1.0.7"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
1474
+ dependencies = [
1475
+ "log",
1476
+ ]
1477
+
1135
1478
  [[package]]
1136
1479
  name = "lazy_static"
1137
1480
  version = "1.5.0"
@@ -1168,6 +1511,7 @@ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1168
1511
  dependencies = [
1169
1512
  "bitflags 2.9.0",
1170
1513
  "libc",
1514
+ "redox_syscall 0.5.11",
1171
1515
  ]
1172
1516
 
1173
1517
  [[package]]
@@ -1176,6 +1520,12 @@ version = "0.4.15"
1176
1520
  source = "registry+https://github.com/rust-lang/crates.io-index"
1177
1521
  checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1178
1522
 
1523
+ [[package]]
1524
+ name = "linux-raw-sys"
1525
+ version = "0.9.4"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1528
+
1179
1529
  [[package]]
1180
1530
  name = "litemap"
1181
1531
  version = "0.7.5"
@@ -1194,9 +1544,12 @@ dependencies = [
1194
1544
 
1195
1545
  [[package]]
1196
1546
  name = "log"
1197
- version = "0.4.26"
1547
+ version = "0.4.27"
1198
1548
  source = "registry+https://github.com/rust-lang/crates.io-index"
1199
- checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
1549
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1550
+ dependencies = [
1551
+ "value-bag",
1552
+ ]
1200
1553
 
1201
1554
  [[package]]
1202
1555
  name = "loop9"
@@ -1433,6 +1786,12 @@ dependencies = [
1433
1786
  "vcpkg",
1434
1787
  ]
1435
1788
 
1789
+ [[package]]
1790
+ name = "parking"
1791
+ version = "2.2.1"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1794
+
1436
1795
  [[package]]
1437
1796
  name = "parking_lot"
1438
1797
  version = "0.11.2"
@@ -1453,7 +1812,7 @@ dependencies = [
1453
1812
  "cfg-if",
1454
1813
  "instant",
1455
1814
  "libc",
1456
- "redox_syscall",
1815
+ "redox_syscall 0.2.16",
1457
1816
  "smallvec",
1458
1817
  "winapi",
1459
1818
  ]
@@ -1470,6 +1829,26 @@ version = "2.3.1"
1470
1829
  source = "registry+https://github.com/rust-lang/crates.io-index"
1471
1830
  checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1472
1831
 
1832
+ [[package]]
1833
+ name = "pin-project"
1834
+ version = "1.1.10"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1837
+ dependencies = [
1838
+ "pin-project-internal",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "pin-project-internal"
1843
+ version = "1.1.10"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1846
+ dependencies = [
1847
+ "proc-macro2",
1848
+ "quote",
1849
+ "syn",
1850
+ ]
1851
+
1473
1852
  [[package]]
1474
1853
  name = "pin-project-lite"
1475
1854
  version = "0.2.16"
@@ -1482,6 +1861,17 @@ version = "0.1.0"
1482
1861
  source = "registry+https://github.com/rust-lang/crates.io-index"
1483
1862
  checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1484
1863
 
1864
+ [[package]]
1865
+ name = "piper"
1866
+ version = "0.2.4"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
1869
+ dependencies = [
1870
+ "atomic-waker",
1871
+ "fastrand",
1872
+ "futures-io",
1873
+ ]
1874
+
1485
1875
  [[package]]
1486
1876
  name = "pkg-config"
1487
1877
  version = "0.3.32"
@@ -1501,12 +1891,36 @@ dependencies = [
1501
1891
  "miniz_oxide",
1502
1892
  ]
1503
1893
 
1894
+ [[package]]
1895
+ name = "polling"
1896
+ version = "3.7.4"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f"
1899
+ dependencies = [
1900
+ "cfg-if",
1901
+ "concurrent-queue",
1902
+ "hermit-abi 0.4.0",
1903
+ "pin-project-lite",
1904
+ "rustix 0.38.44",
1905
+ "tracing",
1906
+ "windows-sys 0.59.0",
1907
+ ]
1908
+
1504
1909
  [[package]]
1505
1910
  name = "portable-atomic"
1506
1911
  version = "1.11.0"
1507
1912
  source = "registry+https://github.com/rust-lang/crates.io-index"
1508
1913
  checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
1509
1914
 
1915
+ [[package]]
1916
+ name = "portable-atomic-util"
1917
+ version = "0.2.4"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1920
+ dependencies = [
1921
+ "portable-atomic",
1922
+ ]
1923
+
1510
1924
  [[package]]
1511
1925
  name = "ppv-lite86"
1512
1926
  version = "0.2.20"
@@ -1784,6 +2198,15 @@ dependencies = [
1784
2198
  "bitflags 1.3.2",
1785
2199
  ]
1786
2200
 
2201
+ [[package]]
2202
+ name = "redox_syscall"
2203
+ version = "0.5.11"
2204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2205
+ checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
2206
+ dependencies = [
2207
+ "bitflags 2.9.0",
2208
+ ]
2209
+
1787
2210
  [[package]]
1788
2211
  name = "redox_users"
1789
2212
  version = "0.4.6"
@@ -1795,11 +2218,40 @@ dependencies = [
1795
2218
  "thiserror",
1796
2219
  ]
1797
2220
 
2221
+ [[package]]
2222
+ name = "regex"
2223
+ version = "1.11.1"
2224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2225
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2226
+ dependencies = [
2227
+ "aho-corasick",
2228
+ "memchr",
2229
+ "regex-automata",
2230
+ "regex-syntax",
2231
+ ]
2232
+
2233
+ [[package]]
2234
+ name = "regex-automata"
2235
+ version = "0.4.9"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2238
+ dependencies = [
2239
+ "aho-corasick",
2240
+ "memchr",
2241
+ "regex-syntax",
2242
+ ]
2243
+
2244
+ [[package]]
2245
+ name = "regex-syntax"
2246
+ version = "0.8.5"
2247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2248
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2249
+
1798
2250
  [[package]]
1799
2251
  name = "reqwest"
1800
- version = "0.12.12"
2252
+ version = "0.12.15"
1801
2253
  source = "registry+https://github.com/rust-lang/crates.io-index"
1802
- checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da"
2254
+ checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
1803
2255
  dependencies = [
1804
2256
  "base64",
1805
2257
  "bytes",
@@ -1831,11 +2283,13 @@ dependencies = [
1831
2283
  "system-configuration",
1832
2284
  "tokio",
1833
2285
  "tokio-native-tls",
2286
+ "tokio-util",
1834
2287
  "tower",
1835
2288
  "tower-service",
1836
2289
  "url",
1837
2290
  "wasm-bindgen",
1838
2291
  "wasm-bindgen-futures",
2292
+ "wasm-streams",
1839
2293
  "web-sys",
1840
2294
  "windows-registry",
1841
2295
  ]
@@ -1894,9 +2348,9 @@ checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a"
1894
2348
 
1895
2349
  [[package]]
1896
2350
  name = "ring"
1897
- version = "0.17.13"
2351
+ version = "0.17.14"
1898
2352
  source = "registry+https://github.com/rust-lang/crates.io-index"
1899
- checksum = "70ac5d832aa16abd7d1def883a8545280c20a60f523a370aa3a9617c2b8550ee"
2353
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1900
2354
  dependencies = [
1901
2355
  "cc",
1902
2356
  "cfg-if",
@@ -1921,15 +2375,28 @@ dependencies = [
1921
2375
  "bitflags 2.9.0",
1922
2376
  "errno",
1923
2377
  "libc",
1924
- "linux-raw-sys",
2378
+ "linux-raw-sys 0.4.15",
2379
+ "windows-sys 0.59.0",
2380
+ ]
2381
+
2382
+ [[package]]
2383
+ name = "rustix"
2384
+ version = "1.0.7"
2385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2386
+ checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
2387
+ dependencies = [
2388
+ "bitflags 2.9.0",
2389
+ "errno",
2390
+ "libc",
2391
+ "linux-raw-sys 0.9.4",
1925
2392
  "windows-sys 0.59.0",
1926
2393
  ]
1927
2394
 
1928
2395
  [[package]]
1929
2396
  name = "rustls"
1930
- version = "0.23.23"
2397
+ version = "0.23.27"
1931
2398
  source = "registry+https://github.com/rust-lang/crates.io-index"
1932
- checksum = "47796c98c480fce5406ef69d1c76378375492c3b0a0de587be0c1d9feb12f395"
2399
+ checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
1933
2400
  dependencies = [
1934
2401
  "once_cell",
1935
2402
  "rustls-pki-types",
@@ -1949,15 +2416,18 @@ dependencies = [
1949
2416
 
1950
2417
  [[package]]
1951
2418
  name = "rustls-pki-types"
1952
- version = "1.11.0"
2419
+ version = "1.12.0"
1953
2420
  source = "registry+https://github.com/rust-lang/crates.io-index"
1954
- checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
2421
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
2422
+ dependencies = [
2423
+ "zeroize",
2424
+ ]
1955
2425
 
1956
2426
  [[package]]
1957
2427
  name = "rustls-webpki"
1958
- version = "0.102.8"
2428
+ version = "0.103.3"
1959
2429
  source = "registry+https://github.com/rust-lang/crates.io-index"
1960
- checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2430
+ checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
1961
2431
  dependencies = [
1962
2432
  "ring",
1963
2433
  "rustls-pki-types",
@@ -2082,6 +2552,15 @@ version = "1.3.0"
2082
2552
  source = "registry+https://github.com/rust-lang/crates.io-index"
2083
2553
  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2084
2554
 
2555
+ [[package]]
2556
+ name = "signal-hook-registry"
2557
+ version = "1.4.5"
2558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2559
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
2560
+ dependencies = [
2561
+ "libc",
2562
+ ]
2563
+
2085
2564
  [[package]]
2086
2565
  name = "simd-adler32"
2087
2566
  version = "0.3.7"
@@ -2205,6 +2684,17 @@ dependencies = [
2205
2684
  "version-compare",
2206
2685
  ]
2207
2686
 
2687
+ [[package]]
2688
+ name = "tar"
2689
+ version = "0.4.44"
2690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2691
+ checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
2692
+ dependencies = [
2693
+ "filetime",
2694
+ "libc",
2695
+ "xattr 1.5.0",
2696
+ ]
2697
+
2208
2698
  [[package]]
2209
2699
  name = "target-lexicon"
2210
2700
  version = "0.12.16"
@@ -2219,15 +2709,14 @@ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
2219
2709
 
2220
2710
  [[package]]
2221
2711
  name = "tempfile"
2222
- version = "3.17.1"
2712
+ version = "3.20.0"
2223
2713
  source = "registry+https://github.com/rust-lang/crates.io-index"
2224
- checksum = "22e5a0acb1f3f55f65cc4a866c361b2fb2a0ff6366785ae6fbb5f85df07ba230"
2714
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
2225
2715
  dependencies = [
2226
- "cfg-if",
2227
2716
  "fastrand",
2228
2717
  "getrandom 0.3.1",
2229
2718
  "once_cell",
2230
- "rustix",
2719
+ "rustix 1.0.7",
2231
2720
  "windows-sys 0.59.0",
2232
2721
  ]
2233
2722
 
@@ -2341,12 +2830,13 @@ dependencies = [
2341
2830
 
2342
2831
  [[package]]
2343
2832
  name = "tokio-util"
2344
- version = "0.7.13"
2833
+ version = "0.7.15"
2345
2834
  source = "registry+https://github.com/rust-lang/crates.io-index"
2346
- checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
2835
+ checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
2347
2836
  dependencies = [
2348
2837
  "bytes",
2349
2838
  "futures-core",
2839
+ "futures-io",
2350
2840
  "futures-sink",
2351
2841
  "pin-project-lite",
2352
2842
  "tokio",
@@ -2514,6 +3004,12 @@ dependencies = [
2514
3004
  "wasm-bindgen",
2515
3005
  ]
2516
3006
 
3007
+ [[package]]
3008
+ name = "value-bag"
3009
+ version = "1.11.1"
3010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3011
+ checksum = "943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5"
3012
+
2517
3013
  [[package]]
2518
3014
  name = "vcpkg"
2519
3015
  version = "0.2.15"
@@ -2631,6 +3127,19 @@ dependencies = [
2631
3127
  "unicode-ident",
2632
3128
  ]
2633
3129
 
3130
+ [[package]]
3131
+ name = "wasm-streams"
3132
+ version = "0.4.2"
3133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3134
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3135
+ dependencies = [
3136
+ "futures-util",
3137
+ "js-sys",
3138
+ "wasm-bindgen",
3139
+ "wasm-bindgen-futures",
3140
+ "web-sys",
3141
+ ]
3142
+
2634
3143
  [[package]]
2635
3144
  name = "wasm-timer"
2636
3145
  version = "0.2.5"
@@ -2693,34 +3202,39 @@ version = "0.4.0"
2693
3202
  source = "registry+https://github.com/rust-lang/crates.io-index"
2694
3203
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2695
3204
 
3205
+ [[package]]
3206
+ name = "windows-link"
3207
+ version = "0.1.1"
3208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3209
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
3210
+
2696
3211
  [[package]]
2697
3212
  name = "windows-registry"
2698
- version = "0.2.0"
3213
+ version = "0.4.0"
2699
3214
  source = "registry+https://github.com/rust-lang/crates.io-index"
2700
- checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
3215
+ checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
2701
3216
  dependencies = [
2702
3217
  "windows-result",
2703
3218
  "windows-strings",
2704
- "windows-targets",
3219
+ "windows-targets 0.53.0",
2705
3220
  ]
2706
3221
 
2707
3222
  [[package]]
2708
3223
  name = "windows-result"
2709
- version = "0.2.0"
3224
+ version = "0.3.4"
2710
3225
  source = "registry+https://github.com/rust-lang/crates.io-index"
2711
- checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
3226
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2712
3227
  dependencies = [
2713
- "windows-targets",
3228
+ "windows-link",
2714
3229
  ]
2715
3230
 
2716
3231
  [[package]]
2717
3232
  name = "windows-strings"
2718
- version = "0.1.0"
3233
+ version = "0.3.1"
2719
3234
  source = "registry+https://github.com/rust-lang/crates.io-index"
2720
- checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
3235
+ checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
2721
3236
  dependencies = [
2722
- "windows-result",
2723
- "windows-targets",
3237
+ "windows-link",
2724
3238
  ]
2725
3239
 
2726
3240
  [[package]]
@@ -2729,7 +3243,7 @@ version = "0.52.0"
2729
3243
  source = "registry+https://github.com/rust-lang/crates.io-index"
2730
3244
  checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2731
3245
  dependencies = [
2732
- "windows-targets",
3246
+ "windows-targets 0.52.6",
2733
3247
  ]
2734
3248
 
2735
3249
  [[package]]
@@ -2738,7 +3252,7 @@ version = "0.59.0"
2738
3252
  source = "registry+https://github.com/rust-lang/crates.io-index"
2739
3253
  checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2740
3254
  dependencies = [
2741
- "windows-targets",
3255
+ "windows-targets 0.52.6",
2742
3256
  ]
2743
3257
 
2744
3258
  [[package]]
@@ -2747,14 +3261,30 @@ version = "0.52.6"
2747
3261
  source = "registry+https://github.com/rust-lang/crates.io-index"
2748
3262
  checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2749
3263
  dependencies = [
2750
- "windows_aarch64_gnullvm",
2751
- "windows_aarch64_msvc",
2752
- "windows_i686_gnu",
2753
- "windows_i686_gnullvm",
2754
- "windows_i686_msvc",
2755
- "windows_x86_64_gnu",
2756
- "windows_x86_64_gnullvm",
2757
- "windows_x86_64_msvc",
3264
+ "windows_aarch64_gnullvm 0.52.6",
3265
+ "windows_aarch64_msvc 0.52.6",
3266
+ "windows_i686_gnu 0.52.6",
3267
+ "windows_i686_gnullvm 0.52.6",
3268
+ "windows_i686_msvc 0.52.6",
3269
+ "windows_x86_64_gnu 0.52.6",
3270
+ "windows_x86_64_gnullvm 0.52.6",
3271
+ "windows_x86_64_msvc 0.52.6",
3272
+ ]
3273
+
3274
+ [[package]]
3275
+ name = "windows-targets"
3276
+ version = "0.53.0"
3277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3278
+ checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
3279
+ dependencies = [
3280
+ "windows_aarch64_gnullvm 0.53.0",
3281
+ "windows_aarch64_msvc 0.53.0",
3282
+ "windows_i686_gnu 0.53.0",
3283
+ "windows_i686_gnullvm 0.53.0",
3284
+ "windows_i686_msvc 0.53.0",
3285
+ "windows_x86_64_gnu 0.53.0",
3286
+ "windows_x86_64_gnullvm 0.53.0",
3287
+ "windows_x86_64_msvc 0.53.0",
2758
3288
  ]
2759
3289
 
2760
3290
  [[package]]
@@ -2763,48 +3293,96 @@ version = "0.52.6"
2763
3293
  source = "registry+https://github.com/rust-lang/crates.io-index"
2764
3294
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2765
3295
 
3296
+ [[package]]
3297
+ name = "windows_aarch64_gnullvm"
3298
+ version = "0.53.0"
3299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3300
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
3301
+
2766
3302
  [[package]]
2767
3303
  name = "windows_aarch64_msvc"
2768
3304
  version = "0.52.6"
2769
3305
  source = "registry+https://github.com/rust-lang/crates.io-index"
2770
3306
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2771
3307
 
3308
+ [[package]]
3309
+ name = "windows_aarch64_msvc"
3310
+ version = "0.53.0"
3311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3312
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
3313
+
2772
3314
  [[package]]
2773
3315
  name = "windows_i686_gnu"
2774
3316
  version = "0.52.6"
2775
3317
  source = "registry+https://github.com/rust-lang/crates.io-index"
2776
3318
  checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2777
3319
 
3320
+ [[package]]
3321
+ name = "windows_i686_gnu"
3322
+ version = "0.53.0"
3323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3324
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
3325
+
2778
3326
  [[package]]
2779
3327
  name = "windows_i686_gnullvm"
2780
3328
  version = "0.52.6"
2781
3329
  source = "registry+https://github.com/rust-lang/crates.io-index"
2782
3330
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2783
3331
 
3332
+ [[package]]
3333
+ name = "windows_i686_gnullvm"
3334
+ version = "0.53.0"
3335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3336
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
3337
+
2784
3338
  [[package]]
2785
3339
  name = "windows_i686_msvc"
2786
3340
  version = "0.52.6"
2787
3341
  source = "registry+https://github.com/rust-lang/crates.io-index"
2788
3342
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2789
3343
 
3344
+ [[package]]
3345
+ name = "windows_i686_msvc"
3346
+ version = "0.53.0"
3347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3348
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
3349
+
2790
3350
  [[package]]
2791
3351
  name = "windows_x86_64_gnu"
2792
3352
  version = "0.52.6"
2793
3353
  source = "registry+https://github.com/rust-lang/crates.io-index"
2794
3354
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2795
3355
 
3356
+ [[package]]
3357
+ name = "windows_x86_64_gnu"
3358
+ version = "0.53.0"
3359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3360
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
3361
+
2796
3362
  [[package]]
2797
3363
  name = "windows_x86_64_gnullvm"
2798
3364
  version = "0.52.6"
2799
3365
  source = "registry+https://github.com/rust-lang/crates.io-index"
2800
3366
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2801
3367
 
3368
+ [[package]]
3369
+ name = "windows_x86_64_gnullvm"
3370
+ version = "0.53.0"
3371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3372
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
3373
+
2802
3374
  [[package]]
2803
3375
  name = "windows_x86_64_msvc"
2804
3376
  version = "0.52.6"
2805
3377
  source = "registry+https://github.com/rust-lang/crates.io-index"
2806
3378
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2807
3379
 
3380
+ [[package]]
3381
+ name = "windows_x86_64_msvc"
3382
+ version = "0.53.0"
3383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3384
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
3385
+
2808
3386
  [[package]]
2809
3387
  name = "winnow"
2810
3388
  version = "0.7.3"
@@ -2835,6 +3413,25 @@ version = "0.5.5"
2835
3413
  source = "registry+https://github.com/rust-lang/crates.io-index"
2836
3414
  checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
2837
3415
 
3416
+ [[package]]
3417
+ name = "xattr"
3418
+ version = "0.2.3"
3419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3420
+ checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
3421
+ dependencies = [
3422
+ "libc",
3423
+ ]
3424
+
3425
+ [[package]]
3426
+ name = "xattr"
3427
+ version = "1.5.0"
3428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3429
+ checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
3430
+ dependencies = [
3431
+ "libc",
3432
+ "rustix 1.0.7",
3433
+ ]
3434
+
2838
3435
  [[package]]
2839
3436
  name = "yoke"
2840
3437
  version = "0.7.5"