dxcore 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. dxcore-0.1.1/Cargo.lock +3599 -0
  2. dxcore-0.1.1/Cargo.toml +15 -0
  3. dxcore-0.1.1/LICENSE +21 -0
  4. dxcore-0.1.1/PKG-INFO +74 -0
  5. dxcore-0.1.1/README.md +60 -0
  6. dxcore-0.1.1/crates/core/Cargo.toml +49 -0
  7. dxcore-0.1.1/crates/core/examples/five_factor.rs +223 -0
  8. dxcore-0.1.1/crates/core/examples/serve_data_source.rs +41 -0
  9. dxcore-0.1.1/crates/core/examples/serve_portfolio.rs +44 -0
  10. dxcore-0.1.1/crates/core/examples/strategy.rs +73 -0
  11. dxcore-0.1.1/crates/core/examples/xbrl_poll.rs +63 -0
  12. dxcore-0.1.1/crates/core/src/cli/mesh.rs +178 -0
  13. dxcore-0.1.1/crates/core/src/cli/mod.rs +1 -0
  14. dxcore-0.1.1/crates/core/src/core/account.rs +8 -0
  15. dxcore-0.1.1/crates/core/src/core/instrument.rs +16 -0
  16. dxcore-0.1.1/crates/core/src/core/mod.rs +9 -0
  17. dxcore-0.1.1/crates/core/src/core/portfolio.rs +49 -0
  18. dxcore-0.1.1/crates/core/src/core/store.rs +36 -0
  19. dxcore-0.1.1/crates/core/src/dataframe.rs +45 -0
  20. dxcore-0.1.1/crates/core/src/interface/external/fmp.rs +90 -0
  21. dxcore-0.1.1/crates/core/src/interface/external/guardian.rs +115 -0
  22. dxcore-0.1.1/crates/core/src/interface/external/ibkr.rs +177 -0
  23. dxcore-0.1.1/crates/core/src/interface/external/mod.rs +5 -0
  24. dxcore-0.1.1/crates/core/src/interface/external/xbrl.rs +158 -0
  25. dxcore-0.1.1/crates/core/src/interface/internal/mod.rs +0 -0
  26. dxcore-0.1.1/crates/core/src/interface/mod.rs +96 -0
  27. dxcore-0.1.1/crates/core/src/interface/stream.rs +71 -0
  28. dxcore-0.1.1/crates/core/src/lib.rs +66 -0
  29. dxcore-0.1.1/crates/core/src/main.rs +181 -0
  30. dxcore-0.1.1/crates/core/src/network/mesh/mod.rs +278 -0
  31. dxcore-0.1.1/crates/core/src/network/mod.rs +8 -0
  32. dxcore-0.1.1/crates/core/src/network/servers/http.rs +163 -0
  33. dxcore-0.1.1/crates/core/src/network/servers/mod.rs +3 -0
  34. dxcore-0.1.1/crates/core/src/network/services/mod.rs +312 -0
  35. dxcore-0.1.1/crates/core/src/serialization/core.rs +63 -0
  36. dxcore-0.1.1/crates/core/src/serialization/dataframe.rs +55 -0
  37. dxcore-0.1.1/crates/core/src/serialization/error.rs +56 -0
  38. dxcore-0.1.1/crates/core/src/serialization/mod.rs +16 -0
  39. dxcore-0.1.1/crates/core/src/serialization/protocol.rs +5 -0
  40. dxcore-0.1.1/crates/core/src/serialization/registry.rs +176 -0
  41. dxcore-0.1.1/crates/core/src/serialization/trait_.rs +75 -0
  42. dxcore-0.1.1/crates/core/src/serialization/value.rs +15 -0
  43. dxcore-0.1.1/crates/core/src/strategies/factor/five_factor.rs +351 -0
  44. dxcore-0.1.1/crates/core/src/strategies/factor/mod.rs +3 -0
  45. dxcore-0.1.1/crates/core/src/strategies/mod.rs +6 -0
  46. dxcore-0.1.1/crates/core/src/strategies/sma.rs +148 -0
  47. dxcore-0.1.1/crates/core/src/trading/executor/async_.rs +185 -0
  48. dxcore-0.1.1/crates/core/src/trading/executor/mod.rs +15 -0
  49. dxcore-0.1.1/crates/core/src/trading/executor/sync.rs +86 -0
  50. dxcore-0.1.1/crates/core/src/trading/mod.rs +10 -0
  51. dxcore-0.1.1/crates/core/src/trading/schema.rs +29 -0
  52. dxcore-0.1.1/crates/core/src/trading/strategy/base.rs +24 -0
  53. dxcore-0.1.1/crates/core/src/trading/strategy/mod.rs +7 -0
  54. dxcore-0.1.1/crates/core/src/trading/strategy/single.rs +19 -0
  55. dxcore-0.1.1/crates/core/src/trading/strategy/streamed.rs +57 -0
  56. dxcore-0.1.1/crates/core/src/trading/view/daily.rs +63 -0
  57. dxcore-0.1.1/crates/core/src/trading/view/mod.rs +24 -0
  58. dxcore-0.1.1/crates/core/src/trading/view/panel.rs +87 -0
  59. dxcore-0.1.1/crates/core/src/trading/view/tick.rs +44 -0
  60. dxcore-0.1.1/crates/core/tests/cli.rs +45 -0
  61. dxcore-0.1.1/crates/core/tests/core.rs +165 -0
  62. dxcore-0.1.1/crates/core/tests/guardian.rs +39 -0
  63. dxcore-0.1.1/crates/core/tests/interface.rs +225 -0
  64. dxcore-0.1.1/crates/core/tests/mesh.rs +219 -0
  65. dxcore-0.1.1/crates/core/tests/network.rs +217 -0
  66. dxcore-0.1.1/crates/core/tests/stream.rs +117 -0
  67. dxcore-0.1.1/crates/core/tests/trading/executor_async.rs +65 -0
  68. dxcore-0.1.1/crates/core/tests/trading/executor_sync.rs +220 -0
  69. dxcore-0.1.1/crates/core/tests/trading/helpers.rs +25 -0
  70. dxcore-0.1.1/crates/core/tests/trading/main.rs +8 -0
  71. dxcore-0.1.1/crates/core/tests/trading/schema.rs +43 -0
  72. dxcore-0.1.1/crates/core/tests/trading/view_daily.rs +69 -0
  73. dxcore-0.1.1/crates/core/tests/trading/view_panel.rs +62 -0
  74. dxcore-0.1.1/crates/core/tests/trading/view_tick.rs +49 -0
  75. dxcore-0.1.1/crates/core/tests/xbrl.rs +30 -0
  76. dxcore-0.1.1/crates/pybindings/Cargo.toml +33 -0
  77. dxcore-0.1.1/crates/pybindings/src/core.rs +215 -0
  78. dxcore-0.1.1/crates/pybindings/src/dataframe.rs +83 -0
  79. dxcore-0.1.1/crates/pybindings/src/interface/external/fmp.rs +186 -0
  80. dxcore-0.1.1/crates/pybindings/src/interface/external/guardian.rs +172 -0
  81. dxcore-0.1.1/crates/pybindings/src/interface/external/ibkr.rs +163 -0
  82. dxcore-0.1.1/crates/pybindings/src/interface/external/mod.rs +25 -0
  83. dxcore-0.1.1/crates/pybindings/src/interface/external/xbrl.rs +76 -0
  84. dxcore-0.1.1/crates/pybindings/src/interface/mod.rs +9 -0
  85. dxcore-0.1.1/crates/pybindings/src/lib.rs +16 -0
  86. dxcore-0.1.1/crates/pybindings/src/trading/executor.rs +219 -0
  87. dxcore-0.1.1/crates/pybindings/src/trading/mod.rs +11 -0
  88. dxcore-0.1.1/crates/pybindings/src/trading/strategy.rs +150 -0
  89. dxcore-0.1.1/crates/pybindings/src/trading/view.rs +40 -0
  90. dxcore-0.1.1/crates/pybindings/tests/test_bindings.py +204 -0
  91. dxcore-0.1.1/pyproject.toml +32 -0
