spatialbench-cli 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. spatialbench_cli-0.1.0/Cargo.lock +4422 -0
  2. spatialbench_cli-0.1.0/Cargo.toml +22 -0
  3. spatialbench_cli-0.1.0/PKG-INFO +74 -0
  4. spatialbench_cli-0.1.0/pyproject.toml +13 -0
  5. spatialbench_cli-0.1.0/spatialbench/Cargo.toml +37 -0
  6. spatialbench_cli-0.1.0/spatialbench/README.md +173 -0
  7. spatialbench_cli-0.1.0/spatialbench/data/README.md +135 -0
  8. spatialbench_cli-0.1.0/spatialbench/data/sf-v1/building.tbl.gz +0 -0
  9. spatialbench_cli-0.1.0/spatialbench/data/sf-v1/customer.tbl.gz +0 -0
  10. spatialbench_cli-0.1.0/spatialbench/data/sf-v1/driver.tbl.gz +0 -0
  11. spatialbench_cli-0.1.0/spatialbench/data/sf-v1/trip.tbl.gz +0 -0
  12. spatialbench_cli-0.1.0/spatialbench/data/sf-v1/vehicle.tbl.gz +0 -0
  13. spatialbench_cli-0.1.0/spatialbench/data/sf-v1/zone.parquet +0 -0
  14. spatialbench_cli-0.1.0/spatialbench/src/csv.rs +278 -0
  15. spatialbench_cli-0.1.0/spatialbench/src/dates.rs +366 -0
  16. spatialbench_cli-0.1.0/spatialbench/src/decimal.rs +159 -0
  17. spatialbench_cli-0.1.0/spatialbench/src/distribution.rs +568 -0
  18. spatialbench_cli-0.1.0/spatialbench/src/dists.dss +852 -0
  19. spatialbench_cli-0.1.0/spatialbench/src/generators.rs +1594 -0
  20. spatialbench_cli-0.1.0/spatialbench/src/kde.rs +200060 -0
  21. spatialbench_cli-0.1.0/spatialbench/src/lib.rs +80 -0
  22. spatialbench_cli-0.1.0/spatialbench/src/q_and_a/answers_sf1.rs +20248 -0
  23. spatialbench_cli-0.1.0/spatialbench/src/q_and_a/mod.rs +52 -0
  24. spatialbench_cli-0.1.0/spatialbench/src/q_and_a/queries.rs +739 -0
  25. spatialbench_cli-0.1.0/spatialbench/src/random.rs +695 -0
  26. spatialbench_cli-0.1.0/spatialbench/src/spatial/cache.rs +31 -0
  27. spatialbench_cli-0.1.0/spatialbench/src/spatial/config.rs +108 -0
  28. spatialbench_cli-0.1.0/spatialbench/src/spatial/defaults.rs +105 -0
  29. spatialbench_cli-0.1.0/spatialbench/src/spatial/distributions.rs +342 -0
  30. spatialbench_cli-0.1.0/spatialbench/src/spatial/generator.rs +64 -0
  31. spatialbench_cli-0.1.0/spatialbench/src/spatial/geometry.rs +131 -0
  32. spatialbench_cli-0.1.0/spatialbench/src/spatial/mod.rs +29 -0
  33. spatialbench_cli-0.1.0/spatialbench/src/spatial/overrides.rs +45 -0
  34. spatialbench_cli-0.1.0/spatialbench/src/spatial/utils/affine.rs +34 -0
  35. spatialbench_cli-0.1.0/spatialbench/src/spatial/utils/antimeridian.rs +284 -0
  36. spatialbench_cli-0.1.0/spatialbench/src/spatial/utils/continent.rs +74 -0
  37. spatialbench_cli-0.1.0/spatialbench/src/spatial/utils/mod.rs +26 -0
  38. spatialbench_cli-0.1.0/spatialbench/src/spatial/utils/random.rs +127 -0
  39. spatialbench_cli-0.1.0/spatialbench/src/text.rs +173 -0
  40. spatialbench_cli-0.1.0/spatialbench/tests/geometry_tests.rs +153 -0
  41. spatialbench_cli-0.1.0/spatialbench/tests/integration_tests.rs +132 -0
  42. spatialbench_cli-0.1.0/spatialbench-arrow/Cargo.toml +39 -0
  43. spatialbench_cli-0.1.0/spatialbench-arrow/LICENSE +201 -0
  44. spatialbench_cli-0.1.0/spatialbench-arrow/README.md +42 -0
  45. spatialbench_cli-0.1.0/spatialbench-arrow/src/building.rs +106 -0
  46. spatialbench_cli-0.1.0/spatialbench-arrow/src/conversions.rs +113 -0
  47. spatialbench_cli-0.1.0/spatialbench-arrow/src/customer.rs +132 -0
  48. spatialbench_cli-0.1.0/spatialbench-arrow/src/driver.rs +132 -0
  49. spatialbench_cli-0.1.0/spatialbench-arrow/src/lib.rs +76 -0
  50. spatialbench_cli-0.1.0/spatialbench-arrow/src/trip.rs +163 -0
  51. spatialbench_cli-0.1.0/spatialbench-arrow/src/vehicle.rs +129 -0
  52. spatialbench_cli-0.1.0/spatialbench-arrow/tests/reparse.rs +239 -0
  53. spatialbench_cli-0.1.0/spatialbench-cli/CONFIGURATION.md +136 -0
  54. spatialbench_cli-0.1.0/spatialbench-cli/Cargo.toml +55 -0
  55. spatialbench_cli-0.1.0/spatialbench-cli/README.md +62 -0
  56. spatialbench_cli-0.1.0/spatialbench-cli/src/csv.rs +63 -0
  57. spatialbench_cli-0.1.0/spatialbench-cli/src/generate.rs +187 -0
  58. spatialbench_cli-0.1.0/spatialbench-cli/src/main.rs +429 -0
  59. spatialbench_cli-0.1.0/spatialbench-cli/src/output_plan.rs +318 -0
  60. spatialbench_cli-0.1.0/spatialbench-cli/src/parquet.rs +179 -0
  61. spatialbench_cli-0.1.0/spatialbench-cli/src/plan.rs +857 -0
  62. spatialbench_cli-0.1.0/spatialbench-cli/src/runner.rs +372 -0
  63. spatialbench_cli-0.1.0/spatialbench-cli/src/spatial_config_file.rs +233 -0
  64. spatialbench_cli-0.1.0/spatialbench-cli/src/statistics.rs +73 -0
  65. spatialbench_cli-0.1.0/spatialbench-cli/src/tbl.rs +61 -0
  66. spatialbench_cli-0.1.0/spatialbench-cli/src/zone/config.rs +80 -0
  67. spatialbench_cli-0.1.0/spatialbench-cli/src/zone/datasource.rs +112 -0
  68. spatialbench_cli-0.1.0/spatialbench-cli/src/zone/main.rs +85 -0
  69. spatialbench_cli-0.1.0/spatialbench-cli/src/zone/mod.rs +113 -0
  70. spatialbench_cli-0.1.0/spatialbench-cli/src/zone/partition.rs +160 -0
  71. spatialbench_cli-0.1.0/spatialbench-cli/src/zone/stats.rs +178 -0
  72. spatialbench_cli-0.1.0/spatialbench-cli/src/zone/transform.rs +67 -0
  73. spatialbench_cli-0.1.0/spatialbench-cli/src/zone/writer.rs +111 -0
  74. spatialbench_cli-0.1.0/spatialbench-cli/tests/cli_integration.rs +971 -0
