NLR-reVRt 0.3.2__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 (69) hide show
  1. nlr_revrt-0.3.2/Cargo.lock +3026 -0
  2. nlr_revrt-0.3.2/Cargo.toml +49 -0
  3. nlr_revrt-0.3.2/LICENSE +28 -0
  4. nlr_revrt-0.3.2/PKG-INFO +150 -0
  5. nlr_revrt-0.3.2/README.rst +69 -0
  6. nlr_revrt-0.3.2/crates/revrt/Cargo.toml +49 -0
  7. nlr_revrt-0.3.2/crates/revrt/benches/standard.rs +217 -0
  8. nlr_revrt-0.3.2/crates/revrt/build.rs +6 -0
  9. nlr_revrt-0.3.2/crates/revrt/src/cost.rs +420 -0
  10. nlr_revrt-0.3.2/crates/revrt/src/dataset/lazy_subset.rs +536 -0
  11. nlr_revrt-0.3.2/crates/revrt/src/dataset/mod.rs +878 -0
  12. nlr_revrt-0.3.2/crates/revrt/src/dataset/samples.rs +707 -0
  13. nlr_revrt-0.3.2/crates/revrt/src/error.rs +33 -0
  14. nlr_revrt-0.3.2/crates/revrt/src/ffi/mod.rs +310 -0
  15. nlr_revrt-0.3.2/crates/revrt/src/ffi/py_tracing.rs +54 -0
  16. nlr_revrt-0.3.2/crates/revrt/src/ffi/simplify_path.rs +142 -0
  17. nlr_revrt-0.3.2/crates/revrt/src/lib.rs +362 -0
  18. nlr_revrt-0.3.2/crates/revrt/src/network/cost.rs +234 -0
  19. nlr_revrt-0.3.2/crates/revrt/src/network/mod.rs +183 -0
  20. nlr_revrt-0.3.2/crates/revrt/src/routing/algorithm.rs +81 -0
  21. nlr_revrt-0.3.2/crates/revrt/src/routing/features.rs +47 -0
  22. nlr_revrt-0.3.2/crates/revrt/src/routing/mod.rs +155 -0
  23. nlr_revrt-0.3.2/crates/revrt/src/routing/scenario.rs +69 -0
  24. nlr_revrt-0.3.2/crates/revrt/src/solution.rs +29 -0
  25. nlr_revrt-0.3.2/pyproject.toml +387 -0
  26. nlr_revrt-0.3.2/revrt/__init__.py +12 -0
  27. nlr_revrt-0.3.2/revrt/_cli.py +54 -0
  28. nlr_revrt-0.3.2/revrt/constants.py +24 -0
  29. nlr_revrt-0.3.2/revrt/costs/__init__.py +1 -0
  30. nlr_revrt-0.3.2/revrt/costs/base.py +71 -0
  31. nlr_revrt-0.3.2/revrt/costs/cli.py +339 -0
  32. nlr_revrt-0.3.2/revrt/costs/config/README.md +33 -0
  33. nlr_revrt-0.3.2/revrt/costs/config/__init__.py +3 -0
  34. nlr_revrt-0.3.2/revrt/costs/config/base_line_costs.json +30 -0
  35. nlr_revrt-0.3.2/revrt/costs/config/config.py +279 -0
  36. nlr_revrt-0.3.2/revrt/costs/config/iso_lookup.json +6 -0
  37. nlr_revrt-0.3.2/revrt/costs/config/iso_multipliers.json +66 -0
  38. nlr_revrt-0.3.2/revrt/costs/config/land_use_classes.json +23 -0
  39. nlr_revrt-0.3.2/revrt/costs/config/new_substation_costs.json +26 -0
  40. nlr_revrt-0.3.2/revrt/costs/config/power_classes.json +7 -0
  41. nlr_revrt-0.3.2/revrt/costs/config/power_to_voltage.json +12 -0
  42. nlr_revrt-0.3.2/revrt/costs/config/transformer_costs.json +65 -0
  43. nlr_revrt-0.3.2/revrt/costs/config/upgrade_substation_costs.json +26 -0
  44. nlr_revrt-0.3.2/revrt/costs/dry_costs_creator.py +515 -0
  45. nlr_revrt-0.3.2/revrt/costs/layer_creator.py +464 -0
  46. nlr_revrt-0.3.2/revrt/costs/masks.py +242 -0
  47. nlr_revrt-0.3.2/revrt/exceptions.py +69 -0
  48. nlr_revrt-0.3.2/revrt/models/__init__.py +1 -0
  49. nlr_revrt-0.3.2/revrt/models/cost_layers.py +331 -0
  50. nlr_revrt-0.3.2/revrt/routing/__init__.py +1 -0
  51. nlr_revrt-0.3.2/revrt/routing/base.py +931 -0
  52. nlr_revrt-0.3.2/revrt/routing/cli/__init__.py +7 -0
  53. nlr_revrt-0.3.2/revrt/routing/cli/base.py +346 -0
  54. nlr_revrt-0.3.2/revrt/routing/cli/build_costs.py +87 -0
  55. nlr_revrt-0.3.2/revrt/routing/cli/build_route_table.py +230 -0
  56. nlr_revrt-0.3.2/revrt/routing/cli/finalize.py +519 -0
  57. nlr_revrt-0.3.2/revrt/routing/cli/point_to_feature.py +494 -0
  58. nlr_revrt-0.3.2/revrt/routing/cli/point_to_point.py +372 -0
  59. nlr_revrt-0.3.2/revrt/routing/utilities.py +567 -0
  60. nlr_revrt-0.3.2/revrt/spatial_characterization/__init__.py +1 -0
  61. nlr_revrt-0.3.2/revrt/spatial_characterization/cli.py +389 -0
  62. nlr_revrt-0.3.2/revrt/spatial_characterization/stats.py +556 -0
  63. nlr_revrt-0.3.2/revrt/spatial_characterization/zonal.py +398 -0
  64. nlr_revrt-0.3.2/revrt/utilities/__init__.py +22 -0
  65. nlr_revrt-0.3.2/revrt/utilities/base.py +633 -0
  66. nlr_revrt-0.3.2/revrt/utilities/cli.py +477 -0
  67. nlr_revrt-0.3.2/revrt/utilities/handlers.py +1039 -0
  68. nlr_revrt-0.3.2/revrt/utilities/raster.py +176 -0
  69. nlr_revrt-0.3.2/revrt/warn.py +23 -0
