tea-bond 0.3.11__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.

Potentially problematic release.


This version of tea-bond might be problematic. Click here for more details.

Files changed (100) hide show
  1. tea_bond-0.3.11/Cargo.lock +4159 -0
  2. tea_bond-0.3.11/Cargo.toml +13 -0
  3. tea_bond-0.3.11/PKG-INFO +7 -0
  4. tea_bond-0.3.11/pybond/.gitignore +76 -0
  5. tea_bond-0.3.11/pybond/Cargo.toml +40 -0
  6. tea_bond-0.3.11/pybond/__init__.py +18 -0
  7. tea_bond-0.3.11/pybond/bond.py +190 -0
  8. tea_bond-0.3.11/pybond/download.py +147 -0
  9. tea_bond-0.3.11/pybond/ffi/__init__.py +4 -0
  10. tea_bond-0.3.11/pybond/ffi/bond.py +68 -0
  11. tea_bond-0.3.11/pybond/ffi/datetime.py +58 -0
  12. tea_bond-0.3.11/pybond/ffi/duration.py +19 -0
  13. tea_bond-0.3.11/pybond/ffi/evaluators.py +186 -0
  14. tea_bond-0.3.11/pybond/ffi/lib.py +8 -0
  15. tea_bond-0.3.11/pybond/nb/__init__.py +31 -0
  16. tea_bond-0.3.11/pybond/nb/ir_utils.py +47 -0
  17. tea_bond-0.3.11/pybond/nb/nb_bond.py +213 -0
  18. tea_bond-0.3.11/pybond/nb/nb_date.py +209 -0
  19. tea_bond-0.3.11/pybond/nb/nb_datetime.py +415 -0
  20. tea_bond-0.3.11/pybond/nb/nb_duration.py +70 -0
  21. tea_bond-0.3.11/pybond/nb/nb_evaluators.py +557 -0
  22. tea_bond-0.3.11/pybond/nb/nb_time.py +279 -0
  23. tea_bond-0.3.11/pybond/nb_test.py +35 -0
  24. tea_bond-0.3.11/pybond/pd.py +458 -0
  25. tea_bond-0.3.11/pybond/pl.py +480 -0
  26. tea_bond-0.3.11/pybond/pnl.py +110 -0
  27. tea_bond-0.3.11/pybond/polars_utils.py +96 -0
  28. tea_bond-0.3.11/pybond/pybond/__init__.py +18 -0
  29. tea_bond-0.3.11/pybond/pybond/bond.py +190 -0
  30. tea_bond-0.3.11/pybond/pybond/download.py +147 -0
  31. tea_bond-0.3.11/pybond/pybond/ffi/__init__.py +4 -0
  32. tea_bond-0.3.11/pybond/pybond/ffi/bond.py +68 -0
  33. tea_bond-0.3.11/pybond/pybond/ffi/datetime.py +58 -0
  34. tea_bond-0.3.11/pybond/pybond/ffi/duration.py +19 -0
  35. tea_bond-0.3.11/pybond/pybond/ffi/evaluators.py +186 -0
  36. tea_bond-0.3.11/pybond/pybond/ffi/lib.py +8 -0
  37. tea_bond-0.3.11/pybond/pybond/nb/__init__.py +31 -0
  38. tea_bond-0.3.11/pybond/pybond/nb/ir_utils.py +47 -0
  39. tea_bond-0.3.11/pybond/pybond/nb/nb_bond.py +213 -0
  40. tea_bond-0.3.11/pybond/pybond/nb/nb_date.py +209 -0
  41. tea_bond-0.3.11/pybond/pybond/nb/nb_datetime.py +415 -0
  42. tea_bond-0.3.11/pybond/pybond/nb/nb_duration.py +70 -0
  43. tea_bond-0.3.11/pybond/pybond/nb/nb_evaluators.py +557 -0
  44. tea_bond-0.3.11/pybond/pybond/nb/nb_time.py +279 -0
  45. tea_bond-0.3.11/pybond/pybond/pd.py +458 -0
  46. tea_bond-0.3.11/pybond/pybond/pl.py +480 -0
  47. tea_bond-0.3.11/pybond/pybond/pnl.py +110 -0
  48. tea_bond-0.3.11/pybond/pybond/polars_utils.py +96 -0
  49. tea_bond-0.3.11/pybond/pybond/pybond.pyi +391 -0
  50. tea_bond-0.3.11/pybond/pybond.pyi +391 -0
  51. tea_bond-0.3.11/pybond/src/batch_eval.rs +599 -0
  52. tea_bond-0.3.11/pybond/src/bond.rs +500 -0
  53. tea_bond-0.3.11/pybond/src/calendar.rs +42 -0
  54. tea_bond-0.3.11/pybond/src/ffi/bond.rs +94 -0
  55. tea_bond-0.3.11/pybond/src/ffi/datetime.rs +102 -0
  56. tea_bond-0.3.11/pybond/src/ffi/duration.rs +31 -0
  57. tea_bond-0.3.11/pybond/src/ffi/evaluators.rs +511 -0
  58. tea_bond-0.3.11/pybond/src/ffi/mod.rs +5 -0
  59. tea_bond-0.3.11/pybond/src/ffi/utils.rs +4 -0
  60. tea_bond-0.3.11/pybond/src/future.rs +88 -0
  61. tea_bond-0.3.11/pybond/src/lib.rs +38 -0
  62. tea_bond-0.3.11/pybond/src/pnl.rs +157 -0
  63. tea_bond-0.3.11/pybond/src/tf_evaluator.rs +610 -0
  64. tea_bond-0.3.11/pybond/src/utils.rs +81 -0
  65. tea_bond-0.3.11/pybond/test.py +80 -0
  66. tea_bond-0.3.11/pyproject.toml +19 -0
  67. tea_bond-0.3.11/tea-bond/Cargo.toml +29 -0
  68. tea_bond-0.3.11/tea-bond/src/batch/evaluator.rs +30 -0
  69. tea_bond-0.3.11/tea-bond/src/batch/mod.rs +1 -0
  70. tea_bond-0.3.11/tea-bond/src/bond/bond_ytm.rs +52 -0
  71. tea_bond-0.3.11/tea-bond/src/bond/cached_bond.rs +149 -0
  72. tea_bond-0.3.11/tea-bond/src/bond/download/china_money.rs +152 -0
  73. tea_bond-0.3.11/tea-bond/src/bond/download/mod.rs +23 -0
  74. tea_bond-0.3.11/tea-bond/src/bond/download/sse.rs +158 -0
  75. tea_bond-0.3.11/tea-bond/src/bond/enums.rs +142 -0
  76. tea_bond-0.3.11/tea-bond/src/bond/impl_convert.rs +142 -0
  77. tea_bond-0.3.11/tea-bond/src/bond/impl_traits.rs +58 -0
  78. tea_bond-0.3.11/tea-bond/src/bond/io.rs +103 -0
  79. tea_bond-0.3.11/tea-bond/src/bond/mod.rs +548 -0
  80. tea_bond-0.3.11/tea-bond/src/day_counter.rs +113 -0
  81. tea_bond-0.3.11/tea-bond/src/export.rs +7 -0
  82. tea_bond-0.3.11/tea-bond/src/future/future_price.rs +41 -0
  83. tea_bond-0.3.11/tea-bond/src/future/future_type.rs +60 -0
  84. tea_bond-0.3.11/tea-bond/src/future/impls.rs +72 -0
  85. tea_bond-0.3.11/tea-bond/src/future/mod.rs +153 -0
  86. tea_bond-0.3.11/tea-bond/src/lib.rs +18 -0
  87. tea_bond-0.3.11/tea-bond/src/pnl/fee.rs +76 -0
  88. tea_bond-0.3.11/tea-bond/src/pnl/mod.rs +154 -0
  89. tea_bond-0.3.11/tea-bond/src/tf_evaluator/evaluator.rs +448 -0
  90. tea_bond-0.3.11/tea-bond/src/tf_evaluator/impl_traits.rs +76 -0
  91. tea_bond-0.3.11/tea-bond/src/tf_evaluator/mod.rs +216 -0
  92. tea_bond-0.3.11/tea-bond/src/tf_evaluator/update_with_new_info.rs +163 -0
  93. tea_bond-0.3.11/tea-bond/src/utils.rs +65 -0
  94. tea_bond-0.3.11/tea-calendar/Cargo.toml +7 -0
  95. tea_bond-0.3.11/tea-calendar/src/calendars/china/ib.rs +175 -0
  96. tea_bond-0.3.11/tea-calendar/src/calendars/china/mod.rs +42 -0
  97. tea_bond-0.3.11/tea-calendar/src/calendars/china/others.rs +25 -0
  98. tea_bond-0.3.11/tea-calendar/src/calendars/china/sse.rs +171 -0
  99. tea_bond-0.3.11/tea-calendar/src/calendars/mod.rs +55 -0
  100. tea_bond-0.3.11/tea-calendar/src/lib.rs +3 -0