@@ -0,0 +1,4422 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "const-random",
19
+ "getrandom 0.3.4",
20
+ "once_cell",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.4"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "alloc-no-stdlib"
36
+ version = "2.0.4"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
39
+
40
+ [[package]]
41
+ name = "alloc-stdlib"
42
+ version = "0.2.2"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
45
+ dependencies = [
46
+ "alloc-no-stdlib",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "allocator-api2"
51
+ version = "0.2.21"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
54
+
55
+ [[package]]
56
+ name = "android_system_properties"
57
+ version = "0.1.5"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
60
+ dependencies = [
61
+ "libc",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anstream"
66
+ version = "0.6.21"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
69
+ dependencies = [
70
+ "anstyle",
71
+ "anstyle-parse",
72
+ "anstyle-query",
73
+ "anstyle-wincon",
74
+ "colorchoice",
75
+ "is_terminal_polyfill",
76
+ "utf8parse",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anstyle"
81
+ version = "1.0.13"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
84
+
85
+ [[package]]
86
+ name = "anstyle-parse"
87
+ version = "0.2.7"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
90
+ dependencies = [
91
+ "utf8parse",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "anstyle-query"
96
+ version = "1.1.5"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
99
+ dependencies = [
100
+ "windows-sys 0.61.2",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "anstyle-wincon"
105
+ version = "3.0.11"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
108
+ dependencies = [
109
+ "anstyle",
110
+ "once_cell_polyfill",
111
+ "windows-sys 0.61.2",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "anyhow"
116
+ version = "1.0.100"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
119
+
120
+ [[package]]
121
+ name = "approx"
122
+ version = "0.5.1"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
125
+ dependencies = [
126
+ "num-traits",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "ar_archive_writer"
131
+ version = "0.2.0"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a"
134
+ dependencies = [
135
+ "object",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "arrayref"
140
+ version = "0.3.9"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
143
+
144
+ [[package]]
145
+ name = "arrayvec"
146
+ version = "0.7.6"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
149
+
150
+ [[package]]
151
+ name = "arrow"
152
+ version = "56.2.0"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "6e833808ff2d94ed40d9379848a950d995043c7fb3e81a30b383f4c6033821cc"
155
+ dependencies = [
156
+ "arrow-arith",
157
+ "arrow-array",
158
+ "arrow-buffer",
159
+ "arrow-cast",
160
+ "arrow-csv",
161
+ "arrow-data",
162
+ "arrow-ipc",
163
+ "arrow-json",
164
+ "arrow-ord",
165
+ "arrow-row",
166
+ "arrow-schema",
167
+ "arrow-select",
168
+ "arrow-string",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "arrow-arith"
173
+ version = "56.2.0"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "ad08897b81588f60ba983e3ca39bda2b179bdd84dced378e7df81a5313802ef8"
176
+ dependencies = [
177
+ "arrow-array",
178
+ "arrow-buffer",
179
+ "arrow-data",
180
+ "arrow-schema",
181
+ "chrono",
182
+ "num",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "arrow-array"
187
+ version = "56.2.0"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "8548ca7c070d8db9ce7aa43f37393e4bfcf3f2d3681df278490772fd1673d08d"
190
+ dependencies = [
191
+ "ahash",
192
+ "arrow-buffer",
193
+ "arrow-data",
194
+ "arrow-schema",
195
+ "chrono",
196
+ "chrono-tz",
197
+ "half",
198
+ "hashbrown 0.16.1",
199
+ "num",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "arrow-buffer"
204
+ version = "56.2.0"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "e003216336f70446457e280807a73899dd822feaf02087d31febca1363e2fccc"
207
+ dependencies = [
208
+ "bytes",
209
+ "half",
210
+ "num",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "arrow-cast"
215
+ version = "56.2.0"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "919418a0681298d3a77d1a315f625916cb5678ad0d74b9c60108eb15fd083023"
218
+ dependencies = [
219
+ "arrow-array",
220
+ "arrow-buffer",
221
+ "arrow-data",
222
+ "arrow-schema",
223
+ "arrow-select",
224
+ "atoi",
225
+ "base64",
226
+ "chrono",
227
+ "comfy-table",
228
+ "half",
229
+ "lexical-core",
230
+ "num",
231
+ "ryu",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "arrow-csv"
236
+ version = "56.2.0"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "bfa9bf02705b5cf762b6f764c65f04ae9082c7cfc4e96e0c33548ee3f67012eb"
239
+ dependencies = [
240
+ "arrow-array",
241
+ "arrow-cast",
242
+ "arrow-schema",
243
+ "chrono",
244
+ "csv",
245
+ "csv-core",
246
+ "regex",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "arrow-data"
251
+ version = "56.2.0"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "a5c64fff1d142f833d78897a772f2e5b55b36cb3e6320376f0961ab0db7bd6d0"
254
+ dependencies = [
255
+ "arrow-buffer",
256
+ "arrow-schema",
257
+ "half",
258
+ "num",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "arrow-ipc"
263
+ version = "56.2.0"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "1d3594dcddccc7f20fd069bc8e9828ce37220372680ff638c5e00dea427d88f5"
266
+ dependencies = [
267
+ "arrow-array",
268
+ "arrow-buffer",
269
+ "arrow-data",
270
+ "arrow-schema",
271
+ "arrow-select",
272
+ "flatbuffers",
273
+ "lz4_flex",
274
+ "zstd",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "arrow-json"
279
+ version = "56.2.0"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "88cf36502b64a127dc659e3b305f1d993a544eab0d48cce704424e62074dc04b"
282
+ dependencies = [
283
+ "arrow-array",
284
+ "arrow-buffer",
285
+ "arrow-cast",
286
+ "arrow-data",
287
+ "arrow-schema",
288
+ "chrono",
289
+ "half",
290
+ "indexmap",
291
+ "lexical-core",
292
+ "memchr",
293
+ "num",
294
+ "serde",
295
+ "serde_json",
296
+ "simdutf8",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "arrow-ord"
301
+ version = "56.2.0"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "3c8f82583eb4f8d84d4ee55fd1cb306720cddead7596edce95b50ee418edf66f"
304
+ dependencies = [
305
+ "arrow-array",
306
+ "arrow-buffer",
307
+ "arrow-data",
308
+ "arrow-schema",
309
+ "arrow-select",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "arrow-row"
314
+ version = "56.2.0"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "9d07ba24522229d9085031df6b94605e0f4b26e099fb7cdeec37abd941a73753"
317
+ dependencies = [
318
+ "arrow-array",
319
+ "arrow-buffer",
320
+ "arrow-data",
321
+ "arrow-schema",
322
+ "half",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "arrow-schema"
327
+ version = "56.2.0"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "b3aa9e59c611ebc291c28582077ef25c97f1975383f1479b12f3b9ffee2ffabe"
330
+ dependencies = [
331
+ "serde",
332
+ "serde_json",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "arrow-select"
337
+ version = "56.2.0"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "8c41dbbd1e97bfcaee4fcb30e29105fb2c75e4d82ae4de70b792a5d3f66b2e7a"
340
+ dependencies = [
341
+ "ahash",
342
+ "arrow-array",
343
+ "arrow-buffer",
344
+ "arrow-data",
345
+ "arrow-schema",
346
+ "num",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "arrow-string"
351
+ version = "56.2.0"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "53f5183c150fbc619eede22b861ea7c0eebed8eaac0333eaa7f6da5205fd504d"
354
+ dependencies = [
355
+ "arrow-array",
356
+ "arrow-buffer",
357
+ "arrow-data",
358
+ "arrow-schema",
359
+ "arrow-select",
360
+ "memchr",
361
+ "num",
362
+ "regex",
363
+ "regex-syntax",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "assert_cmd"
368
+ version = "2.1.1"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85"
371
+ dependencies = [
372
+ "anstyle",
373
+ "bstr",
374
+ "libc",
375
+ "predicates",
376
+ "predicates-core",
377
+ "predicates-tree",
378
+ "wait-timeout",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "async-compression"
383
+ version = "0.4.19"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "06575e6a9673580f52661c92107baabffbf41e2141373441cbcdc47cb733003c"
386
+ dependencies = [
387
+ "bzip2 0.5.2",
388
+ "flate2",
389
+ "futures-core",
390
+ "memchr",
391
+ "pin-project-lite",
392
+ "tokio",
393
+ "xz2",
394
+ "zstd",
395
+ "zstd-safe",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "async-trait"
400
+ version = "0.1.89"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
403
+ dependencies = [
404
+ "proc-macro2",
405
+ "quote",
406
+ "syn",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "atoi"
411
+ version = "2.0.0"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
414
+ dependencies = [
415
+ "num-traits",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "atomic-waker"
420
+ version = "1.1.2"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
423
+
424
+ [[package]]
425
+ name = "autocfg"
426
+ version = "1.5.0"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
429
+
430
+ [[package]]
431
+ name = "base64"
432
+ version = "0.22.1"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
435
+
436
+ [[package]]
437
+ name = "bigdecimal"
438
+ version = "0.4.9"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "560f42649de9fa436b73517378a147ec21f6c997a546581df4b4b31677828934"
441
+ dependencies = [
442
+ "autocfg",
443
+ "libm",
444
+ "num-bigint",
445
+ "num-integer",
446
+ "num-traits",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "bitflags"
451
+ version = "2.10.0"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
454
+
455
+ [[package]]
456
+ name = "blake2"
457
+ version = "0.10.6"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
460
+ dependencies = [
461
+ "digest",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "blake3"
466
+ version = "1.8.2"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
469
+ dependencies = [
470
+ "arrayref",
471
+ "arrayvec",
472
+ "cc",
473
+ "cfg-if",
474
+ "constant_time_eq",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "block-buffer"
479
+ version = "0.10.4"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
482
+ dependencies = [
483
+ "generic-array",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "brotli"
488
+ version = "8.0.2"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
491
+ dependencies = [
492
+ "alloc-no-stdlib",
493
+ "alloc-stdlib",
494
+ "brotli-decompressor",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "brotli-decompressor"
499
+ version = "5.0.0"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
502
+ dependencies = [
503
+ "alloc-no-stdlib",
504
+ "alloc-stdlib",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "bstr"
509
+ version = "1.12.1"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
512
+ dependencies = [
513
+ "memchr",
514
+ "regex-automata",
515
+ "serde",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "bumpalo"
520
+ version = "3.19.1"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
523
+
524
+ [[package]]
525
+ name = "byteorder"
526
+ version = "1.5.0"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
529
+
530
+ [[package]]
531
+ name = "bytes"
532
+ version = "1.11.0"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
535
+
536
+ [[package]]
537
+ name = "bzip2"
538
+ version = "0.5.2"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
541
+ dependencies = [
542
+ "bzip2-sys",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "bzip2"
547
+ version = "0.6.1"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c"
550
+ dependencies = [
551
+ "libbz2-rs-sys",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "bzip2-sys"
556
+ version = "0.1.13+1.0.8"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
559
+ dependencies = [
560
+ "cc",
561
+ "pkg-config",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "cc"
566
+ version = "1.2.50"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c"
569
+ dependencies = [
570
+ "find-msvc-tools",
571
+ "jobserver",
572
+ "libc",
573
+ "shlex",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "cfg-if"
578
+ version = "1.0.4"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
581
+
582
+ [[package]]
583
+ name = "cfg_aliases"
584
+ version = "0.2.1"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
587
+
588
+ [[package]]
589
+ name = "chrono"
590
+ version = "0.4.42"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
593
+ dependencies = [
594
+ "iana-time-zone",
595
+ "js-sys",
596
+ "num-traits",
597
+ "serde",
598
+ "wasm-bindgen",
599
+ "windows-link",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "chrono-tz"
604
+ version = "0.10.4"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
607
+ dependencies = [
608
+ "chrono",
609
+ "phf",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "clap"
614
+ version = "4.5.53"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
617
+ dependencies = [
618
+ "clap_builder",
619
+ "clap_derive",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "clap_builder"
624
+ version = "4.5.53"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
627
+ dependencies = [
628
+ "anstream",
629
+ "anstyle",
630
+ "clap_lex",
631
+ "strsim",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "clap_derive"
636
+ version = "4.5.49"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
639
+ dependencies = [
640
+ "heck",
641
+ "proc-macro2",
642
+ "quote",
643
+ "syn",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "clap_lex"
648
+ version = "0.7.6"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
651
+
652
+ [[package]]
653
+ name = "colorchoice"
654
+ version = "1.0.4"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
657
+
658
+ [[package]]
659
+ name = "comfy-table"
660
+ version = "7.1.2"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "e0d05af1e006a2407bedef5af410552494ce5be9090444dbbcb57258c1af3d56"
663
+ dependencies = [
664
+ "strum",
665
+ "strum_macros",
666
+ "unicode-width",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "const-random"
671
+ version = "0.1.18"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
674
+ dependencies = [
675
+ "const-random-macro",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "const-random-macro"
680
+ version = "0.1.16"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
683
+ dependencies = [
684
+ "getrandom 0.2.16",
685
+ "once_cell",
686
+ "tiny-keccak",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "constant_time_eq"
691
+ version = "0.3.1"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
694
+
695
+ [[package]]
696
+ name = "core-foundation"
697
+ version = "0.10.1"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
700
+ dependencies = [
701
+ "core-foundation-sys",
702
+ "libc",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "core-foundation-sys"
707
+ version = "0.8.7"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
710
+
711
+ [[package]]
712
+ name = "cpufeatures"
713
+ version = "0.2.17"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
716
+ dependencies = [
717
+ "libc",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "crc32fast"
722
+ version = "1.5.0"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
725
+ dependencies = [
726
+ "cfg-if",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "crossbeam-deque"
731
+ version = "0.8.6"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
734
+ dependencies = [
735
+ "crossbeam-epoch",
736
+ "crossbeam-utils",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "crossbeam-epoch"
741
+ version = "0.9.18"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
744
+ dependencies = [
745
+ "crossbeam-utils",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "crossbeam-utils"
750
+ version = "0.8.21"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
753
+
754
+ [[package]]
755
+ name = "crunchy"
756
+ version = "0.2.4"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
759
+
760
+ [[package]]
761
+ name = "crypto-common"
762
+ version = "0.1.7"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
765
+ dependencies = [
766
+ "generic-array",
767
+ "typenum",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "csv"
772
+ version = "1.4.0"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
775
+ dependencies = [
776
+ "csv-core",
777
+ "itoa",
778
+ "ryu",
779
+ "serde_core",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "csv-core"
784
+ version = "0.1.13"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
787
+ dependencies = [
788
+ "memchr",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "dashmap"
793
+ version = "6.1.0"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
796
+ dependencies = [
797
+ "cfg-if",
798
+ "crossbeam-utils",
799
+ "hashbrown 0.14.5",
800
+ "lock_api",
801
+ "once_cell",
802
+ "parking_lot_core",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "datafusion"
807
+ version = "50.3.0"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "2af15bb3c6ffa33011ef579f6b0bcbe7c26584688bd6c994f548e44df67f011a"
810
+ dependencies = [
811
+ "arrow",
812
+ "arrow-ipc",
813
+ "arrow-schema",
814
+ "async-trait",
815
+ "bytes",
816
+ "bzip2 0.6.1",
817
+ "chrono",
818
+ "datafusion-catalog",
819
+ "datafusion-catalog-listing",
820
+ "datafusion-common",
821
+ "datafusion-common-runtime",
822
+ "datafusion-datasource",
823
+ "datafusion-datasource-csv",
824
+ "datafusion-datasource-json",
825
+ "datafusion-datasource-parquet",
826
+ "datafusion-execution",
827
+ "datafusion-expr",
828
+ "datafusion-expr-common",
829
+ "datafusion-functions",
830
+ "datafusion-functions-aggregate",
831
+ "datafusion-functions-nested",
832
+ "datafusion-functions-table",
833
+ "datafusion-functions-window",
834
+ "datafusion-optimizer",
835
+ "datafusion-physical-expr",
836
+ "datafusion-physical-expr-adapter",
837
+ "datafusion-physical-expr-common",
838
+ "datafusion-physical-optimizer",
839
+ "datafusion-physical-plan",
840
+ "datafusion-session",
841
+ "datafusion-sql",
842
+ "flate2",
843
+ "futures",
844
+ "itertools 0.14.0",
845
+ "log",
846
+ "object_store",
847
+ "parking_lot",
848
+ "parquet",
849
+ "rand 0.9.2",
850
+ "regex",
851
+ "sqlparser",
852
+ "tempfile",
853
+ "tokio",
854
+ "url",
855
+ "uuid",
856
+ "xz2",
857
+ "zstd",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "datafusion-catalog"
862
+ version = "50.3.0"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "187622262ad8f7d16d3be9202b4c1e0116f1c9aa387e5074245538b755261621"
865
+ dependencies = [
866
+ "arrow",
867
+ "async-trait",
868
+ "dashmap",
869
+ "datafusion-common",
870
+ "datafusion-common-runtime",
871
+ "datafusion-datasource",
872
+ "datafusion-execution",
873
+ "datafusion-expr",
874
+ "datafusion-physical-expr",
875
+ "datafusion-physical-plan",
876
+ "datafusion-session",
877
+ "datafusion-sql",
878
+ "futures",
879
+ "itertools 0.14.0",
880
+ "log",
881
+ "object_store",
882
+ "parking_lot",
883
+ "tokio",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "datafusion-catalog-listing"
888
+ version = "50.3.0"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "9657314f0a32efd0382b9a46fdeb2d233273ece64baa68a7c45f5a192daf0f83"
891
+ dependencies = [
892
+ "arrow",
893
+ "async-trait",
894
+ "datafusion-catalog",
895
+ "datafusion-common",
896
+ "datafusion-datasource",
897
+ "datafusion-execution",
898
+ "datafusion-expr",
899
+ "datafusion-physical-expr",
900
+ "datafusion-physical-expr-common",
901
+ "datafusion-physical-plan",
902
+ "datafusion-session",
903
+ "futures",
904
+ "log",
905
+ "object_store",
906
+ "tokio",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "datafusion-common"
911
+ version = "50.3.0"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "5a83760d9a13122d025fbdb1d5d5aaf93dd9ada5e90ea229add92aa30898b2d1"
914
+ dependencies = [
915
+ "ahash",
916
+ "arrow",
917
+ "arrow-ipc",
918
+ "base64",
919
+ "chrono",
920
+ "half",
921
+ "hashbrown 0.14.5",
922
+ "indexmap",
923
+ "libc",
924
+ "log",
925
+ "object_store",
926
+ "parquet",
927
+ "paste",
928
+ "recursive",
929
+ "sqlparser",
930
+ "tokio",
931
+ "web-time",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "datafusion-common-runtime"
936
+ version = "50.3.0"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "5b6234a6c7173fe5db1c6c35c01a12b2aa0f803a3007feee53483218817f8b1e"
939
+ dependencies = [
940
+ "futures",
941
+ "log",
942
+ "tokio",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "datafusion-datasource"
947
+ version = "50.3.0"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "7256c9cb27a78709dd42d0c80f0178494637209cac6e29d5c93edd09b6721b86"
950
+ dependencies = [
951
+ "arrow",
952
+ "async-compression",
953
+ "async-trait",
954
+ "bytes",
955
+ "bzip2 0.6.1",
956
+ "chrono",
957
+ "datafusion-common",
958
+ "datafusion-common-runtime",
959
+ "datafusion-execution",
960
+ "datafusion-expr",
961
+ "datafusion-physical-expr",
962
+ "datafusion-physical-expr-adapter",
963
+ "datafusion-physical-expr-common",
964
+ "datafusion-physical-plan",
965
+ "datafusion-session",
966
+ "flate2",
967
+ "futures",
968
+ "glob",
969
+ "itertools 0.14.0",
970
+ "log",
971
+ "object_store",
972
+ "parquet",
973
+ "rand 0.9.2",
974
+ "tempfile",
975
+ "tokio",
976
+ "tokio-util",
977
+ "url",
978
+ "xz2",
979
+ "zstd",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "datafusion-datasource-csv"
984
+ version = "50.3.0"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "64533a90f78e1684bfb113d200b540f18f268134622d7c96bbebc91354d04825"
987
+ dependencies = [
988
+ "arrow",
989
+ "async-trait",
990
+ "bytes",
991
+ "datafusion-catalog",
992
+ "datafusion-common",
993
+ "datafusion-common-runtime",
994
+ "datafusion-datasource",
995
+ "datafusion-execution",
996
+ "datafusion-expr",
997
+ "datafusion-physical-expr",
998
+ "datafusion-physical-expr-common",
999
+ "datafusion-physical-plan",
1000
+ "datafusion-session",
1001
+ "futures",
1002
+ "object_store",
1003
+ "regex",
1004
+ "tokio",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "datafusion-datasource-json"
1009
+ version = "50.3.0"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "8d7ebeb12c77df0aacad26f21b0d033aeede423a64b2b352f53048a75bf1d6e6"
1012
+ dependencies = [
1013
+ "arrow",
1014
+ "async-trait",
1015
+ "bytes",
1016
+ "datafusion-catalog",
1017
+ "datafusion-common",
1018
+ "datafusion-common-runtime",
1019
+ "datafusion-datasource",
1020
+ "datafusion-execution",
1021
+ "datafusion-expr",
1022
+ "datafusion-physical-expr",
1023
+ "datafusion-physical-expr-common",
1024
+ "datafusion-physical-plan",
1025
+ "datafusion-session",
1026
+ "futures",
1027
+ "object_store",
1028
+ "serde_json",
1029
+ "tokio",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "datafusion-datasource-parquet"
1034
+ version = "50.3.0"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "09e783c4c7d7faa1199af2df4761c68530634521b176a8d1331ddbc5a5c75133"
1037
+ dependencies = [
1038
+ "arrow",
1039
+ "async-trait",
1040
+ "bytes",
1041
+ "datafusion-catalog",
1042
+ "datafusion-common",
1043
+ "datafusion-common-runtime",
1044
+ "datafusion-datasource",
1045
+ "datafusion-execution",
1046
+ "datafusion-expr",
1047
+ "datafusion-functions-aggregate",
1048
+ "datafusion-physical-expr",
1049
+ "datafusion-physical-expr-adapter",
1050
+ "datafusion-physical-expr-common",
1051
+ "datafusion-physical-optimizer",
1052
+ "datafusion-physical-plan",
1053
+ "datafusion-pruning",
1054
+ "datafusion-session",
1055
+ "futures",
1056
+ "itertools 0.14.0",
1057
+ "log",
1058
+ "object_store",
1059
+ "parking_lot",
1060
+ "parquet",
1061
+ "rand 0.9.2",
1062
+ "tokio",
1063
+ ]
1064
+
1065
+ [[package]]
1066
+ name = "datafusion-doc"
1067
+ version = "50.3.0"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "99ee6b1d9a80d13f9deb2291f45c07044b8e62fb540dbde2453a18be17a36429"
1070
+
1071
+ [[package]]
1072
+ name = "datafusion-execution"
1073
+ version = "50.3.0"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "a4cec0a57653bec7b933fb248d3ffa3fa3ab3bd33bd140dc917f714ac036f531"
1076
+ dependencies = [
1077
+ "arrow",
1078
+ "async-trait",
1079
+ "dashmap",
1080
+ "datafusion-common",
1081
+ "datafusion-expr",
1082
+ "futures",
1083
+ "log",
1084
+ "object_store",
1085
+ "parking_lot",
1086
+ "rand 0.9.2",
1087
+ "tempfile",
1088
+ "url",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "datafusion-expr"
1093
+ version = "50.3.0"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "ef76910bdca909722586389156d0aa4da4020e1631994d50fadd8ad4b1aa05fe"
1096
+ dependencies = [
1097
+ "arrow",
1098
+ "async-trait",
1099
+ "chrono",
1100
+ "datafusion-common",
1101
+ "datafusion-doc",
1102
+ "datafusion-expr-common",
1103
+ "datafusion-functions-aggregate-common",
1104
+ "datafusion-functions-window-common",
1105
+ "datafusion-physical-expr-common",
1106
+ "indexmap",
1107
+ "paste",
1108
+ "recursive",
1109
+ "serde_json",
1110
+ "sqlparser",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "datafusion-expr-common"
1115
+ version = "50.3.0"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "6d155ccbda29591ca71a1344dd6bed26c65a4438072b400df9db59447f590bb6"
1118
+ dependencies = [
1119
+ "arrow",
1120
+ "datafusion-common",
1121
+ "indexmap",
1122
+ "itertools 0.14.0",
1123
+ "paste",
1124
+ ]
1125
+
1126
+ [[package]]
1127
+ name = "datafusion-functions"
1128
+ version = "50.3.0"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "7de2782136bd6014670fd84fe3b0ca3b3e4106c96403c3ae05c0598577139977"
1131
+ dependencies = [
1132
+ "arrow",
1133
+ "arrow-buffer",
1134
+ "base64",
1135
+ "blake2",
1136
+ "blake3",
1137
+ "chrono",
1138
+ "datafusion-common",
1139
+ "datafusion-doc",
1140
+ "datafusion-execution",
1141
+ "datafusion-expr",
1142
+ "datafusion-expr-common",
1143
+ "datafusion-macros",
1144
+ "hex",
1145
+ "itertools 0.14.0",
1146
+ "log",
1147
+ "md-5",
1148
+ "rand 0.9.2",
1149
+ "regex",
1150
+ "sha2",
1151
+ "unicode-segmentation",
1152
+ "uuid",
1153
+ ]
1154
+
1155
+ [[package]]
1156
+ name = "datafusion-functions-aggregate"
1157
+ version = "50.3.0"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "07331fc13603a9da97b74fd8a273f4238222943dffdbbed1c4c6f862a30105bf"
1160
+ dependencies = [
1161
+ "ahash",
1162
+ "arrow",
1163
+ "datafusion-common",
1164
+ "datafusion-doc",
1165
+ "datafusion-execution",
1166
+ "datafusion-expr",
1167
+ "datafusion-functions-aggregate-common",
1168
+ "datafusion-macros",
1169
+ "datafusion-physical-expr",
1170
+ "datafusion-physical-expr-common",
1171
+ "half",
1172
+ "log",
1173
+ "paste",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "datafusion-functions-aggregate-common"
1178
+ version = "50.3.0"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "b5951e572a8610b89968a09b5420515a121fbc305c0258651f318dc07c97ab17"
1181
+ dependencies = [
1182
+ "ahash",
1183
+ "arrow",
1184
+ "datafusion-common",
1185
+ "datafusion-expr-common",
1186
+ "datafusion-physical-expr-common",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "datafusion-functions-nested"
1191
+ version = "50.3.0"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "fdacca9302c3d8fc03f3e94f338767e786a88a33f5ebad6ffc0e7b50364b9ea3"
1194
+ dependencies = [
1195
+ "arrow",
1196
+ "arrow-ord",
1197
+ "datafusion-common",
1198
+ "datafusion-doc",
1199
+ "datafusion-execution",
1200
+ "datafusion-expr",
1201
+ "datafusion-functions",
1202
+ "datafusion-functions-aggregate",
1203
+ "datafusion-functions-aggregate-common",
1204
+ "datafusion-macros",
1205
+ "datafusion-physical-expr-common",
1206
+ "itertools 0.14.0",
1207
+ "log",
1208
+ "paste",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "datafusion-functions-table"
1213
+ version = "50.3.0"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "8c37ff8a99434fbbad604a7e0669717c58c7c4f14c472d45067c4b016621d981"
1216
+ dependencies = [
1217
+ "arrow",
1218
+ "async-trait",
1219
+ "datafusion-catalog",
1220
+ "datafusion-common",
1221
+ "datafusion-expr",
1222
+ "datafusion-physical-plan",
1223
+ "parking_lot",
1224
+ "paste",
1225
+ ]
1226
+
1227
+ [[package]]
1228
+ name = "datafusion-functions-window"
1229
+ version = "50.3.0"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "48e2aea7c79c926cffabb13dc27309d4eaeb130f4a21c8ba91cdd241c813652b"
1232
+ dependencies = [
1233
+ "arrow",
1234
+ "datafusion-common",
1235
+ "datafusion-doc",
1236
+ "datafusion-expr",
1237
+ "datafusion-functions-window-common",
1238
+ "datafusion-macros",
1239
+ "datafusion-physical-expr",
1240
+ "datafusion-physical-expr-common",
1241
+ "log",
1242
+ "paste",
1243
+ ]
1244
+
1245
+ [[package]]
1246
+ name = "datafusion-functions-window-common"
1247
+ version = "50.3.0"
1248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1249
+ checksum = "0fead257ab5fd2ffc3b40fda64da307e20de0040fe43d49197241d9de82a487f"
1250
+ dependencies = [
1251
+ "datafusion-common",
1252
+ "datafusion-physical-expr-common",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "datafusion-macros"
1257
+ version = "50.3.0"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "ec6f637bce95efac05cdfb9b6c19579ed4aa5f6b94d951cfa5bb054b7bb4f730"
1260
+ dependencies = [
1261
+ "datafusion-expr",
1262
+ "quote",
1263
+ "syn",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "datafusion-optimizer"
1268
+ version = "50.3.0"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "c6583ef666ae000a613a837e69e456681a9faa96347bf3877661e9e89e141d8a"
1271
+ dependencies = [
1272
+ "arrow",
1273
+ "chrono",
1274
+ "datafusion-common",
1275
+ "datafusion-expr",
1276
+ "datafusion-expr-common",
1277
+ "datafusion-physical-expr",
1278
+ "indexmap",
1279
+ "itertools 0.14.0",
1280
+ "log",
1281
+ "recursive",
1282
+ "regex",
1283
+ "regex-syntax",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "datafusion-physical-expr"
1288
+ version = "50.3.0"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "c8668103361a272cbbe3a61f72eca60c9b7c706e87cc3565bcf21e2b277b84f6"
1291
+ dependencies = [
1292
+ "ahash",
1293
+ "arrow",
1294
+ "datafusion-common",
1295
+ "datafusion-expr",
1296
+ "datafusion-expr-common",
1297
+ "datafusion-functions-aggregate-common",
1298
+ "datafusion-physical-expr-common",
1299
+ "half",
1300
+ "hashbrown 0.14.5",
1301
+ "indexmap",
1302
+ "itertools 0.14.0",
1303
+ "log",
1304
+ "parking_lot",
1305
+ "paste",
1306
+ "petgraph",
1307
+ ]
1308
+
1309
+ [[package]]
1310
+ name = "datafusion-physical-expr-adapter"
1311
+ version = "50.3.0"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "815acced725d30601b397e39958e0e55630e0a10d66ef7769c14ae6597298bb0"
1314
+ dependencies = [
1315
+ "arrow",
1316
+ "datafusion-common",
1317
+ "datafusion-expr",
1318
+ "datafusion-functions",
1319
+ "datafusion-physical-expr",
1320
+ "datafusion-physical-expr-common",
1321
+ "itertools 0.14.0",
1322
+ ]
1323
+
1324
+ [[package]]
1325
+ name = "datafusion-physical-expr-common"
1326
+ version = "50.3.0"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "6652fe7b5bf87e85ed175f571745305565da2c0b599d98e697bcbedc7baa47c3"
1329
+ dependencies = [
1330
+ "ahash",
1331
+ "arrow",
1332
+ "datafusion-common",
1333
+ "datafusion-expr-common",
1334
+ "hashbrown 0.14.5",
1335
+ "itertools 0.14.0",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "datafusion-physical-optimizer"
1340
+ version = "50.3.0"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "49b7d623eb6162a3332b564a0907ba00895c505d101b99af78345f1acf929b5c"
1343
+ dependencies = [
1344
+ "arrow",
1345
+ "datafusion-common",
1346
+ "datafusion-execution",
1347
+ "datafusion-expr",
1348
+ "datafusion-expr-common",
1349
+ "datafusion-physical-expr",
1350
+ "datafusion-physical-expr-common",
1351
+ "datafusion-physical-plan",
1352
+ "datafusion-pruning",
1353
+ "itertools 0.14.0",
1354
+ "log",
1355
+ "recursive",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "datafusion-physical-plan"
1360
+ version = "50.3.0"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "e2f7f778a1a838dec124efb96eae6144237d546945587557c9e6936b3414558c"
1363
+ dependencies = [
1364
+ "ahash",
1365
+ "arrow",
1366
+ "arrow-ord",
1367
+ "arrow-schema",
1368
+ "async-trait",
1369
+ "chrono",
1370
+ "datafusion-common",
1371
+ "datafusion-common-runtime",
1372
+ "datafusion-execution",
1373
+ "datafusion-expr",
1374
+ "datafusion-functions-aggregate-common",
1375
+ "datafusion-functions-window-common",
1376
+ "datafusion-physical-expr",
1377
+ "datafusion-physical-expr-common",
1378
+ "futures",
1379
+ "half",
1380
+ "hashbrown 0.14.5",
1381
+ "indexmap",
1382
+ "itertools 0.14.0",
1383
+ "log",
1384
+ "parking_lot",
1385
+ "pin-project-lite",
1386
+ "tokio",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "datafusion-pruning"
1391
+ version = "50.3.0"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "cd1e59e2ca14fe3c30f141600b10ad8815e2856caa59ebbd0e3e07cd3d127a65"
1394
+ dependencies = [
1395
+ "arrow",
1396
+ "arrow-schema",
1397
+ "datafusion-common",
1398
+ "datafusion-datasource",
1399
+ "datafusion-expr-common",
1400
+ "datafusion-physical-expr",
1401
+ "datafusion-physical-expr-common",
1402
+ "datafusion-physical-plan",
1403
+ "itertools 0.14.0",
1404
+ "log",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "datafusion-session"
1409
+ version = "50.3.0"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "21ef8e2745583619bd7a49474e8f45fbe98ebb31a133f27802217125a7b3d58d"
1412
+ dependencies = [
1413
+ "arrow",
1414
+ "async-trait",
1415
+ "dashmap",
1416
+ "datafusion-common",
1417
+ "datafusion-common-runtime",
1418
+ "datafusion-execution",
1419
+ "datafusion-expr",
1420
+ "datafusion-physical-expr",
1421
+ "datafusion-physical-plan",
1422
+ "datafusion-sql",
1423
+ "futures",
1424
+ "itertools 0.14.0",
1425
+ "log",
1426
+ "object_store",
1427
+ "parking_lot",
1428
+ "tokio",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "datafusion-sql"
1433
+ version = "50.3.0"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "89abd9868770386fede29e5a4b14f49c0bf48d652c3b9d7a8a0332329b87d50b"
1436
+ dependencies = [
1437
+ "arrow",
1438
+ "bigdecimal",
1439
+ "datafusion-common",
1440
+ "datafusion-expr",
1441
+ "indexmap",
1442
+ "log",
1443
+ "recursive",
1444
+ "regex",
1445
+ "sqlparser",
1446
+ ]
1447
+
1448
+ [[package]]
1449
+ name = "difflib"
1450
+ version = "0.4.0"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
1453
+
1454
+ [[package]]
1455
+ name = "digest"
1456
+ version = "0.10.7"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
1459
+ dependencies = [
1460
+ "block-buffer",
1461
+ "crypto-common",
1462
+ "subtle",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "displaydoc"
1467
+ version = "0.2.5"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1470
+ dependencies = [
1471
+ "proc-macro2",
1472
+ "quote",
1473
+ "syn",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "earcutr"
1478
+ version = "0.4.3"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "79127ed59a85d7687c409e9978547cffb7dc79675355ed22da6b66fd5f6ead01"
1481
+ dependencies = [
1482
+ "itertools 0.11.0",
1483
+ "num-traits",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "either"
1488
+ version = "1.15.0"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1491
+
1492
+ [[package]]
1493
+ name = "env_filter"
1494
+ version = "0.1.4"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
1497
+ dependencies = [
1498
+ "log",
1499
+ "regex",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "env_logger"
1504
+ version = "0.11.8"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
1507
+ dependencies = [
1508
+ "anstream",
1509
+ "anstyle",
1510
+ "env_filter",
1511
+ "jiff",
1512
+ "log",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "equivalent"
1517
+ version = "1.0.2"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1520
+
1521
+ [[package]]
1522
+ name = "errno"
1523
+ version = "0.3.14"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1526
+ dependencies = [
1527
+ "libc",
1528
+ "windows-sys 0.61.2",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "fastrand"
1533
+ version = "2.3.0"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1536
+
1537
+ [[package]]
1538
+ name = "find-msvc-tools"
1539
+ version = "0.1.5"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
1542
+
1543
+ [[package]]
1544
+ name = "fixedbitset"
1545
+ version = "0.5.7"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
1548
+
1549
+ [[package]]
1550
+ name = "flatbuffers"
1551
+ version = "25.12.19"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
1554
+ dependencies = [
1555
+ "bitflags",
1556
+ "rustc_version",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "flate2"
1561
+ version = "1.1.5"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
1564
+ dependencies = [
1565
+ "crc32fast",
1566
+ "libz-rs-sys",
1567
+ "miniz_oxide",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "float-cmp"
1572
+ version = "0.10.0"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
1575
+ dependencies = [
1576
+ "num-traits",
1577
+ ]
1578
+
1579
+ [[package]]
1580
+ name = "float_next_after"
1581
+ version = "1.0.0"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8"
1584
+
1585
+ [[package]]
1586
+ name = "fnv"
1587
+ version = "1.0.7"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1590
+
1591
+ [[package]]
1592
+ name = "foldhash"
1593
+ version = "0.1.5"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1596
+
1597
+ [[package]]
1598
+ name = "form_urlencoded"
1599
+ version = "1.2.2"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1602
+ dependencies = [
1603
+ "percent-encoding",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "futures"
1608
+ version = "0.3.31"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
1611
+ dependencies = [
1612
+ "futures-channel",
1613
+ "futures-core",
1614
+ "futures-executor",
1615
+ "futures-io",
1616
+ "futures-sink",
1617
+ "futures-task",
1618
+ "futures-util",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "futures-channel"
1623
+ version = "0.3.31"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
1626
+ dependencies = [
1627
+ "futures-core",
1628
+ "futures-sink",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "futures-core"
1633
+ version = "0.3.31"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
1636
+
1637
+ [[package]]
1638
+ name = "futures-executor"
1639
+ version = "0.3.31"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
1642
+ dependencies = [
1643
+ "futures-core",
1644
+ "futures-task",
1645
+ "futures-util",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "futures-io"
1650
+ version = "0.3.31"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
1653
+
1654
+ [[package]]
1655
+ name = "futures-macro"
1656
+ version = "0.3.31"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1659
+ dependencies = [
1660
+ "proc-macro2",
1661
+ "quote",
1662
+ "syn",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "futures-sink"
1667
+ version = "0.3.31"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
1670
+
1671
+ [[package]]
1672
+ name = "futures-task"
1673
+ version = "0.3.31"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
1676
+
1677
+ [[package]]
1678
+ name = "futures-util"
1679
+ version = "0.3.31"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
1682
+ dependencies = [
1683
+ "futures-channel",
1684
+ "futures-core",
1685
+ "futures-io",
1686
+ "futures-macro",
1687
+ "futures-sink",
1688
+ "futures-task",
1689
+ "memchr",
1690
+ "pin-project-lite",
1691
+ "pin-utils",
1692
+ "slab",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "generic-array"
1697
+ version = "0.14.7"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1700
+ dependencies = [
1701
+ "typenum",
1702
+ "version_check",
1703
+ ]
1704
+
1705
+ [[package]]
1706
+ name = "geo"
1707
+ version = "0.31.0"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "2fc1a1678e54befc9b4bcab6cd43b8e7f834ae8ea121118b0fd8c42747675b4a"
1710
+ dependencies = [
1711
+ "earcutr",
1712
+ "float_next_after",
1713
+ "geo-types",
1714
+ "geographiclib-rs",
1715
+ "i_overlay",
1716
+ "log",
1717
+ "num-traits",
1718
+ "robust",
1719
+ "rstar",
1720
+ "spade",
1721
+ ]
1722
+
1723
+ [[package]]
1724
+ name = "geo-types"
1725
+ version = "0.7.18"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "24f8647af4005fa11da47cd56252c6ef030be8fa97bdbf355e7dfb6348f0a82c"
1728
+ dependencies = [
1729
+ "approx",
1730
+ "num-traits",
1731
+ "rayon",
1732
+ "rstar",
1733
+ "serde",
1734
+ ]
1735
+
1736
+ [[package]]
1737
+ name = "geographiclib-rs"
1738
+ version = "0.2.5"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "f611040a2bb37eaa29a78a128d1e92a378a03e0b6e66ae27398d42b1ba9a7841"
1741
+ dependencies = [
1742
+ "libm",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "geojson"
1747
+ version = "0.24.2"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "e26f3c45b36fccc9cf2805e61d4da6bc4bbd5a3a9589b01afa3a40eff703bd79"
1750
+ dependencies = [
1751
+ "log",
1752
+ "serde",
1753
+ "serde_json",
1754
+ "thiserror 2.0.17",
1755
+ ]
1756
+
1757
+ [[package]]
1758
+ name = "geozero"
1759
+ version = "0.14.0"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "e5f28f34864745eb2f123c990c6ffd92c1584bd39439b3f27ff2a0f4ea5b309b"
1762
+ dependencies = [
1763
+ "geo-types",
1764
+ "geojson",
1765
+ "log",
1766
+ "scroll",
1767
+ "serde_json",
1768
+ "thiserror 1.0.69",
1769
+ "wkt",
1770
+ ]
1771
+
1772
+ [[package]]
1773
+ name = "getrandom"
1774
+ version = "0.2.16"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1777
+ dependencies = [
1778
+ "cfg-if",
1779
+ "js-sys",
1780
+ "libc",
1781
+ "wasi",
1782
+ "wasm-bindgen",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "getrandom"
1787
+ version = "0.3.4"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1790
+ dependencies = [
1791
+ "cfg-if",
1792
+ "js-sys",
1793
+ "libc",
1794
+ "r-efi",
1795
+ "wasip2",
1796
+ "wasm-bindgen",
1797
+ ]
1798
+
1799
+ [[package]]
1800
+ name = "glob"
1801
+ version = "0.3.3"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1804
+
1805
+ [[package]]
1806
+ name = "h2"
1807
+ version = "0.4.12"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
1810
+ dependencies = [
1811
+ "atomic-waker",
1812
+ "bytes",
1813
+ "fnv",
1814
+ "futures-core",
1815
+ "futures-sink",
1816
+ "http",
1817
+ "indexmap",
1818
+ "slab",
1819
+ "tokio",
1820
+ "tokio-util",
1821
+ "tracing",
1822
+ ]
1823
+
1824
+ [[package]]
1825
+ name = "half"
1826
+ version = "2.7.1"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1829
+ dependencies = [
1830
+ "cfg-if",
1831
+ "crunchy",
1832
+ "num-traits",
1833
+ "zerocopy",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "hash32"
1838
+ version = "0.3.1"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
1841
+ dependencies = [
1842
+ "byteorder",
1843
+ ]
1844
+
1845
+ [[package]]
1846
+ name = "hashbrown"
1847
+ version = "0.14.5"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1850
+ dependencies = [
1851
+ "ahash",
1852
+ "allocator-api2",
1853
+ ]
1854
+
1855
+ [[package]]
1856
+ name = "hashbrown"
1857
+ version = "0.15.5"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1860
+ dependencies = [
1861
+ "allocator-api2",
1862
+ "equivalent",
1863
+ "foldhash",
1864
+ ]
1865
+
1866
+ [[package]]
1867
+ name = "hashbrown"
1868
+ version = "0.16.1"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1871
+
1872
+ [[package]]
1873
+ name = "heapless"
1874
+ version = "0.8.0"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
1877
+ dependencies = [
1878
+ "hash32",
1879
+ "stable_deref_trait",
1880
+ ]
1881
+
1882
+ [[package]]
1883
+ name = "heck"
1884
+ version = "0.5.0"
1885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1887
+
1888
+ [[package]]
1889
+ name = "hermit-abi"
1890
+ version = "0.5.2"
1891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1892
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1893
+
1894
+ [[package]]
1895
+ name = "hex"
1896
+ version = "0.4.3"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1899
+
1900
+ [[package]]
1901
+ name = "http"
1902
+ version = "1.4.0"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1905
+ dependencies = [
1906
+ "bytes",
1907
+ "itoa",
1908
+ ]
1909
+
1910
+ [[package]]
1911
+ name = "http-body"
1912
+ version = "1.0.1"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1915
+ dependencies = [
1916
+ "bytes",
1917
+ "http",
1918
+ ]
1919
+
1920
+ [[package]]
1921
+ name = "http-body-util"
1922
+ version = "0.1.3"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1925
+ dependencies = [
1926
+ "bytes",
1927
+ "futures-core",
1928
+ "http",
1929
+ "http-body",
1930
+ "pin-project-lite",
1931
+ ]
1932
+
1933
+ [[package]]
1934
+ name = "httparse"
1935
+ version = "1.10.1"
1936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1937
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1938
+
1939
+ [[package]]
1940
+ name = "humantime"
1941
+ version = "2.3.0"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
1944
+
1945
+ [[package]]
1946
+ name = "hyper"
1947
+ version = "1.8.1"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1950
+ dependencies = [
1951
+ "atomic-waker",
1952
+ "bytes",
1953
+ "futures-channel",
1954
+ "futures-core",
1955
+ "h2",
1956
+ "http",
1957
+ "http-body",
1958
+ "httparse",
1959
+ "itoa",
1960
+ "pin-project-lite",
1961
+ "pin-utils",
1962
+ "smallvec",
1963
+ "tokio",
1964
+ "want",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "hyper-rustls"
1969
+ version = "0.27.7"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1972
+ dependencies = [
1973
+ "http",
1974
+ "hyper",
1975
+ "hyper-util",
1976
+ "rustls",
1977
+ "rustls-native-certs",
1978
+ "rustls-pki-types",
1979
+ "tokio",
1980
+ "tokio-rustls",
1981
+ "tower-service",
1982
+ ]
1983
+
1984
+ [[package]]
1985
+ name = "hyper-util"
1986
+ version = "0.1.19"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
1989
+ dependencies = [
1990
+ "base64",
1991
+ "bytes",
1992
+ "futures-channel",
1993
+ "futures-core",
1994
+ "futures-util",
1995
+ "http",
1996
+ "http-body",
1997
+ "hyper",
1998
+ "ipnet",
1999
+ "libc",
2000
+ "percent-encoding",
2001
+ "pin-project-lite",
2002
+ "socket2",
2003
+ "tokio",
2004
+ "tower-service",
2005
+ "tracing",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "i_float"
2010
+ version = "1.15.0"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "010025c2c532c8d82e42d0b8bb5184afa449fa6f06c709ea9adcb16c49ae405b"
2013
+ dependencies = [
2014
+ "libm",
2015
+ ]
2016
+
2017
+ [[package]]
2018
+ name = "i_key_sort"
2019
+ version = "0.6.0"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "9190f86706ca38ac8add223b2aed8b1330002b5cdbbce28fb58b10914d38fc27"
2022
+
2023
+ [[package]]
2024
+ name = "i_overlay"
2025
+ version = "4.0.6"
2026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2027
+ checksum = "0fcccbd4e4274e0f80697f5fbc6540fdac533cce02f2081b328e68629cce24f9"
2028
+ dependencies = [
2029
+ "i_float",
2030
+ "i_key_sort",
2031
+ "i_shape",
2032
+ "i_tree",
2033
+ "rayon",
2034
+ ]
2035
+
2036
+ [[package]]
2037
+ name = "i_shape"
2038
+ version = "1.14.0"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "1ea154b742f7d43dae2897fcd5ead86bc7b5eefcedd305a7ebf9f69d44d61082"
2041
+ dependencies = [
2042
+ "i_float",
2043
+ ]
2044
+
2045
+ [[package]]
2046
+ name = "i_tree"
2047
+ version = "0.16.0"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "35e6d558e6d4c7b82bc51d9c771e7a927862a161a7d87bf2b0541450e0e20915"
2050
+
2051
+ [[package]]
2052
+ name = "iana-time-zone"
2053
+ version = "0.1.64"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
2056
+ dependencies = [
2057
+ "android_system_properties",
2058
+ "core-foundation-sys",
2059
+ "iana-time-zone-haiku",
2060
+ "js-sys",
2061
+ "log",
2062
+ "wasm-bindgen",
2063
+ "windows-core",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "iana-time-zone-haiku"
2068
+ version = "0.1.2"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2071
+ dependencies = [
2072
+ "cc",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "icu_collections"
2077
+ version = "2.1.1"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
2080
+ dependencies = [
2081
+ "displaydoc",
2082
+ "potential_utf",
2083
+ "yoke",
2084
+ "zerofrom",
2085
+ "zerovec",
2086
+ ]
2087
+
2088
+ [[package]]
2089
+ name = "icu_locale_core"
2090
+ version = "2.1.1"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
2093
+ dependencies = [
2094
+ "displaydoc",
2095
+ "litemap",
2096
+ "tinystr",
2097
+ "writeable",
2098
+ "zerovec",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "icu_normalizer"
2103
+ version = "2.1.1"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
2106
+ dependencies = [
2107
+ "icu_collections",
2108
+ "icu_normalizer_data",
2109
+ "icu_properties",
2110
+ "icu_provider",
2111
+ "smallvec",
2112
+ "zerovec",
2113
+ ]
2114
+
2115
+ [[package]]
2116
+ name = "icu_normalizer_data"
2117
+ version = "2.1.1"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
2120
+
2121
+ [[package]]
2122
+ name = "icu_properties"
2123
+ version = "2.1.2"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
2126
+ dependencies = [
2127
+ "icu_collections",
2128
+ "icu_locale_core",
2129
+ "icu_properties_data",
2130
+ "icu_provider",
2131
+ "zerotrie",
2132
+ "zerovec",
2133
+ ]
2134
+
2135
+ [[package]]
2136
+ name = "icu_properties_data"
2137
+ version = "2.1.2"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
2140
+
2141
+ [[package]]
2142
+ name = "icu_provider"
2143
+ version = "2.1.1"
2144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2145
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
2146
+ dependencies = [
2147
+ "displaydoc",
2148
+ "icu_locale_core",
2149
+ "writeable",
2150
+ "yoke",
2151
+ "zerofrom",
2152
+ "zerotrie",
2153
+ "zerovec",
2154
+ ]
2155
+
2156
+ [[package]]
2157
+ name = "idna"
2158
+ version = "1.1.0"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
2161
+ dependencies = [
2162
+ "idna_adapter",
2163
+ "smallvec",
2164
+ "utf8_iter",
2165
+ ]
2166
+
2167
+ [[package]]
2168
+ name = "idna_adapter"
2169
+ version = "1.2.1"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
2172
+ dependencies = [
2173
+ "icu_normalizer",
2174
+ "icu_properties",
2175
+ ]
2176
+
2177
+ [[package]]
2178
+ name = "indexmap"
2179
+ version = "2.12.1"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
2182
+ dependencies = [
2183
+ "equivalent",
2184
+ "hashbrown 0.16.1",
2185
+ ]
2186
+
2187
+ [[package]]
2188
+ name = "integer-encoding"
2189
+ version = "3.0.4"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
2192
+
2193
+ [[package]]
2194
+ name = "ipnet"
2195
+ version = "2.11.0"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
2198
+
2199
+ [[package]]
2200
+ name = "iri-string"
2201
+ version = "0.7.9"
2202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2203
+ checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
2204
+ dependencies = [
2205
+ "memchr",
2206
+ "serde",
2207
+ ]
2208
+
2209
+ [[package]]
2210
+ name = "is_terminal_polyfill"
2211
+ version = "1.70.2"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
2214
+
2215
+ [[package]]
2216
+ name = "itertools"
2217
+ version = "0.11.0"
2218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2219
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
2220
+ dependencies = [
2221
+ "either",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "itertools"
2226
+ version = "0.14.0"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
2229
+ dependencies = [
2230
+ "either",
2231
+ ]
2232
+
2233
+ [[package]]
2234
+ name = "itoa"
2235
+ version = "1.0.16"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "7ee5b5339afb4c41626dde77b7a611bd4f2c202b897852b4bcf5d03eddc61010"
2238
+
2239
+ [[package]]
2240
+ name = "jiff"
2241
+ version = "0.2.16"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35"
2244
+ dependencies = [
2245
+ "jiff-static",
2246
+ "log",
2247
+ "portable-atomic",
2248
+ "portable-atomic-util",
2249
+ "serde_core",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "jiff-static"
2254
+ version = "0.2.16"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69"
2257
+ dependencies = [
2258
+ "proc-macro2",
2259
+ "quote",
2260
+ "syn",
2261
+ ]
2262
+
2263
+ [[package]]
2264
+ name = "jobserver"
2265
+ version = "0.1.34"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
2268
+ dependencies = [
2269
+ "getrandom 0.3.4",
2270
+ "libc",
2271
+ ]
2272
+
2273
+ [[package]]
2274
+ name = "js-sys"
2275
+ version = "0.3.83"
2276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2277
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
2278
+ dependencies = [
2279
+ "once_cell",
2280
+ "wasm-bindgen",
2281
+ ]
2282
+
2283
+ [[package]]
2284
+ name = "lexical-core"
2285
+ version = "1.0.6"
2286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2287
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
2288
+ dependencies = [
2289
+ "lexical-parse-float",
2290
+ "lexical-parse-integer",
2291
+ "lexical-util",
2292
+ "lexical-write-float",
2293
+ "lexical-write-integer",
2294
+ ]
2295
+
2296
+ [[package]]
2297
+ name = "lexical-parse-float"
2298
+ version = "1.0.6"
2299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2300
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
2301
+ dependencies = [
2302
+ "lexical-parse-integer",
2303
+ "lexical-util",
2304
+ ]
2305
+
2306
+ [[package]]
2307
+ name = "lexical-parse-integer"
2308
+ version = "1.0.6"
2309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2310
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
2311
+ dependencies = [
2312
+ "lexical-util",
2313
+ ]
2314
+
2315
+ [[package]]
2316
+ name = "lexical-util"
2317
+ version = "1.0.7"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
2320
+
2321
+ [[package]]
2322
+ name = "lexical-write-float"
2323
+ version = "1.0.6"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
2326
+ dependencies = [
2327
+ "lexical-util",
2328
+ "lexical-write-integer",
2329
+ ]
2330
+
2331
+ [[package]]
2332
+ name = "lexical-write-integer"
2333
+ version = "1.0.6"
2334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2335
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
2336
+ dependencies = [
2337
+ "lexical-util",
2338
+ ]
2339
+
2340
+ [[package]]
2341
+ name = "libbz2-rs-sys"
2342
+ version = "0.2.2"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
2345
+
2346
+ [[package]]
2347
+ name = "libc"
2348
+ version = "0.2.178"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
2351
+
2352
+ [[package]]
2353
+ name = "libm"
2354
+ version = "0.2.15"
2355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2356
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
2357
+
2358
+ [[package]]
2359
+ name = "libz-rs-sys"
2360
+ version = "0.5.4"
2361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2362
+ checksum = "15413ef615ad868d4d65dce091cb233b229419c7c0c4bcaa746c0901c49ff39c"
2363
+ dependencies = [
2364
+ "zlib-rs",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "linux-raw-sys"
2369
+ version = "0.11.0"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
2372
+
2373
+ [[package]]
2374
+ name = "litemap"
2375
+ version = "0.8.1"
2376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2377
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
2378
+
2379
+ [[package]]
2380
+ name = "lock_api"
2381
+ version = "0.4.14"
2382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2383
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
2384
+ dependencies = [
2385
+ "scopeguard",
2386
+ ]
2387
+
2388
+ [[package]]
2389
+ name = "log"
2390
+ version = "0.4.29"
2391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2392
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
2393
+
2394
+ [[package]]
2395
+ name = "lru-slab"
2396
+ version = "0.1.2"
2397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2398
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2399
+
2400
+ [[package]]
2401
+ name = "lz4_flex"
2402
+ version = "0.11.5"
2403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2404
+ checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
2405
+ dependencies = [
2406
+ "twox-hash",
2407
+ ]
2408
+
2409
+ [[package]]
2410
+ name = "lzma-sys"
2411
+ version = "0.1.20"
2412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2413
+ checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
2414
+ dependencies = [
2415
+ "cc",
2416
+ "libc",
2417
+ "pkg-config",
2418
+ ]
2419
+
2420
+ [[package]]
2421
+ name = "md-5"
2422
+ version = "0.10.6"
2423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2424
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
2425
+ dependencies = [
2426
+ "cfg-if",
2427
+ "digest",
2428
+ ]
2429
+
2430
+ [[package]]
2431
+ name = "memchr"
2432
+ version = "2.7.6"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
2435
+
2436
+ [[package]]
2437
+ name = "miniz_oxide"
2438
+ version = "0.8.9"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2441
+ dependencies = [
2442
+ "adler2",
2443
+ "simd-adler32",
2444
+ ]
2445
+
2446
+ [[package]]
2447
+ name = "mio"
2448
+ version = "1.1.1"
2449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2450
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
2451
+ dependencies = [
2452
+ "libc",
2453
+ "wasi",
2454
+ "windows-sys 0.61.2",
2455
+ ]
2456
+
2457
+ [[package]]
2458
+ name = "normalize-line-endings"
2459
+ version = "0.3.0"
2460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2461
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
2462
+
2463
+ [[package]]
2464
+ name = "num"
2465
+ version = "0.4.3"
2466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2467
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
2468
+ dependencies = [
2469
+ "num-bigint",
2470
+ "num-complex",
2471
+ "num-integer",
2472
+ "num-iter",
2473
+ "num-rational",
2474
+ "num-traits",
2475
+ ]
2476
+
2477
+ [[package]]
2478
+ name = "num-bigint"
2479
+ version = "0.4.6"
2480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2481
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2482
+ dependencies = [
2483
+ "num-integer",
2484
+ "num-traits",
2485
+ ]
2486
+
2487
+ [[package]]
2488
+ name = "num-complex"
2489
+ version = "0.4.6"
2490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2491
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
2492
+ dependencies = [
2493
+ "num-traits",
2494
+ ]
2495
+
2496
+ [[package]]
2497
+ name = "num-integer"
2498
+ version = "0.1.46"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2501
+ dependencies = [
2502
+ "num-traits",
2503
+ ]
2504
+
2505
+ [[package]]
2506
+ name = "num-iter"
2507
+ version = "0.1.45"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2510
+ dependencies = [
2511
+ "autocfg",
2512
+ "num-integer",
2513
+ "num-traits",
2514
+ ]
2515
+
2516
+ [[package]]
2517
+ name = "num-rational"
2518
+ version = "0.4.2"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
2521
+ dependencies = [
2522
+ "num-bigint",
2523
+ "num-integer",
2524
+ "num-traits",
2525
+ ]
2526
+
2527
+ [[package]]
2528
+ name = "num-traits"
2529
+ version = "0.2.19"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2532
+ dependencies = [
2533
+ "autocfg",
2534
+ "libm",
2535
+ ]
2536
+
2537
+ [[package]]
2538
+ name = "num_cpus"
2539
+ version = "1.17.0"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2542
+ dependencies = [
2543
+ "hermit-abi",
2544
+ "libc",
2545
+ ]
2546
+
2547
+ [[package]]
2548
+ name = "object"
2549
+ version = "0.32.2"
2550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2551
+ checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
2552
+ dependencies = [
2553
+ "memchr",
2554
+ ]
2555
+
2556
+ [[package]]
2557
+ name = "object_store"
2558
+ version = "0.12.4"
2559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2560
+ checksum = "4c1be0c6c22ec0817cdc77d3842f721a17fd30ab6965001415b5402a74e6b740"
2561
+ dependencies = [
2562
+ "async-trait",
2563
+ "base64",
2564
+ "bytes",
2565
+ "chrono",
2566
+ "form_urlencoded",
2567
+ "futures",
2568
+ "http",
2569
+ "http-body-util",
2570
+ "humantime",
2571
+ "hyper",
2572
+ "itertools 0.14.0",
2573
+ "parking_lot",
2574
+ "percent-encoding",
2575
+ "quick-xml",
2576
+ "rand 0.9.2",
2577
+ "reqwest",
2578
+ "ring",
2579
+ "serde",
2580
+ "serde_json",
2581
+ "serde_urlencoded",
2582
+ "thiserror 2.0.17",
2583
+ "tokio",
2584
+ "tracing",
2585
+ "url",
2586
+ "walkdir",
2587
+ "wasm-bindgen-futures",
2588
+ "web-time",
2589
+ ]
2590
+
2591
+ [[package]]
2592
+ name = "once_cell"
2593
+ version = "1.21.3"
2594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2595
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2596
+
2597
+ [[package]]
2598
+ name = "once_cell_polyfill"
2599
+ version = "1.70.2"
2600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2601
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2602
+
2603
+ [[package]]
2604
+ name = "openssl-probe"
2605
+ version = "0.1.6"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
2608
+
2609
+ [[package]]
2610
+ name = "ordered-float"
2611
+ version = "2.10.1"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
2614
+ dependencies = [
2615
+ "num-traits",
2616
+ ]
2617
+
2618
+ [[package]]
2619
+ name = "parking_lot"
2620
+ version = "0.12.5"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2623
+ dependencies = [
2624
+ "lock_api",
2625
+ "parking_lot_core",
2626
+ ]
2627
+
2628
+ [[package]]
2629
+ name = "parking_lot_core"
2630
+ version = "0.9.12"
2631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2632
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2633
+ dependencies = [
2634
+ "cfg-if",
2635
+ "libc",
2636
+ "redox_syscall",
2637
+ "smallvec",
2638
+ "windows-link",
2639
+ ]
2640
+
2641
+ [[package]]
2642
+ name = "parquet"
2643
+ version = "56.2.0"
2644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2645
+ checksum = "f0dbd48ad52d7dccf8ea1b90a3ddbfaea4f69878dd7683e51c507d4bc52b5b27"
2646
+ dependencies = [
2647
+ "ahash",
2648
+ "arrow-array",
2649
+ "arrow-buffer",
2650
+ "arrow-cast",
2651
+ "arrow-data",
2652
+ "arrow-ipc",
2653
+ "arrow-schema",
2654
+ "arrow-select",
2655
+ "base64",
2656
+ "brotli",
2657
+ "bytes",
2658
+ "chrono",
2659
+ "flate2",
2660
+ "futures",
2661
+ "half",
2662
+ "hashbrown 0.16.1",
2663
+ "lz4_flex",
2664
+ "num",
2665
+ "num-bigint",
2666
+ "object_store",
2667
+ "paste",
2668
+ "ring",
2669
+ "seq-macro",
2670
+ "simdutf8",
2671
+ "snap",
2672
+ "thrift",
2673
+ "tokio",
2674
+ "twox-hash",
2675
+ "zstd",
2676
+ ]
2677
+
2678
+ [[package]]
2679
+ name = "paste"
2680
+ version = "1.0.15"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2683
+
2684
+ [[package]]
2685
+ name = "percent-encoding"
2686
+ version = "2.3.2"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2689
+
2690
+ [[package]]
2691
+ name = "petgraph"
2692
+ version = "0.8.3"
2693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2694
+ checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
2695
+ dependencies = [
2696
+ "fixedbitset",
2697
+ "hashbrown 0.15.5",
2698
+ "indexmap",
2699
+ "serde",
2700
+ ]
2701
+
2702
+ [[package]]
2703
+ name = "phf"
2704
+ version = "0.12.1"
2705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2706
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
2707
+ dependencies = [
2708
+ "phf_shared",
2709
+ ]
2710
+
2711
+ [[package]]
2712
+ name = "phf_shared"
2713
+ version = "0.12.1"
2714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2715
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
2716
+ dependencies = [
2717
+ "siphasher",
2718
+ ]
2719
+
2720
+ [[package]]
2721
+ name = "pin-project-lite"
2722
+ version = "0.2.16"
2723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2724
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2725
+
2726
+ [[package]]
2727
+ name = "pin-utils"
2728
+ version = "0.1.0"
2729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2730
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2731
+
2732
+ [[package]]
2733
+ name = "pkg-config"
2734
+ version = "0.3.32"
2735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2736
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2737
+
2738
+ [[package]]
2739
+ name = "portable-atomic"
2740
+ version = "1.12.0"
2741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2742
+ checksum = "f59e70c4aef1e55797c2e8fd94a4f2a973fc972cfde0e0b05f683667b0cd39dd"
2743
+
2744
+ [[package]]
2745
+ name = "portable-atomic-util"
2746
+ version = "0.2.4"
2747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2748
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
2749
+ dependencies = [
2750
+ "portable-atomic",
2751
+ ]
2752
+
2753
+ [[package]]
2754
+ name = "potential_utf"
2755
+ version = "0.1.4"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2758
+ dependencies = [
2759
+ "zerovec",
2760
+ ]
2761
+
2762
+ [[package]]
2763
+ name = "ppv-lite86"
2764
+ version = "0.2.21"
2765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2766
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2767
+ dependencies = [
2768
+ "zerocopy",
2769
+ ]
2770
+
2771
+ [[package]]
2772
+ name = "predicates"
2773
+ version = "3.1.3"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
2776
+ dependencies = [
2777
+ "anstyle",
2778
+ "difflib",
2779
+ "float-cmp",
2780
+ "normalize-line-endings",
2781
+ "predicates-core",
2782
+ "regex",
2783
+ ]
2784
+
2785
+ [[package]]
2786
+ name = "predicates-core"
2787
+ version = "1.0.9"
2788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2789
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
2790
+
2791
+ [[package]]
2792
+ name = "predicates-tree"
2793
+ version = "1.0.12"
2794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
2796
+ dependencies = [
2797
+ "predicates-core",
2798
+ "termtree",
2799
+ ]
2800
+
2801
+ [[package]]
2802
+ name = "proc-macro2"
2803
+ version = "1.0.103"
2804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2805
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
2806
+ dependencies = [
2807
+ "unicode-ident",
2808
+ ]
2809
+
2810
+ [[package]]
2811
+ name = "psm"
2812
+ version = "0.1.28"
2813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2814
+ checksum = "d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01"
2815
+ dependencies = [
2816
+ "ar_archive_writer",
2817
+ "cc",
2818
+ ]
2819
+
2820
+ [[package]]
2821
+ name = "quick-xml"
2822
+ version = "0.38.4"
2823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2824
+ checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
2825
+ dependencies = [
2826
+ "memchr",
2827
+ "serde",
2828
+ ]
2829
+
2830
+ [[package]]
2831
+ name = "quinn"
2832
+ version = "0.11.9"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2835
+ dependencies = [
2836
+ "bytes",
2837
+ "cfg_aliases",
2838
+ "pin-project-lite",
2839
+ "quinn-proto",
2840
+ "quinn-udp",
2841
+ "rustc-hash",
2842
+ "rustls",
2843
+ "socket2",
2844
+ "thiserror 2.0.17",
2845
+ "tokio",
2846
+ "tracing",
2847
+ "web-time",
2848
+ ]
2849
+
2850
+ [[package]]
2851
+ name = "quinn-proto"
2852
+ version = "0.11.13"
2853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2854
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2855
+ dependencies = [
2856
+ "bytes",
2857
+ "getrandom 0.3.4",
2858
+ "lru-slab",
2859
+ "rand 0.9.2",
2860
+ "ring",
2861
+ "rustc-hash",
2862
+ "rustls",
2863
+ "rustls-pki-types",
2864
+ "slab",
2865
+ "thiserror 2.0.17",
2866
+ "tinyvec",
2867
+ "tracing",
2868
+ "web-time",
2869
+ ]
2870
+
2871
+ [[package]]
2872
+ name = "quinn-udp"
2873
+ version = "0.5.14"
2874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2875
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2876
+ dependencies = [
2877
+ "cfg_aliases",
2878
+ "libc",
2879
+ "once_cell",
2880
+ "socket2",
2881
+ "tracing",
2882
+ "windows-sys 0.60.2",
2883
+ ]
2884
+
2885
+ [[package]]
2886
+ name = "quote"
2887
+ version = "1.0.42"
2888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2889
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
2890
+ dependencies = [
2891
+ "proc-macro2",
2892
+ ]
2893
+
2894
+ [[package]]
2895
+ name = "r-efi"
2896
+ version = "5.3.0"
2897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2898
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2899
+
2900
+ [[package]]
2901
+ name = "rand"
2902
+ version = "0.8.5"
2903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2904
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2905
+ dependencies = [
2906
+ "libc",
2907
+ "rand_chacha 0.3.1",
2908
+ "rand_core 0.6.4",
2909
+ ]
2910
+
2911
+ [[package]]
2912
+ name = "rand"
2913
+ version = "0.9.2"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2916
+ dependencies = [
2917
+ "rand_chacha 0.9.0",
2918
+ "rand_core 0.9.3",
2919
+ ]
2920
+
2921
+ [[package]]
2922
+ name = "rand_chacha"
2923
+ version = "0.3.1"
2924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2925
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2926
+ dependencies = [
2927
+ "ppv-lite86",
2928
+ "rand_core 0.6.4",
2929
+ ]
2930
+
2931
+ [[package]]
2932
+ name = "rand_chacha"
2933
+ version = "0.9.0"
2934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2935
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2936
+ dependencies = [
2937
+ "ppv-lite86",
2938
+ "rand_core 0.9.3",
2939
+ ]
2940
+
2941
+ [[package]]
2942
+ name = "rand_core"
2943
+ version = "0.6.4"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2946
+ dependencies = [
2947
+ "getrandom 0.2.16",
2948
+ ]
2949
+
2950
+ [[package]]
2951
+ name = "rand_core"
2952
+ version = "0.9.3"
2953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2954
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2955
+ dependencies = [
2956
+ "getrandom 0.3.4",
2957
+ ]
2958
+
2959
+ [[package]]
2960
+ name = "rayon"
2961
+ version = "1.11.0"
2962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2963
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2964
+ dependencies = [
2965
+ "either",
2966
+ "rayon-core",
2967
+ ]
2968
+
2969
+ [[package]]
2970
+ name = "rayon-core"
2971
+ version = "1.13.0"
2972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2973
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2974
+ dependencies = [
2975
+ "crossbeam-deque",
2976
+ "crossbeam-utils",
2977
+ ]
2978
+
2979
+ [[package]]
2980
+ name = "recursive"
2981
+ version = "0.1.1"
2982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2983
+ checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
2984
+ dependencies = [
2985
+ "recursive-proc-macro-impl",
2986
+ "stacker",
2987
+ ]
2988
+
2989
+ [[package]]
2990
+ name = "recursive-proc-macro-impl"
2991
+ version = "0.1.1"
2992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2993
+ checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
2994
+ dependencies = [
2995
+ "quote",
2996
+ "syn",
2997
+ ]
2998
+
2999
+ [[package]]
3000
+ name = "redox_syscall"
3001
+ version = "0.5.18"
3002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3003
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
3004
+ dependencies = [
3005
+ "bitflags",
3006
+ ]
3007
+
3008
+ [[package]]
3009
+ name = "regex"
3010
+ version = "1.12.2"
3011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3012
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
3013
+ dependencies = [
3014
+ "aho-corasick",
3015
+ "memchr",
3016
+ "regex-automata",
3017
+ "regex-syntax",
3018
+ ]
3019
+
3020
+ [[package]]
3021
+ name = "regex-automata"
3022
+ version = "0.4.13"
3023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3024
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
3025
+ dependencies = [
3026
+ "aho-corasick",
3027
+ "memchr",
3028
+ "regex-syntax",
3029
+ ]
3030
+
3031
+ [[package]]
3032
+ name = "regex-syntax"
3033
+ version = "0.8.8"
3034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3035
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
3036
+
3037
+ [[package]]
3038
+ name = "reqwest"
3039
+ version = "0.12.26"
3040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3041
+ checksum = "3b4c14b2d9afca6a60277086b0cc6a6ae0b568f6f7916c943a8cdc79f8be240f"
3042
+ dependencies = [
3043
+ "base64",
3044
+ "bytes",
3045
+ "futures-core",
3046
+ "futures-util",
3047
+ "h2",
3048
+ "http",
3049
+ "http-body",
3050
+ "http-body-util",
3051
+ "hyper",
3052
+ "hyper-rustls",
3053
+ "hyper-util",
3054
+ "js-sys",
3055
+ "log",
3056
+ "percent-encoding",
3057
+ "pin-project-lite",
3058
+ "quinn",
3059
+ "rustls",
3060
+ "rustls-native-certs",
3061
+ "rustls-pki-types",
3062
+ "serde",
3063
+ "serde_json",
3064
+ "serde_urlencoded",
3065
+ "sync_wrapper",
3066
+ "tokio",
3067
+ "tokio-rustls",
3068
+ "tokio-util",
3069
+ "tower",
3070
+ "tower-http",
3071
+ "tower-service",
3072
+ "url",
3073
+ "wasm-bindgen",
3074
+ "wasm-bindgen-futures",
3075
+ "wasm-streams",
3076
+ "web-sys",
3077
+ ]
3078
+
3079
+ [[package]]
3080
+ name = "ring"
3081
+ version = "0.17.14"
3082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3083
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3084
+ dependencies = [
3085
+ "cc",
3086
+ "cfg-if",
3087
+ "getrandom 0.2.16",
3088
+ "libc",
3089
+ "untrusted",
3090
+ "windows-sys 0.52.0",
3091
+ ]
3092
+
3093
+ [[package]]
3094
+ name = "robust"
3095
+ version = "1.2.0"
3096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3097
+ checksum = "4e27ee8bb91ca0adcf0ecb116293afa12d393f9c2b9b9cd54d33e8078fe19839"
3098
+
3099
+ [[package]]
3100
+ name = "rstar"
3101
+ version = "0.12.2"
3102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3103
+ checksum = "421400d13ccfd26dfa5858199c30a5d76f9c54e0dba7575273025b43c5175dbb"
3104
+ dependencies = [
3105
+ "heapless",
3106
+ "num-traits",
3107
+ "smallvec",
3108
+ ]
3109
+
3110
+ [[package]]
3111
+ name = "rustc-hash"
3112
+ version = "2.1.1"
3113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3114
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
3115
+
3116
+ [[package]]
3117
+ name = "rustc_version"
3118
+ version = "0.4.1"
3119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3120
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3121
+ dependencies = [
3122
+ "semver",
3123
+ ]
3124
+
3125
+ [[package]]
3126
+ name = "rustix"
3127
+ version = "1.1.2"
3128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3129
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
3130
+ dependencies = [
3131
+ "bitflags",
3132
+ "errno",
3133
+ "libc",
3134
+ "linux-raw-sys",
3135
+ "windows-sys 0.61.2",
3136
+ ]
3137
+
3138
+ [[package]]
3139
+ name = "rustls"
3140
+ version = "0.23.35"
3141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3142
+ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
3143
+ dependencies = [
3144
+ "once_cell",
3145
+ "ring",
3146
+ "rustls-pki-types",
3147
+ "rustls-webpki",
3148
+ "subtle",
3149
+ "zeroize",
3150
+ ]
3151
+
3152
+ [[package]]
3153
+ name = "rustls-native-certs"
3154
+ version = "0.8.2"
3155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3156
+ checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923"
3157
+ dependencies = [
3158
+ "openssl-probe",
3159
+ "rustls-pki-types",
3160
+ "schannel",
3161
+ "security-framework",
3162
+ ]
3163
+
3164
+ [[package]]
3165
+ name = "rustls-pki-types"
3166
+ version = "1.13.2"
3167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3168
+ checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
3169
+ dependencies = [
3170
+ "web-time",
3171
+ "zeroize",
3172
+ ]
3173
+
3174
+ [[package]]
3175
+ name = "rustls-webpki"
3176
+ version = "0.103.8"
3177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3178
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
3179
+ dependencies = [
3180
+ "ring",
3181
+ "rustls-pki-types",
3182
+ "untrusted",
3183
+ ]
3184
+
3185
+ [[package]]
3186
+ name = "rustversion"
3187
+ version = "1.0.22"
3188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3189
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3190
+
3191
+ [[package]]
3192
+ name = "ryu"
3193
+ version = "1.0.21"
3194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3195
+ checksum = "62049b2877bf12821e8f9ad256ee38fdc31db7387ec2d3b3f403024de2034aea"
3196
+
3197
+ [[package]]
3198
+ name = "same-file"
3199
+ version = "1.0.6"
3200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3201
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3202
+ dependencies = [
3203
+ "winapi-util",
3204
+ ]
3205
+
3206
+ [[package]]
3207
+ name = "schannel"
3208
+ version = "0.1.28"
3209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3210
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
3211
+ dependencies = [
3212
+ "windows-sys 0.61.2",
3213
+ ]
3214
+
3215
+ [[package]]
3216
+ name = "scopeguard"
3217
+ version = "1.2.0"
3218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3219
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3220
+
3221
+ [[package]]
3222
+ name = "scroll"
3223
+ version = "0.11.0"
3224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3225
+ checksum = "04c565b551bafbef4157586fa379538366e4385d42082f255bfd96e4fe8519da"
3226
+
3227
+ [[package]]
3228
+ name = "security-framework"
3229
+ version = "3.5.1"
3230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3231
+ checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
3232
+ dependencies = [
3233
+ "bitflags",
3234
+ "core-foundation",
3235
+ "core-foundation-sys",
3236
+ "libc",
3237
+ "security-framework-sys",
3238
+ ]
3239
+
3240
+ [[package]]
3241
+ name = "security-framework-sys"
3242
+ version = "2.15.0"
3243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3244
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
3245
+ dependencies = [
3246
+ "core-foundation-sys",
3247
+ "libc",
3248
+ ]
3249
+
3250
+ [[package]]
3251
+ name = "semver"
3252
+ version = "1.0.27"
3253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3254
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
3255
+
3256
+ [[package]]
3257
+ name = "seq-macro"
3258
+ version = "0.3.6"
3259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3260
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
3261
+
3262
+ [[package]]
3263
+ name = "serde"
3264
+ version = "1.0.228"
3265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3266
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3267
+ dependencies = [
3268
+ "serde_core",
3269
+ "serde_derive",
3270
+ ]
3271
+
3272
+ [[package]]
3273
+ name = "serde_core"
3274
+ version = "1.0.228"
3275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3276
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3277
+ dependencies = [
3278
+ "serde_derive",
3279
+ ]
3280
+
3281
+ [[package]]
3282
+ name = "serde_derive"
3283
+ version = "1.0.228"
3284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3285
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3286
+ dependencies = [
3287
+ "proc-macro2",
3288
+ "quote",
3289
+ "syn",
3290
+ ]
3291
+
3292
+ [[package]]
3293
+ name = "serde_json"
3294
+ version = "1.0.145"
3295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3296
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
3297
+ dependencies = [
3298
+ "itoa",
3299
+ "memchr",
3300
+ "ryu",
3301
+ "serde",
3302
+ "serde_core",
3303
+ ]
3304
+
3305
+ [[package]]
3306
+ name = "serde_urlencoded"
3307
+ version = "0.7.1"
3308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3309
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3310
+ dependencies = [
3311
+ "form_urlencoded",
3312
+ "itoa",
3313
+ "ryu",
3314
+ "serde",
3315
+ ]
3316
+
3317
+ [[package]]
3318
+ name = "serde_yaml"
3319
+ version = "0.9.34+deprecated"
3320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3321
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
3322
+ dependencies = [
3323
+ "indexmap",
3324
+ "itoa",
3325
+ "ryu",
3326
+ "serde",
3327
+ "unsafe-libyaml",
3328
+ ]
3329
+
3330
+ [[package]]
3331
+ name = "sha2"
3332
+ version = "0.10.9"
3333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3334
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3335
+ dependencies = [
3336
+ "cfg-if",
3337
+ "cpufeatures",
3338
+ "digest",
3339
+ ]
3340
+
3341
+ [[package]]
3342
+ name = "shlex"
3343
+ version = "1.3.0"
3344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3345
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3346
+
3347
+ [[package]]
3348
+ name = "signal-hook-registry"
3349
+ version = "1.4.7"
3350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3351
+ checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad"
3352
+ dependencies = [
3353
+ "libc",
3354
+ ]
3355
+
3356
+ [[package]]
3357
+ name = "simd-adler32"
3358
+ version = "0.3.8"
3359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3360
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
3361
+
3362
+ [[package]]
3363
+ name = "simdutf8"
3364
+ version = "0.1.5"
3365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3366
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
3367
+
3368
+ [[package]]
3369
+ name = "siphasher"
3370
+ version = "1.0.1"
3371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3372
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
3373
+
3374
+ [[package]]
3375
+ name = "slab"
3376
+ version = "0.4.11"
3377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3378
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
3379
+
3380
+ [[package]]
3381
+ name = "smallvec"
3382
+ version = "1.15.1"
3383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3384
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3385
+
3386
+ [[package]]
3387
+ name = "snap"
3388
+ version = "1.1.1"
3389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3390
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
3391
+
3392
+ [[package]]
3393
+ name = "socket2"
3394
+ version = "0.6.1"
3395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3396
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
3397
+ dependencies = [
3398
+ "libc",
3399
+ "windows-sys 0.60.2",
3400
+ ]
3401
+
3402
+ [[package]]
3403
+ name = "spade"
3404
+ version = "2.15.0"
3405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3406
+ checksum = "fb313e1c8afee5b5647e00ee0fe6855e3d529eb863a0fdae1d60006c4d1e9990"
3407
+ dependencies = [
3408
+ "hashbrown 0.15.5",
3409
+ "num-traits",
3410
+ "robust",
3411
+ "smallvec",
3412
+ ]
3413
+
3414
+ [[package]]
3415
+ name = "spatialbench"
3416
+ version = "0.1.0"
3417
+ dependencies = [
3418
+ "geo",
3419
+ "once_cell",
3420
+ "rand 0.8.5",
3421
+ "serde",
3422
+ ]
3423
+
3424
+ [[package]]
3425
+ name = "spatialbench-arrow"
3426
+ version = "0.1.0"
3427
+ dependencies = [
3428
+ "arrow",
3429
+ "arrow-csv",
3430
+ "chrono",
3431
+ "geo",
3432
+ "geozero",
3433
+ "spatialbench",
3434
+ ]
3435
+
3436
+ [[package]]
3437
+ name = "spatialbench-cli"
3438
+ version = "0.1.0"
3439
+ dependencies = [
3440
+ "anyhow",
3441
+ "arrow",
3442
+ "arrow-array",
3443
+ "arrow-schema",
3444
+ "assert_cmd",
3445
+ "clap",
3446
+ "datafusion",
3447
+ "env_logger",
3448
+ "flate2",
3449
+ "futures",
3450
+ "log",
3451
+ "num_cpus",
3452
+ "object_store",
3453
+ "parquet",
3454
+ "predicates",
3455
+ "serde",
3456
+ "serde_yaml",
3457
+ "spatialbench",
3458
+ "spatialbench-arrow",
3459
+ "tempfile",
3460
+ "tokio",
3461
+ "url",
3462
+ ]
3463
+
3464
+ [[package]]
3465
+ name = "sqlparser"
3466
+ version = "0.58.0"
3467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3468
+ checksum = "ec4b661c54b1e4b603b37873a18c59920e4c51ea8ea2cf527d925424dbd4437c"
3469
+ dependencies = [
3470
+ "log",
3471
+ "recursive",
3472
+ "sqlparser_derive",
3473
+ ]
3474
+
3475
+ [[package]]
3476
+ name = "sqlparser_derive"
3477
+ version = "0.3.0"
3478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3479
+ checksum = "da5fc6819faabb412da764b99d3b713bb55083c11e7e0c00144d386cd6a1939c"
3480
+ dependencies = [
3481
+ "proc-macro2",
3482
+ "quote",
3483
+ "syn",
3484
+ ]
3485
+
3486
+ [[package]]
3487
+ name = "stable_deref_trait"
3488
+ version = "1.2.1"
3489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3490
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3491
+
3492
+ [[package]]
3493
+ name = "stacker"
3494
+ version = "0.1.22"
3495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3496
+ checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59"
3497
+ dependencies = [
3498
+ "cc",
3499
+ "cfg-if",
3500
+ "libc",
3501
+ "psm",
3502
+ "windows-sys 0.59.0",
3503
+ ]
3504
+
3505
+ [[package]]
3506
+ name = "strsim"
3507
+ version = "0.11.1"
3508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3509
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3510
+
3511
+ [[package]]
3512
+ name = "strum"
3513
+ version = "0.26.3"
3514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3515
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
3516
+
3517
+ [[package]]
3518
+ name = "strum_macros"
3519
+ version = "0.26.4"
3520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3521
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
3522
+ dependencies = [
3523
+ "heck",
3524
+ "proc-macro2",
3525
+ "quote",
3526
+ "rustversion",
3527
+ "syn",
3528
+ ]
3529
+
3530
+ [[package]]
3531
+ name = "subtle"
3532
+ version = "2.6.1"
3533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3534
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3535
+
3536
+ [[package]]
3537
+ name = "syn"
3538
+ version = "2.0.111"
3539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3540
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
3541
+ dependencies = [
3542
+ "proc-macro2",
3543
+ "quote",
3544
+ "unicode-ident",
3545
+ ]
3546
+
3547
+ [[package]]
3548
+ name = "sync_wrapper"
3549
+ version = "1.0.2"
3550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3551
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3552
+ dependencies = [
3553
+ "futures-core",
3554
+ ]
3555
+
3556
+ [[package]]
3557
+ name = "synstructure"
3558
+ version = "0.13.2"
3559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3560
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3561
+ dependencies = [
3562
+ "proc-macro2",
3563
+ "quote",
3564
+ "syn",
3565
+ ]
3566
+
3567
+ [[package]]
3568
+ name = "tempfile"
3569
+ version = "3.23.0"
3570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3571
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
3572
+ dependencies = [
3573
+ "fastrand",
3574
+ "getrandom 0.3.4",
3575
+ "once_cell",
3576
+ "rustix",
3577
+ "windows-sys 0.61.2",
3578
+ ]
3579
+
3580
+ [[package]]
3581
+ name = "termtree"
3582
+ version = "0.5.1"
3583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3584
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
3585
+
3586
+ [[package]]
3587
+ name = "thiserror"
3588
+ version = "1.0.69"
3589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3590
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3591
+ dependencies = [
3592
+ "thiserror-impl 1.0.69",
3593
+ ]
3594
+
3595
+ [[package]]
3596
+ name = "thiserror"
3597
+ version = "2.0.17"
3598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3599
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
3600
+ dependencies = [
3601
+ "thiserror-impl 2.0.17",
3602
+ ]
3603
+
3604
+ [[package]]
3605
+ name = "thiserror-impl"
3606
+ version = "1.0.69"
3607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3608
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3609
+ dependencies = [
3610
+ "proc-macro2",
3611
+ "quote",
3612
+ "syn",
3613
+ ]
3614
+
3615
+ [[package]]
3616
+ name = "thiserror-impl"
3617
+ version = "2.0.17"
3618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3619
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
3620
+ dependencies = [
3621
+ "proc-macro2",
3622
+ "quote",
3623
+ "syn",
3624
+ ]
3625
+
3626
+ [[package]]
3627
+ name = "thrift"
3628
+ version = "0.17.0"
3629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3630
+ checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
3631
+ dependencies = [
3632
+ "byteorder",
3633
+ "integer-encoding",
3634
+ "ordered-float",
3635
+ ]
3636
+
3637
+ [[package]]
3638
+ name = "tiny-keccak"
3639
+ version = "2.0.2"
3640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3641
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
3642
+ dependencies = [
3643
+ "crunchy",
3644
+ ]
3645
+
3646
+ [[package]]
3647
+ name = "tinystr"
3648
+ version = "0.8.2"
3649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3650
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
3651
+ dependencies = [
3652
+ "displaydoc",
3653
+ "zerovec",
3654
+ ]
3655
+
3656
+ [[package]]
3657
+ name = "tinyvec"
3658
+ version = "1.10.0"
3659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3660
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3661
+ dependencies = [
3662
+ "tinyvec_macros",
3663
+ ]
3664
+
3665
+ [[package]]
3666
+ name = "tinyvec_macros"
3667
+ version = "0.1.1"
3668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3669
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3670
+
3671
+ [[package]]
3672
+ name = "tokio"
3673
+ version = "1.48.0"
3674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3675
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
3676
+ dependencies = [
3677
+ "bytes",
3678
+ "libc",
3679
+ "mio",
3680
+ "parking_lot",
3681
+ "pin-project-lite",
3682
+ "signal-hook-registry",
3683
+ "socket2",
3684
+ "tokio-macros",
3685
+ "windows-sys 0.61.2",
3686
+ ]
3687
+
3688
+ [[package]]
3689
+ name = "tokio-macros"
3690
+ version = "2.6.0"
3691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3692
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
3693
+ dependencies = [
3694
+ "proc-macro2",
3695
+ "quote",
3696
+ "syn",
3697
+ ]
3698
+
3699
+ [[package]]
3700
+ name = "tokio-rustls"
3701
+ version = "0.26.4"
3702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3703
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3704
+ dependencies = [
3705
+ "rustls",
3706
+ "tokio",
3707
+ ]
3708
+
3709
+ [[package]]
3710
+ name = "tokio-util"
3711
+ version = "0.7.17"
3712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3713
+ checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
3714
+ dependencies = [
3715
+ "bytes",
3716
+ "futures-core",
3717
+ "futures-sink",
3718
+ "pin-project-lite",
3719
+ "tokio",
3720
+ ]
3721
+
3722
+ [[package]]
3723
+ name = "tower"
3724
+ version = "0.5.2"
3725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3726
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3727
+ dependencies = [
3728
+ "futures-core",
3729
+ "futures-util",
3730
+ "pin-project-lite",
3731
+ "sync_wrapper",
3732
+ "tokio",
3733
+ "tower-layer",
3734
+ "tower-service",
3735
+ ]
3736
+
3737
+ [[package]]
3738
+ name = "tower-http"
3739
+ version = "0.6.8"
3740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3741
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3742
+ dependencies = [
3743
+ "bitflags",
3744
+ "bytes",
3745
+ "futures-util",
3746
+ "http",
3747
+ "http-body",
3748
+ "iri-string",
3749
+ "pin-project-lite",
3750
+ "tower",
3751
+ "tower-layer",
3752
+ "tower-service",
3753
+ ]
3754
+
3755
+ [[package]]
3756
+ name = "tower-layer"
3757
+ version = "0.3.3"
3758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3759
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3760
+
3761
+ [[package]]
3762
+ name = "tower-service"
3763
+ version = "0.3.3"
3764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3765
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3766
+
3767
+ [[package]]
3768
+ name = "tracing"
3769
+ version = "0.1.44"
3770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3771
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3772
+ dependencies = [
3773
+ "pin-project-lite",
3774
+ "tracing-attributes",
3775
+ "tracing-core",
3776
+ ]
3777
+
3778
+ [[package]]
3779
+ name = "tracing-attributes"
3780
+ version = "0.1.31"
3781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3782
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3783
+ dependencies = [
3784
+ "proc-macro2",
3785
+ "quote",
3786
+ "syn",
3787
+ ]
3788
+
3789
+ [[package]]
3790
+ name = "tracing-core"
3791
+ version = "0.1.36"
3792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3793
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3794
+ dependencies = [
3795
+ "once_cell",
3796
+ ]
3797
+
3798
+ [[package]]
3799
+ name = "try-lock"
3800
+ version = "0.2.5"
3801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3802
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3803
+
3804
+ [[package]]
3805
+ name = "twox-hash"
3806
+ version = "2.1.2"
3807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3808
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
3809
+
3810
+ [[package]]
3811
+ name = "typenum"
3812
+ version = "1.19.0"
3813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3814
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3815
+
3816
+ [[package]]
3817
+ name = "unicode-ident"
3818
+ version = "1.0.22"
3819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3820
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
3821
+
3822
+ [[package]]
3823
+ name = "unicode-segmentation"
3824
+ version = "1.12.0"
3825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3826
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3827
+
3828
+ [[package]]
3829
+ name = "unicode-width"
3830
+ version = "0.2.2"
3831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3832
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3833
+
3834
+ [[package]]
3835
+ name = "unsafe-libyaml"
3836
+ version = "0.2.11"
3837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3838
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
3839
+
3840
+ [[package]]
3841
+ name = "untrusted"
3842
+ version = "0.9.0"
3843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3844
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3845
+
3846
+ [[package]]
3847
+ name = "url"
3848
+ version = "2.5.7"
3849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3850
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
3851
+ dependencies = [
3852
+ "form_urlencoded",
3853
+ "idna",
3854
+ "percent-encoding",
3855
+ "serde",
3856
+ ]
3857
+
3858
+ [[package]]
3859
+ name = "utf8_iter"
3860
+ version = "1.0.4"
3861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3862
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3863
+
3864
+ [[package]]
3865
+ name = "utf8parse"
3866
+ version = "0.2.2"
3867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3868
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3869
+
3870
+ [[package]]
3871
+ name = "uuid"
3872
+ version = "1.19.0"
3873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3874
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
3875
+ dependencies = [
3876
+ "getrandom 0.3.4",
3877
+ "js-sys",
3878
+ "wasm-bindgen",
3879
+ ]
3880
+
3881
+ [[package]]
3882
+ name = "version_check"
3883
+ version = "0.9.5"
3884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3885
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3886
+
3887
+ [[package]]
3888
+ name = "wait-timeout"
3889
+ version = "0.2.1"
3890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3891
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3892
+ dependencies = [
3893
+ "libc",
3894
+ ]
3895
+
3896
+ [[package]]
3897
+ name = "walkdir"
3898
+ version = "2.5.0"
3899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3900
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3901
+ dependencies = [
3902
+ "same-file",
3903
+ "winapi-util",
3904
+ ]
3905
+
3906
+ [[package]]
3907
+ name = "want"
3908
+ version = "0.3.1"
3909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3910
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3911
+ dependencies = [
3912
+ "try-lock",
3913
+ ]
3914
+
3915
+ [[package]]
3916
+ name = "wasi"
3917
+ version = "0.11.1+wasi-snapshot-preview1"
3918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3919
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3920
+
3921
+ [[package]]
3922
+ name = "wasip2"
3923
+ version = "1.0.1+wasi-0.2.4"
3924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3925
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
3926
+ dependencies = [
3927
+ "wit-bindgen",
3928
+ ]
3929
+
3930
+ [[package]]
3931
+ name = "wasm-bindgen"
3932
+ version = "0.2.106"
3933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3934
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
3935
+ dependencies = [
3936
+ "cfg-if",
3937
+ "once_cell",
3938
+ "rustversion",
3939
+ "wasm-bindgen-macro",
3940
+ "wasm-bindgen-shared",
3941
+ ]
3942
+
3943
+ [[package]]
3944
+ name = "wasm-bindgen-futures"
3945
+ version = "0.4.56"
3946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3947
+ checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
3948
+ dependencies = [
3949
+ "cfg-if",
3950
+ "js-sys",
3951
+ "once_cell",
3952
+ "wasm-bindgen",
3953
+ "web-sys",
3954
+ ]
3955
+
3956
+ [[package]]
3957
+ name = "wasm-bindgen-macro"
3958
+ version = "0.2.106"
3959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3960
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
3961
+ dependencies = [
3962
+ "quote",
3963
+ "wasm-bindgen-macro-support",
3964
+ ]
3965
+
3966
+ [[package]]
3967
+ name = "wasm-bindgen-macro-support"
3968
+ version = "0.2.106"
3969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3970
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
3971
+ dependencies = [
3972
+ "bumpalo",
3973
+ "proc-macro2",
3974
+ "quote",
3975
+ "syn",
3976
+ "wasm-bindgen-shared",
3977
+ ]
3978
+
3979
+ [[package]]
3980
+ name = "wasm-bindgen-shared"
3981
+ version = "0.2.106"
3982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3983
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
3984
+ dependencies = [
3985
+ "unicode-ident",
3986
+ ]
3987
+
3988
+ [[package]]
3989
+ name = "wasm-streams"
3990
+ version = "0.4.2"
3991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3992
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3993
+ dependencies = [
3994
+ "futures-util",
3995
+ "js-sys",
3996
+ "wasm-bindgen",
3997
+ "wasm-bindgen-futures",
3998
+ "web-sys",
3999
+ ]
4000
+
4001
+ [[package]]
4002
+ name = "web-sys"
4003
+ version = "0.3.83"
4004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4005
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
4006
+ dependencies = [
4007
+ "js-sys",
4008
+ "wasm-bindgen",
4009
+ ]
4010
+
4011
+ [[package]]
4012
+ name = "web-time"
4013
+ version = "1.1.0"
4014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4015
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4016
+ dependencies = [
4017
+ "js-sys",
4018
+ "wasm-bindgen",
4019
+ ]
4020
+
4021
+ [[package]]
4022
+ name = "winapi-util"
4023
+ version = "0.1.11"
4024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4025
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4026
+ dependencies = [
4027
+ "windows-sys 0.61.2",
4028
+ ]
4029
+
4030
+ [[package]]
4031
+ name = "windows-core"
4032
+ version = "0.62.2"
4033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4034
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4035
+ dependencies = [
4036
+ "windows-implement",
4037
+ "windows-interface",
4038
+ "windows-link",
4039
+ "windows-result",
4040
+ "windows-strings",
4041
+ ]
4042
+
4043
+ [[package]]
4044
+ name = "windows-implement"
4045
+ version = "0.60.2"
4046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4047
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4048
+ dependencies = [
4049
+ "proc-macro2",
4050
+ "quote",
4051
+ "syn",
4052
+ ]
4053
+
4054
+ [[package]]
4055
+ name = "windows-interface"
4056
+ version = "0.59.3"
4057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4058
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4059
+ dependencies = [
4060
+ "proc-macro2",
4061
+ "quote",
4062
+ "syn",
4063
+ ]
4064
+
4065
+ [[package]]
4066
+ name = "windows-link"
4067
+ version = "0.2.1"
4068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4069
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4070
+
4071
+ [[package]]
4072
+ name = "windows-result"
4073
+ version = "0.4.1"
4074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4075
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4076
+ dependencies = [
4077
+ "windows-link",
4078
+ ]
4079
+
4080
+ [[package]]
4081
+ name = "windows-strings"
4082
+ version = "0.5.1"
4083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4084
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4085
+ dependencies = [
4086
+ "windows-link",
4087
+ ]
4088
+
4089
+ [[package]]
4090
+ name = "windows-sys"
4091
+ version = "0.52.0"
4092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4093
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4094
+ dependencies = [
4095
+ "windows-targets 0.52.6",
4096
+ ]
4097
+
4098
+ [[package]]
4099
+ name = "windows-sys"
4100
+ version = "0.59.0"
4101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4102
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4103
+ dependencies = [
4104
+ "windows-targets 0.52.6",
4105
+ ]
4106
+
4107
+ [[package]]
4108
+ name = "windows-sys"
4109
+ version = "0.60.2"
4110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4111
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4112
+ dependencies = [
4113
+ "windows-targets 0.53.5",
4114
+ ]
4115
+
4116
+ [[package]]
4117
+ name = "windows-sys"
4118
+ version = "0.61.2"
4119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4120
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4121
+ dependencies = [
4122
+ "windows-link",
4123
+ ]
4124
+
4125
+ [[package]]
4126
+ name = "windows-targets"
4127
+ version = "0.52.6"
4128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4129
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4130
+ dependencies = [
4131
+ "windows_aarch64_gnullvm 0.52.6",
4132
+ "windows_aarch64_msvc 0.52.6",
4133
+ "windows_i686_gnu 0.52.6",
4134
+ "windows_i686_gnullvm 0.52.6",
4135
+ "windows_i686_msvc 0.52.6",
4136
+ "windows_x86_64_gnu 0.52.6",
4137
+ "windows_x86_64_gnullvm 0.52.6",
4138
+ "windows_x86_64_msvc 0.52.6",
4139
+ ]
4140
+
4141
+ [[package]]
4142
+ name = "windows-targets"
4143
+ version = "0.53.5"
4144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4145
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4146
+ dependencies = [
4147
+ "windows-link",
4148
+ "windows_aarch64_gnullvm 0.53.1",
4149
+ "windows_aarch64_msvc 0.53.1",
4150
+ "windows_i686_gnu 0.53.1",
4151
+ "windows_i686_gnullvm 0.53.1",
4152
+ "windows_i686_msvc 0.53.1",
4153
+ "windows_x86_64_gnu 0.53.1",
4154
+ "windows_x86_64_gnullvm 0.53.1",
4155
+ "windows_x86_64_msvc 0.53.1",
4156
+ ]
4157
+
4158
+ [[package]]
4159
+ name = "windows_aarch64_gnullvm"
4160
+ version = "0.52.6"
4161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4162
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4163
+
4164
+ [[package]]
4165
+ name = "windows_aarch64_gnullvm"
4166
+ version = "0.53.1"
4167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4168
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4169
+
4170
+ [[package]]
4171
+ name = "windows_aarch64_msvc"
4172
+ version = "0.52.6"
4173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4174
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4175
+
4176
+ [[package]]
4177
+ name = "windows_aarch64_msvc"
4178
+ version = "0.53.1"
4179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4180
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4181
+
4182
+ [[package]]
4183
+ name = "windows_i686_gnu"
4184
+ version = "0.52.6"
4185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4186
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4187
+
4188
+ [[package]]
4189
+ name = "windows_i686_gnu"
4190
+ version = "0.53.1"
4191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4192
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4193
+
4194
+ [[package]]
4195
+ name = "windows_i686_gnullvm"
4196
+ version = "0.52.6"
4197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4198
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4199
+
4200
+ [[package]]
4201
+ name = "windows_i686_gnullvm"
4202
+ version = "0.53.1"
4203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4204
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4205
+
4206
+ [[package]]
4207
+ name = "windows_i686_msvc"
4208
+ version = "0.52.6"
4209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4210
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4211
+
4212
+ [[package]]
4213
+ name = "windows_i686_msvc"
4214
+ version = "0.53.1"
4215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4216
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4217
+
4218
+ [[package]]
4219
+ name = "windows_x86_64_gnu"
4220
+ version = "0.52.6"
4221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4222
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4223
+
4224
+ [[package]]
4225
+ name = "windows_x86_64_gnu"
4226
+ version = "0.53.1"
4227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4228
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4229
+
4230
+ [[package]]
4231
+ name = "windows_x86_64_gnullvm"
4232
+ version = "0.52.6"
4233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4234
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4235
+
4236
+ [[package]]
4237
+ name = "windows_x86_64_gnullvm"
4238
+ version = "0.53.1"
4239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4240
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4241
+
4242
+ [[package]]
4243
+ name = "windows_x86_64_msvc"
4244
+ version = "0.52.6"
4245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4246
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4247
+
4248
+ [[package]]
4249
+ name = "windows_x86_64_msvc"
4250
+ version = "0.53.1"
4251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4252
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4253
+
4254
+ [[package]]
4255
+ name = "wit-bindgen"
4256
+ version = "0.46.0"
4257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4258
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
4259
+
4260
+ [[package]]
4261
+ name = "wkt"
4262
+ version = "0.11.1"
4263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4264
+ checksum = "54f7f1ff4ea4c18936d6cd26a6fd24f0003af37e951a8e0e8b9e9a2d0bd0a46d"
4265
+ dependencies = [
4266
+ "geo-types",
4267
+ "log",
4268
+ "num-traits",
4269
+ "thiserror 1.0.69",
4270
+ ]
4271
+
4272
+ [[package]]
4273
+ name = "writeable"
4274
+ version = "0.6.2"
4275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4276
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
4277
+
4278
+ [[package]]
4279
+ name = "xz2"
4280
+ version = "0.1.7"
4281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4282
+ checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
4283
+ dependencies = [
4284
+ "lzma-sys",
4285
+ ]
4286
+
4287
+ [[package]]
4288
+ name = "yoke"
4289
+ version = "0.8.1"
4290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4291
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
4292
+ dependencies = [
4293
+ "stable_deref_trait",
4294
+ "yoke-derive",
4295
+ "zerofrom",
4296
+ ]
4297
+
4298
+ [[package]]
4299
+ name = "yoke-derive"
4300
+ version = "0.8.1"
4301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4302
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
4303
+ dependencies = [
4304
+ "proc-macro2",
4305
+ "quote",
4306
+ "syn",
4307
+ "synstructure",
4308
+ ]
4309
+
4310
+ [[package]]
4311
+ name = "zerocopy"
4312
+ version = "0.8.31"
4313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4314
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
4315
+ dependencies = [
4316
+ "zerocopy-derive",
4317
+ ]
4318
+
4319
+ [[package]]
4320
+ name = "zerocopy-derive"
4321
+ version = "0.8.31"
4322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4323
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
4324
+ dependencies = [
4325
+ "proc-macro2",
4326
+ "quote",
4327
+ "syn",
4328
+ ]
4329
+
4330
+ [[package]]
4331
+ name = "zerofrom"
4332
+ version = "0.1.6"
4333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4334
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4335
+ dependencies = [
4336
+ "zerofrom-derive",
4337
+ ]
4338
+
4339
+ [[package]]
4340
+ name = "zerofrom-derive"
4341
+ version = "0.1.6"
4342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4343
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4344
+ dependencies = [
4345
+ "proc-macro2",
4346
+ "quote",
4347
+ "syn",
4348
+ "synstructure",
4349
+ ]
4350
+
4351
+ [[package]]
4352
+ name = "zeroize"
4353
+ version = "1.8.2"
4354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4355
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4356
+
4357
+ [[package]]
4358
+ name = "zerotrie"
4359
+ version = "0.2.3"
4360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4361
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
4362
+ dependencies = [
4363
+ "displaydoc",
4364
+ "yoke",
4365
+ "zerofrom",
4366
+ ]
4367
+
4368
+ [[package]]
4369
+ name = "zerovec"
4370
+ version = "0.11.5"
4371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4372
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
4373
+ dependencies = [
4374
+ "yoke",
4375
+ "zerofrom",
4376
+ "zerovec-derive",
4377
+ ]
4378
+
4379
+ [[package]]
4380
+ name = "zerovec-derive"
4381
+ version = "0.11.2"
4382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4383
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
4384
+ dependencies = [
4385
+ "proc-macro2",
4386
+ "quote",
4387
+ "syn",
4388
+ ]
4389
+
4390
+ [[package]]
4391
+ name = "zlib-rs"
4392
+ version = "0.5.4"
4393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4394
+ checksum = "51f936044d677be1a1168fae1d03b583a285a5dd9d8cbf7b24c23aa1fc775235"
4395
+
4396
+ [[package]]
4397
+ name = "zstd"
4398
+ version = "0.13.3"
4399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4400
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4401
+ dependencies = [
4402
+ "zstd-safe",
4403
+ ]
4404
+
4405
+ [[package]]
4406
+ name = "zstd-safe"
4407
+ version = "7.2.4"
4408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4409
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4410
+ dependencies = [
4411
+ "zstd-sys",
4412
+ ]
4413
+
4414
+ [[package]]
4415
+ name = "zstd-sys"
4416
+ version = "2.0.16+zstd.1.5.7"
4417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4418
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4419
+ dependencies = [
4420
+ "cc",
4421
+ "pkg-config",
4422
+ ]