@@ -0,0 +1,3599 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom 0.3.4",
13
+ "once_cell",
14
+ "version_check",
15
+ "zerocopy",
16
+ ]
17
+
18
+ [[package]]
19
+ name = "aho-corasick"
20
+ version = "1.1.4"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
23
+ dependencies = [
24
+ "memchr",
25
+ ]
26
+
27
+ [[package]]
28
+ name = "allocator-api2"
29
+ version = "0.2.21"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
32
+
33
+ [[package]]
34
+ name = "android_system_properties"
35
+ version = "0.1.5"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
38
+ dependencies = [
39
+ "libc",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "anyhow"
44
+ version = "1.0.102"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
47
+
48
+ [[package]]
49
+ name = "ar_archive_writer"
50
+ version = "0.5.1"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b"
53
+ dependencies = [
54
+ "object",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "argminmax"
59
+ version = "0.6.3"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
62
+ dependencies = [
63
+ "num-traits",
64
+ ]
65
+
66
+ [[package]]
67
+ name = "array-init-cursor"
68
+ version = "0.2.1"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
71
+
72
+ [[package]]
73
+ name = "ascii"
74
+ version = "1.1.0"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
77
+
78
+ [[package]]
79
+ name = "async-stream"
80
+ version = "0.3.6"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
83
+ dependencies = [
84
+ "async-stream-impl",
85
+ "futures-core",
86
+ "pin-project-lite",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "async-stream-impl"
91
+ version = "0.3.6"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
94
+ dependencies = [
95
+ "proc-macro2",
96
+ "quote",
97
+ "syn 2.0.117",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "async-trait"
102
+ version = "0.1.89"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
105
+ dependencies = [
106
+ "proc-macro2",
107
+ "quote",
108
+ "syn 2.0.117",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "atoi_simd"
113
+ version = "0.16.1"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "c2a49e05797ca52e312a0c658938b7d00693ef037799ef7187678f212d7684cf"
116
+ dependencies = [
117
+ "debug_unsafe",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "atomic-waker"
122
+ version = "1.1.2"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
125
+
126
+ [[package]]
127
+ name = "autocfg"
128
+ version = "1.5.1"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
131
+
132
+ [[package]]
133
+ name = "base64"
134
+ version = "0.22.1"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
137
+
138
+ [[package]]
139
+ name = "bitflags"
140
+ version = "2.11.1"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
143
+
144
+ [[package]]
145
+ name = "bumpalo"
146
+ version = "3.20.3"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
149
+
150
+ [[package]]
151
+ name = "bytemuck"
152
+ version = "1.25.0"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
155
+ dependencies = [
156
+ "bytemuck_derive",
157
+ ]
158
+
159
+ [[package]]
160
+ name = "bytemuck_derive"
161
+ version = "1.10.2"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
164
+ dependencies = [
165
+ "proc-macro2",
166
+ "quote",
167
+ "syn 2.0.117",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "byteorder"
172
+ version = "1.5.0"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
175
+
176
+ [[package]]
177
+ name = "bytes"
178
+ version = "1.11.1"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
181
+ dependencies = [
182
+ "serde",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "castaway"
187
+ version = "0.2.4"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
190
+ dependencies = [
191
+ "rustversion",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "cc"
196
+ version = "1.2.63"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
199
+ dependencies = [
200
+ "find-msvc-tools",
201
+ "jobserver",
202
+ "libc",
203
+ "shlex",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "cfg-if"
208
+ version = "1.0.4"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
211
+
212
+ [[package]]
213
+ name = "cfg_aliases"
214
+ version = "0.2.2"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
217
+
218
+ [[package]]
219
+ name = "chacha20"
220
+ version = "0.10.1"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
223
+ dependencies = [
224
+ "cfg-if",
225
+ "cpufeatures",
226
+ "rand_core 0.10.1",
227
+ ]
228
+
229
+ [[package]]
230
+ name = "chrono"
231
+ version = "0.4.44"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
234
+ dependencies = [
235
+ "iana-time-zone",
236
+ "num-traits",
237
+ "windows-link",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "chrono-tz"
242
+ version = "0.10.4"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
245
+ dependencies = [
246
+ "chrono",
247
+ "phf 0.12.1",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "chunked_transfer"
252
+ version = "1.5.0"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901"
255
+
256
+ [[package]]
257
+ name = "comfy-table"
258
+ version = "7.2.2"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
261
+ dependencies = [
262
+ "crossterm",
263
+ "unicode-segmentation",
264
+ "unicode-width",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "compact_str"
269
+ version = "0.8.2"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "7fd622ebbb56a5b2ccb651b32b911cdeb2a9b4b11776b2473bf26a26a286244e"
272
+ dependencies = [
273
+ "castaway",
274
+ "cfg-if",
275
+ "itoa",
276
+ "rustversion",
277
+ "ryu",
278
+ "serde",
279
+ "static_assertions",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "core-foundation-sys"
284
+ version = "0.8.7"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
287
+
288
+ [[package]]
289
+ name = "cpufeatures"
290
+ version = "0.3.0"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
293
+ dependencies = [
294
+ "libc",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "crossbeam"
299
+ version = "0.8.4"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
302
+ dependencies = [
303
+ "crossbeam-channel",
304
+ "crossbeam-deque",
305
+ "crossbeam-epoch",
306
+ "crossbeam-queue",
307
+ "crossbeam-utils",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "crossbeam-channel"
312
+ version = "0.5.15"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
315
+ dependencies = [
316
+ "crossbeam-utils",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "crossbeam-deque"
321
+ version = "0.8.6"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
324
+ dependencies = [
325
+ "crossbeam-epoch",
326
+ "crossbeam-utils",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "crossbeam-epoch"
331
+ version = "0.9.18"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
334
+ dependencies = [
335
+ "crossbeam-utils",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "crossbeam-queue"
340
+ version = "0.3.12"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
343
+ dependencies = [
344
+ "crossbeam-utils",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "crossbeam-utils"
349
+ version = "0.8.21"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
352
+
353
+ [[package]]
354
+ name = "crossterm"
355
+ version = "0.29.0"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
358
+ dependencies = [
359
+ "bitflags",
360
+ "crossterm_winapi",
361
+ "document-features",
362
+ "parking_lot",
363
+ "rustix",
364
+ "winapi",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "crossterm_winapi"
369
+ version = "0.9.1"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
372
+ dependencies = [
373
+ "winapi",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "debug_unsafe"
378
+ version = "0.1.4"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "7eed2c4702fa172d1ce21078faa7c5203e69f5394d48cc436d25928394a867a2"
381
+
382
+ [[package]]
383
+ name = "deranged"
384
+ version = "0.5.8"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
387
+ dependencies = [
388
+ "powerfmt",
389
+ "serde_core",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "displaydoc"
394
+ version = "0.2.7"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
397
+ dependencies = [
398
+ "proc-macro2",
399
+ "quote",
400
+ "syn 3.0.3",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "document-features"
405
+ version = "0.2.12"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
408
+ dependencies = [
409
+ "litrs",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "dotenvy"
414
+ version = "0.15.7"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
417
+
418
+ [[package]]
419
+ name = "dxcore"
420
+ version = "0.1.0"
421
+ dependencies = [
422
+ "dotenvy",
423
+ "futures",
424
+ "ibapi",
425
+ "polars",
426
+ "reqwest",
427
+ "serde",
428
+ "serde_json",
429
+ "tiny_http",
430
+ "tokio",
431
+ "tokio-stream",
432
+ "uuid",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "dxcore-pyo3"
437
+ version = "0.1.0"
438
+ dependencies = [
439
+ "crossbeam-channel",
440
+ "dxcore",
441
+ "futures",
442
+ "ibapi",
443
+ "polars",
444
+ "pyo3",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "dyn-clone"
449
+ version = "1.0.20"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
452
+
453
+ [[package]]
454
+ name = "either"
455
+ version = "1.16.0"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
458
+
459
+ [[package]]
460
+ name = "enum_dispatch"
461
+ version = "0.3.13"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
464
+ dependencies = [
465
+ "once_cell",
466
+ "proc-macro2",
467
+ "quote",
468
+ "syn 2.0.117",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "equivalent"
473
+ version = "1.0.2"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
476
+
477
+ [[package]]
478
+ name = "errno"
479
+ version = "0.3.14"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
482
+ dependencies = [
483
+ "libc",
484
+ "windows-sys 0.61.2",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "ethnum"
489
+ version = "1.5.3"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "40404c3f5f511ec4da6fe866ddf6a717c309fdbb69fbbad7b0f3edab8f2e835f"
492
+
493
+ [[package]]
494
+ name = "fallible-streaming-iterator"
495
+ version = "0.1.9"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
498
+
499
+ [[package]]
500
+ name = "fast-float2"
501
+ version = "0.2.3"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
504
+
505
+ [[package]]
506
+ name = "find-msvc-tools"
507
+ version = "0.1.9"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
510
+
511
+ [[package]]
512
+ name = "float-cmp"
513
+ version = "0.10.0"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
516
+ dependencies = [
517
+ "num-traits",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "foldhash"
522
+ version = "0.1.5"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
525
+
526
+ [[package]]
527
+ name = "form_urlencoded"
528
+ version = "1.2.2"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
531
+ dependencies = [
532
+ "percent-encoding",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "futures"
537
+ version = "0.3.32"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
540
+ dependencies = [
541
+ "futures-channel",
542
+ "futures-core",
543
+ "futures-executor",
544
+ "futures-io",
545
+ "futures-sink",
546
+ "futures-task",
547
+ "futures-util",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "futures-channel"
552
+ version = "0.3.32"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
555
+ dependencies = [
556
+ "futures-core",
557
+ "futures-sink",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "futures-core"
562
+ version = "0.3.32"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
565
+
566
+ [[package]]
567
+ name = "futures-executor"
568
+ version = "0.3.32"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
571
+ dependencies = [
572
+ "futures-core",
573
+ "futures-task",
574
+ "futures-util",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "futures-io"
579
+ version = "0.3.32"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
582
+
583
+ [[package]]
584
+ name = "futures-macro"
585
+ version = "0.3.32"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
588
+ dependencies = [
589
+ "proc-macro2",
590
+ "quote",
591
+ "syn 2.0.117",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "futures-sink"
596
+ version = "0.3.32"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
599
+
600
+ [[package]]
601
+ name = "futures-task"
602
+ version = "0.3.32"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
605
+
606
+ [[package]]
607
+ name = "futures-util"
608
+ version = "0.3.32"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
611
+ dependencies = [
612
+ "futures-channel",
613
+ "futures-core",
614
+ "futures-io",
615
+ "futures-macro",
616
+ "futures-sink",
617
+ "futures-task",
618
+ "memchr",
619
+ "pin-project-lite",
620
+ "slab",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "getrandom"
625
+ version = "0.2.17"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
628
+ dependencies = [
629
+ "cfg-if",
630
+ "js-sys",
631
+ "libc",
632
+ "wasi",
633
+ "wasm-bindgen",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "getrandom"
638
+ version = "0.3.4"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
641
+ dependencies = [
642
+ "cfg-if",
643
+ "libc",
644
+ "r-efi 5.3.0",
645
+ "wasip2",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "getrandom"
650
+ version = "0.4.2"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
653
+ dependencies = [
654
+ "cfg-if",
655
+ "js-sys",
656
+ "libc",
657
+ "r-efi 6.0.0",
658
+ "rand_core 0.10.1",
659
+ "wasip2",
660
+ "wasip3",
661
+ "wasm-bindgen",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "glob"
666
+ version = "0.3.3"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
669
+
670
+ [[package]]
671
+ name = "halfbrown"
672
+ version = "0.2.5"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "8588661a8607108a5ca69cab034063441a0413a0b041c13618a7dd348021ef6f"
675
+ dependencies = [
676
+ "hashbrown 0.14.5",
677
+ "serde",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "hashbrown"
682
+ version = "0.14.5"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
685
+ dependencies = [
686
+ "ahash",
687
+ "allocator-api2",
688
+ "rayon",
689
+ "serde",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "hashbrown"
694
+ version = "0.15.5"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
697
+ dependencies = [
698
+ "allocator-api2",
699
+ "equivalent",
700
+ "foldhash",
701
+ "rayon",
702
+ "serde",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "hashbrown"
707
+ version = "0.17.1"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
710
+
711
+ [[package]]
712
+ name = "heck"
713
+ version = "0.5.0"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
716
+
717
+ [[package]]
718
+ name = "hex"
719
+ version = "0.4.3"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
722
+
723
+ [[package]]
724
+ name = "home"
725
+ version = "0.5.12"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
728
+ dependencies = [
729
+ "windows-sys 0.61.2",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "http"
734
+ version = "1.5.0"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
737
+ dependencies = [
738
+ "bytes",
739
+ "itoa",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "http-body"
744
+ version = "1.1.0"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
747
+ dependencies = [
748
+ "bytes",
749
+ "http",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "http-body-util"
754
+ version = "0.1.4"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
757
+ dependencies = [
758
+ "bytes",
759
+ "futures-core",
760
+ "http",
761
+ "http-body",
762
+ "pin-project-lite",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "httparse"
767
+ version = "1.10.1"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
770
+
771
+ [[package]]
772
+ name = "httpdate"
773
+ version = "1.0.3"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
776
+
777
+ [[package]]
778
+ name = "hyper"
779
+ version = "1.11.0"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
782
+ dependencies = [
783
+ "atomic-waker",
784
+ "bytes",
785
+ "futures-channel",
786
+ "futures-core",
787
+ "http",
788
+ "http-body",
789
+ "httparse",
790
+ "itoa",
791
+ "pin-project-lite",
792
+ "smallvec",
793
+ "tokio",
794
+ "want",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "hyper-rustls"
799
+ version = "0.27.9"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
802
+ dependencies = [
803
+ "http",
804
+ "hyper",
805
+ "hyper-util",
806
+ "rustls",
807
+ "tokio",
808
+ "tokio-rustls",
809
+ "tower-service",
810
+ "webpki-roots",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "hyper-util"
815
+ version = "0.1.20"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
818
+ dependencies = [
819
+ "base64",
820
+ "bytes",
821
+ "futures-channel",
822
+ "futures-util",
823
+ "http",
824
+ "http-body",
825
+ "hyper",
826
+ "ipnet",
827
+ "libc",
828
+ "percent-encoding",
829
+ "pin-project-lite",
830
+ "socket2",
831
+ "tokio",
832
+ "tower-service",
833
+ "tracing",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "iana-time-zone"
838
+ version = "0.1.65"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
841
+ dependencies = [
842
+ "android_system_properties",
843
+ "core-foundation-sys",
844
+ "iana-time-zone-haiku",
845
+ "js-sys",
846
+ "log",
847
+ "wasm-bindgen",
848
+ "windows-core 0.62.2",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "iana-time-zone-haiku"
853
+ version = "0.1.2"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
856
+ dependencies = [
857
+ "cc",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "ibapi"
862
+ version = "3.3.0"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "fc5651f11bacdf138a1a910dc075c21e425912ff767e7f3e237b9fe14d9f3f76"
865
+ dependencies = [
866
+ "byteorder",
867
+ "crossbeam",
868
+ "log",
869
+ "prost",
870
+ "serde",
871
+ "serde_json",
872
+ "thiserror 2.0.18",
873
+ "time",
874
+ "time-tz",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "icu_collections"
879
+ version = "2.2.0"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
882
+ dependencies = [
883
+ "displaydoc",
884
+ "potential_utf",
885
+ "utf8_iter",
886
+ "yoke",
887
+ "zerofrom",
888
+ "zerovec",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "icu_locale_core"
893
+ version = "2.2.0"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
896
+ dependencies = [
897
+ "displaydoc",
898
+ "litemap",
899
+ "tinystr",
900
+ "writeable",
901
+ "zerovec",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "icu_normalizer"
906
+ version = "2.2.0"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
909
+ dependencies = [
910
+ "icu_collections",
911
+ "icu_normalizer_data",
912
+ "icu_properties",
913
+ "icu_provider",
914
+ "smallvec",
915
+ "zerovec",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "icu_normalizer_data"
920
+ version = "2.2.0"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
923
+
924
+ [[package]]
925
+ name = "icu_properties"
926
+ version = "2.2.0"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
929
+ dependencies = [
930
+ "icu_collections",
931
+ "icu_locale_core",
932
+ "icu_properties_data",
933
+ "icu_provider",
934
+ "zerotrie",
935
+ "zerovec",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "icu_properties_data"
940
+ version = "2.2.0"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
943
+
944
+ [[package]]
945
+ name = "icu_provider"
946
+ version = "2.2.0"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
949
+ dependencies = [
950
+ "displaydoc",
951
+ "icu_locale_core",
952
+ "writeable",
953
+ "yoke",
954
+ "zerofrom",
955
+ "zerotrie",
956
+ "zerovec",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "id-arena"
961
+ version = "2.3.0"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
964
+
965
+ [[package]]
966
+ name = "idna"
967
+ version = "1.1.0"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
970
+ dependencies = [
971
+ "idna_adapter",
972
+ "smallvec",
973
+ "utf8_iter",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "idna_adapter"
978
+ version = "1.2.2"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
981
+ dependencies = [
982
+ "icu_normalizer",
983
+ "icu_properties",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "indexmap"
988
+ version = "2.14.0"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
991
+ dependencies = [
992
+ "equivalent",
993
+ "hashbrown 0.17.1",
994
+ "serde",
995
+ "serde_core",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "ipnet"
1000
+ version = "2.12.0"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1003
+
1004
+ [[package]]
1005
+ name = "itertools"
1006
+ version = "0.14.0"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1009
+ dependencies = [
1010
+ "either",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "itoa"
1015
+ version = "1.0.18"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1018
+
1019
+ [[package]]
1020
+ name = "jobserver"
1021
+ version = "0.1.34"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1024
+ dependencies = [
1025
+ "getrandom 0.3.4",
1026
+ "libc",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "js-sys"
1031
+ version = "0.3.99"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
1034
+ dependencies = [
1035
+ "cfg-if",
1036
+ "futures-util",
1037
+ "once_cell",
1038
+ "wasm-bindgen",
1039
+ ]
1040
+
1041
+ [[package]]
1042
+ name = "jsonpath_lib_polars_vendor"
1043
+ version = "0.0.1"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "f4bd9354947622f7471ff713eacaabdb683ccb13bba4edccaab9860abf480b7d"
1046
+ dependencies = [
1047
+ "log",
1048
+ "serde",
1049
+ "serde_json",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "leb128fmt"
1054
+ version = "0.1.0"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1057
+
1058
+ [[package]]
1059
+ name = "libc"
1060
+ version = "0.2.186"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1063
+
1064
+ [[package]]
1065
+ name = "libm"
1066
+ version = "0.2.16"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1069
+
1070
+ [[package]]
1071
+ name = "linux-raw-sys"
1072
+ version = "0.12.1"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1075
+
1076
+ [[package]]
1077
+ name = "litemap"
1078
+ version = "0.8.2"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1081
+
1082
+ [[package]]
1083
+ name = "litrs"
1084
+ version = "1.0.0"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1087
+
1088
+ [[package]]
1089
+ name = "lock_api"
1090
+ version = "0.4.14"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1093
+ dependencies = [
1094
+ "scopeguard",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "log"
1099
+ version = "0.4.30"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
1102
+
1103
+ [[package]]
1104
+ name = "lru-slab"
1105
+ version = "0.1.2"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1108
+
1109
+ [[package]]
1110
+ name = "lz4"
1111
+ version = "1.28.1"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
1114
+ dependencies = [
1115
+ "lz4-sys",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "lz4-sys"
1120
+ version = "1.11.1+lz4-1.10.0"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
1123
+ dependencies = [
1124
+ "cc",
1125
+ "libc",
1126
+ ]
1127
+
1128
+ [[package]]
1129
+ name = "memchr"
1130
+ version = "2.8.1"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
1133
+
1134
+ [[package]]
1135
+ name = "memmap2"
1136
+ version = "0.9.10"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
1139
+ dependencies = [
1140
+ "libc",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "mio"
1145
+ version = "1.2.1"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1148
+ dependencies = [
1149
+ "libc",
1150
+ "wasi",
1151
+ "windows-sys 0.61.2",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "now"
1156
+ version = "0.1.3"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0"
1159
+ dependencies = [
1160
+ "chrono",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "ntapi"
1165
+ version = "0.4.3"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
1168
+ dependencies = [
1169
+ "winapi",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "num-conv"
1174
+ version = "0.2.2"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1177
+
1178
+ [[package]]
1179
+ name = "num-traits"
1180
+ version = "0.2.19"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1183
+ dependencies = [
1184
+ "autocfg",
1185
+ "libm",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "num_threads"
1190
+ version = "0.1.7"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
1193
+ dependencies = [
1194
+ "libc",
1195
+ ]
1196
+
1197
+ [[package]]
1198
+ name = "object"
1199
+ version = "0.37.3"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
1202
+ dependencies = [
1203
+ "memchr",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "once_cell"
1208
+ version = "1.21.4"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1211
+
1212
+ [[package]]
1213
+ name = "parking_lot"
1214
+ version = "0.12.5"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1217
+ dependencies = [
1218
+ "lock_api",
1219
+ "parking_lot_core",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "parking_lot_core"
1224
+ version = "0.9.12"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1227
+ dependencies = [
1228
+ "cfg-if",
1229
+ "libc",
1230
+ "redox_syscall",
1231
+ "smallvec",
1232
+ "windows-link",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "parse-zoneinfo"
1237
+ version = "0.3.1"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
1240
+ dependencies = [
1241
+ "regex",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "percent-encoding"
1246
+ version = "2.3.2"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1249
+
1250
+ [[package]]
1251
+ name = "phf"
1252
+ version = "0.11.3"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1255
+ dependencies = [
1256
+ "phf_shared 0.11.3",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "phf"
1261
+ version = "0.12.1"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
1264
+ dependencies = [
1265
+ "phf_shared 0.12.1",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "phf_codegen"
1270
+ version = "0.11.3"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1273
+ dependencies = [
1274
+ "phf_generator",
1275
+ "phf_shared 0.11.3",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "phf_generator"
1280
+ version = "0.11.3"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1283
+ dependencies = [
1284
+ "phf_shared 0.11.3",
1285
+ "rand 0.8.6",
1286
+ ]
1287
+
1288
+ [[package]]
1289
+ name = "phf_shared"
1290
+ version = "0.11.3"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1293
+ dependencies = [
1294
+ "siphasher",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "phf_shared"
1299
+ version = "0.12.1"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
1302
+ dependencies = [
1303
+ "siphasher",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "pin-project-lite"
1308
+ version = "0.2.17"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1311
+
1312
+ [[package]]
1313
+ name = "pkg-config"
1314
+ version = "0.3.33"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1317
+
1318
+ [[package]]
1319
+ name = "planus"
1320
+ version = "0.3.1"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "fc1691dd09e82f428ce8d6310bd6d5da2557c82ff17694d2a32cad7242aea89f"
1323
+ dependencies = [
1324
+ "array-init-cursor",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "polars"
1329
+ version = "0.46.0"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "72571dde488ecccbe799798bf99ab7308ebdb7cf5d95bcc498dbd5a132f0da4d"
1332
+ dependencies = [
1333
+ "getrandom 0.2.17",
1334
+ "polars-arrow",
1335
+ "polars-core",
1336
+ "polars-error",
1337
+ "polars-io",
1338
+ "polars-lazy",
1339
+ "polars-ops",
1340
+ "polars-parquet",
1341
+ "polars-sql",
1342
+ "polars-time",
1343
+ "polars-utils",
1344
+ "version_check",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "polars-arrow"
1349
+ version = "0.46.0"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "6611c758d52e799761cc25900666b71552e6c929d88052811bc9daad4b3321a8"
1352
+ dependencies = [
1353
+ "ahash",
1354
+ "atoi_simd",
1355
+ "bytemuck",
1356
+ "chrono",
1357
+ "chrono-tz",
1358
+ "dyn-clone",
1359
+ "either",
1360
+ "ethnum",
1361
+ "getrandom 0.2.17",
1362
+ "hashbrown 0.15.5",
1363
+ "itoa",
1364
+ "lz4",
1365
+ "num-traits",
1366
+ "parking_lot",
1367
+ "polars-arrow-format",
1368
+ "polars-error",
1369
+ "polars-schema",
1370
+ "polars-utils",
1371
+ "simdutf8",
1372
+ "streaming-iterator",
1373
+ "strength_reduce",
1374
+ "strum_macros",
1375
+ "version_check",
1376
+ "zstd",
1377
+ ]
1378
+
1379
+ [[package]]
1380
+ name = "polars-arrow-format"
1381
+ version = "0.1.0"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "19b0ef2474af9396b19025b189d96e992311e6a47f90c53cd998b36c4c64b84c"
1384
+ dependencies = [
1385
+ "planus",
1386
+ "serde",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "polars-compute"
1391
+ version = "0.46.0"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "332f2547dbb27599a8ffe68e56159f5996ba03d1dad0382ccb62c109ceacdeb6"
1394
+ dependencies = [
1395
+ "atoi_simd",
1396
+ "bytemuck",
1397
+ "chrono",
1398
+ "either",
1399
+ "fast-float2",
1400
+ "itoa",
1401
+ "num-traits",
1402
+ "polars-arrow",
1403
+ "polars-error",
1404
+ "polars-utils",
1405
+ "ryu",
1406
+ "strength_reduce",
1407
+ "version_check",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "polars-core"
1412
+ version = "0.46.0"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "796d06eae7e6e74ed28ea54a8fccc584ebac84e6cf0e1e9ba41ffc807b169a01"
1415
+ dependencies = [
1416
+ "ahash",
1417
+ "bitflags",
1418
+ "bytemuck",
1419
+ "chrono",
1420
+ "chrono-tz",
1421
+ "comfy-table",
1422
+ "either",
1423
+ "hashbrown 0.14.5",
1424
+ "hashbrown 0.15.5",
1425
+ "indexmap",
1426
+ "itoa",
1427
+ "num-traits",
1428
+ "once_cell",
1429
+ "polars-arrow",
1430
+ "polars-compute",
1431
+ "polars-error",
1432
+ "polars-row",
1433
+ "polars-schema",
1434
+ "polars-utils",
1435
+ "rand 0.8.6",
1436
+ "rand_distr",
1437
+ "rayon",
1438
+ "regex",
1439
+ "strum_macros",
1440
+ "thiserror 2.0.18",
1441
+ "version_check",
1442
+ "xxhash-rust",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "polars-error"
1447
+ version = "0.46.0"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "19d6529cae0d1db5ed690e47de41fac9b35ae0c26d476830c2079f130887b847"
1450
+ dependencies = [
1451
+ "polars-arrow-format",
1452
+ "regex",
1453
+ "simdutf8",
1454
+ "thiserror 2.0.18",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "polars-expr"
1459
+ version = "0.46.0"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "c8e639991a8ad4fb12880ab44bcc3cf44a5703df003142334d9caf86d77d77e7"
1462
+ dependencies = [
1463
+ "ahash",
1464
+ "bitflags",
1465
+ "hashbrown 0.15.5",
1466
+ "num-traits",
1467
+ "once_cell",
1468
+ "polars-arrow",
1469
+ "polars-compute",
1470
+ "polars-core",
1471
+ "polars-io",
1472
+ "polars-ops",
1473
+ "polars-plan",
1474
+ "polars-row",
1475
+ "polars-time",
1476
+ "polars-utils",
1477
+ "rand 0.8.6",
1478
+ "rayon",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "polars-io"
1483
+ version = "0.46.0"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "719a77e94480f6be090512da196e378cbcbeb3584c6fe1134c600aee906e38ab"
1486
+ dependencies = [
1487
+ "ahash",
1488
+ "async-trait",
1489
+ "atoi_simd",
1490
+ "bytes",
1491
+ "chrono",
1492
+ "fast-float2",
1493
+ "futures",
1494
+ "glob",
1495
+ "hashbrown 0.15.5",
1496
+ "home",
1497
+ "itoa",
1498
+ "memchr",
1499
+ "memmap2",
1500
+ "num-traits",
1501
+ "once_cell",
1502
+ "percent-encoding",
1503
+ "polars-arrow",
1504
+ "polars-core",
1505
+ "polars-error",
1506
+ "polars-json",
1507
+ "polars-parquet",
1508
+ "polars-schema",
1509
+ "polars-time",
1510
+ "polars-utils",
1511
+ "rayon",
1512
+ "regex",
1513
+ "ryu",
1514
+ "simd-json",
1515
+ "simdutf8",
1516
+ "tokio",
1517
+ "tokio-util",
1518
+ ]
1519
+
1520
+ [[package]]
1521
+ name = "polars-json"
1522
+ version = "0.46.0"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "e30603ca81e317b66b4caac683a8325a6a82ea0489685dc37e22ae03720def98"
1525
+ dependencies = [
1526
+ "ahash",
1527
+ "chrono",
1528
+ "fallible-streaming-iterator",
1529
+ "hashbrown 0.15.5",
1530
+ "indexmap",
1531
+ "itoa",
1532
+ "num-traits",
1533
+ "polars-arrow",
1534
+ "polars-compute",
1535
+ "polars-error",
1536
+ "polars-utils",
1537
+ "ryu",
1538
+ "simd-json",
1539
+ "streaming-iterator",
1540
+ ]
1541
+
1542
+ [[package]]
1543
+ name = "polars-lazy"
1544
+ version = "0.46.0"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "a0a731a672dfc8ac38c1f73c9a4b2ae38d2fc8ac363bfb64c5f3a3e072ffc5ad"
1547
+ dependencies = [
1548
+ "ahash",
1549
+ "bitflags",
1550
+ "chrono",
1551
+ "memchr",
1552
+ "once_cell",
1553
+ "polars-arrow",
1554
+ "polars-core",
1555
+ "polars-expr",
1556
+ "polars-io",
1557
+ "polars-json",
1558
+ "polars-mem-engine",
1559
+ "polars-ops",
1560
+ "polars-pipe",
1561
+ "polars-plan",
1562
+ "polars-stream",
1563
+ "polars-time",
1564
+ "polars-utils",
1565
+ "rayon",
1566
+ "version_check",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "polars-mem-engine"
1571
+ version = "0.46.0"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "33442189bcbf2e2559aa7914db3835429030a13f4f18e43af5fba9d1b018cf12"
1574
+ dependencies = [
1575
+ "memmap2",
1576
+ "polars-arrow",
1577
+ "polars-core",
1578
+ "polars-error",
1579
+ "polars-expr",
1580
+ "polars-io",
1581
+ "polars-json",
1582
+ "polars-ops",
1583
+ "polars-plan",
1584
+ "polars-time",
1585
+ "polars-utils",
1586
+ "rayon",
1587
+ ]
1588
+
1589
+ [[package]]
1590
+ name = "polars-ops"
1591
+ version = "0.46.0"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "cbb83218b0c216104f0076cd1a005128be078f958125f3d59b094ee73d78c18e"
1594
+ dependencies = [
1595
+ "ahash",
1596
+ "argminmax",
1597
+ "base64",
1598
+ "bytemuck",
1599
+ "chrono",
1600
+ "chrono-tz",
1601
+ "either",
1602
+ "hashbrown 0.15.5",
1603
+ "hex",
1604
+ "indexmap",
1605
+ "jsonpath_lib_polars_vendor",
1606
+ "memchr",
1607
+ "num-traits",
1608
+ "once_cell",
1609
+ "polars-arrow",
1610
+ "polars-compute",
1611
+ "polars-core",
1612
+ "polars-error",
1613
+ "polars-json",
1614
+ "polars-schema",
1615
+ "polars-utils",
1616
+ "rayon",
1617
+ "regex",
1618
+ "regex-syntax",
1619
+ "serde_json",
1620
+ "strum_macros",
1621
+ "unicode-normalization",
1622
+ "unicode-reverse",
1623
+ "version_check",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "polars-parquet"
1628
+ version = "0.46.0"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "5c60ee85535590a38db6c703a21be4cb25342e40f573f070d1e16f9d84a53ac7"
1631
+ dependencies = [
1632
+ "ahash",
1633
+ "async-stream",
1634
+ "base64",
1635
+ "bytemuck",
1636
+ "ethnum",
1637
+ "futures",
1638
+ "hashbrown 0.15.5",
1639
+ "num-traits",
1640
+ "polars-arrow",
1641
+ "polars-compute",
1642
+ "polars-error",
1643
+ "polars-parquet-format",
1644
+ "polars-utils",
1645
+ "simdutf8",
1646
+ "streaming-decompression",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "polars-parquet-format"
1651
+ version = "0.1.0"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "c025243dcfe8dbc57e94d9f82eb3bef10b565ab180d5b99bed87fd8aea319ce1"
1654
+ dependencies = [
1655
+ "async-trait",
1656
+ "futures",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "polars-pipe"
1661
+ version = "0.46.0"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "42d238fb76698f56e51ddfa89b135e4eda56a4767c6e8859eed0ab78386fcd52"
1664
+ dependencies = [
1665
+ "crossbeam-channel",
1666
+ "crossbeam-queue",
1667
+ "enum_dispatch",
1668
+ "hashbrown 0.15.5",
1669
+ "num-traits",
1670
+ "once_cell",
1671
+ "polars-arrow",
1672
+ "polars-compute",
1673
+ "polars-core",
1674
+ "polars-expr",
1675
+ "polars-io",
1676
+ "polars-ops",
1677
+ "polars-plan",
1678
+ "polars-row",
1679
+ "polars-utils",
1680
+ "rayon",
1681
+ "uuid",
1682
+ "version_check",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "polars-plan"
1687
+ version = "0.46.0"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "4f03533a93aa66127fcb909a87153a3c7cfee6f0ae59f497e73d7736208da54c"
1690
+ dependencies = [
1691
+ "ahash",
1692
+ "bitflags",
1693
+ "bytemuck",
1694
+ "bytes",
1695
+ "chrono",
1696
+ "chrono-tz",
1697
+ "either",
1698
+ "hashbrown 0.15.5",
1699
+ "memmap2",
1700
+ "num-traits",
1701
+ "once_cell",
1702
+ "percent-encoding",
1703
+ "polars-arrow",
1704
+ "polars-compute",
1705
+ "polars-core",
1706
+ "polars-io",
1707
+ "polars-json",
1708
+ "polars-ops",
1709
+ "polars-time",
1710
+ "polars-utils",
1711
+ "rayon",
1712
+ "recursive",
1713
+ "regex",
1714
+ "strum_macros",
1715
+ "version_check",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "polars-row"
1720
+ version = "0.46.0"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "6bf47f7409f8e75328d7d034be390842924eb276716d0458607be0bddb8cc839"
1723
+ dependencies = [
1724
+ "bitflags",
1725
+ "bytemuck",
1726
+ "polars-arrow",
1727
+ "polars-compute",
1728
+ "polars-error",
1729
+ "polars-utils",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "polars-schema"
1734
+ version = "0.46.0"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "416621ae82b84466cf4ff36838a9b0aeb4a67e76bd3065edc8c9cb7da19b1bc7"
1737
+ dependencies = [
1738
+ "indexmap",
1739
+ "polars-error",
1740
+ "polars-utils",
1741
+ "version_check",
1742
+ ]
1743
+
1744
+ [[package]]
1745
+ name = "polars-sql"
1746
+ version = "0.46.0"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "edaab553b90aa4d6743bb538978e1982368acb58a94408d7dd3299cad49c7083"
1749
+ dependencies = [
1750
+ "hex",
1751
+ "polars-core",
1752
+ "polars-error",
1753
+ "polars-lazy",
1754
+ "polars-ops",
1755
+ "polars-plan",
1756
+ "polars-time",
1757
+ "polars-utils",
1758
+ "rand 0.8.6",
1759
+ "regex",
1760
+ "serde",
1761
+ "sqlparser",
1762
+ ]
1763
+
1764
+ [[package]]
1765
+ name = "polars-stream"
1766
+ version = "0.46.0"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "498997b656c779610c1496b3d96a59fe569ef22a5b81ccfe5325cb3df8dff2fd"
1769
+ dependencies = [
1770
+ "atomic-waker",
1771
+ "crossbeam-deque",
1772
+ "crossbeam-utils",
1773
+ "futures",
1774
+ "memmap2",
1775
+ "parking_lot",
1776
+ "pin-project-lite",
1777
+ "polars-core",
1778
+ "polars-error",
1779
+ "polars-expr",
1780
+ "polars-io",
1781
+ "polars-mem-engine",
1782
+ "polars-ops",
1783
+ "polars-parquet",
1784
+ "polars-plan",
1785
+ "polars-utils",
1786
+ "rand 0.8.6",
1787
+ "rayon",
1788
+ "recursive",
1789
+ "slotmap",
1790
+ "tokio",
1791
+ "version_check",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "polars-time"
1796
+ version = "0.46.0"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "d192efbdab516d28b3fab1709a969e3385bd5cda050b7c9aa9e2502a01fda879"
1799
+ dependencies = [
1800
+ "atoi_simd",
1801
+ "bytemuck",
1802
+ "chrono",
1803
+ "chrono-tz",
1804
+ "now",
1805
+ "num-traits",
1806
+ "once_cell",
1807
+ "polars-arrow",
1808
+ "polars-compute",
1809
+ "polars-core",
1810
+ "polars-error",
1811
+ "polars-ops",
1812
+ "polars-utils",
1813
+ "rayon",
1814
+ "regex",
1815
+ "strum_macros",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "polars-utils"
1820
+ version = "0.46.0"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "a8f6c8166a4a7fbc15b87c81645ed9e1f0651ff2e8c96cafc40ac5bf43441a10"
1823
+ dependencies = [
1824
+ "ahash",
1825
+ "bytemuck",
1826
+ "bytes",
1827
+ "compact_str",
1828
+ "hashbrown 0.15.5",
1829
+ "indexmap",
1830
+ "libc",
1831
+ "memmap2",
1832
+ "num-traits",
1833
+ "once_cell",
1834
+ "polars-error",
1835
+ "rand 0.8.6",
1836
+ "raw-cpuid",
1837
+ "rayon",
1838
+ "stacker",
1839
+ "sysinfo",
1840
+ "version_check",
1841
+ ]
1842
+
1843
+ [[package]]
1844
+ name = "portable-atomic"
1845
+ version = "1.15.0"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
1848
+
1849
+ [[package]]
1850
+ name = "potential_utf"
1851
+ version = "0.1.5"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1854
+ dependencies = [
1855
+ "zerovec",
1856
+ ]
1857
+
1858
+ [[package]]
1859
+ name = "powerfmt"
1860
+ version = "0.2.0"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1863
+
1864
+ [[package]]
1865
+ name = "ppv-lite86"
1866
+ version = "0.2.21"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1869
+ dependencies = [
1870
+ "zerocopy",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "prettyplease"
1875
+ version = "0.2.37"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1878
+ dependencies = [
1879
+ "proc-macro2",
1880
+ "syn 2.0.117",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "proc-macro2"
1885
+ version = "1.0.106"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1888
+ dependencies = [
1889
+ "unicode-ident",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "prost"
1894
+ version = "0.14.3"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
1897
+ dependencies = [
1898
+ "bytes",
1899
+ "prost-derive",
1900
+ ]
1901
+
1902
+ [[package]]
1903
+ name = "prost-derive"
1904
+ version = "0.14.3"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
1907
+ dependencies = [
1908
+ "anyhow",
1909
+ "itertools",
1910
+ "proc-macro2",
1911
+ "quote",
1912
+ "syn 2.0.117",
1913
+ ]
1914
+
1915
+ [[package]]
1916
+ name = "psm"
1917
+ version = "0.1.31"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "645dbe486e346d9b5de3ef16ede18c26e6c70ad97418f4874b8b1889d6e761ea"
1920
+ dependencies = [
1921
+ "ar_archive_writer",
1922
+ "cc",
1923
+ ]
1924
+
1925
+ [[package]]
1926
+ name = "pyo3"
1927
+ version = "0.29.2"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
1930
+ dependencies = [
1931
+ "libc",
1932
+ "once_cell",
1933
+ "portable-atomic",
1934
+ "pyo3-build-config",
1935
+ "pyo3-ffi",
1936
+ "pyo3-macros",
1937
+ ]
1938
+
1939
+ [[package]]
1940
+ name = "pyo3-build-config"
1941
+ version = "0.29.2"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
1944
+ dependencies = [
1945
+ "target-lexicon",
1946
+ ]
1947
+
1948
+ [[package]]
1949
+ name = "pyo3-ffi"
1950
+ version = "0.29.2"
1951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
1953
+ dependencies = [
1954
+ "libc",
1955
+ "pyo3-build-config",
1956
+ ]
1957
+
1958
+ [[package]]
1959
+ name = "pyo3-macros"
1960
+ version = "0.29.2"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
1963
+ dependencies = [
1964
+ "proc-macro2",
1965
+ "pyo3-macros-backend",
1966
+ "quote",
1967
+ "syn 2.0.117",
1968
+ ]
1969
+
1970
+ [[package]]
1971
+ name = "pyo3-macros-backend"
1972
+ version = "0.29.2"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
1975
+ dependencies = [
1976
+ "heck",
1977
+ "proc-macro2",
1978
+ "quote",
1979
+ "syn 2.0.117",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "quinn"
1984
+ version = "0.11.11"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
1987
+ dependencies = [
1988
+ "bytes",
1989
+ "cfg_aliases",
1990
+ "pin-project-lite",
1991
+ "quinn-proto",
1992
+ "quinn-udp",
1993
+ "rustc-hash",
1994
+ "rustls",
1995
+ "socket2",
1996
+ "thiserror 2.0.18",
1997
+ "tokio",
1998
+ "tracing",
1999
+ "web-time",
2000
+ ]
2001
+
2002
+ [[package]]
2003
+ name = "quinn-proto"
2004
+ version = "0.11.16"
2005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+ checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
2007
+ dependencies = [
2008
+ "bytes",
2009
+ "getrandom 0.4.2",
2010
+ "lru-slab",
2011
+ "rand 0.10.2",
2012
+ "rand_pcg",
2013
+ "ring",
2014
+ "rustc-hash",
2015
+ "rustls",
2016
+ "rustls-pki-types",
2017
+ "slab",
2018
+ "thiserror 2.0.18",
2019
+ "tinyvec",
2020
+ "tracing",
2021
+ "web-time",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "quinn-udp"
2026
+ version = "0.5.15"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
2029
+ dependencies = [
2030
+ "cfg_aliases",
2031
+ "libc",
2032
+ "once_cell",
2033
+ "socket2",
2034
+ "tracing",
2035
+ "windows-sys 0.61.2",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "quote"
2040
+ version = "1.0.45"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2043
+ dependencies = [
2044
+ "proc-macro2",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "r-efi"
2049
+ version = "5.3.0"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2052
+
2053
+ [[package]]
2054
+ name = "r-efi"
2055
+ version = "6.0.0"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2058
+
2059
+ [[package]]
2060
+ name = "rand"
2061
+ version = "0.8.6"
2062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
2064
+ dependencies = [
2065
+ "libc",
2066
+ "rand_chacha",
2067
+ "rand_core 0.6.4",
2068
+ ]
2069
+
2070
+ [[package]]
2071
+ name = "rand"
2072
+ version = "0.10.2"
2073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2074
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
2075
+ dependencies = [
2076
+ "chacha20",
2077
+ "getrandom 0.4.2",
2078
+ "rand_core 0.10.1",
2079
+ ]
2080
+
2081
+ [[package]]
2082
+ name = "rand_chacha"
2083
+ version = "0.3.1"
2084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2085
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2086
+ dependencies = [
2087
+ "ppv-lite86",
2088
+ "rand_core 0.6.4",
2089
+ ]
2090
+
2091
+ [[package]]
2092
+ name = "rand_core"
2093
+ version = "0.6.4"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2096
+ dependencies = [
2097
+ "getrandom 0.2.17",
2098
+ ]
2099
+
2100
+ [[package]]
2101
+ name = "rand_core"
2102
+ version = "0.10.1"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
2105
+
2106
+ [[package]]
2107
+ name = "rand_distr"
2108
+ version = "0.4.3"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
2111
+ dependencies = [
2112
+ "num-traits",
2113
+ "rand 0.8.6",
2114
+ ]
2115
+
2116
+ [[package]]
2117
+ name = "rand_pcg"
2118
+ version = "0.10.2"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
2121
+ dependencies = [
2122
+ "rand_core 0.10.1",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "raw-cpuid"
2127
+ version = "11.6.0"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
2130
+ dependencies = [
2131
+ "bitflags",
2132
+ ]
2133
+
2134
+ [[package]]
2135
+ name = "rayon"
2136
+ version = "1.12.0"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2139
+ dependencies = [
2140
+ "either",
2141
+ "rayon-core",
2142
+ ]
2143
+
2144
+ [[package]]
2145
+ name = "rayon-core"
2146
+ version = "1.13.0"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2149
+ dependencies = [
2150
+ "crossbeam-deque",
2151
+ "crossbeam-utils",
2152
+ ]
2153
+
2154
+ [[package]]
2155
+ name = "recursive"
2156
+ version = "0.1.1"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
2159
+ dependencies = [
2160
+ "recursive-proc-macro-impl",
2161
+ "stacker",
2162
+ ]
2163
+
2164
+ [[package]]
2165
+ name = "recursive-proc-macro-impl"
2166
+ version = "0.1.1"
2167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2168
+ checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
2169
+ dependencies = [
2170
+ "quote",
2171
+ "syn 2.0.117",
2172
+ ]
2173
+
2174
+ [[package]]
2175
+ name = "redox_syscall"
2176
+ version = "0.5.18"
2177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2178
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2179
+ dependencies = [
2180
+ "bitflags",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "ref-cast"
2185
+ version = "1.0.25"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
2188
+ dependencies = [
2189
+ "ref-cast-impl",
2190
+ ]
2191
+
2192
+ [[package]]
2193
+ name = "ref-cast-impl"
2194
+ version = "1.0.25"
2195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2196
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2197
+ dependencies = [
2198
+ "proc-macro2",
2199
+ "quote",
2200
+ "syn 2.0.117",
2201
+ ]
2202
+
2203
+ [[package]]
2204
+ name = "regex"
2205
+ version = "1.12.3"
2206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2207
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2208
+ dependencies = [
2209
+ "aho-corasick",
2210
+ "memchr",
2211
+ "regex-automata",
2212
+ "regex-syntax",
2213
+ ]
2214
+
2215
+ [[package]]
2216
+ name = "regex-automata"
2217
+ version = "0.4.14"
2218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2219
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2220
+ dependencies = [
2221
+ "aho-corasick",
2222
+ "memchr",
2223
+ "regex-syntax",
2224
+ ]
2225
+
2226
+ [[package]]
2227
+ name = "regex-syntax"
2228
+ version = "0.8.10"
2229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2230
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2231
+
2232
+ [[package]]
2233
+ name = "reqwest"
2234
+ version = "0.12.28"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2237
+ dependencies = [
2238
+ "base64",
2239
+ "bytes",
2240
+ "futures-channel",
2241
+ "futures-core",
2242
+ "futures-util",
2243
+ "http",
2244
+ "http-body",
2245
+ "http-body-util",
2246
+ "hyper",
2247
+ "hyper-rustls",
2248
+ "hyper-util",
2249
+ "js-sys",
2250
+ "log",
2251
+ "percent-encoding",
2252
+ "pin-project-lite",
2253
+ "quinn",
2254
+ "rustls",
2255
+ "rustls-pki-types",
2256
+ "serde",
2257
+ "serde_json",
2258
+ "serde_urlencoded",
2259
+ "sync_wrapper",
2260
+ "tokio",
2261
+ "tokio-rustls",
2262
+ "tower",
2263
+ "tower-http",
2264
+ "tower-service",
2265
+ "url",
2266
+ "wasm-bindgen",
2267
+ "wasm-bindgen-futures",
2268
+ "web-sys",
2269
+ "webpki-roots",
2270
+ ]
2271
+
2272
+ [[package]]
2273
+ name = "ring"
2274
+ version = "0.17.14"
2275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2276
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2277
+ dependencies = [
2278
+ "cc",
2279
+ "cfg-if",
2280
+ "getrandom 0.2.17",
2281
+ "libc",
2282
+ "untrusted",
2283
+ "windows-sys 0.52.0",
2284
+ ]
2285
+
2286
+ [[package]]
2287
+ name = "rustc-hash"
2288
+ version = "2.1.3"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
2291
+
2292
+ [[package]]
2293
+ name = "rustix"
2294
+ version = "1.1.4"
2295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2296
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2297
+ dependencies = [
2298
+ "bitflags",
2299
+ "errno",
2300
+ "libc",
2301
+ "linux-raw-sys",
2302
+ "windows-sys 0.61.2",
2303
+ ]
2304
+
2305
+ [[package]]
2306
+ name = "rustls"
2307
+ version = "0.23.43"
2308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2309
+ checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
2310
+ dependencies = [
2311
+ "once_cell",
2312
+ "ring",
2313
+ "rustls-pki-types",
2314
+ "rustls-webpki",
2315
+ "subtle",
2316
+ "zeroize",
2317
+ ]
2318
+
2319
+ [[package]]
2320
+ name = "rustls-pki-types"
2321
+ version = "1.15.1"
2322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2323
+ checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
2324
+ dependencies = [
2325
+ "web-time",
2326
+ "zeroize",
2327
+ ]
2328
+
2329
+ [[package]]
2330
+ name = "rustls-webpki"
2331
+ version = "0.103.13"
2332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2333
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2334
+ dependencies = [
2335
+ "ring",
2336
+ "rustls-pki-types",
2337
+ "untrusted",
2338
+ ]
2339
+
2340
+ [[package]]
2341
+ name = "rustversion"
2342
+ version = "1.0.22"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2345
+
2346
+ [[package]]
2347
+ name = "ryu"
2348
+ version = "1.0.23"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2351
+
2352
+ [[package]]
2353
+ name = "scopeguard"
2354
+ version = "1.2.0"
2355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2356
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2357
+
2358
+ [[package]]
2359
+ name = "semver"
2360
+ version = "1.0.28"
2361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2362
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2363
+
2364
+ [[package]]
2365
+ name = "serde"
2366
+ version = "1.0.228"
2367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2368
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2369
+ dependencies = [
2370
+ "serde_core",
2371
+ "serde_derive",
2372
+ ]
2373
+
2374
+ [[package]]
2375
+ name = "serde-xml-rs"
2376
+ version = "0.5.1"
2377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2378
+ checksum = "65162e9059be2f6a3421ebbb4fef3e74b7d9e7c60c50a0e292c6239f19f1edfa"
2379
+ dependencies = [
2380
+ "log",
2381
+ "serde",
2382
+ "thiserror 1.0.69",
2383
+ "xml-rs",
2384
+ ]
2385
+
2386
+ [[package]]
2387
+ name = "serde_core"
2388
+ version = "1.0.228"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2391
+ dependencies = [
2392
+ "serde_derive",
2393
+ ]
2394
+
2395
+ [[package]]
2396
+ name = "serde_derive"
2397
+ version = "1.0.228"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2400
+ dependencies = [
2401
+ "proc-macro2",
2402
+ "quote",
2403
+ "syn 2.0.117",
2404
+ ]
2405
+
2406
+ [[package]]
2407
+ name = "serde_json"
2408
+ version = "1.0.150"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2411
+ dependencies = [
2412
+ "indexmap",
2413
+ "itoa",
2414
+ "memchr",
2415
+ "serde",
2416
+ "serde_core",
2417
+ "zmij",
2418
+ ]
2419
+
2420
+ [[package]]
2421
+ name = "serde_urlencoded"
2422
+ version = "0.7.1"
2423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2424
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2425
+ dependencies = [
2426
+ "form_urlencoded",
2427
+ "itoa",
2428
+ "ryu",
2429
+ "serde",
2430
+ ]
2431
+
2432
+ [[package]]
2433
+ name = "shlex"
2434
+ version = "2.0.1"
2435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2436
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2437
+
2438
+ [[package]]
2439
+ name = "simd-json"
2440
+ version = "0.14.3"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "aa2bcf6c6e164e81bc7a5d49fc6988b3d515d9e8c07457d7b74ffb9324b9cd40"
2443
+ dependencies = [
2444
+ "ahash",
2445
+ "getrandom 0.2.17",
2446
+ "halfbrown",
2447
+ "once_cell",
2448
+ "ref-cast",
2449
+ "serde",
2450
+ "serde_json",
2451
+ "simdutf8",
2452
+ "value-trait",
2453
+ ]
2454
+
2455
+ [[package]]
2456
+ name = "simdutf8"
2457
+ version = "0.1.5"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2460
+
2461
+ [[package]]
2462
+ name = "siphasher"
2463
+ version = "1.0.3"
2464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2465
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2466
+
2467
+ [[package]]
2468
+ name = "slab"
2469
+ version = "0.4.12"
2470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2471
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2472
+
2473
+ [[package]]
2474
+ name = "slotmap"
2475
+ version = "1.1.1"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
2478
+ dependencies = [
2479
+ "version_check",
2480
+ ]
2481
+
2482
+ [[package]]
2483
+ name = "smallvec"
2484
+ version = "1.15.1"
2485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2486
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2487
+
2488
+ [[package]]
2489
+ name = "socket2"
2490
+ version = "0.6.4"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
2493
+ dependencies = [
2494
+ "libc",
2495
+ "windows-sys 0.61.2",
2496
+ ]
2497
+
2498
+ [[package]]
2499
+ name = "sqlparser"
2500
+ version = "0.53.0"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "05a528114c392209b3264855ad491fcce534b94a38771b0a0b97a79379275ce8"
2503
+ dependencies = [
2504
+ "log",
2505
+ ]
2506
+
2507
+ [[package]]
2508
+ name = "stable_deref_trait"
2509
+ version = "1.2.1"
2510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2511
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2512
+
2513
+ [[package]]
2514
+ name = "stacker"
2515
+ version = "0.1.24"
2516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2517
+ checksum = "640c8cdd92b6b12f5bcb1803ca3bbf5ab96e5e6b6b96b9ab77dabe9e880b3190"
2518
+ dependencies = [
2519
+ "cc",
2520
+ "cfg-if",
2521
+ "libc",
2522
+ "psm",
2523
+ "windows-sys 0.61.2",
2524
+ ]
2525
+
2526
+ [[package]]
2527
+ name = "static_assertions"
2528
+ version = "1.1.0"
2529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2530
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2531
+
2532
+ [[package]]
2533
+ name = "streaming-decompression"
2534
+ version = "0.1.2"
2535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2536
+ checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3"
2537
+ dependencies = [
2538
+ "fallible-streaming-iterator",
2539
+ ]
2540
+
2541
+ [[package]]
2542
+ name = "streaming-iterator"
2543
+ version = "0.1.9"
2544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2545
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
2546
+
2547
+ [[package]]
2548
+ name = "strength_reduce"
2549
+ version = "0.2.4"
2550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2551
+ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
2552
+
2553
+ [[package]]
2554
+ name = "strum_macros"
2555
+ version = "0.26.4"
2556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2557
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
2558
+ dependencies = [
2559
+ "heck",
2560
+ "proc-macro2",
2561
+ "quote",
2562
+ "rustversion",
2563
+ "syn 2.0.117",
2564
+ ]
2565
+
2566
+ [[package]]
2567
+ name = "subtle"
2568
+ version = "2.6.1"
2569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2570
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2571
+
2572
+ [[package]]
2573
+ name = "syn"
2574
+ version = "2.0.117"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2577
+ dependencies = [
2578
+ "proc-macro2",
2579
+ "quote",
2580
+ "unicode-ident",
2581
+ ]
2582
+
2583
+ [[package]]
2584
+ name = "syn"
2585
+ version = "3.0.3"
2586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2587
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
2588
+ dependencies = [
2589
+ "proc-macro2",
2590
+ "quote",
2591
+ "unicode-ident",
2592
+ ]
2593
+
2594
+ [[package]]
2595
+ name = "sync_wrapper"
2596
+ version = "1.0.2"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2599
+ dependencies = [
2600
+ "futures-core",
2601
+ ]
2602
+
2603
+ [[package]]
2604
+ name = "synstructure"
2605
+ version = "0.13.2"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2608
+ dependencies = [
2609
+ "proc-macro2",
2610
+ "quote",
2611
+ "syn 2.0.117",
2612
+ ]
2613
+
2614
+ [[package]]
2615
+ name = "sysinfo"
2616
+ version = "0.33.1"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "4fc858248ea01b66f19d8e8a6d55f41deaf91e9d495246fd01368d99935c6c01"
2619
+ dependencies = [
2620
+ "core-foundation-sys",
2621
+ "libc",
2622
+ "memchr",
2623
+ "ntapi",
2624
+ "windows",
2625
+ ]
2626
+
2627
+ [[package]]
2628
+ name = "target-lexicon"
2629
+ version = "0.13.5"
2630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2631
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2632
+
2633
+ [[package]]
2634
+ name = "thiserror"
2635
+ version = "1.0.69"
2636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2637
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2638
+ dependencies = [
2639
+ "thiserror-impl 1.0.69",
2640
+ ]
2641
+
2642
+ [[package]]
2643
+ name = "thiserror"
2644
+ version = "2.0.18"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2647
+ dependencies = [
2648
+ "thiserror-impl 2.0.18",
2649
+ ]
2650
+
2651
+ [[package]]
2652
+ name = "thiserror-impl"
2653
+ version = "1.0.69"
2654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2655
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2656
+ dependencies = [
2657
+ "proc-macro2",
2658
+ "quote",
2659
+ "syn 2.0.117",
2660
+ ]
2661
+
2662
+ [[package]]
2663
+ name = "thiserror-impl"
2664
+ version = "2.0.18"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2667
+ dependencies = [
2668
+ "proc-macro2",
2669
+ "quote",
2670
+ "syn 2.0.117",
2671
+ ]
2672
+
2673
+ [[package]]
2674
+ name = "time"
2675
+ version = "0.3.47"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2678
+ dependencies = [
2679
+ "deranged",
2680
+ "itoa",
2681
+ "js-sys",
2682
+ "libc",
2683
+ "num-conv",
2684
+ "num_threads",
2685
+ "powerfmt",
2686
+ "serde_core",
2687
+ "time-core",
2688
+ "time-macros",
2689
+ ]
2690
+
2691
+ [[package]]
2692
+ name = "time-core"
2693
+ version = "0.1.8"
2694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2695
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2696
+
2697
+ [[package]]
2698
+ name = "time-macros"
2699
+ version = "0.2.27"
2700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2701
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2702
+ dependencies = [
2703
+ "num-conv",
2704
+ "time-core",
2705
+ ]
2706
+
2707
+ [[package]]
2708
+ name = "time-tz"
2709
+ version = "2.0.0"
2710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2711
+ checksum = "733bc522e97980eb421cbf381160ff225bd14262a48a739110f6653c6258d625"
2712
+ dependencies = [
2713
+ "cfg-if",
2714
+ "parse-zoneinfo",
2715
+ "phf 0.11.3",
2716
+ "phf_codegen",
2717
+ "serde",
2718
+ "serde-xml-rs",
2719
+ "time",
2720
+ "wasm-bindgen",
2721
+ ]
2722
+
2723
+ [[package]]
2724
+ name = "tiny_http"
2725
+ version = "0.12.0"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82"
2728
+ dependencies = [
2729
+ "ascii",
2730
+ "chunked_transfer",
2731
+ "httpdate",
2732
+ "log",
2733
+ ]
2734
+
2735
+ [[package]]
2736
+ name = "tinystr"
2737
+ version = "0.8.3"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2740
+ dependencies = [
2741
+ "displaydoc",
2742
+ "zerovec",
2743
+ ]
2744
+
2745
+ [[package]]
2746
+ name = "tinyvec"
2747
+ version = "1.11.0"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2750
+ dependencies = [
2751
+ "tinyvec_macros",
2752
+ ]
2753
+
2754
+ [[package]]
2755
+ name = "tinyvec_macros"
2756
+ version = "0.1.1"
2757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2758
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2759
+
2760
+ [[package]]
2761
+ name = "tokio"
2762
+ version = "1.52.3"
2763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2764
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
2765
+ dependencies = [
2766
+ "bytes",
2767
+ "libc",
2768
+ "mio",
2769
+ "pin-project-lite",
2770
+ "socket2",
2771
+ "tokio-macros",
2772
+ "windows-sys 0.61.2",
2773
+ ]
2774
+
2775
+ [[package]]
2776
+ name = "tokio-macros"
2777
+ version = "2.7.0"
2778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2779
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2780
+ dependencies = [
2781
+ "proc-macro2",
2782
+ "quote",
2783
+ "syn 2.0.117",
2784
+ ]
2785
+
2786
+ [[package]]
2787
+ name = "tokio-rustls"
2788
+ version = "0.26.4"
2789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2790
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2791
+ dependencies = [
2792
+ "rustls",
2793
+ "tokio",
2794
+ ]
2795
+
2796
+ [[package]]
2797
+ name = "tokio-stream"
2798
+ version = "0.1.19"
2799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2800
+ checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
2801
+ dependencies = [
2802
+ "futures-core",
2803
+ "pin-project-lite",
2804
+ "tokio",
2805
+ ]
2806
+
2807
+ [[package]]
2808
+ name = "tokio-util"
2809
+ version = "0.7.18"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2812
+ dependencies = [
2813
+ "bytes",
2814
+ "futures-core",
2815
+ "futures-sink",
2816
+ "pin-project-lite",
2817
+ "tokio",
2818
+ ]
2819
+
2820
+ [[package]]
2821
+ name = "tower"
2822
+ version = "0.5.3"
2823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2824
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2825
+ dependencies = [
2826
+ "futures-core",
2827
+ "futures-util",
2828
+ "pin-project-lite",
2829
+ "sync_wrapper",
2830
+ "tokio",
2831
+ "tower-layer",
2832
+ "tower-service",
2833
+ ]
2834
+
2835
+ [[package]]
2836
+ name = "tower-http"
2837
+ version = "0.6.11"
2838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2839
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
2840
+ dependencies = [
2841
+ "bitflags",
2842
+ "bytes",
2843
+ "futures-util",
2844
+ "http",
2845
+ "http-body",
2846
+ "pin-project-lite",
2847
+ "tower",
2848
+ "tower-layer",
2849
+ "tower-service",
2850
+ "url",
2851
+ ]
2852
+
2853
+ [[package]]
2854
+ name = "tower-layer"
2855
+ version = "0.3.3"
2856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2857
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2858
+
2859
+ [[package]]
2860
+ name = "tower-service"
2861
+ version = "0.3.3"
2862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2863
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2864
+
2865
+ [[package]]
2866
+ name = "tracing"
2867
+ version = "0.1.44"
2868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2869
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2870
+ dependencies = [
2871
+ "pin-project-lite",
2872
+ "tracing-core",
2873
+ ]
2874
+
2875
+ [[package]]
2876
+ name = "tracing-core"
2877
+ version = "0.1.36"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2880
+ dependencies = [
2881
+ "once_cell",
2882
+ ]
2883
+
2884
+ [[package]]
2885
+ name = "try-lock"
2886
+ version = "0.2.5"
2887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2888
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2889
+
2890
+ [[package]]
2891
+ name = "unicode-ident"
2892
+ version = "1.0.24"
2893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2894
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2895
+
2896
+ [[package]]
2897
+ name = "unicode-normalization"
2898
+ version = "0.1.25"
2899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2900
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
2901
+ dependencies = [
2902
+ "tinyvec",
2903
+ ]
2904
+
2905
+ [[package]]
2906
+ name = "unicode-reverse"
2907
+ version = "1.0.9"
2908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2909
+ checksum = "4b6f4888ebc23094adfb574fdca9fdc891826287a6397d2cd28802ffd6f20c76"
2910
+ dependencies = [
2911
+ "unicode-segmentation",
2912
+ ]
2913
+
2914
+ [[package]]
2915
+ name = "unicode-segmentation"
2916
+ version = "1.13.2"
2917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2918
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
2919
+
2920
+ [[package]]
2921
+ name = "unicode-width"
2922
+ version = "0.2.2"
2923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2924
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2925
+
2926
+ [[package]]
2927
+ name = "unicode-xid"
2928
+ version = "0.2.6"
2929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2930
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2931
+
2932
+ [[package]]
2933
+ name = "untrusted"
2934
+ version = "0.9.0"
2935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2936
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2937
+
2938
+ [[package]]
2939
+ name = "url"
2940
+ version = "2.5.8"
2941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2942
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2943
+ dependencies = [
2944
+ "form_urlencoded",
2945
+ "idna",
2946
+ "percent-encoding",
2947
+ "serde",
2948
+ ]
2949
+
2950
+ [[package]]
2951
+ name = "utf8_iter"
2952
+ version = "1.0.4"
2953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2954
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2955
+
2956
+ [[package]]
2957
+ name = "uuid"
2958
+ version = "1.23.2"
2959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2960
+ checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
2961
+ dependencies = [
2962
+ "getrandom 0.4.2",
2963
+ "js-sys",
2964
+ "wasm-bindgen",
2965
+ ]
2966
+
2967
+ [[package]]
2968
+ name = "value-trait"
2969
+ version = "0.10.1"
2970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2971
+ checksum = "9170e001f458781e92711d2ad666110f153e4e50bfd5cbd02db6547625714187"
2972
+ dependencies = [
2973
+ "float-cmp",
2974
+ "halfbrown",
2975
+ "itoa",
2976
+ "ryu",
2977
+ ]
2978
+
2979
+ [[package]]
2980
+ name = "version_check"
2981
+ version = "0.9.5"
2982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2983
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2984
+
2985
+ [[package]]
2986
+ name = "want"
2987
+ version = "0.3.1"
2988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2989
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2990
+ dependencies = [
2991
+ "try-lock",
2992
+ ]
2993
+
2994
+ [[package]]
2995
+ name = "wasi"
2996
+ version = "0.11.1+wasi-snapshot-preview1"
2997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2998
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2999
+
3000
+ [[package]]
3001
+ name = "wasip2"
3002
+ version = "1.0.3+wasi-0.2.9"
3003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3004
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
3005
+ dependencies = [
3006
+ "wit-bindgen 0.57.1",
3007
+ ]
3008
+
3009
+ [[package]]
3010
+ name = "wasip3"
3011
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3013
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3014
+ dependencies = [
3015
+ "wit-bindgen 0.51.0",
3016
+ ]
3017
+
3018
+ [[package]]
3019
+ name = "wasm-bindgen"
3020
+ version = "0.2.122"
3021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3022
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
3023
+ dependencies = [
3024
+ "cfg-if",
3025
+ "once_cell",
3026
+ "rustversion",
3027
+ "wasm-bindgen-macro",
3028
+ "wasm-bindgen-shared",
3029
+ ]
3030
+
3031
+ [[package]]
3032
+ name = "wasm-bindgen-futures"
3033
+ version = "0.4.72"
3034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3035
+ checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
3036
+ dependencies = [
3037
+ "js-sys",
3038
+ "wasm-bindgen",
3039
+ ]
3040
+
3041
+ [[package]]
3042
+ name = "wasm-bindgen-macro"
3043
+ version = "0.2.122"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
3046
+ dependencies = [
3047
+ "quote",
3048
+ "wasm-bindgen-macro-support",
3049
+ ]
3050
+
3051
+ [[package]]
3052
+ name = "wasm-bindgen-macro-support"
3053
+ version = "0.2.122"
3054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3055
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
3056
+ dependencies = [
3057
+ "bumpalo",
3058
+ "proc-macro2",
3059
+ "quote",
3060
+ "syn 2.0.117",
3061
+ "wasm-bindgen-shared",
3062
+ ]
3063
+
3064
+ [[package]]
3065
+ name = "wasm-bindgen-shared"
3066
+ version = "0.2.122"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
3069
+ dependencies = [
3070
+ "unicode-ident",
3071
+ ]
3072
+
3073
+ [[package]]
3074
+ name = "wasm-encoder"
3075
+ version = "0.244.0"
3076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3077
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3078
+ dependencies = [
3079
+ "leb128fmt",
3080
+ "wasmparser",
3081
+ ]
3082
+
3083
+ [[package]]
3084
+ name = "wasm-metadata"
3085
+ version = "0.244.0"
3086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3087
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3088
+ dependencies = [
3089
+ "anyhow",
3090
+ "indexmap",
3091
+ "wasm-encoder",
3092
+ "wasmparser",
3093
+ ]
3094
+
3095
+ [[package]]
3096
+ name = "wasmparser"
3097
+ version = "0.244.0"
3098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3099
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3100
+ dependencies = [
3101
+ "bitflags",
3102
+ "hashbrown 0.15.5",
3103
+ "indexmap",
3104
+ "semver",
3105
+ ]
3106
+
3107
+ [[package]]
3108
+ name = "web-sys"
3109
+ version = "0.3.99"
3110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3111
+ checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
3112
+ dependencies = [
3113
+ "js-sys",
3114
+ "wasm-bindgen",
3115
+ ]
3116
+
3117
+ [[package]]
3118
+ name = "web-time"
3119
+ version = "1.1.0"
3120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3121
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3122
+ dependencies = [
3123
+ "js-sys",
3124
+ "wasm-bindgen",
3125
+ ]
3126
+
3127
+ [[package]]
3128
+ name = "webpki-roots"
3129
+ version = "1.0.9"
3130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+ checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
3132
+ dependencies = [
3133
+ "rustls-pki-types",
3134
+ ]
3135
+
3136
+ [[package]]
3137
+ name = "winapi"
3138
+ version = "0.3.9"
3139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3140
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3141
+ dependencies = [
3142
+ "winapi-i686-pc-windows-gnu",
3143
+ "winapi-x86_64-pc-windows-gnu",
3144
+ ]
3145
+
3146
+ [[package]]
3147
+ name = "winapi-i686-pc-windows-gnu"
3148
+ version = "0.4.0"
3149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3150
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3151
+
3152
+ [[package]]
3153
+ name = "winapi-x86_64-pc-windows-gnu"
3154
+ version = "0.4.0"
3155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3156
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3157
+
3158
+ [[package]]
3159
+ name = "windows"
3160
+ version = "0.57.0"
3161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3162
+ checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
3163
+ dependencies = [
3164
+ "windows-core 0.57.0",
3165
+ "windows-targets",
3166
+ ]
3167
+
3168
+ [[package]]
3169
+ name = "windows-core"
3170
+ version = "0.57.0"
3171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3172
+ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
3173
+ dependencies = [
3174
+ "windows-implement 0.57.0",
3175
+ "windows-interface 0.57.0",
3176
+ "windows-result 0.1.2",
3177
+ "windows-targets",
3178
+ ]
3179
+
3180
+ [[package]]
3181
+ name = "windows-core"
3182
+ version = "0.62.2"
3183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3184
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3185
+ dependencies = [
3186
+ "windows-implement 0.60.2",
3187
+ "windows-interface 0.59.3",
3188
+ "windows-link",
3189
+ "windows-result 0.4.1",
3190
+ "windows-strings",
3191
+ ]
3192
+
3193
+ [[package]]
3194
+ name = "windows-implement"
3195
+ version = "0.57.0"
3196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3197
+ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
3198
+ dependencies = [
3199
+ "proc-macro2",
3200
+ "quote",
3201
+ "syn 2.0.117",
3202
+ ]
3203
+
3204
+ [[package]]
3205
+ name = "windows-implement"
3206
+ version = "0.60.2"
3207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3208
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3209
+ dependencies = [
3210
+ "proc-macro2",
3211
+ "quote",
3212
+ "syn 2.0.117",
3213
+ ]
3214
+
3215
+ [[package]]
3216
+ name = "windows-interface"
3217
+ version = "0.57.0"
3218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3219
+ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
3220
+ dependencies = [
3221
+ "proc-macro2",
3222
+ "quote",
3223
+ "syn 2.0.117",
3224
+ ]
3225
+
3226
+ [[package]]
3227
+ name = "windows-interface"
3228
+ version = "0.59.3"
3229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3230
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3231
+ dependencies = [
3232
+ "proc-macro2",
3233
+ "quote",
3234
+ "syn 2.0.117",
3235
+ ]
3236
+
3237
+ [[package]]
3238
+ name = "windows-link"
3239
+ version = "0.2.1"
3240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3241
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3242
+
3243
+ [[package]]
3244
+ name = "windows-result"
3245
+ version = "0.1.2"
3246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3247
+ checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
3248
+ dependencies = [
3249
+ "windows-targets",
3250
+ ]
3251
+
3252
+ [[package]]
3253
+ name = "windows-result"
3254
+ version = "0.4.1"
3255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3256
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3257
+ dependencies = [
3258
+ "windows-link",
3259
+ ]
3260
+
3261
+ [[package]]
3262
+ name = "windows-strings"
3263
+ version = "0.5.1"
3264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3265
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3266
+ dependencies = [
3267
+ "windows-link",
3268
+ ]
3269
+
3270
+ [[package]]
3271
+ name = "windows-sys"
3272
+ version = "0.52.0"
3273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3274
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3275
+ dependencies = [
3276
+ "windows-targets",
3277
+ ]
3278
+
3279
+ [[package]]
3280
+ name = "windows-sys"
3281
+ version = "0.61.2"
3282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3283
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3284
+ dependencies = [
3285
+ "windows-link",
3286
+ ]
3287
+
3288
+ [[package]]
3289
+ name = "windows-targets"
3290
+ version = "0.52.6"
3291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3292
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3293
+ dependencies = [
3294
+ "windows_aarch64_gnullvm",
3295
+ "windows_aarch64_msvc",
3296
+ "windows_i686_gnu",
3297
+ "windows_i686_gnullvm",
3298
+ "windows_i686_msvc",
3299
+ "windows_x86_64_gnu",
3300
+ "windows_x86_64_gnullvm",
3301
+ "windows_x86_64_msvc",
3302
+ ]
3303
+
3304
+ [[package]]
3305
+ name = "windows_aarch64_gnullvm"
3306
+ version = "0.52.6"
3307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3308
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3309
+
3310
+ [[package]]
3311
+ name = "windows_aarch64_msvc"
3312
+ version = "0.52.6"
3313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3314
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3315
+
3316
+ [[package]]
3317
+ name = "windows_i686_gnu"
3318
+ version = "0.52.6"
3319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3320
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3321
+
3322
+ [[package]]
3323
+ name = "windows_i686_gnullvm"
3324
+ version = "0.52.6"
3325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3326
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3327
+
3328
+ [[package]]
3329
+ name = "windows_i686_msvc"
3330
+ version = "0.52.6"
3331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3332
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3333
+
3334
+ [[package]]
3335
+ name = "windows_x86_64_gnu"
3336
+ version = "0.52.6"
3337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3338
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3339
+
3340
+ [[package]]
3341
+ name = "windows_x86_64_gnullvm"
3342
+ version = "0.52.6"
3343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3344
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3345
+
3346
+ [[package]]
3347
+ name = "windows_x86_64_msvc"
3348
+ version = "0.52.6"
3349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3350
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3351
+
3352
+ [[package]]
3353
+ name = "wit-bindgen"
3354
+ version = "0.51.0"
3355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3356
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3357
+ dependencies = [
3358
+ "wit-bindgen-rust-macro",
3359
+ ]
3360
+
3361
+ [[package]]
3362
+ name = "wit-bindgen"
3363
+ version = "0.57.1"
3364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3365
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3366
+
3367
+ [[package]]
3368
+ name = "wit-bindgen-core"
3369
+ version = "0.51.0"
3370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3371
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3372
+ dependencies = [
3373
+ "anyhow",
3374
+ "heck",
3375
+ "wit-parser",
3376
+ ]
3377
+
3378
+ [[package]]
3379
+ name = "wit-bindgen-rust"
3380
+ version = "0.51.0"
3381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3382
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3383
+ dependencies = [
3384
+ "anyhow",
3385
+ "heck",
3386
+ "indexmap",
3387
+ "prettyplease",
3388
+ "syn 2.0.117",
3389
+ "wasm-metadata",
3390
+ "wit-bindgen-core",
3391
+ "wit-component",
3392
+ ]
3393
+
3394
+ [[package]]
3395
+ name = "wit-bindgen-rust-macro"
3396
+ version = "0.51.0"
3397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3398
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3399
+ dependencies = [
3400
+ "anyhow",
3401
+ "prettyplease",
3402
+ "proc-macro2",
3403
+ "quote",
3404
+ "syn 2.0.117",
3405
+ "wit-bindgen-core",
3406
+ "wit-bindgen-rust",
3407
+ ]
3408
+
3409
+ [[package]]
3410
+ name = "wit-component"
3411
+ version = "0.244.0"
3412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3413
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3414
+ dependencies = [
3415
+ "anyhow",
3416
+ "bitflags",
3417
+ "indexmap",
3418
+ "log",
3419
+ "serde",
3420
+ "serde_derive",
3421
+ "serde_json",
3422
+ "wasm-encoder",
3423
+ "wasm-metadata",
3424
+ "wasmparser",
3425
+ "wit-parser",
3426
+ ]
3427
+
3428
+ [[package]]
3429
+ name = "wit-parser"
3430
+ version = "0.244.0"
3431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3432
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3433
+ dependencies = [
3434
+ "anyhow",
3435
+ "id-arena",
3436
+ "indexmap",
3437
+ "log",
3438
+ "semver",
3439
+ "serde",
3440
+ "serde_derive",
3441
+ "serde_json",
3442
+ "unicode-xid",
3443
+ "wasmparser",
3444
+ ]
3445
+
3446
+ [[package]]
3447
+ name = "writeable"
3448
+ version = "0.6.3"
3449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3450
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3451
+
3452
+ [[package]]
3453
+ name = "xml-rs"
3454
+ version = "0.8.28"
3455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3456
+ checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
3457
+
3458
+ [[package]]
3459
+ name = "xxhash-rust"
3460
+ version = "0.8.15"
3461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3462
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
3463
+
3464
+ [[package]]
3465
+ name = "yoke"
3466
+ version = "0.8.3"
3467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3468
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
3469
+ dependencies = [
3470
+ "stable_deref_trait",
3471
+ "yoke-derive",
3472
+ "zerofrom",
3473
+ ]
3474
+
3475
+ [[package]]
3476
+ name = "yoke-derive"
3477
+ version = "0.8.2"
3478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3479
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3480
+ dependencies = [
3481
+ "proc-macro2",
3482
+ "quote",
3483
+ "syn 2.0.117",
3484
+ "synstructure",
3485
+ ]
3486
+
3487
+ [[package]]
3488
+ name = "zerocopy"
3489
+ version = "0.8.49"
3490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3491
+ checksum = "bce33a6288fa3f072a8c2c7d0f2fdbb90e28298f0135c1f99b96c3db2efcc60b"
3492
+ dependencies = [
3493
+ "zerocopy-derive",
3494
+ ]
3495
+
3496
+ [[package]]
3497
+ name = "zerocopy-derive"
3498
+ version = "0.8.49"
3499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3500
+ checksum = "8fd425244944f4ab65ccff928e7323354c5a018c75838362fdce749dfad2ee1e"
3501
+ dependencies = [
3502
+ "proc-macro2",
3503
+ "quote",
3504
+ "syn 2.0.117",
3505
+ ]
3506
+
3507
+ [[package]]
3508
+ name = "zerofrom"
3509
+ version = "0.1.8"
3510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3511
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3512
+ dependencies = [
3513
+ "zerofrom-derive",
3514
+ ]
3515
+
3516
+ [[package]]
3517
+ name = "zerofrom-derive"
3518
+ version = "0.1.7"
3519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3520
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3521
+ dependencies = [
3522
+ "proc-macro2",
3523
+ "quote",
3524
+ "syn 2.0.117",
3525
+ "synstructure",
3526
+ ]
3527
+
3528
+ [[package]]
3529
+ name = "zeroize"
3530
+ version = "1.9.0"
3531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3532
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
3533
+
3534
+ [[package]]
3535
+ name = "zerotrie"
3536
+ version = "0.2.4"
3537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3538
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3539
+ dependencies = [
3540
+ "displaydoc",
3541
+ "yoke",
3542
+ "zerofrom",
3543
+ ]
3544
+
3545
+ [[package]]
3546
+ name = "zerovec"
3547
+ version = "0.11.6"
3548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3549
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3550
+ dependencies = [
3551
+ "yoke",
3552
+ "zerofrom",
3553
+ "zerovec-derive",
3554
+ ]
3555
+
3556
+ [[package]]
3557
+ name = "zerovec-derive"
3558
+ version = "0.11.3"
3559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3560
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3561
+ dependencies = [
3562
+ "proc-macro2",
3563
+ "quote",
3564
+ "syn 2.0.117",
3565
+ ]
3566
+
3567
+ [[package]]
3568
+ name = "zmij"
3569
+ version = "1.0.21"
3570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3571
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
3572
+
3573
+ [[package]]
3574
+ name = "zstd"
3575
+ version = "0.13.3"
3576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3577
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3578
+ dependencies = [
3579
+ "zstd-safe",
3580
+ ]
3581
+
3582
+ [[package]]
3583
+ name = "zstd-safe"
3584
+ version = "7.2.4"
3585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3586
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
3587
+ dependencies = [
3588
+ "zstd-sys",
3589
+ ]
3590
+
3591
+ [[package]]
3592
+ name = "zstd-sys"
3593
+ version = "2.0.16+zstd.1.5.7"
3594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3595
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
3596
+ dependencies = [
3597
+ "cc",
3598
+ "pkg-config",
3599
+ ]