@@ -0,0 +1,4159 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.24.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
19
+
20
+ [[package]]
21
+ name = "ahash"
22
+ version = "0.8.12"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
25
+ dependencies = [
26
+ "cfg-if",
27
+ "once_cell",
28
+ "version_check",
29
+ "zerocopy",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "aho-corasick"
34
+ version = "1.1.3"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
37
+ dependencies = [
38
+ "memchr",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "allocator-api2"
43
+ version = "0.2.21"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
46
+
47
+ [[package]]
48
+ name = "android-tzdata"
49
+ version = "0.1.1"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
52
+
53
+ [[package]]
54
+ name = "android_system_properties"
55
+ version = "0.1.5"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
58
+ dependencies = [
59
+ "libc",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "anyhow"
64
+ version = "1.0.98"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
67
+
68
+ [[package]]
69
+ name = "argminmax"
70
+ version = "0.6.3"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
73
+ dependencies = [
74
+ "num-traits",
75
+ ]
76
+
77
+ [[package]]
78
+ name = "array-init-cursor"
79
+ version = "0.2.1"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
82
+
83
+ [[package]]
84
+ name = "arrayref"
85
+ version = "0.3.9"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
88
+
89
+ [[package]]
90
+ name = "arrayvec"
91
+ version = "0.7.6"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
94
+
95
+ [[package]]
96
+ name = "async-channel"
97
+ version = "2.3.1"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
100
+ dependencies = [
101
+ "concurrent-queue",
102
+ "event-listener-strategy",
103
+ "futures-core",
104
+ "pin-project-lite",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "async-stream"
109
+ version = "0.3.6"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
112
+ dependencies = [
113
+ "async-stream-impl",
114
+ "futures-core",
115
+ "pin-project-lite",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "async-stream-impl"
120
+ version = "0.3.6"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
123
+ dependencies = [
124
+ "proc-macro2",
125
+ "quote",
126
+ "syn",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "async-trait"
131
+ version = "0.1.88"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
134
+ dependencies = [
135
+ "proc-macro2",
136
+ "quote",
137
+ "syn",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "atoi_simd"
142
+ version = "0.16.0"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "4790f9e8961209112beb783d85449b508673cf4a6a419c8449b210743ac4dbe9"
145
+
146
+ [[package]]
147
+ name = "atomic-waker"
148
+ version = "1.1.2"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
151
+
152
+ [[package]]
153
+ name = "autocfg"
154
+ version = "1.4.0"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
157
+
158
+ [[package]]
159
+ name = "backtrace"
160
+ version = "0.3.75"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
163
+ dependencies = [
164
+ "addr2line",
165
+ "cfg-if",
166
+ "libc",
167
+ "miniz_oxide",
168
+ "object",
169
+ "rustc-demangle",
170
+ "windows-targets 0.52.6",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "base64"
175
+ version = "0.22.1"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
178
+
179
+ [[package]]
180
+ name = "bincode"
181
+ version = "1.3.3"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
184
+ dependencies = [
185
+ "serde",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "bitflags"
190
+ version = "2.9.1"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
193
+ dependencies = [
194
+ "serde",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "blake3"
199
+ version = "1.8.2"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
202
+ dependencies = [
203
+ "arrayref",
204
+ "arrayvec",
205
+ "cc",
206
+ "cfg-if",
207
+ "constant_time_eq",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "bumpalo"
212
+ version = "3.17.0"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
215
+
216
+ [[package]]
217
+ name = "bytemuck"
218
+ version = "1.23.0"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
221
+ dependencies = [
222
+ "bytemuck_derive",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "bytemuck_derive"
227
+ version = "1.9.3"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1"
230
+ dependencies = [
231
+ "proc-macro2",
232
+ "quote",
233
+ "syn",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "byteorder"
238
+ version = "1.5.0"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
241
+
242
+ [[package]]
243
+ name = "bytes"
244
+ version = "1.10.1"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
247
+ dependencies = [
248
+ "serde",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "castaway"
253
+ version = "0.2.3"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
256
+ dependencies = [
257
+ "rustversion",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "cc"
262
+ version = "1.2.23"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "5f4ac86a9e5bc1e2b3449ab9d7d3a6a405e3d1bb28d7b9be8614f55846ae3766"
265
+ dependencies = [
266
+ "jobserver",
267
+ "libc",
268
+ "shlex",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "cfg-if"
273
+ version = "1.0.0"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
276
+
277
+ [[package]]
278
+ name = "cfg_aliases"
279
+ version = "0.2.1"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
282
+
283
+ [[package]]
284
+ name = "chrono"
285
+ version = "0.4.41"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
288
+ dependencies = [
289
+ "android-tzdata",
290
+ "iana-time-zone",
291
+ "js-sys",
292
+ "num-traits",
293
+ "serde",
294
+ "wasm-bindgen",
295
+ "windows-link",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "chrono-tz"
300
+ version = "0.10.3"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "efdce149c370f133a071ca8ef6ea340b7b88748ab0810097a9e2976eaa34b4f3"
303
+ dependencies = [
304
+ "chrono",
305
+ "chrono-tz-build",
306
+ "phf",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "chrono-tz-build"
311
+ version = "0.4.1"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402"
314
+ dependencies = [
315
+ "parse-zoneinfo",
316
+ "phf_codegen",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "comfy-table"
321
+ version = "7.1.4"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "4a65ebfec4fb190b6f90e944a817d60499ee0744e582530e2c9900a22e591d9a"
324
+ dependencies = [
325
+ "crossterm",
326
+ "unicode-segmentation",
327
+ "unicode-width",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "compact_str"
332
+ version = "0.8.1"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32"
335
+ dependencies = [
336
+ "castaway",
337
+ "cfg-if",
338
+ "itoa",
339
+ "rustversion",
340
+ "ryu",
341
+ "serde",
342
+ "static_assertions",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "compact_str"
347
+ version = "0.9.0"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
350
+ dependencies = [
351
+ "castaway",
352
+ "cfg-if",
353
+ "itoa",
354
+ "rustversion",
355
+ "ryu",
356
+ "serde",
357
+ "static_assertions",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "concurrent-queue"
362
+ version = "2.5.0"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
365
+ dependencies = [
366
+ "crossbeam-utils",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "constant_time_eq"
371
+ version = "0.3.1"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
374
+
375
+ [[package]]
376
+ name = "core-foundation"
377
+ version = "0.9.4"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
380
+ dependencies = [
381
+ "core-foundation-sys",
382
+ "libc",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "core-foundation"
387
+ version = "0.10.0"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
390
+ dependencies = [
391
+ "core-foundation-sys",
392
+ "libc",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "core-foundation-sys"
397
+ version = "0.8.7"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
400
+
401
+ [[package]]
402
+ name = "crc32fast"
403
+ version = "1.4.2"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
406
+ dependencies = [
407
+ "cfg-if",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "crossbeam-channel"
412
+ version = "0.5.15"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
415
+ dependencies = [
416
+ "crossbeam-utils",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "crossbeam-deque"
421
+ version = "0.8.6"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
424
+ dependencies = [
425
+ "crossbeam-epoch",
426
+ "crossbeam-utils",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "crossbeam-epoch"
431
+ version = "0.9.18"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
434
+ dependencies = [
435
+ "crossbeam-utils",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "crossbeam-queue"
440
+ version = "0.3.12"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
443
+ dependencies = [
444
+ "crossbeam-utils",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "crossbeam-utils"
449
+ version = "0.8.21"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
452
+
453
+ [[package]]
454
+ name = "crossterm"
455
+ version = "0.28.1"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
458
+ dependencies = [
459
+ "bitflags",
460
+ "crossterm_winapi",
461
+ "parking_lot",
462
+ "rustix 0.38.44",
463
+ "winapi",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "crossterm_winapi"
468
+ version = "0.9.1"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
471
+ dependencies = [
472
+ "winapi",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "derive_more"
477
+ version = "1.0.0"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05"
480
+ dependencies = [
481
+ "derive_more-impl",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "derive_more-impl"
486
+ version = "1.0.0"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
489
+ dependencies = [
490
+ "proc-macro2",
491
+ "quote",
492
+ "syn",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "displaydoc"
497
+ version = "0.2.5"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
500
+ dependencies = [
501
+ "proc-macro2",
502
+ "quote",
503
+ "syn",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "dyn-clone"
508
+ version = "1.0.19"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
511
+
512
+ [[package]]
513
+ name = "either"
514
+ version = "1.15.0"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
517
+
518
+ [[package]]
519
+ name = "encoding_rs"
520
+ version = "0.8.35"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
523
+ dependencies = [
524
+ "cfg-if",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "enum_dispatch"
529
+ version = "0.3.13"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
532
+ dependencies = [
533
+ "once_cell",
534
+ "proc-macro2",
535
+ "quote",
536
+ "syn",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "equivalent"
541
+ version = "1.0.2"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
544
+
545
+ [[package]]
546
+ name = "errno"
547
+ version = "0.3.12"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
550
+ dependencies = [
551
+ "libc",
552
+ "windows-sys 0.59.0",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "ethnum"
557
+ version = "1.5.1"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "0939f82868b77ef93ce3c3c3daf2b3c526b456741da5a1a4559e590965b6026b"
560
+
561
+ [[package]]
562
+ name = "event-listener"
563
+ version = "5.4.0"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
566
+ dependencies = [
567
+ "concurrent-queue",
568
+ "parking",
569
+ "pin-project-lite",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "event-listener-strategy"
574
+ version = "0.5.4"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
577
+ dependencies = [
578
+ "event-listener",
579
+ "pin-project-lite",
580
+ ]
581
+
582
+ [[package]]
583
+ name = "fallible-streaming-iterator"
584
+ version = "0.1.9"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
587
+
588
+ [[package]]
589
+ name = "fast-float2"
590
+ version = "0.2.3"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
593
+
594
+ [[package]]
595
+ name = "fastrand"
596
+ version = "2.3.0"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
599
+
600
+ [[package]]
601
+ name = "flate2"
602
+ version = "1.1.1"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
605
+ dependencies = [
606
+ "crc32fast",
607
+ "miniz_oxide",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "fnv"
612
+ version = "1.0.7"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
615
+
616
+ [[package]]
617
+ name = "foldhash"
618
+ version = "0.1.5"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
621
+
622
+ [[package]]
623
+ name = "foreign-types"
624
+ version = "0.3.2"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
627
+ dependencies = [
628
+ "foreign-types-shared",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "foreign-types-shared"
633
+ version = "0.1.1"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
636
+
637
+ [[package]]
638
+ name = "form_urlencoded"
639
+ version = "1.2.1"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
642
+ dependencies = [
643
+ "percent-encoding",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "fs4"
648
+ version = "0.13.1"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
651
+ dependencies = [
652
+ "rustix 1.0.7",
653
+ "windows-sys 0.59.0",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "futures"
658
+ version = "0.3.31"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
661
+ dependencies = [
662
+ "futures-channel",
663
+ "futures-core",
664
+ "futures-executor",
665
+ "futures-io",
666
+ "futures-sink",
667
+ "futures-task",
668
+ "futures-util",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "futures-channel"
673
+ version = "0.3.31"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
676
+ dependencies = [
677
+ "futures-core",
678
+ "futures-sink",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "futures-core"
683
+ version = "0.3.31"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
686
+
687
+ [[package]]
688
+ name = "futures-executor"
689
+ version = "0.3.31"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
692
+ dependencies = [
693
+ "futures-core",
694
+ "futures-task",
695
+ "futures-util",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "futures-io"
700
+ version = "0.3.31"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
703
+
704
+ [[package]]
705
+ name = "futures-macro"
706
+ version = "0.3.31"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
709
+ dependencies = [
710
+ "proc-macro2",
711
+ "quote",
712
+ "syn",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "futures-sink"
717
+ version = "0.3.31"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
720
+
721
+ [[package]]
722
+ name = "futures-task"
723
+ version = "0.3.31"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
726
+
727
+ [[package]]
728
+ name = "futures-util"
729
+ version = "0.3.31"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
732
+ dependencies = [
733
+ "futures-channel",
734
+ "futures-core",
735
+ "futures-io",
736
+ "futures-macro",
737
+ "futures-sink",
738
+ "futures-task",
739
+ "memchr",
740
+ "pin-project-lite",
741
+ "pin-utils",
742
+ "slab",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "getrandom"
747
+ version = "0.2.16"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
750
+ dependencies = [
751
+ "cfg-if",
752
+ "js-sys",
753
+ "libc",
754
+ "wasi 0.11.0+wasi-snapshot-preview1",
755
+ "wasm-bindgen",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "getrandom"
760
+ version = "0.3.3"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
763
+ dependencies = [
764
+ "cfg-if",
765
+ "js-sys",
766
+ "libc",
767
+ "r-efi",
768
+ "wasi 0.14.2+wasi-0.2.4",
769
+ "wasm-bindgen",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "gimli"
774
+ version = "0.31.1"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
777
+
778
+ [[package]]
779
+ name = "glob"
780
+ version = "0.3.2"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
783
+
784
+ [[package]]
785
+ name = "h2"
786
+ version = "0.4.10"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
789
+ dependencies = [
790
+ "atomic-waker",
791
+ "bytes",
792
+ "fnv",
793
+ "futures-core",
794
+ "futures-sink",
795
+ "http",
796
+ "indexmap",
797
+ "slab",
798
+ "tokio",
799
+ "tokio-util",
800
+ "tracing",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "hashbrown"
805
+ version = "0.14.5"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
808
+ dependencies = [
809
+ "ahash",
810
+ "allocator-api2",
811
+ "rayon",
812
+ "serde",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "hashbrown"
817
+ version = "0.15.3"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
820
+ dependencies = [
821
+ "allocator-api2",
822
+ "equivalent",
823
+ "foldhash",
824
+ "rayon",
825
+ "serde",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "heck"
830
+ version = "0.5.0"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
833
+
834
+ [[package]]
835
+ name = "hex"
836
+ version = "0.4.3"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
839
+
840
+ [[package]]
841
+ name = "home"
842
+ version = "0.5.11"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
845
+ dependencies = [
846
+ "windows-sys 0.59.0",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "http"
851
+ version = "1.3.1"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
854
+ dependencies = [
855
+ "bytes",
856
+ "fnv",
857
+ "itoa",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "http-body"
862
+ version = "1.0.1"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
865
+ dependencies = [
866
+ "bytes",
867
+ "http",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "http-body-util"
872
+ version = "0.1.3"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
875
+ dependencies = [
876
+ "bytes",
877
+ "futures-core",
878
+ "http",
879
+ "http-body",
880
+ "pin-project-lite",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "httparse"
885
+ version = "1.10.1"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
888
+
889
+ [[package]]
890
+ name = "humantime"
891
+ version = "2.2.0"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
894
+
895
+ [[package]]
896
+ name = "hyper"
897
+ version = "1.6.0"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
900
+ dependencies = [
901
+ "bytes",
902
+ "futures-channel",
903
+ "futures-util",
904
+ "h2",
905
+ "http",
906
+ "http-body",
907
+ "httparse",
908
+ "itoa",
909
+ "pin-project-lite",
910
+ "smallvec",
911
+ "tokio",
912
+ "want",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "hyper-rustls"
917
+ version = "0.27.5"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
920
+ dependencies = [
921
+ "futures-util",
922
+ "http",
923
+ "hyper",
924
+ "hyper-util",
925
+ "rustls",
926
+ "rustls-native-certs",
927
+ "rustls-pki-types",
928
+ "tokio",
929
+ "tokio-rustls",
930
+ "tower-service",
931
+ "webpki-roots 0.26.11",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "hyper-tls"
936
+ version = "0.6.0"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
939
+ dependencies = [
940
+ "bytes",
941
+ "http-body-util",
942
+ "hyper",
943
+ "hyper-util",
944
+ "native-tls",
945
+ "tokio",
946
+ "tokio-native-tls",
947
+ "tower-service",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "hyper-util"
952
+ version = "0.1.12"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "cf9f1e950e0d9d1d3c47184416723cf29c0d1f93bd8cccf37e4beb6b44f31710"
955
+ dependencies = [
956
+ "bytes",
957
+ "futures-channel",
958
+ "futures-util",
959
+ "http",
960
+ "http-body",
961
+ "hyper",
962
+ "libc",
963
+ "pin-project-lite",
964
+ "socket2",
965
+ "tokio",
966
+ "tower-service",
967
+ "tracing",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "iana-time-zone"
972
+ version = "0.1.63"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
975
+ dependencies = [
976
+ "android_system_properties",
977
+ "core-foundation-sys",
978
+ "iana-time-zone-haiku",
979
+ "js-sys",
980
+ "log",
981
+ "wasm-bindgen",
982
+ "windows-core 0.61.2",
983
+ ]
984
+
985
+ [[package]]
986
+ name = "iana-time-zone-haiku"
987
+ version = "0.1.2"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
990
+ dependencies = [
991
+ "cc",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "icu_collections"
996
+ version = "2.0.0"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
999
+ dependencies = [
1000
+ "displaydoc",
1001
+ "potential_utf",
1002
+ "yoke",
1003
+ "zerofrom",
1004
+ "zerovec",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "icu_locale_core"
1009
+ version = "2.0.0"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1012
+ dependencies = [
1013
+ "displaydoc",
1014
+ "litemap",
1015
+ "tinystr",
1016
+ "writeable",
1017
+ "zerovec",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "icu_normalizer"
1022
+ version = "2.0.0"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1025
+ dependencies = [
1026
+ "displaydoc",
1027
+ "icu_collections",
1028
+ "icu_normalizer_data",
1029
+ "icu_properties",
1030
+ "icu_provider",
1031
+ "smallvec",
1032
+ "zerovec",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "icu_normalizer_data"
1037
+ version = "2.0.0"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1040
+
1041
+ [[package]]
1042
+ name = "icu_properties"
1043
+ version = "2.0.1"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1046
+ dependencies = [
1047
+ "displaydoc",
1048
+ "icu_collections",
1049
+ "icu_locale_core",
1050
+ "icu_properties_data",
1051
+ "icu_provider",
1052
+ "potential_utf",
1053
+ "zerotrie",
1054
+ "zerovec",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "icu_properties_data"
1059
+ version = "2.0.1"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1062
+
1063
+ [[package]]
1064
+ name = "icu_provider"
1065
+ version = "2.0.0"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1068
+ dependencies = [
1069
+ "displaydoc",
1070
+ "icu_locale_core",
1071
+ "stable_deref_trait",
1072
+ "tinystr",
1073
+ "writeable",
1074
+ "yoke",
1075
+ "zerofrom",
1076
+ "zerotrie",
1077
+ "zerovec",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "idna"
1082
+ version = "1.0.3"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1085
+ dependencies = [
1086
+ "idna_adapter",
1087
+ "smallvec",
1088
+ "utf8_iter",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "idna_adapter"
1093
+ version = "1.2.1"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1096
+ dependencies = [
1097
+ "icu_normalizer",
1098
+ "icu_properties",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "indexmap"
1103
+ version = "2.9.0"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1106
+ dependencies = [
1107
+ "equivalent",
1108
+ "hashbrown 0.15.3",
1109
+ "serde",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "indoc"
1114
+ version = "2.0.6"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1117
+
1118
+ [[package]]
1119
+ name = "inventory"
1120
+ version = "0.3.20"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "ab08d7cd2c5897f2c949e5383ea7c7db03fb19130ffcfbf7eda795137ae3cb83"
1123
+ dependencies = [
1124
+ "rustversion",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "ipnet"
1129
+ version = "2.11.0"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1132
+
1133
+ [[package]]
1134
+ name = "iter-read"
1135
+ version = "1.1.0"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "071ed4cc1afd86650602c7b11aa2e1ce30762a1c27193201cb5cee9c6ebb1294"
1138
+
1139
+ [[package]]
1140
+ name = "itertools"
1141
+ version = "0.13.0"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1144
+ dependencies = [
1145
+ "either",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "itertools"
1150
+ version = "0.14.0"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1153
+ dependencies = [
1154
+ "either",
1155
+ ]
1156
+
1157
+ [[package]]
1158
+ name = "itoa"
1159
+ version = "1.0.15"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1162
+
1163
+ [[package]]
1164
+ name = "jobserver"
1165
+ version = "0.1.33"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1168
+ dependencies = [
1169
+ "getrandom 0.3.3",
1170
+ "libc",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "js-sys"
1175
+ version = "0.3.77"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1178
+ dependencies = [
1179
+ "once_cell",
1180
+ "wasm-bindgen",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "libc"
1185
+ version = "0.2.172"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1188
+
1189
+ [[package]]
1190
+ name = "libm"
1191
+ version = "0.2.15"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1194
+
1195
+ [[package]]
1196
+ name = "linux-raw-sys"
1197
+ version = "0.4.15"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1200
+
1201
+ [[package]]
1202
+ name = "linux-raw-sys"
1203
+ version = "0.9.4"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1206
+
1207
+ [[package]]
1208
+ name = "litemap"
1209
+ version = "0.8.0"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1212
+
1213
+ [[package]]
1214
+ name = "lock_api"
1215
+ version = "0.4.12"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1218
+ dependencies = [
1219
+ "autocfg",
1220
+ "scopeguard",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "log"
1225
+ version = "0.4.27"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1228
+
1229
+ [[package]]
1230
+ name = "lru-slab"
1231
+ version = "0.1.2"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1234
+
1235
+ [[package]]
1236
+ name = "lz4"
1237
+ version = "1.28.1"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
1240
+ dependencies = [
1241
+ "lz4-sys",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "lz4-sys"
1246
+ version = "1.11.1+lz4-1.10.0"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
1249
+ dependencies = [
1250
+ "cc",
1251
+ "libc",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "matrixmultiply"
1256
+ version = "0.3.10"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1259
+ dependencies = [
1260
+ "autocfg",
1261
+ "rawpointer",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "memchr"
1266
+ version = "2.7.4"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1269
+
1270
+ [[package]]
1271
+ name = "memmap2"
1272
+ version = "0.9.5"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
1275
+ dependencies = [
1276
+ "libc",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "memoffset"
1281
+ version = "0.9.1"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1284
+ dependencies = [
1285
+ "autocfg",
1286
+ ]
1287
+
1288
+ [[package]]
1289
+ name = "mime"
1290
+ version = "0.3.17"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1293
+
1294
+ [[package]]
1295
+ name = "miniz_oxide"
1296
+ version = "0.8.8"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
1299
+ dependencies = [
1300
+ "adler2",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "mio"
1305
+ version = "1.0.3"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1308
+ dependencies = [
1309
+ "libc",
1310
+ "wasi 0.11.0+wasi-snapshot-preview1",
1311
+ "windows-sys 0.52.0",
1312
+ ]
1313
+
1314
+ [[package]]
1315
+ name = "native-tls"
1316
+ version = "0.2.14"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
1319
+ dependencies = [
1320
+ "libc",
1321
+ "log",
1322
+ "openssl",
1323
+ "openssl-probe",
1324
+ "openssl-sys",
1325
+ "schannel",
1326
+ "security-framework 2.11.1",
1327
+ "security-framework-sys",
1328
+ "tempfile",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "ndarray"
1333
+ version = "0.16.1"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
1336
+ dependencies = [
1337
+ "matrixmultiply",
1338
+ "num-complex",
1339
+ "num-integer",
1340
+ "num-traits",
1341
+ "portable-atomic",
1342
+ "portable-atomic-util",
1343
+ "rawpointer",
1344
+ "rayon",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "now"
1349
+ version = "0.1.3"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0"
1352
+ dependencies = [
1353
+ "chrono",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "ntapi"
1358
+ version = "0.4.1"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
1361
+ dependencies = [
1362
+ "winapi",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "num-bigint"
1367
+ version = "0.4.6"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1370
+ dependencies = [
1371
+ "num-integer",
1372
+ "num-traits",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "num-complex"
1377
+ version = "0.4.6"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1380
+ dependencies = [
1381
+ "num-traits",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "num-integer"
1386
+ version = "0.1.46"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1389
+ dependencies = [
1390
+ "num-traits",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "num-traits"
1395
+ version = "0.2.19"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1398
+ dependencies = [
1399
+ "autocfg",
1400
+ "libm",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "numpy"
1405
+ version = "0.24.0"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "a7cfbf3f0feededcaa4d289fe3079b03659e85c5b5a177f4ba6fb01ab4fb3e39"
1408
+ dependencies = [
1409
+ "libc",
1410
+ "ndarray",
1411
+ "num-complex",
1412
+ "num-integer",
1413
+ "num-traits",
1414
+ "pyo3",
1415
+ "pyo3-build-config",
1416
+ "rustc-hash",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "object"
1421
+ version = "0.36.7"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1424
+ dependencies = [
1425
+ "memchr",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "object_store"
1430
+ version = "0.12.1"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "d94ac16b433c0ccf75326388c893d2835ab7457ea35ab8ba5d745c053ef5fa16"
1433
+ dependencies = [
1434
+ "async-trait",
1435
+ "base64",
1436
+ "bytes",
1437
+ "chrono",
1438
+ "form_urlencoded",
1439
+ "futures",
1440
+ "http",
1441
+ "http-body-util",
1442
+ "humantime",
1443
+ "hyper",
1444
+ "itertools 0.14.0",
1445
+ "parking_lot",
1446
+ "percent-encoding",
1447
+ "quick-xml",
1448
+ "rand 0.9.1",
1449
+ "reqwest",
1450
+ "ring",
1451
+ "serde",
1452
+ "serde_json",
1453
+ "serde_urlencoded",
1454
+ "thiserror 2.0.12",
1455
+ "tokio",
1456
+ "tracing",
1457
+ "url",
1458
+ "walkdir",
1459
+ "wasm-bindgen-futures",
1460
+ "web-time",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "once_cell"
1465
+ version = "1.21.3"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1468
+
1469
+ [[package]]
1470
+ name = "openssl"
1471
+ version = "0.10.72"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "fedfea7d58a1f73118430a55da6a286e7b044961736ce96a16a17068ea25e5da"
1474
+ dependencies = [
1475
+ "bitflags",
1476
+ "cfg-if",
1477
+ "foreign-types",
1478
+ "libc",
1479
+ "once_cell",
1480
+ "openssl-macros",
1481
+ "openssl-sys",
1482
+ ]
1483
+
1484
+ [[package]]
1485
+ name = "openssl-macros"
1486
+ version = "0.1.1"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1489
+ dependencies = [
1490
+ "proc-macro2",
1491
+ "quote",
1492
+ "syn",
1493
+ ]
1494
+
1495
+ [[package]]
1496
+ name = "openssl-probe"
1497
+ version = "0.1.6"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1500
+
1501
+ [[package]]
1502
+ name = "openssl-sys"
1503
+ version = "0.9.108"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "e145e1651e858e820e4860f7b9c5e169bc1d8ce1c86043be79fa7b7634821847"
1506
+ dependencies = [
1507
+ "cc",
1508
+ "libc",
1509
+ "pkg-config",
1510
+ "vcpkg",
1511
+ ]
1512
+
1513
+ [[package]]
1514
+ name = "parking"
1515
+ version = "2.2.1"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1518
+
1519
+ [[package]]
1520
+ name = "parking_lot"
1521
+ version = "0.12.3"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1524
+ dependencies = [
1525
+ "lock_api",
1526
+ "parking_lot_core",
1527
+ ]
1528
+
1529
+ [[package]]
1530
+ name = "parking_lot_core"
1531
+ version = "0.9.10"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1534
+ dependencies = [
1535
+ "cfg-if",
1536
+ "libc",
1537
+ "redox_syscall",
1538
+ "smallvec",
1539
+ "windows-targets 0.52.6",
1540
+ ]
1541
+
1542
+ [[package]]
1543
+ name = "parse-zoneinfo"
1544
+ version = "0.3.1"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
1547
+ dependencies = [
1548
+ "regex",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "paste"
1553
+ version = "1.0.15"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1556
+
1557
+ [[package]]
1558
+ name = "percent-encoding"
1559
+ version = "2.3.1"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1562
+
1563
+ [[package]]
1564
+ name = "phf"
1565
+ version = "0.11.3"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1568
+ dependencies = [
1569
+ "phf_shared",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "phf_codegen"
1574
+ version = "0.11.3"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1577
+ dependencies = [
1578
+ "phf_generator",
1579
+ "phf_shared",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "phf_generator"
1584
+ version = "0.11.3"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1587
+ dependencies = [
1588
+ "phf_shared",
1589
+ "rand 0.8.5",
1590
+ ]
1591
+
1592
+ [[package]]
1593
+ name = "phf_shared"
1594
+ version = "0.11.3"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1597
+ dependencies = [
1598
+ "siphasher",
1599
+ ]
1600
+
1601
+ [[package]]
1602
+ name = "pin-project-lite"
1603
+ version = "0.2.16"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1606
+
1607
+ [[package]]
1608
+ name = "pin-utils"
1609
+ version = "0.1.0"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1612
+
1613
+ [[package]]
1614
+ name = "pkg-config"
1615
+ version = "0.3.32"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1618
+
1619
+ [[package]]
1620
+ name = "planus"
1621
+ version = "0.3.1"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "fc1691dd09e82f428ce8d6310bd6d5da2557c82ff17694d2a32cad7242aea89f"
1624
+ dependencies = [
1625
+ "array-init-cursor",
1626
+ ]
1627
+
1628
+ [[package]]
1629
+ name = "polars"
1630
+ version = "0.48.1"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "c0c10a02dc15223de108e0625bf152efb8dc3b181c5916b5ee335e40dcda735a"
1633
+ dependencies = [
1634
+ "getrandom 0.2.16",
1635
+ "polars-arrow",
1636
+ "polars-core",
1637
+ "polars-error",
1638
+ "polars-io",
1639
+ "polars-lazy",
1640
+ "polars-ops",
1641
+ "polars-parquet",
1642
+ "polars-sql",
1643
+ "polars-time",
1644
+ "polars-utils",
1645
+ "version_check",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "polars-arrow"
1650
+ version = "0.48.1"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "bef8c08875db45de6f71660ef15a686e459ab0dddae302b2870d66625fd3ba65"
1653
+ dependencies = [
1654
+ "atoi_simd",
1655
+ "bitflags",
1656
+ "bytemuck",
1657
+ "chrono",
1658
+ "chrono-tz",
1659
+ "dyn-clone",
1660
+ "either",
1661
+ "ethnum",
1662
+ "getrandom 0.2.16",
1663
+ "hashbrown 0.15.3",
1664
+ "itoa",
1665
+ "lz4",
1666
+ "num-traits",
1667
+ "polars-arrow-format",
1668
+ "polars-error",
1669
+ "polars-schema",
1670
+ "polars-utils",
1671
+ "serde",
1672
+ "simdutf8",
1673
+ "streaming-iterator",
1674
+ "strum_macros",
1675
+ "version_check",
1676
+ "zstd",
1677
+ ]
1678
+
1679
+ [[package]]
1680
+ name = "polars-arrow-format"
1681
+ version = "0.1.0"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "19b0ef2474af9396b19025b189d96e992311e6a47f90c53cd998b36c4c64b84c"
1684
+ dependencies = [
1685
+ "planus",
1686
+ "serde",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "polars-compute"
1691
+ version = "0.48.1"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "b54171a366ec0bd3431ce184568e731de14060c20e19f306706cb073e7a98dc1"
1694
+ dependencies = [
1695
+ "atoi_simd",
1696
+ "bytemuck",
1697
+ "chrono",
1698
+ "either",
1699
+ "fast-float2",
1700
+ "hashbrown 0.15.3",
1701
+ "itoa",
1702
+ "num-traits",
1703
+ "polars-arrow",
1704
+ "polars-error",
1705
+ "polars-utils",
1706
+ "rand 0.8.5",
1707
+ "ryu",
1708
+ "serde",
1709
+ "skiplist",
1710
+ "strength_reduce",
1711
+ "strum_macros",
1712
+ "version_check",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "polars-core"
1717
+ version = "0.48.1"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "7d13c50b27ed6df2f6a9d156e9a4960e9373bf65fc763e0be2738efa5457d915"
1720
+ dependencies = [
1721
+ "bitflags",
1722
+ "bytemuck",
1723
+ "chrono",
1724
+ "chrono-tz",
1725
+ "comfy-table",
1726
+ "either",
1727
+ "hashbrown 0.14.5",
1728
+ "hashbrown 0.15.3",
1729
+ "indexmap",
1730
+ "itoa",
1731
+ "num-traits",
1732
+ "polars-arrow",
1733
+ "polars-compute",
1734
+ "polars-error",
1735
+ "polars-row",
1736
+ "polars-schema",
1737
+ "polars-utils",
1738
+ "rand 0.8.5",
1739
+ "rand_distr",
1740
+ "rayon",
1741
+ "regex",
1742
+ "serde",
1743
+ "serde_json",
1744
+ "strum_macros",
1745
+ "version_check",
1746
+ "xxhash-rust",
1747
+ ]
1748
+
1749
+ [[package]]
1750
+ name = "polars-error"
1751
+ version = "0.48.1"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "aa800b7240c7326e54d6b95df8376e3ee760e4cb4170fe38de1f42d14d719ffc"
1754
+ dependencies = [
1755
+ "object_store",
1756
+ "parking_lot",
1757
+ "polars-arrow-format",
1758
+ "regex",
1759
+ "signal-hook",
1760
+ "simdutf8",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "polars-expr"
1765
+ version = "0.48.1"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "fc0f1673599bee079c94d7d7e7e0a31818c7c88060dcf6ec82691a99e1eb5cf9"
1768
+ dependencies = [
1769
+ "bitflags",
1770
+ "hashbrown 0.15.3",
1771
+ "num-traits",
1772
+ "polars-arrow",
1773
+ "polars-compute",
1774
+ "polars-core",
1775
+ "polars-io",
1776
+ "polars-ops",
1777
+ "polars-plan",
1778
+ "polars-row",
1779
+ "polars-time",
1780
+ "polars-utils",
1781
+ "rand 0.8.5",
1782
+ "rayon",
1783
+ "recursive",
1784
+ ]
1785
+
1786
+ [[package]]
1787
+ name = "polars-ffi"
1788
+ version = "0.48.1"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "cf4e7ef8ab4b66406fb5569e33be633c76f4832ec4bc447695cce8859f5b85bd"
1791
+ dependencies = [
1792
+ "polars-arrow",
1793
+ "polars-core",
1794
+ ]
1795
+
1796
+ [[package]]
1797
+ name = "polars-io"
1798
+ version = "0.48.1"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "1db23d90c17ab03ccded685e5a88aa8ee43fd851376463a9533ed56ba66d1538"
1801
+ dependencies = [
1802
+ "async-trait",
1803
+ "atoi_simd",
1804
+ "blake3",
1805
+ "bytes",
1806
+ "chrono",
1807
+ "fast-float2",
1808
+ "fs4",
1809
+ "futures",
1810
+ "glob",
1811
+ "hashbrown 0.15.3",
1812
+ "home",
1813
+ "itoa",
1814
+ "memchr",
1815
+ "memmap2",
1816
+ "num-traits",
1817
+ "object_store",
1818
+ "percent-encoding",
1819
+ "polars-arrow",
1820
+ "polars-core",
1821
+ "polars-error",
1822
+ "polars-parquet",
1823
+ "polars-schema",
1824
+ "polars-time",
1825
+ "polars-utils",
1826
+ "rayon",
1827
+ "regex",
1828
+ "reqwest",
1829
+ "ryu",
1830
+ "serde",
1831
+ "serde_json",
1832
+ "simdutf8",
1833
+ "tokio",
1834
+ "tokio-util",
1835
+ "url",
1836
+ ]
1837
+
1838
+ [[package]]
1839
+ name = "polars-lazy"
1840
+ version = "0.48.1"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "03708e73a20fd7ca9fb0003e620daff5c488c9e2b287640289de78c5b135ead7"
1843
+ dependencies = [
1844
+ "bitflags",
1845
+ "chrono",
1846
+ "either",
1847
+ "memchr",
1848
+ "polars-arrow",
1849
+ "polars-compute",
1850
+ "polars-core",
1851
+ "polars-expr",
1852
+ "polars-io",
1853
+ "polars-mem-engine",
1854
+ "polars-ops",
1855
+ "polars-pipe",
1856
+ "polars-plan",
1857
+ "polars-stream",
1858
+ "polars-time",
1859
+ "polars-utils",
1860
+ "rayon",
1861
+ "version_check",
1862
+ ]
1863
+
1864
+ [[package]]
1865
+ name = "polars-mem-engine"
1866
+ version = "0.48.1"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "52126424d9612132b0b8b4b995ea25a42d79559d111063ef705a370dfa742d46"
1869
+ dependencies = [
1870
+ "memmap2",
1871
+ "polars-arrow",
1872
+ "polars-core",
1873
+ "polars-error",
1874
+ "polars-expr",
1875
+ "polars-io",
1876
+ "polars-ops",
1877
+ "polars-plan",
1878
+ "polars-time",
1879
+ "polars-utils",
1880
+ "rayon",
1881
+ "recursive",
1882
+ ]
1883
+
1884
+ [[package]]
1885
+ name = "polars-ops"
1886
+ version = "0.48.1"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "5e308800c11d5c6d0ddef16186ca026691aedeeb2210d458cdea997520907917"
1889
+ dependencies = [
1890
+ "argminmax",
1891
+ "base64",
1892
+ "bytemuck",
1893
+ "chrono",
1894
+ "chrono-tz",
1895
+ "either",
1896
+ "hashbrown 0.15.3",
1897
+ "hex",
1898
+ "indexmap",
1899
+ "libm",
1900
+ "memchr",
1901
+ "num-traits",
1902
+ "polars-arrow",
1903
+ "polars-compute",
1904
+ "polars-core",
1905
+ "polars-error",
1906
+ "polars-schema",
1907
+ "polars-utils",
1908
+ "rayon",
1909
+ "regex",
1910
+ "regex-syntax",
1911
+ "strum_macros",
1912
+ "unicode-normalization",
1913
+ "unicode-reverse",
1914
+ "version_check",
1915
+ ]
1916
+
1917
+ [[package]]
1918
+ name = "polars-parquet"
1919
+ version = "0.48.1"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "8e186177e24e217ce5b9bf441028417faeeef01b7e793fa815e1d26a53c38400"
1922
+ dependencies = [
1923
+ "async-stream",
1924
+ "base64",
1925
+ "bytemuck",
1926
+ "ethnum",
1927
+ "futures",
1928
+ "hashbrown 0.15.3",
1929
+ "num-traits",
1930
+ "polars-arrow",
1931
+ "polars-compute",
1932
+ "polars-error",
1933
+ "polars-parquet-format",
1934
+ "polars-utils",
1935
+ "serde",
1936
+ "simdutf8",
1937
+ "streaming-decompression",
1938
+ ]
1939
+
1940
+ [[package]]
1941
+ name = "polars-parquet-format"
1942
+ version = "0.1.0"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "c025243dcfe8dbc57e94d9f82eb3bef10b565ab180d5b99bed87fd8aea319ce1"
1945
+ dependencies = [
1946
+ "async-trait",
1947
+ "futures",
1948
+ ]
1949
+
1950
+ [[package]]
1951
+ name = "polars-pipe"
1952
+ version = "0.48.1"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "59780346591510f17e26a2cb7a5f812167e9487163baf6570a53a4fab3e004f3"
1955
+ dependencies = [
1956
+ "crossbeam-channel",
1957
+ "crossbeam-queue",
1958
+ "enum_dispatch",
1959
+ "hashbrown 0.15.3",
1960
+ "num-traits",
1961
+ "polars-arrow",
1962
+ "polars-compute",
1963
+ "polars-core",
1964
+ "polars-expr",
1965
+ "polars-io",
1966
+ "polars-ops",
1967
+ "polars-plan",
1968
+ "polars-row",
1969
+ "polars-utils",
1970
+ "rayon",
1971
+ "uuid",
1972
+ "version_check",
1973
+ ]
1974
+
1975
+ [[package]]
1976
+ name = "polars-plan"
1977
+ version = "0.48.1"
1978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1979
+ checksum = "3dfb0432eed610f25f436b519c007d4c6e2607c645ff27324aaaafda34ef51bf"
1980
+ dependencies = [
1981
+ "bitflags",
1982
+ "bytemuck",
1983
+ "bytes",
1984
+ "chrono",
1985
+ "chrono-tz",
1986
+ "either",
1987
+ "hashbrown 0.15.3",
1988
+ "memmap2",
1989
+ "num-traits",
1990
+ "percent-encoding",
1991
+ "polars-arrow",
1992
+ "polars-compute",
1993
+ "polars-core",
1994
+ "polars-io",
1995
+ "polars-ops",
1996
+ "polars-time",
1997
+ "polars-utils",
1998
+ "rayon",
1999
+ "recursive",
2000
+ "regex",
2001
+ "strum_macros",
2002
+ "version_check",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "polars-row"
2007
+ version = "0.48.1"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "0be6a32d19ccae4dad60ef0394972419c771b393d31e1b141a89c69de5b33990"
2010
+ dependencies = [
2011
+ "bitflags",
2012
+ "bytemuck",
2013
+ "polars-arrow",
2014
+ "polars-compute",
2015
+ "polars-error",
2016
+ "polars-utils",
2017
+ ]
2018
+
2019
+ [[package]]
2020
+ name = "polars-schema"
2021
+ version = "0.48.1"
2022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2023
+ checksum = "12b56ea2026a869b9bae7d8bd861b420d72e7bca4cf4b757368874577ac666b6"
2024
+ dependencies = [
2025
+ "indexmap",
2026
+ "polars-error",
2027
+ "polars-utils",
2028
+ "serde",
2029
+ "version_check",
2030
+ ]
2031
+
2032
+ [[package]]
2033
+ name = "polars-sql"
2034
+ version = "0.48.1"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "7ada7336bd78c67d896f9a13082b02e4a159c6c6fba777dcc152c0b1f126453b"
2037
+ dependencies = [
2038
+ "bitflags",
2039
+ "hex",
2040
+ "polars-core",
2041
+ "polars-error",
2042
+ "polars-lazy",
2043
+ "polars-ops",
2044
+ "polars-plan",
2045
+ "polars-time",
2046
+ "polars-utils",
2047
+ "rand 0.8.5",
2048
+ "regex",
2049
+ "serde",
2050
+ "sqlparser",
2051
+ ]
2052
+
2053
+ [[package]]
2054
+ name = "polars-stream"
2055
+ version = "0.48.1"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "d81638ef3da43d632da0250386bf4f042fe514005f2a6d59d9e6118194888eb7"
2058
+ dependencies = [
2059
+ "async-channel",
2060
+ "async-trait",
2061
+ "atomic-waker",
2062
+ "bitflags",
2063
+ "crossbeam-channel",
2064
+ "crossbeam-deque",
2065
+ "crossbeam-queue",
2066
+ "crossbeam-utils",
2067
+ "futures",
2068
+ "memmap2",
2069
+ "parking_lot",
2070
+ "percent-encoding",
2071
+ "pin-project-lite",
2072
+ "polars-arrow",
2073
+ "polars-core",
2074
+ "polars-error",
2075
+ "polars-expr",
2076
+ "polars-io",
2077
+ "polars-mem-engine",
2078
+ "polars-ops",
2079
+ "polars-parquet",
2080
+ "polars-plan",
2081
+ "polars-utils",
2082
+ "rand 0.8.5",
2083
+ "rayon",
2084
+ "recursive",
2085
+ "slotmap",
2086
+ "tokio",
2087
+ "version_check",
2088
+ ]
2089
+
2090
+ [[package]]
2091
+ name = "polars-time"
2092
+ version = "0.48.1"
2093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2094
+ checksum = "706ea1e67d5bfcfd9e5ca59070fb5ad591d42b9729d4a60af1b320e645ea158e"
2095
+ dependencies = [
2096
+ "atoi_simd",
2097
+ "bytemuck",
2098
+ "chrono",
2099
+ "chrono-tz",
2100
+ "now",
2101
+ "num-traits",
2102
+ "polars-arrow",
2103
+ "polars-compute",
2104
+ "polars-core",
2105
+ "polars-error",
2106
+ "polars-ops",
2107
+ "polars-utils",
2108
+ "rayon",
2109
+ "regex",
2110
+ "strum_macros",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "polars-utils"
2115
+ version = "0.48.1"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "2c50cd0dac46936771793eb22cb7aeeef97d6aaa4f832f4209637e73178d39aa"
2118
+ dependencies = [
2119
+ "bincode",
2120
+ "bytemuck",
2121
+ "bytes",
2122
+ "compact_str 0.8.1",
2123
+ "flate2",
2124
+ "foldhash",
2125
+ "hashbrown 0.15.3",
2126
+ "indexmap",
2127
+ "libc",
2128
+ "memmap2",
2129
+ "num-traits",
2130
+ "polars-error",
2131
+ "rand 0.8.5",
2132
+ "raw-cpuid",
2133
+ "rayon",
2134
+ "regex",
2135
+ "rmp-serde",
2136
+ "serde",
2137
+ "serde_ignored",
2138
+ "serde_json",
2139
+ "slotmap",
2140
+ "stacker",
2141
+ "sysinfo",
2142
+ "version_check",
2143
+ ]
2144
+
2145
+ [[package]]
2146
+ name = "portable-atomic"
2147
+ version = "1.11.0"
2148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2149
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
2150
+
2151
+ [[package]]
2152
+ name = "portable-atomic-util"
2153
+ version = "0.2.4"
2154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2155
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
2156
+ dependencies = [
2157
+ "portable-atomic",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "potential_utf"
2162
+ version = "0.1.2"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
2165
+ dependencies = [
2166
+ "zerovec",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "ppv-lite86"
2171
+ version = "0.2.21"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2174
+ dependencies = [
2175
+ "zerocopy",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "proc-macro2"
2180
+ version = "1.0.95"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2183
+ dependencies = [
2184
+ "unicode-ident",
2185
+ ]
2186
+
2187
+ [[package]]
2188
+ name = "psm"
2189
+ version = "0.1.26"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
2192
+ dependencies = [
2193
+ "cc",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "pybond"
2198
+ version = "0.3.11"
2199
+ dependencies = [
2200
+ "chrono",
2201
+ "itertools 0.14.0",
2202
+ "numpy",
2203
+ "pyo3",
2204
+ "pyo3-polars",
2205
+ "serde",
2206
+ "tea-bond",
2207
+ "tea-time",
2208
+ "tevec",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "pyo3"
2213
+ version = "0.24.2"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
2216
+ dependencies = [
2217
+ "anyhow",
2218
+ "cfg-if",
2219
+ "chrono",
2220
+ "indoc",
2221
+ "inventory",
2222
+ "libc",
2223
+ "memoffset",
2224
+ "once_cell",
2225
+ "portable-atomic",
2226
+ "pyo3-build-config",
2227
+ "pyo3-ffi",
2228
+ "pyo3-macros",
2229
+ "unindent",
2230
+ ]
2231
+
2232
+ [[package]]
2233
+ name = "pyo3-build-config"
2234
+ version = "0.24.2"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
2237
+ dependencies = [
2238
+ "once_cell",
2239
+ "target-lexicon",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "pyo3-ffi"
2244
+ version = "0.24.2"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
2247
+ dependencies = [
2248
+ "libc",
2249
+ "pyo3-build-config",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "pyo3-macros"
2254
+ version = "0.24.2"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
2257
+ dependencies = [
2258
+ "proc-macro2",
2259
+ "pyo3-macros-backend",
2260
+ "quote",
2261
+ "syn",
2262
+ ]
2263
+
2264
+ [[package]]
2265
+ name = "pyo3-macros-backend"
2266
+ version = "0.24.2"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
2269
+ dependencies = [
2270
+ "heck",
2271
+ "proc-macro2",
2272
+ "pyo3-build-config",
2273
+ "quote",
2274
+ "syn",
2275
+ ]
2276
+
2277
+ [[package]]
2278
+ name = "pyo3-polars"
2279
+ version = "0.21.0"
2280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2281
+ checksum = "8f931804e03b561b3bba7f98884ad9b17756733a4c98229564393e630d289752"
2282
+ dependencies = [
2283
+ "libc",
2284
+ "once_cell",
2285
+ "polars",
2286
+ "polars-arrow",
2287
+ "polars-core",
2288
+ "polars-ffi",
2289
+ "polars-plan",
2290
+ "pyo3",
2291
+ "pyo3-polars-derive",
2292
+ "serde",
2293
+ "serde-pickle",
2294
+ "thiserror 1.0.69",
2295
+ ]
2296
+
2297
+ [[package]]
2298
+ name = "pyo3-polars-derive"
2299
+ version = "0.15.0"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "722837c4c56d631949564995f32cf267f471e687306623d819b46787f81a03db"
2302
+ dependencies = [
2303
+ "polars-arrow",
2304
+ "polars-core",
2305
+ "polars-ffi",
2306
+ "polars-plan",
2307
+ "proc-macro2",
2308
+ "quote",
2309
+ "syn",
2310
+ ]
2311
+
2312
+ [[package]]
2313
+ name = "quick-xml"
2314
+ version = "0.37.5"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
2317
+ dependencies = [
2318
+ "memchr",
2319
+ "serde",
2320
+ ]
2321
+
2322
+ [[package]]
2323
+ name = "quinn"
2324
+ version = "0.11.8"
2325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2326
+ checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
2327
+ dependencies = [
2328
+ "bytes",
2329
+ "cfg_aliases",
2330
+ "pin-project-lite",
2331
+ "quinn-proto",
2332
+ "quinn-udp",
2333
+ "rustc-hash",
2334
+ "rustls",
2335
+ "socket2",
2336
+ "thiserror 2.0.12",
2337
+ "tokio",
2338
+ "tracing",
2339
+ "web-time",
2340
+ ]
2341
+
2342
+ [[package]]
2343
+ name = "quinn-proto"
2344
+ version = "0.11.12"
2345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2346
+ checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
2347
+ dependencies = [
2348
+ "bytes",
2349
+ "getrandom 0.3.3",
2350
+ "lru-slab",
2351
+ "rand 0.9.1",
2352
+ "ring",
2353
+ "rustc-hash",
2354
+ "rustls",
2355
+ "rustls-pki-types",
2356
+ "slab",
2357
+ "thiserror 2.0.12",
2358
+ "tinyvec",
2359
+ "tracing",
2360
+ "web-time",
2361
+ ]
2362
+
2363
+ [[package]]
2364
+ name = "quinn-udp"
2365
+ version = "0.5.12"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
2368
+ dependencies = [
2369
+ "cfg_aliases",
2370
+ "libc",
2371
+ "once_cell",
2372
+ "socket2",
2373
+ "tracing",
2374
+ "windows-sys 0.59.0",
2375
+ ]
2376
+
2377
+ [[package]]
2378
+ name = "quote"
2379
+ version = "1.0.40"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2382
+ dependencies = [
2383
+ "proc-macro2",
2384
+ ]
2385
+
2386
+ [[package]]
2387
+ name = "r-efi"
2388
+ version = "5.2.0"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2391
+
2392
+ [[package]]
2393
+ name = "rand"
2394
+ version = "0.8.5"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2397
+ dependencies = [
2398
+ "libc",
2399
+ "rand_chacha 0.3.1",
2400
+ "rand_core 0.6.4",
2401
+ ]
2402
+
2403
+ [[package]]
2404
+ name = "rand"
2405
+ version = "0.9.1"
2406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2407
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
2408
+ dependencies = [
2409
+ "rand_chacha 0.9.0",
2410
+ "rand_core 0.9.3",
2411
+ ]
2412
+
2413
+ [[package]]
2414
+ name = "rand_chacha"
2415
+ version = "0.3.1"
2416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2417
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2418
+ dependencies = [
2419
+ "ppv-lite86",
2420
+ "rand_core 0.6.4",
2421
+ ]
2422
+
2423
+ [[package]]
2424
+ name = "rand_chacha"
2425
+ version = "0.9.0"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2428
+ dependencies = [
2429
+ "ppv-lite86",
2430
+ "rand_core 0.9.3",
2431
+ ]
2432
+
2433
+ [[package]]
2434
+ name = "rand_core"
2435
+ version = "0.6.4"
2436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2437
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2438
+ dependencies = [
2439
+ "getrandom 0.2.16",
2440
+ ]
2441
+
2442
+ [[package]]
2443
+ name = "rand_core"
2444
+ version = "0.9.3"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2447
+ dependencies = [
2448
+ "getrandom 0.3.3",
2449
+ ]
2450
+
2451
+ [[package]]
2452
+ name = "rand_distr"
2453
+ version = "0.4.3"
2454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2455
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
2456
+ dependencies = [
2457
+ "num-traits",
2458
+ "rand 0.8.5",
2459
+ ]
2460
+
2461
+ [[package]]
2462
+ name = "raw-cpuid"
2463
+ version = "11.5.0"
2464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2465
+ checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
2466
+ dependencies = [
2467
+ "bitflags",
2468
+ ]
2469
+
2470
+ [[package]]
2471
+ name = "rawpointer"
2472
+ version = "0.2.1"
2473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2474
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2475
+
2476
+ [[package]]
2477
+ name = "rayon"
2478
+ version = "1.10.0"
2479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2480
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2481
+ dependencies = [
2482
+ "either",
2483
+ "rayon-core",
2484
+ ]
2485
+
2486
+ [[package]]
2487
+ name = "rayon-core"
2488
+ version = "1.12.1"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2491
+ dependencies = [
2492
+ "crossbeam-deque",
2493
+ "crossbeam-utils",
2494
+ ]
2495
+
2496
+ [[package]]
2497
+ name = "recursive"
2498
+ version = "0.1.1"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
2501
+ dependencies = [
2502
+ "recursive-proc-macro-impl",
2503
+ "stacker",
2504
+ ]
2505
+
2506
+ [[package]]
2507
+ name = "recursive-proc-macro-impl"
2508
+ version = "0.1.1"
2509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2510
+ checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
2511
+ dependencies = [
2512
+ "quote",
2513
+ "syn",
2514
+ ]
2515
+
2516
+ [[package]]
2517
+ name = "redox_syscall"
2518
+ version = "0.5.12"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
2521
+ dependencies = [
2522
+ "bitflags",
2523
+ ]
2524
+
2525
+ [[package]]
2526
+ name = "regex"
2527
+ version = "1.11.1"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2530
+ dependencies = [
2531
+ "aho-corasick",
2532
+ "memchr",
2533
+ "regex-automata",
2534
+ "regex-syntax",
2535
+ ]
2536
+
2537
+ [[package]]
2538
+ name = "regex-automata"
2539
+ version = "0.4.9"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2542
+ dependencies = [
2543
+ "aho-corasick",
2544
+ "memchr",
2545
+ "regex-syntax",
2546
+ ]
2547
+
2548
+ [[package]]
2549
+ name = "regex-syntax"
2550
+ version = "0.8.5"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2553
+
2554
+ [[package]]
2555
+ name = "reqwest"
2556
+ version = "0.12.15"
2557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2558
+ checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
2559
+ dependencies = [
2560
+ "base64",
2561
+ "bytes",
2562
+ "encoding_rs",
2563
+ "futures-core",
2564
+ "futures-util",
2565
+ "h2",
2566
+ "http",
2567
+ "http-body",
2568
+ "http-body-util",
2569
+ "hyper",
2570
+ "hyper-rustls",
2571
+ "hyper-tls",
2572
+ "hyper-util",
2573
+ "ipnet",
2574
+ "js-sys",
2575
+ "log",
2576
+ "mime",
2577
+ "native-tls",
2578
+ "once_cell",
2579
+ "percent-encoding",
2580
+ "pin-project-lite",
2581
+ "quinn",
2582
+ "rustls",
2583
+ "rustls-native-certs",
2584
+ "rustls-pemfile",
2585
+ "rustls-pki-types",
2586
+ "serde",
2587
+ "serde_json",
2588
+ "serde_urlencoded",
2589
+ "sync_wrapper",
2590
+ "system-configuration",
2591
+ "tokio",
2592
+ "tokio-native-tls",
2593
+ "tokio-rustls",
2594
+ "tokio-util",
2595
+ "tower",
2596
+ "tower-service",
2597
+ "url",
2598
+ "wasm-bindgen",
2599
+ "wasm-bindgen-futures",
2600
+ "wasm-streams",
2601
+ "web-sys",
2602
+ "webpki-roots 0.26.11",
2603
+ "windows-registry",
2604
+ ]
2605
+
2606
+ [[package]]
2607
+ name = "ring"
2608
+ version = "0.17.14"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2611
+ dependencies = [
2612
+ "cc",
2613
+ "cfg-if",
2614
+ "getrandom 0.2.16",
2615
+ "libc",
2616
+ "untrusted",
2617
+ "windows-sys 0.52.0",
2618
+ ]
2619
+
2620
+ [[package]]
2621
+ name = "rmp"
2622
+ version = "0.8.14"
2623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2624
+ checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
2625
+ dependencies = [
2626
+ "byteorder",
2627
+ "num-traits",
2628
+ "paste",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "rmp-serde"
2633
+ version = "1.3.0"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
2636
+ dependencies = [
2637
+ "byteorder",
2638
+ "rmp",
2639
+ "serde",
2640
+ ]
2641
+
2642
+ [[package]]
2643
+ name = "rustc-demangle"
2644
+ version = "0.1.24"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2647
+
2648
+ [[package]]
2649
+ name = "rustc-hash"
2650
+ version = "2.1.1"
2651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2652
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2653
+
2654
+ [[package]]
2655
+ name = "rustix"
2656
+ version = "0.38.44"
2657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2658
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2659
+ dependencies = [
2660
+ "bitflags",
2661
+ "errno",
2662
+ "libc",
2663
+ "linux-raw-sys 0.4.15",
2664
+ "windows-sys 0.59.0",
2665
+ ]
2666
+
2667
+ [[package]]
2668
+ name = "rustix"
2669
+ version = "1.0.7"
2670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2671
+ checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
2672
+ dependencies = [
2673
+ "bitflags",
2674
+ "errno",
2675
+ "libc",
2676
+ "linux-raw-sys 0.9.4",
2677
+ "windows-sys 0.59.0",
2678
+ ]
2679
+
2680
+ [[package]]
2681
+ name = "rustls"
2682
+ version = "0.23.27"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
2685
+ dependencies = [
2686
+ "once_cell",
2687
+ "ring",
2688
+ "rustls-pki-types",
2689
+ "rustls-webpki",
2690
+ "subtle",
2691
+ "zeroize",
2692
+ ]
2693
+
2694
+ [[package]]
2695
+ name = "rustls-native-certs"
2696
+ version = "0.8.1"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
2699
+ dependencies = [
2700
+ "openssl-probe",
2701
+ "rustls-pki-types",
2702
+ "schannel",
2703
+ "security-framework 3.2.0",
2704
+ ]
2705
+
2706
+ [[package]]
2707
+ name = "rustls-pemfile"
2708
+ version = "2.2.0"
2709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2710
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2711
+ dependencies = [
2712
+ "rustls-pki-types",
2713
+ ]
2714
+
2715
+ [[package]]
2716
+ name = "rustls-pki-types"
2717
+ version = "1.12.0"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
2720
+ dependencies = [
2721
+ "web-time",
2722
+ "zeroize",
2723
+ ]
2724
+
2725
+ [[package]]
2726
+ name = "rustls-webpki"
2727
+ version = "0.103.3"
2728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2729
+ checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
2730
+ dependencies = [
2731
+ "ring",
2732
+ "rustls-pki-types",
2733
+ "untrusted",
2734
+ ]
2735
+
2736
+ [[package]]
2737
+ name = "rustversion"
2738
+ version = "1.0.21"
2739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2740
+ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
2741
+
2742
+ [[package]]
2743
+ name = "ryu"
2744
+ version = "1.0.20"
2745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2746
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2747
+
2748
+ [[package]]
2749
+ name = "same-file"
2750
+ version = "1.0.6"
2751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2752
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2753
+ dependencies = [
2754
+ "winapi-util",
2755
+ ]
2756
+
2757
+ [[package]]
2758
+ name = "schannel"
2759
+ version = "0.1.27"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
2762
+ dependencies = [
2763
+ "windows-sys 0.59.0",
2764
+ ]
2765
+
2766
+ [[package]]
2767
+ name = "scopeguard"
2768
+ version = "1.2.0"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2771
+
2772
+ [[package]]
2773
+ name = "security-framework"
2774
+ version = "2.11.1"
2775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2776
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2777
+ dependencies = [
2778
+ "bitflags",
2779
+ "core-foundation 0.9.4",
2780
+ "core-foundation-sys",
2781
+ "libc",
2782
+ "security-framework-sys",
2783
+ ]
2784
+
2785
+ [[package]]
2786
+ name = "security-framework"
2787
+ version = "3.2.0"
2788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2789
+ checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
2790
+ dependencies = [
2791
+ "bitflags",
2792
+ "core-foundation 0.10.0",
2793
+ "core-foundation-sys",
2794
+ "libc",
2795
+ "security-framework-sys",
2796
+ ]
2797
+
2798
+ [[package]]
2799
+ name = "security-framework-sys"
2800
+ version = "2.14.0"
2801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2802
+ checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
2803
+ dependencies = [
2804
+ "core-foundation-sys",
2805
+ "libc",
2806
+ ]
2807
+
2808
+ [[package]]
2809
+ name = "serde"
2810
+ version = "1.0.219"
2811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2812
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2813
+ dependencies = [
2814
+ "serde_derive",
2815
+ ]
2816
+
2817
+ [[package]]
2818
+ name = "serde-pickle"
2819
+ version = "1.2.0"
2820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2821
+ checksum = "b641fdc8bcf2781ee78b30c599700d64ad4f412976143e4c5d0b9df906bb4843"
2822
+ dependencies = [
2823
+ "byteorder",
2824
+ "iter-read",
2825
+ "num-bigint",
2826
+ "num-traits",
2827
+ "serde",
2828
+ ]
2829
+
2830
+ [[package]]
2831
+ name = "serde_derive"
2832
+ version = "1.0.219"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2835
+ dependencies = [
2836
+ "proc-macro2",
2837
+ "quote",
2838
+ "syn",
2839
+ ]
2840
+
2841
+ [[package]]
2842
+ name = "serde_ignored"
2843
+ version = "0.1.12"
2844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2845
+ checksum = "b516445dac1e3535b6d658a7b528d771153dfb272ed4180ca4617a20550365ff"
2846
+ dependencies = [
2847
+ "serde",
2848
+ ]
2849
+
2850
+ [[package]]
2851
+ name = "serde_json"
2852
+ version = "1.0.140"
2853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2854
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
2855
+ dependencies = [
2856
+ "itoa",
2857
+ "memchr",
2858
+ "ryu",
2859
+ "serde",
2860
+ ]
2861
+
2862
+ [[package]]
2863
+ name = "serde_urlencoded"
2864
+ version = "0.7.1"
2865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2866
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2867
+ dependencies = [
2868
+ "form_urlencoded",
2869
+ "itoa",
2870
+ "ryu",
2871
+ "serde",
2872
+ ]
2873
+
2874
+ [[package]]
2875
+ name = "shlex"
2876
+ version = "1.3.0"
2877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2878
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2879
+
2880
+ [[package]]
2881
+ name = "signal-hook"
2882
+ version = "0.3.18"
2883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2884
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
2885
+ dependencies = [
2886
+ "libc",
2887
+ "signal-hook-registry",
2888
+ ]
2889
+
2890
+ [[package]]
2891
+ name = "signal-hook-registry"
2892
+ version = "1.4.5"
2893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2894
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
2895
+ dependencies = [
2896
+ "libc",
2897
+ ]
2898
+
2899
+ [[package]]
2900
+ name = "simdutf8"
2901
+ version = "0.1.5"
2902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2904
+
2905
+ [[package]]
2906
+ name = "siphasher"
2907
+ version = "1.0.1"
2908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2909
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2910
+
2911
+ [[package]]
2912
+ name = "skiplist"
2913
+ version = "0.5.1"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "0eec25f46463fcdc5e02f388c2780b1b58e01be81a8378e62ec60931beccc3f6"
2916
+ dependencies = [
2917
+ "rand 0.8.5",
2918
+ ]
2919
+
2920
+ [[package]]
2921
+ name = "slab"
2922
+ version = "0.4.9"
2923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2924
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2925
+ dependencies = [
2926
+ "autocfg",
2927
+ ]
2928
+
2929
+ [[package]]
2930
+ name = "slotmap"
2931
+ version = "1.0.7"
2932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2933
+ checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
2934
+ dependencies = [
2935
+ "version_check",
2936
+ ]
2937
+
2938
+ [[package]]
2939
+ name = "smallvec"
2940
+ version = "1.15.0"
2941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2942
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
2943
+
2944
+ [[package]]
2945
+ name = "smart-default"
2946
+ version = "0.7.1"
2947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2948
+ checksum = "0eb01866308440fc64d6c44d9e86c5cc17adfe33c4d6eed55da9145044d0ffc1"
2949
+ dependencies = [
2950
+ "proc-macro2",
2951
+ "quote",
2952
+ "syn",
2953
+ ]
2954
+
2955
+ [[package]]
2956
+ name = "socket2"
2957
+ version = "0.5.9"
2958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2959
+ checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
2960
+ dependencies = [
2961
+ "libc",
2962
+ "windows-sys 0.52.0",
2963
+ ]
2964
+
2965
+ [[package]]
2966
+ name = "sqlparser"
2967
+ version = "0.53.0"
2968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2969
+ checksum = "05a528114c392209b3264855ad491fcce534b94a38771b0a0b97a79379275ce8"
2970
+ dependencies = [
2971
+ "log",
2972
+ ]
2973
+
2974
+ [[package]]
2975
+ name = "stable_deref_trait"
2976
+ version = "1.2.0"
2977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2978
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2979
+
2980
+ [[package]]
2981
+ name = "stacker"
2982
+ version = "0.1.21"
2983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2984
+ checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b"
2985
+ dependencies = [
2986
+ "cc",
2987
+ "cfg-if",
2988
+ "libc",
2989
+ "psm",
2990
+ "windows-sys 0.59.0",
2991
+ ]
2992
+
2993
+ [[package]]
2994
+ name = "static_assertions"
2995
+ version = "1.1.0"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2998
+
2999
+ [[package]]
3000
+ name = "streaming-decompression"
3001
+ version = "0.1.2"
3002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3003
+ checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3"
3004
+ dependencies = [
3005
+ "fallible-streaming-iterator",
3006
+ ]
3007
+
3008
+ [[package]]
3009
+ name = "streaming-iterator"
3010
+ version = "0.1.9"
3011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3012
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
3013
+
3014
+ [[package]]
3015
+ name = "strength_reduce"
3016
+ version = "0.2.4"
3017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3018
+ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
3019
+
3020
+ [[package]]
3021
+ name = "strum_macros"
3022
+ version = "0.26.4"
3023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3024
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
3025
+ dependencies = [
3026
+ "heck",
3027
+ "proc-macro2",
3028
+ "quote",
3029
+ "rustversion",
3030
+ "syn",
3031
+ ]
3032
+
3033
+ [[package]]
3034
+ name = "subtle"
3035
+ version = "2.6.1"
3036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3037
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3038
+
3039
+ [[package]]
3040
+ name = "syn"
3041
+ version = "2.0.101"
3042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3043
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
3044
+ dependencies = [
3045
+ "proc-macro2",
3046
+ "quote",
3047
+ "unicode-ident",
3048
+ ]
3049
+
3050
+ [[package]]
3051
+ name = "sync_wrapper"
3052
+ version = "1.0.2"
3053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3054
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3055
+ dependencies = [
3056
+ "futures-core",
3057
+ ]
3058
+
3059
+ [[package]]
3060
+ name = "synstructure"
3061
+ version = "0.13.2"
3062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3063
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3064
+ dependencies = [
3065
+ "proc-macro2",
3066
+ "quote",
3067
+ "syn",
3068
+ ]
3069
+
3070
+ [[package]]
3071
+ name = "sysinfo"
3072
+ version = "0.33.1"
3073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3074
+ checksum = "4fc858248ea01b66f19d8e8a6d55f41deaf91e9d495246fd01368d99935c6c01"
3075
+ dependencies = [
3076
+ "core-foundation-sys",
3077
+ "libc",
3078
+ "memchr",
3079
+ "ntapi",
3080
+ "windows",
3081
+ ]
3082
+
3083
+ [[package]]
3084
+ name = "system-configuration"
3085
+ version = "0.6.1"
3086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3087
+ checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
3088
+ dependencies = [
3089
+ "bitflags",
3090
+ "core-foundation 0.9.4",
3091
+ "system-configuration-sys",
3092
+ ]
3093
+
3094
+ [[package]]
3095
+ name = "system-configuration-sys"
3096
+ version = "0.6.0"
3097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3098
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
3099
+ dependencies = [
3100
+ "core-foundation-sys",
3101
+ "libc",
3102
+ ]
3103
+
3104
+ [[package]]
3105
+ name = "target-lexicon"
3106
+ version = "0.13.2"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
3109
+
3110
+ [[package]]
3111
+ name = "tea-agg"
3112
+ version = "0.5.2"
3113
+ source = "git+https://github.com/teamon9161/tevec.git?rev=8142290#8142290c40246d32afe6daba3fec041f24d8bc3c"
3114
+ dependencies = [
3115
+ "tea-core",
3116
+ ]
3117
+
3118
+ [[package]]
3119
+ name = "tea-bond"
3120
+ version = "0.3.11"
3121
+ dependencies = [
3122
+ "anyhow",
3123
+ "chrono",
3124
+ "compact_str 0.9.0",
3125
+ "itertools 0.14.0",
3126
+ "parking_lot",
3127
+ "rand 0.9.1",
3128
+ "reqwest",
3129
+ "serde",
3130
+ "serde_json",
3131
+ "smart-default",
3132
+ "tea-calendar",
3133
+ "tevec",
3134
+ "tokio",
3135
+ ]
3136
+
3137
+ [[package]]
3138
+ name = "tea-calendar"
3139
+ version = "0.3.11"
3140
+ dependencies = [
3141
+ "chrono",
3142
+ ]
3143
+
3144
+ [[package]]
3145
+ name = "tea-core"
3146
+ version = "0.5.2"
3147
+ source = "git+https://github.com/teamon9161/tevec.git?rev=8142290#8142290c40246d32afe6daba3fec041f24d8bc3c"
3148
+ dependencies = [
3149
+ "num-traits",
3150
+ "tea-deps",
3151
+ "tea-dtype",
3152
+ "tea-error",
3153
+ ]
3154
+
3155
+ [[package]]
3156
+ name = "tea-deps"
3157
+ version = "0.5.2"
3158
+ source = "git+https://github.com/teamon9161/tevec.git?rev=8142290#8142290c40246d32afe6daba3fec041f24d8bc3c"
3159
+ dependencies = [
3160
+ "chrono",
3161
+ "ndarray",
3162
+ "polars",
3163
+ "polars-arrow",
3164
+ ]
3165
+
3166
+ [[package]]
3167
+ name = "tea-dtype"
3168
+ version = "0.5.2"
3169
+ source = "git+https://github.com/teamon9161/tevec.git?rev=8142290#8142290c40246d32afe6daba3fec041f24d8bc3c"
3170
+ dependencies = [
3171
+ "num-traits",
3172
+ "tea-deps",
3173
+ "tea-time",
3174
+ ]
3175
+
3176
+ [[package]]
3177
+ name = "tea-dyn"
3178
+ version = "0.5.2"
3179
+ source = "git+https://github.com/teamon9161/tevec.git?rev=8142290#8142290c40246d32afe6daba3fec041f24d8bc3c"
3180
+ dependencies = [
3181
+ "tea-core",
3182
+ "tea-deps",
3183
+ "tea-dtype",
3184
+ "tea-error",
3185
+ ]
3186
+
3187
+ [[package]]
3188
+ name = "tea-error"
3189
+ version = "0.5.2"
3190
+ source = "git+https://github.com/teamon9161/tevec.git?rev=8142290#8142290c40246d32afe6daba3fec041f24d8bc3c"
3191
+ dependencies = [
3192
+ "tea-deps",
3193
+ "thiserror 2.0.12",
3194
+ ]
3195
+
3196
+ [[package]]
3197
+ name = "tea-macros"
3198
+ version = "0.5.2"
3199
+ source = "git+https://github.com/teamon9161/tevec.git?rev=8142290#8142290c40246d32afe6daba3fec041f24d8bc3c"
3200
+ dependencies = [
3201
+ "proc-macro2",
3202
+ "quote",
3203
+ "syn",
3204
+ ]
3205
+
3206
+ [[package]]
3207
+ name = "tea-map"
3208
+ version = "0.5.2"
3209
+ source = "git+https://github.com/teamon9161/tevec.git?rev=8142290#8142290c40246d32afe6daba3fec041f24d8bc3c"
3210
+ dependencies = [
3211
+ "itertools 0.13.0",
3212
+ "num-traits",
3213
+ "tea-core",
3214
+ ]
3215
+
3216
+ [[package]]
3217
+ name = "tea-rolling"
3218
+ version = "0.5.2"
3219
+ source = "git+https://github.com/teamon9161/tevec.git?rev=8142290#8142290c40246d32afe6daba3fec041f24d8bc3c"
3220
+ dependencies = [
3221
+ "num-traits",
3222
+ "tea-core",
3223
+ "tea-macros",
3224
+ ]
3225
+
3226
+ [[package]]
3227
+ name = "tea-time"
3228
+ version = "0.5.2"
3229
+ source = "git+https://github.com/teamon9161/tevec.git?rev=8142290#8142290c40246d32afe6daba3fec041f24d8bc3c"
3230
+ dependencies = [
3231
+ "chrono",
3232
+ "tea-deps",
3233
+ "tea-error",
3234
+ ]
3235
+
3236
+ [[package]]
3237
+ name = "tempfile"
3238
+ version = "3.20.0"
3239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3240
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
3241
+ dependencies = [
3242
+ "fastrand",
3243
+ "getrandom 0.3.3",
3244
+ "once_cell",
3245
+ "rustix 1.0.7",
3246
+ "windows-sys 0.59.0",
3247
+ ]
3248
+
3249
+ [[package]]
3250
+ name = "tevec"
3251
+ version = "0.5.2"
3252
+ source = "git+https://github.com/teamon9161/tevec.git?rev=8142290#8142290c40246d32afe6daba3fec041f24d8bc3c"
3253
+ dependencies = [
3254
+ "derive_more",
3255
+ "tea-agg",
3256
+ "tea-core",
3257
+ "tea-dtype",
3258
+ "tea-dyn",
3259
+ "tea-macros",
3260
+ "tea-map",
3261
+ "tea-rolling",
3262
+ ]
3263
+
3264
+ [[package]]
3265
+ name = "thiserror"
3266
+ version = "1.0.69"
3267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3268
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3269
+ dependencies = [
3270
+ "thiserror-impl 1.0.69",
3271
+ ]
3272
+
3273
+ [[package]]
3274
+ name = "thiserror"
3275
+ version = "2.0.12"
3276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3277
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
3278
+ dependencies = [
3279
+ "thiserror-impl 2.0.12",
3280
+ ]
3281
+
3282
+ [[package]]
3283
+ name = "thiserror-impl"
3284
+ version = "1.0.69"
3285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3286
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3287
+ dependencies = [
3288
+ "proc-macro2",
3289
+ "quote",
3290
+ "syn",
3291
+ ]
3292
+
3293
+ [[package]]
3294
+ name = "thiserror-impl"
3295
+ version = "2.0.12"
3296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3297
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
3298
+ dependencies = [
3299
+ "proc-macro2",
3300
+ "quote",
3301
+ "syn",
3302
+ ]
3303
+
3304
+ [[package]]
3305
+ name = "tinystr"
3306
+ version = "0.8.1"
3307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3308
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
3309
+ dependencies = [
3310
+ "displaydoc",
3311
+ "zerovec",
3312
+ ]
3313
+
3314
+ [[package]]
3315
+ name = "tinyvec"
3316
+ version = "1.9.0"
3317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3318
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
3319
+ dependencies = [
3320
+ "tinyvec_macros",
3321
+ ]
3322
+
3323
+ [[package]]
3324
+ name = "tinyvec_macros"
3325
+ version = "0.1.1"
3326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3327
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3328
+
3329
+ [[package]]
3330
+ name = "tokio"
3331
+ version = "1.45.0"
3332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3333
+ checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
3334
+ dependencies = [
3335
+ "backtrace",
3336
+ "bytes",
3337
+ "libc",
3338
+ "mio",
3339
+ "parking_lot",
3340
+ "pin-project-lite",
3341
+ "signal-hook-registry",
3342
+ "socket2",
3343
+ "tokio-macros",
3344
+ "windows-sys 0.52.0",
3345
+ ]
3346
+
3347
+ [[package]]
3348
+ name = "tokio-macros"
3349
+ version = "2.5.0"
3350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3351
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3352
+ dependencies = [
3353
+ "proc-macro2",
3354
+ "quote",
3355
+ "syn",
3356
+ ]
3357
+
3358
+ [[package]]
3359
+ name = "tokio-native-tls"
3360
+ version = "0.3.1"
3361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3362
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
3363
+ dependencies = [
3364
+ "native-tls",
3365
+ "tokio",
3366
+ ]
3367
+
3368
+ [[package]]
3369
+ name = "tokio-rustls"
3370
+ version = "0.26.2"
3371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3372
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
3373
+ dependencies = [
3374
+ "rustls",
3375
+ "tokio",
3376
+ ]
3377
+
3378
+ [[package]]
3379
+ name = "tokio-util"
3380
+ version = "0.7.15"
3381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3382
+ checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
3383
+ dependencies = [
3384
+ "bytes",
3385
+ "futures-core",
3386
+ "futures-sink",
3387
+ "pin-project-lite",
3388
+ "tokio",
3389
+ ]
3390
+
3391
+ [[package]]
3392
+ name = "tower"
3393
+ version = "0.5.2"
3394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3395
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3396
+ dependencies = [
3397
+ "futures-core",
3398
+ "futures-util",
3399
+ "pin-project-lite",
3400
+ "sync_wrapper",
3401
+ "tokio",
3402
+ "tower-layer",
3403
+ "tower-service",
3404
+ ]
3405
+
3406
+ [[package]]
3407
+ name = "tower-layer"
3408
+ version = "0.3.3"
3409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3410
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3411
+
3412
+ [[package]]
3413
+ name = "tower-service"
3414
+ version = "0.3.3"
3415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3416
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3417
+
3418
+ [[package]]
3419
+ name = "tracing"
3420
+ version = "0.1.41"
3421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3422
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3423
+ dependencies = [
3424
+ "pin-project-lite",
3425
+ "tracing-attributes",
3426
+ "tracing-core",
3427
+ ]
3428
+
3429
+ [[package]]
3430
+ name = "tracing-attributes"
3431
+ version = "0.1.28"
3432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3433
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3434
+ dependencies = [
3435
+ "proc-macro2",
3436
+ "quote",
3437
+ "syn",
3438
+ ]
3439
+
3440
+ [[package]]
3441
+ name = "tracing-core"
3442
+ version = "0.1.33"
3443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3444
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3445
+ dependencies = [
3446
+ "once_cell",
3447
+ ]
3448
+
3449
+ [[package]]
3450
+ name = "try-lock"
3451
+ version = "0.2.5"
3452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3453
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3454
+
3455
+ [[package]]
3456
+ name = "unicode-ident"
3457
+ version = "1.0.18"
3458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3459
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3460
+
3461
+ [[package]]
3462
+ name = "unicode-normalization"
3463
+ version = "0.1.24"
3464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3465
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
3466
+ dependencies = [
3467
+ "tinyvec",
3468
+ ]
3469
+
3470
+ [[package]]
3471
+ name = "unicode-reverse"
3472
+ version = "1.0.9"
3473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3474
+ checksum = "4b6f4888ebc23094adfb574fdca9fdc891826287a6397d2cd28802ffd6f20c76"
3475
+ dependencies = [
3476
+ "unicode-segmentation",
3477
+ ]
3478
+
3479
+ [[package]]
3480
+ name = "unicode-segmentation"
3481
+ version = "1.12.0"
3482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3483
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3484
+
3485
+ [[package]]
3486
+ name = "unicode-width"
3487
+ version = "0.2.0"
3488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3489
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
3490
+
3491
+ [[package]]
3492
+ name = "unindent"
3493
+ version = "0.2.4"
3494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3495
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3496
+
3497
+ [[package]]
3498
+ name = "untrusted"
3499
+ version = "0.9.0"
3500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3501
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3502
+
3503
+ [[package]]
3504
+ name = "url"
3505
+ version = "2.5.4"
3506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3507
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3508
+ dependencies = [
3509
+ "form_urlencoded",
3510
+ "idna",
3511
+ "percent-encoding",
3512
+ ]
3513
+
3514
+ [[package]]
3515
+ name = "utf8_iter"
3516
+ version = "1.0.4"
3517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3518
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3519
+
3520
+ [[package]]
3521
+ name = "uuid"
3522
+ version = "1.17.0"
3523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3524
+ checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
3525
+ dependencies = [
3526
+ "getrandom 0.3.3",
3527
+ "js-sys",
3528
+ "wasm-bindgen",
3529
+ ]
3530
+
3531
+ [[package]]
3532
+ name = "vcpkg"
3533
+ version = "0.2.15"
3534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3535
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3536
+
3537
+ [[package]]
3538
+ name = "version_check"
3539
+ version = "0.9.5"
3540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3541
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3542
+
3543
+ [[package]]
3544
+ name = "walkdir"
3545
+ version = "2.5.0"
3546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3547
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3548
+ dependencies = [
3549
+ "same-file",
3550
+ "winapi-util",
3551
+ ]
3552
+
3553
+ [[package]]
3554
+ name = "want"
3555
+ version = "0.3.1"
3556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3557
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3558
+ dependencies = [
3559
+ "try-lock",
3560
+ ]
3561
+
3562
+ [[package]]
3563
+ name = "wasi"
3564
+ version = "0.11.0+wasi-snapshot-preview1"
3565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3566
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3567
+
3568
+ [[package]]
3569
+ name = "wasi"
3570
+ version = "0.14.2+wasi-0.2.4"
3571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3572
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3573
+ dependencies = [
3574
+ "wit-bindgen-rt",
3575
+ ]
3576
+
3577
+ [[package]]
3578
+ name = "wasm-bindgen"
3579
+ version = "0.2.100"
3580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3581
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3582
+ dependencies = [
3583
+ "cfg-if",
3584
+ "once_cell",
3585
+ "rustversion",
3586
+ "wasm-bindgen-macro",
3587
+ ]
3588
+
3589
+ [[package]]
3590
+ name = "wasm-bindgen-backend"
3591
+ version = "0.2.100"
3592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3593
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3594
+ dependencies = [
3595
+ "bumpalo",
3596
+ "log",
3597
+ "proc-macro2",
3598
+ "quote",
3599
+ "syn",
3600
+ "wasm-bindgen-shared",
3601
+ ]
3602
+
3603
+ [[package]]
3604
+ name = "wasm-bindgen-futures"
3605
+ version = "0.4.50"
3606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3607
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
3608
+ dependencies = [
3609
+ "cfg-if",
3610
+ "js-sys",
3611
+ "once_cell",
3612
+ "wasm-bindgen",
3613
+ "web-sys",
3614
+ ]
3615
+
3616
+ [[package]]
3617
+ name = "wasm-bindgen-macro"
3618
+ version = "0.2.100"
3619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3620
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3621
+ dependencies = [
3622
+ "quote",
3623
+ "wasm-bindgen-macro-support",
3624
+ ]
3625
+
3626
+ [[package]]
3627
+ name = "wasm-bindgen-macro-support"
3628
+ version = "0.2.100"
3629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3630
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3631
+ dependencies = [
3632
+ "proc-macro2",
3633
+ "quote",
3634
+ "syn",
3635
+ "wasm-bindgen-backend",
3636
+ "wasm-bindgen-shared",
3637
+ ]
3638
+
3639
+ [[package]]
3640
+ name = "wasm-bindgen-shared"
3641
+ version = "0.2.100"
3642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3643
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3644
+ dependencies = [
3645
+ "unicode-ident",
3646
+ ]
3647
+
3648
+ [[package]]
3649
+ name = "wasm-streams"
3650
+ version = "0.4.2"
3651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3652
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3653
+ dependencies = [
3654
+ "futures-util",
3655
+ "js-sys",
3656
+ "wasm-bindgen",
3657
+ "wasm-bindgen-futures",
3658
+ "web-sys",
3659
+ ]
3660
+
3661
+ [[package]]
3662
+ name = "web-sys"
3663
+ version = "0.3.77"
3664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3665
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
3666
+ dependencies = [
3667
+ "js-sys",
3668
+ "wasm-bindgen",
3669
+ ]
3670
+
3671
+ [[package]]
3672
+ name = "web-time"
3673
+ version = "1.1.0"
3674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3675
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3676
+ dependencies = [
3677
+ "js-sys",
3678
+ "wasm-bindgen",
3679
+ ]
3680
+
3681
+ [[package]]
3682
+ name = "webpki-roots"
3683
+ version = "0.26.11"
3684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3685
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
3686
+ dependencies = [
3687
+ "webpki-roots 1.0.0",
3688
+ ]
3689
+
3690
+ [[package]]
3691
+ name = "webpki-roots"
3692
+ version = "1.0.0"
3693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3694
+ checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb"
3695
+ dependencies = [
3696
+ "rustls-pki-types",
3697
+ ]
3698
+
3699
+ [[package]]
3700
+ name = "winapi"
3701
+ version = "0.3.9"
3702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3703
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3704
+ dependencies = [
3705
+ "winapi-i686-pc-windows-gnu",
3706
+ "winapi-x86_64-pc-windows-gnu",
3707
+ ]
3708
+
3709
+ [[package]]
3710
+ name = "winapi-i686-pc-windows-gnu"
3711
+ version = "0.4.0"
3712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3713
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3714
+
3715
+ [[package]]
3716
+ name = "winapi-util"
3717
+ version = "0.1.9"
3718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3719
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
3720
+ dependencies = [
3721
+ "windows-sys 0.59.0",
3722
+ ]
3723
+
3724
+ [[package]]
3725
+ name = "winapi-x86_64-pc-windows-gnu"
3726
+ version = "0.4.0"
3727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3728
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3729
+
3730
+ [[package]]
3731
+ name = "windows"
3732
+ version = "0.57.0"
3733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3734
+ checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
3735
+ dependencies = [
3736
+ "windows-core 0.57.0",
3737
+ "windows-targets 0.52.6",
3738
+ ]
3739
+
3740
+ [[package]]
3741
+ name = "windows-core"
3742
+ version = "0.57.0"
3743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3744
+ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
3745
+ dependencies = [
3746
+ "windows-implement 0.57.0",
3747
+ "windows-interface 0.57.0",
3748
+ "windows-result 0.1.2",
3749
+ "windows-targets 0.52.6",
3750
+ ]
3751
+
3752
+ [[package]]
3753
+ name = "windows-core"
3754
+ version = "0.61.2"
3755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3756
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
3757
+ dependencies = [
3758
+ "windows-implement 0.60.0",
3759
+ "windows-interface 0.59.1",
3760
+ "windows-link",
3761
+ "windows-result 0.3.4",
3762
+ "windows-strings 0.4.2",
3763
+ ]
3764
+
3765
+ [[package]]
3766
+ name = "windows-implement"
3767
+ version = "0.57.0"
3768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3769
+ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
3770
+ dependencies = [
3771
+ "proc-macro2",
3772
+ "quote",
3773
+ "syn",
3774
+ ]
3775
+
3776
+ [[package]]
3777
+ name = "windows-implement"
3778
+ version = "0.60.0"
3779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3780
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
3781
+ dependencies = [
3782
+ "proc-macro2",
3783
+ "quote",
3784
+ "syn",
3785
+ ]
3786
+
3787
+ [[package]]
3788
+ name = "windows-interface"
3789
+ version = "0.57.0"
3790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3791
+ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
3792
+ dependencies = [
3793
+ "proc-macro2",
3794
+ "quote",
3795
+ "syn",
3796
+ ]
3797
+
3798
+ [[package]]
3799
+ name = "windows-interface"
3800
+ version = "0.59.1"
3801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3802
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
3803
+ dependencies = [
3804
+ "proc-macro2",
3805
+ "quote",
3806
+ "syn",
3807
+ ]
3808
+
3809
+ [[package]]
3810
+ name = "windows-link"
3811
+ version = "0.1.1"
3812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3813
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
3814
+
3815
+ [[package]]
3816
+ name = "windows-registry"
3817
+ version = "0.4.0"
3818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3819
+ checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
3820
+ dependencies = [
3821
+ "windows-result 0.3.4",
3822
+ "windows-strings 0.3.1",
3823
+ "windows-targets 0.53.0",
3824
+ ]
3825
+
3826
+ [[package]]
3827
+ name = "windows-result"
3828
+ version = "0.1.2"
3829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3830
+ checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
3831
+ dependencies = [
3832
+ "windows-targets 0.52.6",
3833
+ ]
3834
+
3835
+ [[package]]
3836
+ name = "windows-result"
3837
+ version = "0.3.4"
3838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3839
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
3840
+ dependencies = [
3841
+ "windows-link",
3842
+ ]
3843
+
3844
+ [[package]]
3845
+ name = "windows-strings"
3846
+ version = "0.3.1"
3847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3848
+ checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
3849
+ dependencies = [
3850
+ "windows-link",
3851
+ ]
3852
+
3853
+ [[package]]
3854
+ name = "windows-strings"
3855
+ version = "0.4.2"
3856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3857
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
3858
+ dependencies = [
3859
+ "windows-link",
3860
+ ]
3861
+
3862
+ [[package]]
3863
+ name = "windows-sys"
3864
+ version = "0.52.0"
3865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3866
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3867
+ dependencies = [
3868
+ "windows-targets 0.52.6",
3869
+ ]
3870
+
3871
+ [[package]]
3872
+ name = "windows-sys"
3873
+ version = "0.59.0"
3874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3875
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3876
+ dependencies = [
3877
+ "windows-targets 0.52.6",
3878
+ ]
3879
+
3880
+ [[package]]
3881
+ name = "windows-targets"
3882
+ version = "0.52.6"
3883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3884
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3885
+ dependencies = [
3886
+ "windows_aarch64_gnullvm 0.52.6",
3887
+ "windows_aarch64_msvc 0.52.6",
3888
+ "windows_i686_gnu 0.52.6",
3889
+ "windows_i686_gnullvm 0.52.6",
3890
+ "windows_i686_msvc 0.52.6",
3891
+ "windows_x86_64_gnu 0.52.6",
3892
+ "windows_x86_64_gnullvm 0.52.6",
3893
+ "windows_x86_64_msvc 0.52.6",
3894
+ ]
3895
+
3896
+ [[package]]
3897
+ name = "windows-targets"
3898
+ version = "0.53.0"
3899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3900
+ checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
3901
+ dependencies = [
3902
+ "windows_aarch64_gnullvm 0.53.0",
3903
+ "windows_aarch64_msvc 0.53.0",
3904
+ "windows_i686_gnu 0.53.0",
3905
+ "windows_i686_gnullvm 0.53.0",
3906
+ "windows_i686_msvc 0.53.0",
3907
+ "windows_x86_64_gnu 0.53.0",
3908
+ "windows_x86_64_gnullvm 0.53.0",
3909
+ "windows_x86_64_msvc 0.53.0",
3910
+ ]
3911
+
3912
+ [[package]]
3913
+ name = "windows_aarch64_gnullvm"
3914
+ version = "0.52.6"
3915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3916
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3917
+
3918
+ [[package]]
3919
+ name = "windows_aarch64_gnullvm"
3920
+ version = "0.53.0"
3921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3922
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
3923
+
3924
+ [[package]]
3925
+ name = "windows_aarch64_msvc"
3926
+ version = "0.52.6"
3927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3928
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3929
+
3930
+ [[package]]
3931
+ name = "windows_aarch64_msvc"
3932
+ version = "0.53.0"
3933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3934
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
3935
+
3936
+ [[package]]
3937
+ name = "windows_i686_gnu"
3938
+ version = "0.52.6"
3939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3940
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3941
+
3942
+ [[package]]
3943
+ name = "windows_i686_gnu"
3944
+ version = "0.53.0"
3945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3946
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
3947
+
3948
+ [[package]]
3949
+ name = "windows_i686_gnullvm"
3950
+ version = "0.52.6"
3951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3952
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3953
+
3954
+ [[package]]
3955
+ name = "windows_i686_gnullvm"
3956
+ version = "0.53.0"
3957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3958
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
3959
+
3960
+ [[package]]
3961
+ name = "windows_i686_msvc"
3962
+ version = "0.52.6"
3963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3964
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3965
+
3966
+ [[package]]
3967
+ name = "windows_i686_msvc"
3968
+ version = "0.53.0"
3969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3970
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
3971
+
3972
+ [[package]]
3973
+ name = "windows_x86_64_gnu"
3974
+ version = "0.52.6"
3975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3976
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3977
+
3978
+ [[package]]
3979
+ name = "windows_x86_64_gnu"
3980
+ version = "0.53.0"
3981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3982
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
3983
+
3984
+ [[package]]
3985
+ name = "windows_x86_64_gnullvm"
3986
+ version = "0.52.6"
3987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3988
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3989
+
3990
+ [[package]]
3991
+ name = "windows_x86_64_gnullvm"
3992
+ version = "0.53.0"
3993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3994
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
3995
+
3996
+ [[package]]
3997
+ name = "windows_x86_64_msvc"
3998
+ version = "0.52.6"
3999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4000
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4001
+
4002
+ [[package]]
4003
+ name = "windows_x86_64_msvc"
4004
+ version = "0.53.0"
4005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4006
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
4007
+
4008
+ [[package]]
4009
+ name = "wit-bindgen-rt"
4010
+ version = "0.39.0"
4011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4012
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
4013
+ dependencies = [
4014
+ "bitflags",
4015
+ ]
4016
+
4017
+ [[package]]
4018
+ name = "writeable"
4019
+ version = "0.6.1"
4020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4021
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
4022
+
4023
+ [[package]]
4024
+ name = "xxhash-rust"
4025
+ version = "0.8.15"
4026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4027
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
4028
+
4029
+ [[package]]
4030
+ name = "yoke"
4031
+ version = "0.8.0"
4032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4033
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
4034
+ dependencies = [
4035
+ "serde",
4036
+ "stable_deref_trait",
4037
+ "yoke-derive",
4038
+ "zerofrom",
4039
+ ]
4040
+
4041
+ [[package]]
4042
+ name = "yoke-derive"
4043
+ version = "0.8.0"
4044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4045
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
4046
+ dependencies = [
4047
+ "proc-macro2",
4048
+ "quote",
4049
+ "syn",
4050
+ "synstructure",
4051
+ ]
4052
+
4053
+ [[package]]
4054
+ name = "zerocopy"
4055
+ version = "0.8.25"
4056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4057
+ checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
4058
+ dependencies = [
4059
+ "zerocopy-derive",
4060
+ ]
4061
+
4062
+ [[package]]
4063
+ name = "zerocopy-derive"
4064
+ version = "0.8.25"
4065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4066
+ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
4067
+ dependencies = [
4068
+ "proc-macro2",
4069
+ "quote",
4070
+ "syn",
4071
+ ]
4072
+
4073
+ [[package]]
4074
+ name = "zerofrom"
4075
+ version = "0.1.6"
4076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4077
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4078
+ dependencies = [
4079
+ "zerofrom-derive",
4080
+ ]
4081
+
4082
+ [[package]]
4083
+ name = "zerofrom-derive"
4084
+ version = "0.1.6"
4085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4086
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4087
+ dependencies = [
4088
+ "proc-macro2",
4089
+ "quote",
4090
+ "syn",
4091
+ "synstructure",
4092
+ ]
4093
+
4094
+ [[package]]
4095
+ name = "zeroize"
4096
+ version = "1.8.1"
4097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4098
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
4099
+
4100
+ [[package]]
4101
+ name = "zerotrie"
4102
+ version = "0.2.2"
4103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4104
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
4105
+ dependencies = [
4106
+ "displaydoc",
4107
+ "yoke",
4108
+ "zerofrom",
4109
+ ]
4110
+
4111
+ [[package]]
4112
+ name = "zerovec"
4113
+ version = "0.11.2"
4114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4115
+ checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
4116
+ dependencies = [
4117
+ "yoke",
4118
+ "zerofrom",
4119
+ "zerovec-derive",
4120
+ ]
4121
+
4122
+ [[package]]
4123
+ name = "zerovec-derive"
4124
+ version = "0.11.1"
4125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4126
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
4127
+ dependencies = [
4128
+ "proc-macro2",
4129
+ "quote",
4130
+ "syn",
4131
+ ]
4132
+
4133
+ [[package]]
4134
+ name = "zstd"
4135
+ version = "0.13.3"
4136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4137
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4138
+ dependencies = [
4139
+ "zstd-safe",
4140
+ ]
4141
+
4142
+ [[package]]
4143
+ name = "zstd-safe"
4144
+ version = "7.2.4"
4145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4146
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4147
+ dependencies = [
4148
+ "zstd-sys",
4149
+ ]
4150
+
4151
+ [[package]]
4152
+ name = "zstd-sys"
4153
+ version = "2.0.15+zstd.1.5.7"
4154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4155
+ checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
4156
+ dependencies = [
4157
+ "cc",
4158
+ "pkg-config",
4159
+ ]