@@ -0,0 +1,3026 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.24.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
+
20
+ [[package]]
21
+ name = "ahash"
22
+ version = "0.8.12"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
25
+ dependencies = [
26
+ "cfg-if",
27
+ "getrandom",
28
+ "once_cell",
29
+ "version_check",
30
+ "zerocopy",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "aho-corasick"
35
+ version = "1.1.3"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
38
+ dependencies = [
39
+ "memchr",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "alloca"
44
+ version = "0.4.0"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
47
+ dependencies = [
48
+ "cc",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "allocator-api2"
53
+ version = "0.2.21"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
56
+
57
+ [[package]]
58
+ name = "android_system_properties"
59
+ version = "0.1.5"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
62
+ dependencies = [
63
+ "libc",
64
+ ]
65
+
66
+ [[package]]
67
+ name = "anes"
68
+ version = "0.1.6"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
71
+
72
+ [[package]]
73
+ name = "anstream"
74
+ version = "0.6.20"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
77
+ dependencies = [
78
+ "anstyle",
79
+ "anstyle-parse",
80
+ "anstyle-query",
81
+ "anstyle-wincon",
82
+ "colorchoice",
83
+ "is_terminal_polyfill",
84
+ "utf8parse",
85
+ ]
86
+
87
+ [[package]]
88
+ name = "anstyle"
89
+ version = "1.0.11"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
92
+
93
+ [[package]]
94
+ name = "anstyle-parse"
95
+ version = "0.2.7"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
98
+ dependencies = [
99
+ "utf8parse",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "anstyle-query"
104
+ version = "1.1.4"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
107
+ dependencies = [
108
+ "windows-sys 0.60.2",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "anstyle-wincon"
113
+ version = "3.0.10"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
116
+ dependencies = [
117
+ "anstyle",
118
+ "once_cell_polyfill",
119
+ "windows-sys 0.60.2",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "async-generic"
124
+ version = "1.1.2"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "ddf3728566eefa873833159754f5732fb0951d3649e6e5b891cc70d56dd41673"
127
+ dependencies = [
128
+ "proc-macro2",
129
+ "quote",
130
+ "syn",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "async-lock"
135
+ version = "3.4.1"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc"
138
+ dependencies = [
139
+ "event-listener",
140
+ "event-listener-strategy",
141
+ "pin-project-lite",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "async-trait"
146
+ version = "0.1.89"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
149
+ dependencies = [
150
+ "proc-macro2",
151
+ "quote",
152
+ "syn",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "auto_impl"
157
+ version = "1.3.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "ffdcb70bdbc4d478427380519163274ac86e52916e10f0a8889adf0f96d3fee7"
160
+ dependencies = [
161
+ "proc-macro2",
162
+ "quote",
163
+ "syn",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "autocfg"
168
+ version = "1.5.0"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
171
+
172
+ [[package]]
173
+ name = "backtrace"
174
+ version = "0.3.75"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
177
+ dependencies = [
178
+ "addr2line",
179
+ "cfg-if",
180
+ "libc",
181
+ "miniz_oxide",
182
+ "object",
183
+ "rustc-demangle",
184
+ "windows-targets 0.52.6",
185
+ ]
186
+
187
+ [[package]]
188
+ name = "base64"
189
+ version = "0.22.1"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
192
+
193
+ [[package]]
194
+ name = "bitflags"
195
+ version = "2.9.4"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
198
+
199
+ [[package]]
200
+ name = "blosc-src"
201
+ version = "0.3.6"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "cb68d27ab5ceb94ae9cd343f6fbc7bb84543496d547ed7c0db6718175fd41cb6"
204
+ dependencies = [
205
+ "cc",
206
+ "libz-sys",
207
+ "lz4-sys",
208
+ "snappy_src",
209
+ "zstd-sys",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "bumpalo"
214
+ version = "3.19.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
217
+
218
+ [[package]]
219
+ name = "bytemuck"
220
+ version = "1.23.2"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677"
223
+ dependencies = [
224
+ "bytemuck_derive",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "bytemuck_derive"
229
+ version = "1.10.1"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "4f154e572231cb6ba2bd1176980827e3d5dc04cc183a75dea38109fbdd672d29"
232
+ dependencies = [
233
+ "proc-macro2",
234
+ "quote",
235
+ "syn",
236
+ ]
237
+
238
+ [[package]]
239
+ name = "bytes"
240
+ version = "1.10.1"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
243
+
244
+ [[package]]
245
+ name = "cast"
246
+ version = "0.3.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
249
+
250
+ [[package]]
251
+ name = "cc"
252
+ version = "1.2.37"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "65193589c6404eb80b450d618eaf9a2cafaaafd57ecce47370519ef674a7bd44"
255
+ dependencies = [
256
+ "find-msvc-tools",
257
+ "jobserver",
258
+ "libc",
259
+ "shlex",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "cfg-if"
264
+ version = "1.0.3"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
267
+
268
+ [[package]]
269
+ name = "chrono"
270
+ version = "0.4.42"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
273
+ dependencies = [
274
+ "iana-time-zone",
275
+ "num-traits",
276
+ "windows-link 0.2.1",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "chrono-tz"
281
+ version = "0.10.4"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
284
+ dependencies = [
285
+ "chrono",
286
+ "phf",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "ciborium"
291
+ version = "0.2.2"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
294
+ dependencies = [
295
+ "ciborium-io",
296
+ "ciborium-ll",
297
+ "serde",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "ciborium-io"
302
+ version = "0.2.2"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
305
+
306
+ [[package]]
307
+ name = "ciborium-ll"
308
+ version = "0.2.2"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
311
+ dependencies = [
312
+ "ciborium-io",
313
+ "half",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "clap"
318
+ version = "4.5.48"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae"
321
+ dependencies = [
322
+ "clap_builder",
323
+ "clap_derive",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "clap_builder"
328
+ version = "4.5.48"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9"
331
+ dependencies = [
332
+ "anstream",
333
+ "anstyle",
334
+ "clap_lex",
335
+ "strsim",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "clap_derive"
340
+ version = "4.5.47"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c"
343
+ dependencies = [
344
+ "heck",
345
+ "proc-macro2",
346
+ "quote",
347
+ "syn",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "clap_lex"
352
+ version = "0.7.5"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
355
+
356
+ [[package]]
357
+ name = "colorchoice"
358
+ version = "1.0.4"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
361
+
362
+ [[package]]
363
+ name = "concurrent-queue"
364
+ version = "2.5.0"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
367
+ dependencies = [
368
+ "crossbeam-utils",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "core-foundation-sys"
373
+ version = "0.8.7"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
376
+
377
+ [[package]]
378
+ name = "crc32c"
379
+ version = "0.6.8"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47"
382
+ dependencies = [
383
+ "rustc_version",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "crc32fast"
388
+ version = "1.5.0"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
391
+ dependencies = [
392
+ "cfg-if",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "criterion"
397
+ version = "0.8.1"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "4d883447757bb0ee46f233e9dc22eb84d93a9508c9b868687b274fc431d886bf"
400
+ dependencies = [
401
+ "alloca",
402
+ "anes",
403
+ "cast",
404
+ "ciborium",
405
+ "clap",
406
+ "criterion-plot",
407
+ "itertools 0.13.0",
408
+ "num-traits",
409
+ "oorandom",
410
+ "page_size",
411
+ "plotters",
412
+ "rayon",
413
+ "regex",
414
+ "serde",
415
+ "serde_json",
416
+ "tinytemplate",
417
+ "walkdir",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "criterion-plot"
422
+ version = "0.8.1"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "ed943f81ea2faa8dcecbbfa50164acf95d555afec96a27871663b300e387b2e4"
425
+ dependencies = [
426
+ "cast",
427
+ "itertools 0.13.0",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "crossbeam-channel"
432
+ version = "0.5.15"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
435
+ dependencies = [
436
+ "crossbeam-utils",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "crossbeam-deque"
441
+ version = "0.8.6"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
444
+ dependencies = [
445
+ "crossbeam-epoch",
446
+ "crossbeam-utils",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "crossbeam-epoch"
451
+ version = "0.9.18"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
454
+ dependencies = [
455
+ "crossbeam-utils",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "crossbeam-utils"
460
+ version = "0.8.21"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
463
+
464
+ [[package]]
465
+ name = "crunchy"
466
+ version = "0.2.4"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
469
+
470
+ [[package]]
471
+ name = "darling"
472
+ version = "0.20.11"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
475
+ dependencies = [
476
+ "darling_core",
477
+ "darling_macro",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "darling_core"
482
+ version = "0.20.11"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
485
+ dependencies = [
486
+ "fnv",
487
+ "ident_case",
488
+ "proc-macro2",
489
+ "quote",
490
+ "strsim",
491
+ "syn",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "darling_macro"
496
+ version = "0.20.11"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
499
+ dependencies = [
500
+ "darling_core",
501
+ "quote",
502
+ "syn",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "deprecate-until"
507
+ version = "0.1.1"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "7a3767f826efbbe5a5ae093920b58b43b01734202be697e1354914e862e8e704"
510
+ dependencies = [
511
+ "proc-macro2",
512
+ "quote",
513
+ "semver",
514
+ "syn",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "derive_builder"
519
+ version = "0.20.2"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
522
+ dependencies = [
523
+ "derive_builder_macro",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "derive_builder_core"
528
+ version = "0.20.2"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
531
+ dependencies = [
532
+ "darling",
533
+ "proc-macro2",
534
+ "quote",
535
+ "syn",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "derive_builder_macro"
540
+ version = "0.20.2"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
543
+ dependencies = [
544
+ "derive_builder_core",
545
+ "syn",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "derive_more"
550
+ version = "2.0.1"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
553
+ dependencies = [
554
+ "derive_more-impl",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "derive_more-impl"
559
+ version = "2.0.1"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
562
+ dependencies = [
563
+ "proc-macro2",
564
+ "quote",
565
+ "syn",
566
+ "unicode-xid",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "dhat"
571
+ version = "0.3.3"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "98cd11d84628e233de0ce467de10b8633f4ddaecafadefc86e13b84b8739b827"
574
+ dependencies = [
575
+ "backtrace",
576
+ "lazy_static",
577
+ "mintex",
578
+ "parking_lot",
579
+ "rustc-hash 1.1.0",
580
+ "serde",
581
+ "serde_json",
582
+ "thousands",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "displaydoc"
587
+ version = "0.2.5"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
590
+ dependencies = [
591
+ "proc-macro2",
592
+ "quote",
593
+ "syn",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "either"
598
+ version = "1.15.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
601
+
602
+ [[package]]
603
+ name = "equivalent"
604
+ version = "1.0.2"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
607
+
608
+ [[package]]
609
+ name = "errno"
610
+ version = "0.3.14"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
613
+ dependencies = [
614
+ "libc",
615
+ "windows-sys 0.60.2",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "event-listener"
620
+ version = "5.4.1"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
623
+ dependencies = [
624
+ "concurrent-queue",
625
+ "parking",
626
+ "pin-project-lite",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "event-listener-strategy"
631
+ version = "0.5.4"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
634
+ dependencies = [
635
+ "event-listener",
636
+ "pin-project-lite",
637
+ ]
638
+
639
+ [[package]]
640
+ name = "fastrand"
641
+ version = "2.3.0"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
644
+
645
+ [[package]]
646
+ name = "find-msvc-tools"
647
+ version = "0.1.1"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d"
650
+
651
+ [[package]]
652
+ name = "flate2"
653
+ version = "1.1.2"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
656
+ dependencies = [
657
+ "crc32fast",
658
+ "miniz_oxide",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "fnv"
663
+ version = "1.0.7"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
666
+
667
+ [[package]]
668
+ name = "foldhash"
669
+ version = "0.2.0"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
672
+
673
+ [[package]]
674
+ name = "form_urlencoded"
675
+ version = "1.2.2"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
678
+ dependencies = [
679
+ "percent-encoding",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "futures"
684
+ version = "0.3.31"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
687
+ dependencies = [
688
+ "futures-channel",
689
+ "futures-core",
690
+ "futures-executor",
691
+ "futures-io",
692
+ "futures-sink",
693
+ "futures-task",
694
+ "futures-util",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "futures-channel"
699
+ version = "0.3.31"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
702
+ dependencies = [
703
+ "futures-core",
704
+ "futures-sink",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "futures-core"
709
+ version = "0.3.31"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
712
+
713
+ [[package]]
714
+ name = "futures-executor"
715
+ version = "0.3.31"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
718
+ dependencies = [
719
+ "futures-core",
720
+ "futures-task",
721
+ "futures-util",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "futures-io"
726
+ version = "0.3.31"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
729
+
730
+ [[package]]
731
+ name = "futures-macro"
732
+ version = "0.3.31"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
735
+ dependencies = [
736
+ "proc-macro2",
737
+ "quote",
738
+ "syn",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "futures-sink"
743
+ version = "0.3.31"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
746
+
747
+ [[package]]
748
+ name = "futures-task"
749
+ version = "0.3.31"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
752
+
753
+ [[package]]
754
+ name = "futures-util"
755
+ version = "0.3.31"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
758
+ dependencies = [
759
+ "futures-channel",
760
+ "futures-core",
761
+ "futures-io",
762
+ "futures-macro",
763
+ "futures-sink",
764
+ "futures-task",
765
+ "memchr",
766
+ "pin-project-lite",
767
+ "pin-utils",
768
+ "slab",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "generator"
773
+ version = "0.8.7"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "605183a538e3e2a9c1038635cc5c2d194e2ee8fd0d1b66b8349fad7dbacce5a2"
776
+ dependencies = [
777
+ "cc",
778
+ "cfg-if",
779
+ "libc",
780
+ "log",
781
+ "rustversion",
782
+ "windows",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "getrandom"
787
+ version = "0.3.3"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
790
+ dependencies = [
791
+ "cfg-if",
792
+ "js-sys",
793
+ "libc",
794
+ "r-efi",
795
+ "wasi",
796
+ "wasm-bindgen",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "gimli"
801
+ version = "0.31.1"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
804
+
805
+ [[package]]
806
+ name = "half"
807
+ version = "2.6.0"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
810
+ dependencies = [
811
+ "bytemuck",
812
+ "cfg-if",
813
+ "crunchy",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "hashbrown"
818
+ version = "0.15.5"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
821
+
822
+ [[package]]
823
+ name = "hashbrown"
824
+ version = "0.16.1"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
827
+ dependencies = [
828
+ "allocator-api2",
829
+ "equivalent",
830
+ "foldhash",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "heck"
835
+ version = "0.5.0"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
838
+
839
+ [[package]]
840
+ name = "http"
841
+ version = "1.3.1"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
844
+ dependencies = [
845
+ "bytes",
846
+ "fnv",
847
+ "itoa",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "humantime"
852
+ version = "2.3.0"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
855
+
856
+ [[package]]
857
+ name = "iana-time-zone"
858
+ version = "0.1.64"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
861
+ dependencies = [
862
+ "android_system_properties",
863
+ "core-foundation-sys",
864
+ "iana-time-zone-haiku",
865
+ "js-sys",
866
+ "log",
867
+ "wasm-bindgen",
868
+ "windows-core",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "iana-time-zone-haiku"
873
+ version = "0.1.2"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
876
+ dependencies = [
877
+ "cc",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "icu_collections"
882
+ version = "2.0.0"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
885
+ dependencies = [
886
+ "displaydoc",
887
+ "potential_utf",
888
+ "yoke",
889
+ "zerofrom",
890
+ "zerovec",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "icu_locale_core"
895
+ version = "2.0.0"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
898
+ dependencies = [
899
+ "displaydoc",
900
+ "litemap",
901
+ "tinystr",
902
+ "writeable",
903
+ "zerovec",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "icu_normalizer"
908
+ version = "2.0.0"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
911
+ dependencies = [
912
+ "displaydoc",
913
+ "icu_collections",
914
+ "icu_normalizer_data",
915
+ "icu_properties",
916
+ "icu_provider",
917
+ "smallvec",
918
+ "zerovec",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "icu_normalizer_data"
923
+ version = "2.0.0"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
926
+
927
+ [[package]]
928
+ name = "icu_properties"
929
+ version = "2.0.1"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
932
+ dependencies = [
933
+ "displaydoc",
934
+ "icu_collections",
935
+ "icu_locale_core",
936
+ "icu_properties_data",
937
+ "icu_provider",
938
+ "potential_utf",
939
+ "zerotrie",
940
+ "zerovec",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "icu_properties_data"
945
+ version = "2.0.1"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
948
+
949
+ [[package]]
950
+ name = "icu_provider"
951
+ version = "2.0.0"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
954
+ dependencies = [
955
+ "displaydoc",
956
+ "icu_locale_core",
957
+ "stable_deref_trait",
958
+ "tinystr",
959
+ "writeable",
960
+ "yoke",
961
+ "zerofrom",
962
+ "zerotrie",
963
+ "zerovec",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "ident_case"
968
+ version = "1.0.1"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
971
+
972
+ [[package]]
973
+ name = "idna"
974
+ version = "1.1.0"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
977
+ dependencies = [
978
+ "idna_adapter",
979
+ "smallvec",
980
+ "utf8_iter",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "idna_adapter"
985
+ version = "1.2.1"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
988
+ dependencies = [
989
+ "icu_normalizer",
990
+ "icu_properties",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "indexmap"
995
+ version = "2.11.1"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "206a8042aec68fa4a62e8d3f7aa4ceb508177d9324faf261e1959e495b7a1921"
998
+ dependencies = [
999
+ "equivalent",
1000
+ "hashbrown 0.15.5",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "indoc"
1005
+ version = "2.0.6"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1008
+
1009
+ [[package]]
1010
+ name = "integer-sqrt"
1011
+ version = "0.1.5"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "276ec31bcb4a9ee45f58bec6f9ec700ae4cf4f4f8f2fa7e06cb406bd5ffdd770"
1014
+ dependencies = [
1015
+ "num-traits",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "inventory"
1020
+ version = "0.3.21"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
1023
+ dependencies = [
1024
+ "rustversion",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "is_terminal_polyfill"
1029
+ version = "1.70.1"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1032
+
1033
+ [[package]]
1034
+ name = "itertools"
1035
+ version = "0.13.0"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1038
+ dependencies = [
1039
+ "either",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "itertools"
1044
+ version = "0.14.0"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1047
+ dependencies = [
1048
+ "either",
1049
+ ]
1050
+
1051
+ [[package]]
1052
+ name = "itoa"
1053
+ version = "1.0.15"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1056
+
1057
+ [[package]]
1058
+ name = "jobserver"
1059
+ version = "0.1.34"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1062
+ dependencies = [
1063
+ "getrandom",
1064
+ "libc",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "js-sys"
1069
+ version = "0.3.78"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "0c0b063578492ceec17683ef2f8c5e89121fbd0b172cbc280635ab7567db2738"
1072
+ dependencies = [
1073
+ "once_cell",
1074
+ "wasm-bindgen",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "lazy_static"
1079
+ version = "1.5.0"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1082
+
1083
+ [[package]]
1084
+ name = "libc"
1085
+ version = "0.2.175"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
1088
+
1089
+ [[package]]
1090
+ name = "libz-sys"
1091
+ version = "1.1.22"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "8b70e7a7df205e92a1a4cd9aaae7898dac0aa555503cc0a649494d0d60e7651d"
1094
+ dependencies = [
1095
+ "cc",
1096
+ "libc",
1097
+ "pkg-config",
1098
+ "vcpkg",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "link-cplusplus"
1103
+ version = "1.0.12"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82"
1106
+ dependencies = [
1107
+ "cc",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "linux-raw-sys"
1112
+ version = "0.11.0"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1115
+
1116
+ [[package]]
1117
+ name = "litemap"
1118
+ version = "0.8.0"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1121
+
1122
+ [[package]]
1123
+ name = "lock_api"
1124
+ version = "0.4.13"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1127
+ dependencies = [
1128
+ "autocfg",
1129
+ "scopeguard",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "log"
1134
+ version = "0.4.28"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
1137
+
1138
+ [[package]]
1139
+ name = "loom"
1140
+ version = "0.7.2"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
1143
+ dependencies = [
1144
+ "cfg-if",
1145
+ "generator",
1146
+ "scoped-tls",
1147
+ "tracing",
1148
+ "tracing-subscriber",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "lru"
1153
+ version = "0.16.3"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593"
1156
+ dependencies = [
1157
+ "hashbrown 0.16.1",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "lz4-sys"
1162
+ version = "1.11.1+lz4-1.10.0"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
1165
+ dependencies = [
1166
+ "cc",
1167
+ "libc",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "matchers"
1172
+ version = "0.2.0"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1175
+ dependencies = [
1176
+ "regex-automata",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "matrixmultiply"
1181
+ version = "0.3.10"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1184
+ dependencies = [
1185
+ "autocfg",
1186
+ "rawpointer",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "memchr"
1191
+ version = "2.7.5"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1194
+
1195
+ [[package]]
1196
+ name = "memoffset"
1197
+ version = "0.9.1"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1200
+ dependencies = [
1201
+ "autocfg",
1202
+ ]
1203
+
1204
+ [[package]]
1205
+ name = "miniz_oxide"
1206
+ version = "0.8.9"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1209
+ dependencies = [
1210
+ "adler2",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "mintex"
1215
+ version = "0.1.4"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "c505b3e17ed6b70a7ed2e67fbb2c560ee327353556120d6e72f5232b6880d536"
1218
+
1219
+ [[package]]
1220
+ name = "moka"
1221
+ version = "0.12.10"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926"
1224
+ dependencies = [
1225
+ "async-lock",
1226
+ "crossbeam-channel",
1227
+ "crossbeam-epoch",
1228
+ "crossbeam-utils",
1229
+ "event-listener",
1230
+ "futures-util",
1231
+ "loom",
1232
+ "parking_lot",
1233
+ "portable-atomic",
1234
+ "rustc_version",
1235
+ "smallvec",
1236
+ "tagptr",
1237
+ "thiserror 1.0.69",
1238
+ "uuid",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "monostate"
1243
+ version = "0.1.14"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "aafe1be9d0c75642e3e50fedc7ecadf1ef1cbce6eb66462153fc44245343fbee"
1246
+ dependencies = [
1247
+ "monostate-impl",
1248
+ "serde",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "monostate-impl"
1253
+ version = "0.1.14"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "c402a4092d5e204f32c9e155431046831fa712637043c58cb73bc6bc6c9663b5"
1256
+ dependencies = [
1257
+ "proc-macro2",
1258
+ "quote",
1259
+ "syn",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "ndarray"
1264
+ version = "0.16.1"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
1267
+ dependencies = [
1268
+ "matrixmultiply",
1269
+ "num-complex",
1270
+ "num-integer",
1271
+ "num-traits",
1272
+ "portable-atomic",
1273
+ "portable-atomic-util",
1274
+ "rawpointer",
1275
+ "rayon",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "nu-ansi-term"
1280
+ version = "0.50.1"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
1283
+ dependencies = [
1284
+ "windows-sys 0.52.0",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "num"
1289
+ version = "0.4.3"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1292
+ dependencies = [
1293
+ "num-bigint",
1294
+ "num-complex",
1295
+ "num-integer",
1296
+ "num-iter",
1297
+ "num-rational",
1298
+ "num-traits",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "num-bigint"
1303
+ version = "0.4.6"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1306
+ dependencies = [
1307
+ "num-integer",
1308
+ "num-traits",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "num-complex"
1313
+ version = "0.4.6"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1316
+ dependencies = [
1317
+ "bytemuck",
1318
+ "num-traits",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "num-integer"
1323
+ version = "0.1.46"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1326
+ dependencies = [
1327
+ "num-traits",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "num-iter"
1332
+ version = "0.1.45"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1335
+ dependencies = [
1336
+ "autocfg",
1337
+ "num-integer",
1338
+ "num-traits",
1339
+ ]
1340
+
1341
+ [[package]]
1342
+ name = "num-rational"
1343
+ version = "0.4.2"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1346
+ dependencies = [
1347
+ "num-bigint",
1348
+ "num-integer",
1349
+ "num-traits",
1350
+ ]
1351
+
1352
+ [[package]]
1353
+ name = "num-traits"
1354
+ version = "0.2.19"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1357
+ dependencies = [
1358
+ "autocfg",
1359
+ ]
1360
+
1361
+ [[package]]
1362
+ name = "object"
1363
+ version = "0.36.7"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1366
+ dependencies = [
1367
+ "memchr",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "object_store"
1372
+ version = "0.12.4"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "4c1be0c6c22ec0817cdc77d3842f721a17fd30ab6965001415b5402a74e6b740"
1375
+ dependencies = [
1376
+ "async-trait",
1377
+ "bytes",
1378
+ "chrono",
1379
+ "futures",
1380
+ "http",
1381
+ "humantime",
1382
+ "itertools 0.14.0",
1383
+ "parking_lot",
1384
+ "percent-encoding",
1385
+ "thiserror 2.0.16",
1386
+ "tokio",
1387
+ "tracing",
1388
+ "url",
1389
+ "walkdir",
1390
+ "wasm-bindgen-futures",
1391
+ "web-time",
1392
+ ]
1393
+
1394
+ [[package]]
1395
+ name = "once_cell"
1396
+ version = "1.21.3"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1399
+
1400
+ [[package]]
1401
+ name = "once_cell_polyfill"
1402
+ version = "1.70.1"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1405
+
1406
+ [[package]]
1407
+ name = "oorandom"
1408
+ version = "11.1.5"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1411
+
1412
+ [[package]]
1413
+ name = "page_size"
1414
+ version = "0.6.0"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
1417
+ dependencies = [
1418
+ "libc",
1419
+ "winapi",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "parking"
1424
+ version = "2.2.1"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1427
+
1428
+ [[package]]
1429
+ name = "parking_lot"
1430
+ version = "0.12.4"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1433
+ dependencies = [
1434
+ "lock_api",
1435
+ "parking_lot_core",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "parking_lot_core"
1440
+ version = "0.9.11"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1443
+ dependencies = [
1444
+ "cfg-if",
1445
+ "libc",
1446
+ "redox_syscall",
1447
+ "smallvec",
1448
+ "windows-targets 0.52.6",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "pathdiff"
1453
+ version = "0.2.3"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
1456
+
1457
+ [[package]]
1458
+ name = "pathfinding"
1459
+ version = "4.14.0"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "59ac35caa284c08f3721fb33c2741b5f763decaf42d080c8a6a722154347017e"
1462
+ dependencies = [
1463
+ "deprecate-until",
1464
+ "indexmap",
1465
+ "integer-sqrt",
1466
+ "num-traits",
1467
+ "rustc-hash 2.1.1",
1468
+ "thiserror 2.0.16",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "percent-encoding"
1473
+ version = "2.3.2"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1476
+
1477
+ [[package]]
1478
+ name = "phf"
1479
+ version = "0.12.1"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
1482
+ dependencies = [
1483
+ "phf_shared",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "phf_shared"
1488
+ version = "0.12.1"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
1491
+ dependencies = [
1492
+ "siphasher",
1493
+ ]
1494
+
1495
+ [[package]]
1496
+ name = "pin-project-lite"
1497
+ version = "0.2.16"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1500
+
1501
+ [[package]]
1502
+ name = "pin-utils"
1503
+ version = "0.1.0"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1506
+
1507
+ [[package]]
1508
+ name = "pkg-config"
1509
+ version = "0.3.32"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1512
+
1513
+ [[package]]
1514
+ name = "plotters"
1515
+ version = "0.3.7"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1518
+ dependencies = [
1519
+ "num-traits",
1520
+ "plotters-backend",
1521
+ "plotters-svg",
1522
+ "wasm-bindgen",
1523
+ "web-sys",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "plotters-backend"
1528
+ version = "0.3.7"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1531
+
1532
+ [[package]]
1533
+ name = "plotters-svg"
1534
+ version = "0.3.7"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1537
+ dependencies = [
1538
+ "plotters-backend",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "portable-atomic"
1543
+ version = "1.11.1"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1546
+
1547
+ [[package]]
1548
+ name = "portable-atomic-util"
1549
+ version = "0.2.4"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1552
+ dependencies = [
1553
+ "portable-atomic",
1554
+ ]
1555
+
1556
+ [[package]]
1557
+ name = "potential_utf"
1558
+ version = "0.1.3"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
1561
+ dependencies = [
1562
+ "zerovec",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "ppv-lite86"
1567
+ version = "0.2.21"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1570
+ dependencies = [
1571
+ "zerocopy",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "proc-macro2"
1576
+ version = "1.0.101"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
1579
+ dependencies = [
1580
+ "unicode-ident",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "pyo3"
1585
+ version = "0.26.0"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
1588
+ dependencies = [
1589
+ "chrono",
1590
+ "chrono-tz",
1591
+ "indoc",
1592
+ "libc",
1593
+ "memoffset",
1594
+ "once_cell",
1595
+ "portable-atomic",
1596
+ "pyo3-build-config",
1597
+ "pyo3-ffi",
1598
+ "pyo3-macros",
1599
+ "unindent",
1600
+ ]
1601
+
1602
+ [[package]]
1603
+ name = "pyo3-build-config"
1604
+ version = "0.26.0"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
1607
+ dependencies = [
1608
+ "target-lexicon",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "pyo3-ffi"
1613
+ version = "0.26.0"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
1616
+ dependencies = [
1617
+ "libc",
1618
+ "pyo3-build-config",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "pyo3-macros"
1623
+ version = "0.26.0"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
1626
+ dependencies = [
1627
+ "proc-macro2",
1628
+ "pyo3-macros-backend",
1629
+ "quote",
1630
+ "syn",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "pyo3-macros-backend"
1635
+ version = "0.26.0"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
1638
+ dependencies = [
1639
+ "heck",
1640
+ "proc-macro2",
1641
+ "pyo3-build-config",
1642
+ "quote",
1643
+ "syn",
1644
+ ]
1645
+
1646
+ [[package]]
1647
+ name = "quick_cache"
1648
+ version = "0.6.16"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "9ad6644cb07b7f3488b9f3d2fde3b4c0a7fa367cafefb39dff93a659f76eb786"
1651
+ dependencies = [
1652
+ "ahash",
1653
+ "equivalent",
1654
+ "hashbrown 0.15.5",
1655
+ "parking_lot",
1656
+ ]
1657
+
1658
+ [[package]]
1659
+ name = "quote"
1660
+ version = "1.0.40"
1661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1663
+ dependencies = [
1664
+ "proc-macro2",
1665
+ ]
1666
+
1667
+ [[package]]
1668
+ name = "r-efi"
1669
+ version = "5.3.0"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1672
+
1673
+ [[package]]
1674
+ name = "rand"
1675
+ version = "0.9.2"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1678
+ dependencies = [
1679
+ "rand_chacha",
1680
+ "rand_core",
1681
+ ]
1682
+
1683
+ [[package]]
1684
+ name = "rand_chacha"
1685
+ version = "0.9.0"
1686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1687
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1688
+ dependencies = [
1689
+ "ppv-lite86",
1690
+ "rand_core",
1691
+ ]
1692
+
1693
+ [[package]]
1694
+ name = "rand_core"
1695
+ version = "0.9.3"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1698
+ dependencies = [
1699
+ "getrandom",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "rawpointer"
1704
+ version = "0.2.1"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1707
+
1708
+ [[package]]
1709
+ name = "rayon"
1710
+ version = "1.11.0"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1713
+ dependencies = [
1714
+ "either",
1715
+ "rayon-core",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "rayon-core"
1720
+ version = "1.13.0"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1723
+ dependencies = [
1724
+ "crossbeam-deque",
1725
+ "crossbeam-utils",
1726
+ ]
1727
+
1728
+ [[package]]
1729
+ name = "rayon_iter_concurrent_limit"
1730
+ version = "0.2.0"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "d09ee01023de07fa073ce14c37cbe0a9e099c6b0b60a29cf4af6d04d9553fed7"
1733
+ dependencies = [
1734
+ "rayon",
1735
+ ]
1736
+
1737
+ [[package]]
1738
+ name = "redox_syscall"
1739
+ version = "0.5.17"
1740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1741
+ checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
1742
+ dependencies = [
1743
+ "bitflags",
1744
+ ]
1745
+
1746
+ [[package]]
1747
+ name = "regex"
1748
+ version = "1.11.2"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
1751
+ dependencies = [
1752
+ "aho-corasick",
1753
+ "memchr",
1754
+ "regex-automata",
1755
+ "regex-syntax",
1756
+ ]
1757
+
1758
+ [[package]]
1759
+ name = "regex-automata"
1760
+ version = "0.4.10"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
1763
+ dependencies = [
1764
+ "aho-corasick",
1765
+ "memchr",
1766
+ "regex-syntax",
1767
+ ]
1768
+
1769
+ [[package]]
1770
+ name = "regex-syntax"
1771
+ version = "0.8.6"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
1774
+
1775
+ [[package]]
1776
+ name = "revrt"
1777
+ version = "0.0.8"
1778
+ dependencies = [
1779
+ "criterion",
1780
+ "derive_builder",
1781
+ "ndarray",
1782
+ "num-traits",
1783
+ "object_store",
1784
+ "pathfinding",
1785
+ "pyo3",
1786
+ "pyo3-build-config",
1787
+ "rand",
1788
+ "rayon",
1789
+ "serde",
1790
+ "serde_json",
1791
+ "tempfile",
1792
+ "test-case",
1793
+ "thiserror 2.0.16",
1794
+ "tokio",
1795
+ "tracing",
1796
+ "tracing-subscriber",
1797
+ "zarrs",
1798
+ "zarrs_object_store",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "revrt-cli"
1803
+ version = "0.0.6"
1804
+ dependencies = [
1805
+ "clap",
1806
+ "dhat",
1807
+ "revrt",
1808
+ "tracing",
1809
+ "tracing-subscriber",
1810
+ ]
1811
+
1812
+ [[package]]
1813
+ name = "rustc-demangle"
1814
+ version = "0.1.26"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
1817
+
1818
+ [[package]]
1819
+ name = "rustc-hash"
1820
+ version = "1.1.0"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1823
+
1824
+ [[package]]
1825
+ name = "rustc-hash"
1826
+ version = "2.1.1"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1829
+
1830
+ [[package]]
1831
+ name = "rustc_version"
1832
+ version = "0.4.1"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1835
+ dependencies = [
1836
+ "semver",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "rustix"
1841
+ version = "1.1.2"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1844
+ dependencies = [
1845
+ "bitflags",
1846
+ "errno",
1847
+ "libc",
1848
+ "linux-raw-sys",
1849
+ "windows-sys 0.60.2",
1850
+ ]
1851
+
1852
+ [[package]]
1853
+ name = "rustversion"
1854
+ version = "1.0.22"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1857
+
1858
+ [[package]]
1859
+ name = "ryu"
1860
+ version = "1.0.20"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1863
+
1864
+ [[package]]
1865
+ name = "same-file"
1866
+ version = "1.0.6"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1869
+ dependencies = [
1870
+ "winapi-util",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "scoped-tls"
1875
+ version = "1.0.1"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
1878
+
1879
+ [[package]]
1880
+ name = "scopeguard"
1881
+ version = "1.2.0"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1884
+
1885
+ [[package]]
1886
+ name = "semver"
1887
+ version = "1.0.26"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
1890
+
1891
+ [[package]]
1892
+ name = "serde"
1893
+ version = "1.0.226"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "0dca6411025b24b60bfa7ec1fe1f8e710ac09782dca409ee8237ba74b51295fd"
1896
+ dependencies = [
1897
+ "serde_core",
1898
+ "serde_derive",
1899
+ ]
1900
+
1901
+ [[package]]
1902
+ name = "serde_core"
1903
+ version = "1.0.226"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "ba2ba63999edb9dac981fb34b3e5c0d111a69b0924e253ed29d83f7c99e966a4"
1906
+ dependencies = [
1907
+ "serde_derive",
1908
+ ]
1909
+
1910
+ [[package]]
1911
+ name = "serde_derive"
1912
+ version = "1.0.226"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "8db53ae22f34573731bafa1db20f04027b2d25e02d8205921b569171699cdb33"
1915
+ dependencies = [
1916
+ "proc-macro2",
1917
+ "quote",
1918
+ "syn",
1919
+ ]
1920
+
1921
+ [[package]]
1922
+ name = "serde_json"
1923
+ version = "1.0.143"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
1926
+ dependencies = [
1927
+ "indexmap",
1928
+ "itoa",
1929
+ "memchr",
1930
+ "ryu",
1931
+ "serde",
1932
+ ]
1933
+
1934
+ [[package]]
1935
+ name = "serde_repr"
1936
+ version = "0.1.20"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
1939
+ dependencies = [
1940
+ "proc-macro2",
1941
+ "quote",
1942
+ "syn",
1943
+ ]
1944
+
1945
+ [[package]]
1946
+ name = "sharded-slab"
1947
+ version = "0.1.7"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1950
+ dependencies = [
1951
+ "lazy_static",
1952
+ ]
1953
+
1954
+ [[package]]
1955
+ name = "shlex"
1956
+ version = "1.3.0"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1959
+
1960
+ [[package]]
1961
+ name = "siphasher"
1962
+ version = "1.0.1"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
1965
+
1966
+ [[package]]
1967
+ name = "slab"
1968
+ version = "0.4.11"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1971
+
1972
+ [[package]]
1973
+ name = "smallvec"
1974
+ version = "1.15.1"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1977
+
1978
+ [[package]]
1979
+ name = "snappy_src"
1980
+ version = "0.2.5+snappy.1.2.2"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "4e1432067a55bcfb1fd522d2aca6537a4fcea32bba87ea86921226d14f9bad53"
1983
+ dependencies = [
1984
+ "cc",
1985
+ "link-cplusplus",
1986
+ ]
1987
+
1988
+ [[package]]
1989
+ name = "stable_deref_trait"
1990
+ version = "1.2.0"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1993
+
1994
+ [[package]]
1995
+ name = "strsim"
1996
+ version = "0.11.1"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1999
+
2000
+ [[package]]
2001
+ name = "syn"
2002
+ version = "2.0.106"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
2005
+ dependencies = [
2006
+ "proc-macro2",
2007
+ "quote",
2008
+ "unicode-ident",
2009
+ ]
2010
+
2011
+ [[package]]
2012
+ name = "synstructure"
2013
+ version = "0.13.2"
2014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2016
+ dependencies = [
2017
+ "proc-macro2",
2018
+ "quote",
2019
+ "syn",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "tagptr"
2024
+ version = "0.2.0"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
2027
+
2028
+ [[package]]
2029
+ name = "target-lexicon"
2030
+ version = "0.13.3"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
2033
+
2034
+ [[package]]
2035
+ name = "tempfile"
2036
+ version = "3.23.0"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
2039
+ dependencies = [
2040
+ "fastrand",
2041
+ "getrandom",
2042
+ "once_cell",
2043
+ "rustix",
2044
+ "windows-sys 0.60.2",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "test-case"
2049
+ version = "3.3.1"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8"
2052
+ dependencies = [
2053
+ "test-case-macros",
2054
+ ]
2055
+
2056
+ [[package]]
2057
+ name = "test-case-core"
2058
+ version = "3.3.1"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f"
2061
+ dependencies = [
2062
+ "cfg-if",
2063
+ "proc-macro2",
2064
+ "quote",
2065
+ "syn",
2066
+ ]
2067
+
2068
+ [[package]]
2069
+ name = "test-case-macros"
2070
+ version = "3.3.1"
2071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2072
+ checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb"
2073
+ dependencies = [
2074
+ "proc-macro2",
2075
+ "quote",
2076
+ "syn",
2077
+ "test-case-core",
2078
+ ]
2079
+
2080
+ [[package]]
2081
+ name = "thiserror"
2082
+ version = "1.0.69"
2083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2084
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2085
+ dependencies = [
2086
+ "thiserror-impl 1.0.69",
2087
+ ]
2088
+
2089
+ [[package]]
2090
+ name = "thiserror"
2091
+ version = "2.0.16"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
2094
+ dependencies = [
2095
+ "thiserror-impl 2.0.16",
2096
+ ]
2097
+
2098
+ [[package]]
2099
+ name = "thiserror-impl"
2100
+ version = "1.0.69"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2103
+ dependencies = [
2104
+ "proc-macro2",
2105
+ "quote",
2106
+ "syn",
2107
+ ]
2108
+
2109
+ [[package]]
2110
+ name = "thiserror-impl"
2111
+ version = "2.0.16"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
2114
+ dependencies = [
2115
+ "proc-macro2",
2116
+ "quote",
2117
+ "syn",
2118
+ ]
2119
+
2120
+ [[package]]
2121
+ name = "thousands"
2122
+ version = "0.2.0"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820"
2125
+
2126
+ [[package]]
2127
+ name = "thread_local"
2128
+ version = "1.1.9"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2131
+ dependencies = [
2132
+ "cfg-if",
2133
+ ]
2134
+
2135
+ [[package]]
2136
+ name = "tinystr"
2137
+ version = "0.8.1"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
2140
+ dependencies = [
2141
+ "displaydoc",
2142
+ "zerovec",
2143
+ ]
2144
+
2145
+ [[package]]
2146
+ name = "tinytemplate"
2147
+ version = "1.2.1"
2148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2149
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2150
+ dependencies = [
2151
+ "serde",
2152
+ "serde_json",
2153
+ ]
2154
+
2155
+ [[package]]
2156
+ name = "tokio"
2157
+ version = "1.49.0"
2158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2159
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
2160
+ dependencies = [
2161
+ "bytes",
2162
+ "pin-project-lite",
2163
+ "tokio-macros",
2164
+ ]
2165
+
2166
+ [[package]]
2167
+ name = "tokio-macros"
2168
+ version = "2.6.0"
2169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2170
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2171
+ dependencies = [
2172
+ "proc-macro2",
2173
+ "quote",
2174
+ "syn",
2175
+ ]
2176
+
2177
+ [[package]]
2178
+ name = "tracing"
2179
+ version = "0.1.44"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2182
+ dependencies = [
2183
+ "pin-project-lite",
2184
+ "tracing-attributes",
2185
+ "tracing-core",
2186
+ ]
2187
+
2188
+ [[package]]
2189
+ name = "tracing-attributes"
2190
+ version = "0.1.31"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2193
+ dependencies = [
2194
+ "proc-macro2",
2195
+ "quote",
2196
+ "syn",
2197
+ ]
2198
+
2199
+ [[package]]
2200
+ name = "tracing-core"
2201
+ version = "0.1.36"
2202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2203
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2204
+ dependencies = [
2205
+ "once_cell",
2206
+ "valuable",
2207
+ ]
2208
+
2209
+ [[package]]
2210
+ name = "tracing-log"
2211
+ version = "0.2.0"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2214
+ dependencies = [
2215
+ "log",
2216
+ "once_cell",
2217
+ "tracing-core",
2218
+ ]
2219
+
2220
+ [[package]]
2221
+ name = "tracing-subscriber"
2222
+ version = "0.3.20"
2223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2224
+ checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
2225
+ dependencies = [
2226
+ "matchers",
2227
+ "nu-ansi-term",
2228
+ "once_cell",
2229
+ "regex-automata",
2230
+ "sharded-slab",
2231
+ "smallvec",
2232
+ "thread_local",
2233
+ "tracing",
2234
+ "tracing-core",
2235
+ "tracing-log",
2236
+ ]
2237
+
2238
+ [[package]]
2239
+ name = "unicode-ident"
2240
+ version = "1.0.19"
2241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2242
+ checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
2243
+
2244
+ [[package]]
2245
+ name = "unicode-xid"
2246
+ version = "0.2.6"
2247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2248
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2249
+
2250
+ [[package]]
2251
+ name = "unindent"
2252
+ version = "0.2.4"
2253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2254
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2255
+
2256
+ [[package]]
2257
+ name = "unsafe_cell_slice"
2258
+ version = "0.2.2"
2259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2260
+ checksum = "6659959f702dcdaad77bd6e42a9409a32ceccc06943ec93c8a4306be00eb6cf1"
2261
+
2262
+ [[package]]
2263
+ name = "url"
2264
+ version = "2.5.7"
2265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2266
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
2267
+ dependencies = [
2268
+ "form_urlencoded",
2269
+ "idna",
2270
+ "percent-encoding",
2271
+ "serde",
2272
+ ]
2273
+
2274
+ [[package]]
2275
+ name = "utf8_iter"
2276
+ version = "1.0.4"
2277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2278
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2279
+
2280
+ [[package]]
2281
+ name = "utf8parse"
2282
+ version = "0.2.2"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2285
+
2286
+ [[package]]
2287
+ name = "uuid"
2288
+ version = "1.18.1"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
2291
+ dependencies = [
2292
+ "getrandom",
2293
+ "js-sys",
2294
+ "wasm-bindgen",
2295
+ ]
2296
+
2297
+ [[package]]
2298
+ name = "valuable"
2299
+ version = "0.1.1"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2302
+
2303
+ [[package]]
2304
+ name = "vcpkg"
2305
+ version = "0.2.15"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2308
+
2309
+ [[package]]
2310
+ name = "version_check"
2311
+ version = "0.9.5"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2314
+
2315
+ [[package]]
2316
+ name = "walkdir"
2317
+ version = "2.5.0"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2320
+ dependencies = [
2321
+ "same-file",
2322
+ "winapi-util",
2323
+ ]
2324
+
2325
+ [[package]]
2326
+ name = "wasi"
2327
+ version = "0.14.5+wasi-0.2.4"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "a4494f6290a82f5fe584817a676a34b9d6763e8d9d18204009fb31dceca98fd4"
2330
+ dependencies = [
2331
+ "wasip2",
2332
+ ]
2333
+
2334
+ [[package]]
2335
+ name = "wasip2"
2336
+ version = "1.0.0+wasi-0.2.4"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "03fa2761397e5bd52002cd7e73110c71af2109aca4e521a9f40473fe685b0a24"
2339
+ dependencies = [
2340
+ "wit-bindgen",
2341
+ ]
2342
+
2343
+ [[package]]
2344
+ name = "wasm-bindgen"
2345
+ version = "0.2.101"
2346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2347
+ checksum = "7e14915cadd45b529bb8d1f343c4ed0ac1de926144b746e2710f9cd05df6603b"
2348
+ dependencies = [
2349
+ "cfg-if",
2350
+ "once_cell",
2351
+ "rustversion",
2352
+ "wasm-bindgen-macro",
2353
+ "wasm-bindgen-shared",
2354
+ ]
2355
+
2356
+ [[package]]
2357
+ name = "wasm-bindgen-backend"
2358
+ version = "0.2.101"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "e28d1ba982ca7923fd01448d5c30c6864d0a14109560296a162f80f305fb93bb"
2361
+ dependencies = [
2362
+ "bumpalo",
2363
+ "log",
2364
+ "proc-macro2",
2365
+ "quote",
2366
+ "syn",
2367
+ "wasm-bindgen-shared",
2368
+ ]
2369
+
2370
+ [[package]]
2371
+ name = "wasm-bindgen-futures"
2372
+ version = "0.4.51"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "0ca85039a9b469b38336411d6d6ced91f3fc87109a2a27b0c197663f5144dffe"
2375
+ dependencies = [
2376
+ "cfg-if",
2377
+ "js-sys",
2378
+ "once_cell",
2379
+ "wasm-bindgen",
2380
+ "web-sys",
2381
+ ]
2382
+
2383
+ [[package]]
2384
+ name = "wasm-bindgen-macro"
2385
+ version = "0.2.101"
2386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2387
+ checksum = "7c3d463ae3eff775b0c45df9da45d68837702ac35af998361e2c84e7c5ec1b0d"
2388
+ dependencies = [
2389
+ "quote",
2390
+ "wasm-bindgen-macro-support",
2391
+ ]
2392
+
2393
+ [[package]]
2394
+ name = "wasm-bindgen-macro-support"
2395
+ version = "0.2.101"
2396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2397
+ checksum = "7bb4ce89b08211f923caf51d527662b75bdc9c9c7aab40f86dcb9fb85ac552aa"
2398
+ dependencies = [
2399
+ "proc-macro2",
2400
+ "quote",
2401
+ "syn",
2402
+ "wasm-bindgen-backend",
2403
+ "wasm-bindgen-shared",
2404
+ ]
2405
+
2406
+ [[package]]
2407
+ name = "wasm-bindgen-shared"
2408
+ version = "0.2.101"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "f143854a3b13752c6950862c906306adb27c7e839f7414cec8fea35beab624c1"
2411
+ dependencies = [
2412
+ "unicode-ident",
2413
+ ]
2414
+
2415
+ [[package]]
2416
+ name = "web-sys"
2417
+ version = "0.3.78"
2418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2419
+ checksum = "77e4b637749ff0d92b8fad63aa1f7cff3cbe125fd49c175cd6345e7272638b12"
2420
+ dependencies = [
2421
+ "js-sys",
2422
+ "wasm-bindgen",
2423
+ ]
2424
+
2425
+ [[package]]
2426
+ name = "web-time"
2427
+ version = "1.1.0"
2428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2429
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2430
+ dependencies = [
2431
+ "js-sys",
2432
+ "wasm-bindgen",
2433
+ ]
2434
+
2435
+ [[package]]
2436
+ name = "winapi"
2437
+ version = "0.3.9"
2438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2439
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2440
+ dependencies = [
2441
+ "winapi-i686-pc-windows-gnu",
2442
+ "winapi-x86_64-pc-windows-gnu",
2443
+ ]
2444
+
2445
+ [[package]]
2446
+ name = "winapi-i686-pc-windows-gnu"
2447
+ version = "0.4.0"
2448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2449
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2450
+
2451
+ [[package]]
2452
+ name = "winapi-util"
2453
+ version = "0.1.11"
2454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2455
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2456
+ dependencies = [
2457
+ "windows-sys 0.60.2",
2458
+ ]
2459
+
2460
+ [[package]]
2461
+ name = "winapi-x86_64-pc-windows-gnu"
2462
+ version = "0.4.0"
2463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2464
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2465
+
2466
+ [[package]]
2467
+ name = "windows"
2468
+ version = "0.61.3"
2469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2470
+ checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
2471
+ dependencies = [
2472
+ "windows-collections",
2473
+ "windows-core",
2474
+ "windows-future",
2475
+ "windows-link 0.1.3",
2476
+ "windows-numerics",
2477
+ ]
2478
+
2479
+ [[package]]
2480
+ name = "windows-collections"
2481
+ version = "0.2.0"
2482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2483
+ checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
2484
+ dependencies = [
2485
+ "windows-core",
2486
+ ]
2487
+
2488
+ [[package]]
2489
+ name = "windows-core"
2490
+ version = "0.61.2"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
2493
+ dependencies = [
2494
+ "windows-implement",
2495
+ "windows-interface",
2496
+ "windows-link 0.1.3",
2497
+ "windows-result",
2498
+ "windows-strings",
2499
+ ]
2500
+
2501
+ [[package]]
2502
+ name = "windows-future"
2503
+ version = "0.2.1"
2504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2505
+ checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
2506
+ dependencies = [
2507
+ "windows-core",
2508
+ "windows-link 0.1.3",
2509
+ "windows-threading",
2510
+ ]
2511
+
2512
+ [[package]]
2513
+ name = "windows-implement"
2514
+ version = "0.60.0"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
2517
+ dependencies = [
2518
+ "proc-macro2",
2519
+ "quote",
2520
+ "syn",
2521
+ ]
2522
+
2523
+ [[package]]
2524
+ name = "windows-interface"
2525
+ version = "0.59.1"
2526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2527
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
2528
+ dependencies = [
2529
+ "proc-macro2",
2530
+ "quote",
2531
+ "syn",
2532
+ ]
2533
+
2534
+ [[package]]
2535
+ name = "windows-link"
2536
+ version = "0.1.3"
2537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2538
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2539
+
2540
+ [[package]]
2541
+ name = "windows-link"
2542
+ version = "0.2.1"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2545
+
2546
+ [[package]]
2547
+ name = "windows-numerics"
2548
+ version = "0.2.0"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
2551
+ dependencies = [
2552
+ "windows-core",
2553
+ "windows-link 0.1.3",
2554
+ ]
2555
+
2556
+ [[package]]
2557
+ name = "windows-result"
2558
+ version = "0.3.4"
2559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2560
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2561
+ dependencies = [
2562
+ "windows-link 0.1.3",
2563
+ ]
2564
+
2565
+ [[package]]
2566
+ name = "windows-strings"
2567
+ version = "0.4.2"
2568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2569
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2570
+ dependencies = [
2571
+ "windows-link 0.1.3",
2572
+ ]
2573
+
2574
+ [[package]]
2575
+ name = "windows-sys"
2576
+ version = "0.52.0"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2579
+ dependencies = [
2580
+ "windows-targets 0.52.6",
2581
+ ]
2582
+
2583
+ [[package]]
2584
+ name = "windows-sys"
2585
+ version = "0.60.2"
2586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2587
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2588
+ dependencies = [
2589
+ "windows-targets 0.53.3",
2590
+ ]
2591
+
2592
+ [[package]]
2593
+ name = "windows-targets"
2594
+ version = "0.52.6"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2597
+ dependencies = [
2598
+ "windows_aarch64_gnullvm 0.52.6",
2599
+ "windows_aarch64_msvc 0.52.6",
2600
+ "windows_i686_gnu 0.52.6",
2601
+ "windows_i686_gnullvm 0.52.6",
2602
+ "windows_i686_msvc 0.52.6",
2603
+ "windows_x86_64_gnu 0.52.6",
2604
+ "windows_x86_64_gnullvm 0.52.6",
2605
+ "windows_x86_64_msvc 0.52.6",
2606
+ ]
2607
+
2608
+ [[package]]
2609
+ name = "windows-targets"
2610
+ version = "0.53.3"
2611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2612
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
2613
+ dependencies = [
2614
+ "windows-link 0.1.3",
2615
+ "windows_aarch64_gnullvm 0.53.0",
2616
+ "windows_aarch64_msvc 0.53.0",
2617
+ "windows_i686_gnu 0.53.0",
2618
+ "windows_i686_gnullvm 0.53.0",
2619
+ "windows_i686_msvc 0.53.0",
2620
+ "windows_x86_64_gnu 0.53.0",
2621
+ "windows_x86_64_gnullvm 0.53.0",
2622
+ "windows_x86_64_msvc 0.53.0",
2623
+ ]
2624
+
2625
+ [[package]]
2626
+ name = "windows-threading"
2627
+ version = "0.1.0"
2628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2629
+ checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
2630
+ dependencies = [
2631
+ "windows-link 0.1.3",
2632
+ ]
2633
+
2634
+ [[package]]
2635
+ name = "windows_aarch64_gnullvm"
2636
+ version = "0.52.6"
2637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2638
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2639
+
2640
+ [[package]]
2641
+ name = "windows_aarch64_gnullvm"
2642
+ version = "0.53.0"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
2645
+
2646
+ [[package]]
2647
+ name = "windows_aarch64_msvc"
2648
+ version = "0.52.6"
2649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2650
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2651
+
2652
+ [[package]]
2653
+ name = "windows_aarch64_msvc"
2654
+ version = "0.53.0"
2655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2656
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
2657
+
2658
+ [[package]]
2659
+ name = "windows_i686_gnu"
2660
+ version = "0.52.6"
2661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2662
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2663
+
2664
+ [[package]]
2665
+ name = "windows_i686_gnu"
2666
+ version = "0.53.0"
2667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2668
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2669
+
2670
+ [[package]]
2671
+ name = "windows_i686_gnullvm"
2672
+ version = "0.52.6"
2673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2674
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2675
+
2676
+ [[package]]
2677
+ name = "windows_i686_gnullvm"
2678
+ version = "0.53.0"
2679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2680
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
2681
+
2682
+ [[package]]
2683
+ name = "windows_i686_msvc"
2684
+ version = "0.52.6"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2687
+
2688
+ [[package]]
2689
+ name = "windows_i686_msvc"
2690
+ version = "0.53.0"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
2693
+
2694
+ [[package]]
2695
+ name = "windows_x86_64_gnu"
2696
+ version = "0.52.6"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2699
+
2700
+ [[package]]
2701
+ name = "windows_x86_64_gnu"
2702
+ version = "0.53.0"
2703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2704
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
2705
+
2706
+ [[package]]
2707
+ name = "windows_x86_64_gnullvm"
2708
+ version = "0.52.6"
2709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2710
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2711
+
2712
+ [[package]]
2713
+ name = "windows_x86_64_gnullvm"
2714
+ version = "0.53.0"
2715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2716
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
2717
+
2718
+ [[package]]
2719
+ name = "windows_x86_64_msvc"
2720
+ version = "0.52.6"
2721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2722
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2723
+
2724
+ [[package]]
2725
+ name = "windows_x86_64_msvc"
2726
+ version = "0.53.0"
2727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2728
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2729
+
2730
+ [[package]]
2731
+ name = "wit-bindgen"
2732
+ version = "0.45.1"
2733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2734
+ checksum = "5c573471f125075647d03df72e026074b7203790d41351cd6edc96f46bcccd36"
2735
+
2736
+ [[package]]
2737
+ name = "writeable"
2738
+ version = "0.6.1"
2739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2740
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
2741
+
2742
+ [[package]]
2743
+ name = "yoke"
2744
+ version = "0.8.0"
2745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2746
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
2747
+ dependencies = [
2748
+ "serde",
2749
+ "stable_deref_trait",
2750
+ "yoke-derive",
2751
+ "zerofrom",
2752
+ ]
2753
+
2754
+ [[package]]
2755
+ name = "yoke-derive"
2756
+ version = "0.8.0"
2757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2758
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
2759
+ dependencies = [
2760
+ "proc-macro2",
2761
+ "quote",
2762
+ "syn",
2763
+ "synstructure",
2764
+ ]
2765
+
2766
+ [[package]]
2767
+ name = "zarrs"
2768
+ version = "0.22.10"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "bfbcfd7f9ae28f00972fcc4ca97e88c161d98ff8fde6959dc4955bb223eb9205"
2771
+ dependencies = [
2772
+ "async-generic",
2773
+ "async-lock",
2774
+ "async-trait",
2775
+ "base64",
2776
+ "blosc-src",
2777
+ "bytemuck",
2778
+ "bytes",
2779
+ "crc32c",
2780
+ "derive_more",
2781
+ "flate2",
2782
+ "futures",
2783
+ "getrandom",
2784
+ "half",
2785
+ "inventory",
2786
+ "itertools 0.14.0",
2787
+ "itoa",
2788
+ "log",
2789
+ "lru",
2790
+ "moka",
2791
+ "ndarray",
2792
+ "num",
2793
+ "num-complex",
2794
+ "quick_cache",
2795
+ "rayon",
2796
+ "rayon_iter_concurrent_limit",
2797
+ "serde",
2798
+ "serde_json",
2799
+ "thiserror 2.0.16",
2800
+ "thread_local",
2801
+ "unsafe_cell_slice",
2802
+ "uuid",
2803
+ "zarrs_data_type",
2804
+ "zarrs_filesystem",
2805
+ "zarrs_metadata",
2806
+ "zarrs_metadata_ext",
2807
+ "zarrs_plugin",
2808
+ "zarrs_registry",
2809
+ "zarrs_storage",
2810
+ "zstd",
2811
+ ]
2812
+
2813
+ [[package]]
2814
+ name = "zarrs_data_type"
2815
+ version = "0.4.2"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "ff78d0d99d9a9ab702460adf5f95f4a0538d0c100bbe34bddd238211e30ae3f4"
2818
+ dependencies = [
2819
+ "derive_more",
2820
+ "half",
2821
+ "inventory",
2822
+ "num",
2823
+ "thiserror 2.0.16",
2824
+ "zarrs_metadata",
2825
+ "zarrs_plugin",
2826
+ ]
2827
+
2828
+ [[package]]
2829
+ name = "zarrs_filesystem"
2830
+ version = "0.3.6"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "f6605bf47c71b8b87396550b9ae3f234fbac54145eafc1888460cc3d66560b60"
2833
+ dependencies = [
2834
+ "bytes",
2835
+ "derive_more",
2836
+ "itertools 0.14.0",
2837
+ "libc",
2838
+ "page_size",
2839
+ "parking_lot",
2840
+ "pathdiff",
2841
+ "thiserror 2.0.16",
2842
+ "walkdir",
2843
+ "zarrs_storage",
2844
+ ]
2845
+
2846
+ [[package]]
2847
+ name = "zarrs_metadata"
2848
+ version = "0.6.2"
2849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2850
+ checksum = "579803c6537c827b366fcd6cb0d78469f6a2978e6ab9768ce67526fdb85d7205"
2851
+ dependencies = [
2852
+ "derive_more",
2853
+ "half",
2854
+ "monostate",
2855
+ "serde",
2856
+ "serde_json",
2857
+ "thiserror 2.0.16",
2858
+ ]
2859
+
2860
+ [[package]]
2861
+ name = "zarrs_metadata_ext"
2862
+ version = "0.2.2"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "5522075a04b3a6ea09c0fb1c98e34a1be7385e91d3d0ffe4fc621f8329f9cd79"
2865
+ dependencies = [
2866
+ "derive_more",
2867
+ "half",
2868
+ "log",
2869
+ "monostate",
2870
+ "num",
2871
+ "serde",
2872
+ "serde_json",
2873
+ "serde_repr",
2874
+ "thiserror 2.0.16",
2875
+ "zarrs_metadata",
2876
+ "zarrs_registry",
2877
+ ]
2878
+
2879
+ [[package]]
2880
+ name = "zarrs_object_store"
2881
+ version = "0.5.0"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "a5d9d0d3db426dd50dfb0b5d7cc1660bda368caeb5cd8645c60c46bc4f261a19"
2884
+ dependencies = [
2885
+ "async-trait",
2886
+ "futures",
2887
+ "object_store",
2888
+ "zarrs_storage",
2889
+ ]
2890
+
2891
+ [[package]]
2892
+ name = "zarrs_plugin"
2893
+ version = "0.2.2"
2894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2895
+ checksum = "d3c9e0514d4c50f44d11285d5df70e4e586486a39826579c9d87ddc3f3dac561"
2896
+ dependencies = [
2897
+ "thiserror 2.0.16",
2898
+ ]
2899
+
2900
+ [[package]]
2901
+ name = "zarrs_registry"
2902
+ version = "0.1.9"
2903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2904
+ checksum = "82282c3a6b1be79662d92594319584c6efee313654fd6cee59d5b958497a4e1c"
2905
+ dependencies = [
2906
+ "regex",
2907
+ ]
2908
+
2909
+ [[package]]
2910
+ name = "zarrs_storage"
2911
+ version = "0.4.0"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "0bc1037a8fa8c44ccb8f5c6c85753a63ddf296fb43280f28150f0f29fda8d301"
2914
+ dependencies = [
2915
+ "async-trait",
2916
+ "auto_impl",
2917
+ "bytes",
2918
+ "derive_more",
2919
+ "futures",
2920
+ "itertools 0.14.0",
2921
+ "parking_lot",
2922
+ "thiserror 2.0.16",
2923
+ "unsafe_cell_slice",
2924
+ ]
2925
+
2926
+ [[package]]
2927
+ name = "zerocopy"
2928
+ version = "0.8.27"
2929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2930
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
2931
+ dependencies = [
2932
+ "zerocopy-derive",
2933
+ ]
2934
+
2935
+ [[package]]
2936
+ name = "zerocopy-derive"
2937
+ version = "0.8.27"
2938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2939
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
2940
+ dependencies = [
2941
+ "proc-macro2",
2942
+ "quote",
2943
+ "syn",
2944
+ ]
2945
+
2946
+ [[package]]
2947
+ name = "zerofrom"
2948
+ version = "0.1.6"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2951
+ dependencies = [
2952
+ "zerofrom-derive",
2953
+ ]
2954
+
2955
+ [[package]]
2956
+ name = "zerofrom-derive"
2957
+ version = "0.1.6"
2958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2959
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2960
+ dependencies = [
2961
+ "proc-macro2",
2962
+ "quote",
2963
+ "syn",
2964
+ "synstructure",
2965
+ ]
2966
+
2967
+ [[package]]
2968
+ name = "zerotrie"
2969
+ version = "0.2.2"
2970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2971
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
2972
+ dependencies = [
2973
+ "displaydoc",
2974
+ "yoke",
2975
+ "zerofrom",
2976
+ ]
2977
+
2978
+ [[package]]
2979
+ name = "zerovec"
2980
+ version = "0.11.4"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
2983
+ dependencies = [
2984
+ "yoke",
2985
+ "zerofrom",
2986
+ "zerovec-derive",
2987
+ ]
2988
+
2989
+ [[package]]
2990
+ name = "zerovec-derive"
2991
+ version = "0.11.1"
2992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2993
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
2994
+ dependencies = [
2995
+ "proc-macro2",
2996
+ "quote",
2997
+ "syn",
2998
+ ]
2999
+
3000
+ [[package]]
3001
+ name = "zstd"
3002
+ version = "0.13.3"
3003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3004
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3005
+ dependencies = [
3006
+ "zstd-safe",
3007
+ ]
3008
+
3009
+ [[package]]
3010
+ name = "zstd-safe"
3011
+ version = "7.2.4"
3012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3013
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
3014
+ dependencies = [
3015
+ "zstd-sys",
3016
+ ]
3017
+
3018
+ [[package]]
3019
+ name = "zstd-sys"
3020
+ version = "2.0.16+zstd.1.5.7"
3021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3022
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
3023
+ dependencies = [
3024
+ "cc",
3025
+ "pkg-config",
3026
+ ]