nc-gcode-interpreter 0.1.11__tar.gz → 0.1.12__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.
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/Cargo.lock +1753 -354
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/Cargo.toml +6 -5
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/PKG-INFO +1 -1
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/python/nc_gcode_interpreter/__init__.py +4 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/python/nc_gcode_interpreter/_internal.pyi +3 -0
- nc_gcode_interpreter-0.1.12/python/tests/test_flags.py +18 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/src/errors.rs +4 -1
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/src/interpret_rules.rs +20 -11
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/src/interpreter.rs +9 -7
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/src/lib.rs +4 -2
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/src/main.rs +11 -2
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/src/state.rs +3 -1
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/.github/workflows/build-and-release.yml +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/.gitignore +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/CONTRIBUTING.md +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/Development.md +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/LICENSE +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/README.md +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/TODO.md +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/arrays.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/arrays.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/axis_index_assignment.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/axis_index_assignment.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/basic_math.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/basic_math.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/custom_vars.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/custom_vars.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/defaults.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/defaults.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/for_loop.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/for_loop.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/function_calls.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/function_calls.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/if_statement.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/if_statement.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/increment.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/increment.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/loop.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/loop.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/multiple_m_codes.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/multiple_m_codes.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/r_param.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/r_param.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/repeat.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/repeat.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/simple.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/simple.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/tool.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/tool.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/trans.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/trans.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/variables.csv +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/examples/variables.mpf +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/ggroups/generate_modal_ggroups.py +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/ggroups/generate_pest.py +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/ggroups/ggroups.pest +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/pyproject.toml +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/python/example/minimal.py +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/python/nc_gcode_interpreter/ggroups.json +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/python/nc_gcode_interpreter/py.typed +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/python/tests/test_expected_output.py +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/python/tests/test_g_groups.py +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/rustfmt.toml +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/src/grammar.pest +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/src/modal_groups.rs +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/src/types.rs +0 -0
- {nc_gcode_interpreter-0.1.11 → nc_gcode_interpreter-0.1.12}/uv.lock +0 -0
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.24.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
|
+
|
|
5
20
|
[[package]]
|
|
6
21
|
name = "ahash"
|
|
7
22
|
version = "0.8.12"
|
|
@@ -9,7 +24,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
9
24
|
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
25
|
dependencies = [
|
|
11
26
|
"cfg-if",
|
|
12
|
-
"getrandom 0.3.3",
|
|
13
27
|
"once_cell",
|
|
14
28
|
"version_check",
|
|
15
29
|
"zerocopy",
|
|
@@ -111,19 +125,76 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
111
125
|
checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
|
|
112
126
|
|
|
113
127
|
[[package]]
|
|
114
|
-
name = "
|
|
115
|
-
version = "
|
|
128
|
+
name = "arrayref"
|
|
129
|
+
version = "0.3.9"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "arrayvec"
|
|
135
|
+
version = "0.7.6"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "async-channel"
|
|
141
|
+
version = "2.3.1"
|
|
116
142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
-
checksum = "
|
|
143
|
+
checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
|
|
118
144
|
dependencies = [
|
|
119
|
-
"
|
|
145
|
+
"concurrent-queue",
|
|
146
|
+
"event-listener-strategy",
|
|
147
|
+
"futures-core",
|
|
148
|
+
"pin-project-lite",
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "async-stream"
|
|
153
|
+
version = "0.3.6"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
156
|
+
dependencies = [
|
|
157
|
+
"async-stream-impl",
|
|
158
|
+
"futures-core",
|
|
159
|
+
"pin-project-lite",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "async-stream-impl"
|
|
164
|
+
version = "0.3.6"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"proc-macro2",
|
|
169
|
+
"quote",
|
|
170
|
+
"syn",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "async-trait"
|
|
175
|
+
version = "0.1.88"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"proc-macro2",
|
|
180
|
+
"quote",
|
|
181
|
+
"syn",
|
|
120
182
|
]
|
|
121
183
|
|
|
122
184
|
[[package]]
|
|
123
185
|
name = "atoi_simd"
|
|
124
|
-
version = "0.
|
|
186
|
+
version = "0.16.1"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "c2a49e05797ca52e312a0c658938b7d00693ef037799ef7187678f212d7684cf"
|
|
189
|
+
dependencies = [
|
|
190
|
+
"debug_unsafe",
|
|
191
|
+
]
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "atomic-waker"
|
|
195
|
+
version = "1.1.2"
|
|
125
196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
-
checksum = "
|
|
197
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
127
198
|
|
|
128
199
|
[[package]]
|
|
129
200
|
name = "autocfg"
|
|
@@ -131,17 +202,57 @@ version = "1.5.0"
|
|
|
131
202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
203
|
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
133
204
|
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "backtrace"
|
|
207
|
+
version = "0.3.75"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
|
|
210
|
+
dependencies = [
|
|
211
|
+
"addr2line",
|
|
212
|
+
"cfg-if",
|
|
213
|
+
"libc",
|
|
214
|
+
"miniz_oxide",
|
|
215
|
+
"object",
|
|
216
|
+
"rustc-demangle",
|
|
217
|
+
"windows-targets 0.52.6",
|
|
218
|
+
]
|
|
219
|
+
|
|
134
220
|
[[package]]
|
|
135
221
|
name = "base64"
|
|
136
222
|
version = "0.22.1"
|
|
137
223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
224
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
139
225
|
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "bincode"
|
|
228
|
+
version = "1.3.3"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
231
|
+
dependencies = [
|
|
232
|
+
"serde",
|
|
233
|
+
]
|
|
234
|
+
|
|
140
235
|
[[package]]
|
|
141
236
|
name = "bitflags"
|
|
142
237
|
version = "2.9.1"
|
|
143
238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
239
|
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
|
240
|
+
dependencies = [
|
|
241
|
+
"serde",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "blake3"
|
|
246
|
+
version = "1.8.2"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"arrayref",
|
|
251
|
+
"arrayvec",
|
|
252
|
+
"cc",
|
|
253
|
+
"cfg-if",
|
|
254
|
+
"constant_time_eq",
|
|
255
|
+
]
|
|
145
256
|
|
|
146
257
|
[[package]]
|
|
147
258
|
name = "block-buffer"
|
|
@@ -152,6 +263,12 @@ dependencies = [
|
|
|
152
263
|
"generic-array",
|
|
153
264
|
]
|
|
154
265
|
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "boxcar"
|
|
268
|
+
version = "0.2.13"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "26c4925bc979b677330a8c7fe7a8c94af2dbb4a2d37b4a20a80d884400f46baa"
|
|
271
|
+
|
|
155
272
|
[[package]]
|
|
156
273
|
name = "bumpalo"
|
|
157
274
|
version = "3.19.0"
|
|
@@ -175,14 +292,23 @@ checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1"
|
|
|
175
292
|
dependencies = [
|
|
176
293
|
"proc-macro2",
|
|
177
294
|
"quote",
|
|
178
|
-
"syn
|
|
295
|
+
"syn",
|
|
179
296
|
]
|
|
180
297
|
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "byteorder"
|
|
300
|
+
version = "1.5.0"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
303
|
+
|
|
181
304
|
[[package]]
|
|
182
305
|
name = "bytes"
|
|
183
306
|
version = "1.10.1"
|
|
184
307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
308
|
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"serde",
|
|
311
|
+
]
|
|
186
312
|
|
|
187
313
|
[[package]]
|
|
188
314
|
name = "castaway"
|
|
@@ -210,6 +336,12 @@ version = "1.0.1"
|
|
|
210
336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
337
|
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
|
212
338
|
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "cfg_aliases"
|
|
341
|
+
version = "0.2.1"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
344
|
+
|
|
213
345
|
[[package]]
|
|
214
346
|
name = "chrono"
|
|
215
347
|
version = "0.4.41"
|
|
@@ -219,14 +351,15 @@ dependencies = [
|
|
|
219
351
|
"android-tzdata",
|
|
220
352
|
"iana-time-zone",
|
|
221
353
|
"num-traits",
|
|
354
|
+
"serde",
|
|
222
355
|
"windows-link",
|
|
223
356
|
]
|
|
224
357
|
|
|
225
358
|
[[package]]
|
|
226
359
|
name = "chrono-tz"
|
|
227
|
-
version = "0.
|
|
360
|
+
version = "0.10.3"
|
|
228
361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
-
checksum = "
|
|
362
|
+
checksum = "efdce149c370f133a071ca8ef6ea340b7b88748ab0810097a9e2976eaa34b4f3"
|
|
230
363
|
dependencies = [
|
|
231
364
|
"chrono",
|
|
232
365
|
"chrono-tz-build",
|
|
@@ -235,12 +368,11 @@ dependencies = [
|
|
|
235
368
|
|
|
236
369
|
[[package]]
|
|
237
370
|
name = "chrono-tz-build"
|
|
238
|
-
version = "0.
|
|
371
|
+
version = "0.4.1"
|
|
239
372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
-
checksum = "
|
|
373
|
+
checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402"
|
|
241
374
|
dependencies = [
|
|
242
375
|
"parse-zoneinfo",
|
|
243
|
-
"phf",
|
|
244
376
|
"phf_codegen",
|
|
245
377
|
]
|
|
246
378
|
|
|
@@ -275,7 +407,7 @@ dependencies = [
|
|
|
275
407
|
"heck",
|
|
276
408
|
"proc-macro2",
|
|
277
409
|
"quote",
|
|
278
|
-
"syn
|
|
410
|
+
"syn",
|
|
279
411
|
]
|
|
280
412
|
|
|
281
413
|
[[package]]
|
|
@@ -316,6 +448,31 @@ dependencies = [
|
|
|
316
448
|
"static_assertions",
|
|
317
449
|
]
|
|
318
450
|
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "concurrent-queue"
|
|
453
|
+
version = "2.5.0"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"crossbeam-utils",
|
|
458
|
+
]
|
|
459
|
+
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "constant_time_eq"
|
|
462
|
+
version = "0.3.1"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "core-foundation"
|
|
468
|
+
version = "0.10.1"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
471
|
+
dependencies = [
|
|
472
|
+
"core-foundation-sys",
|
|
473
|
+
"libc",
|
|
474
|
+
]
|
|
475
|
+
|
|
319
476
|
[[package]]
|
|
320
477
|
name = "core-foundation-sys"
|
|
321
478
|
version = "0.8.7"
|
|
@@ -331,6 +488,15 @@ dependencies = [
|
|
|
331
488
|
"libc",
|
|
332
489
|
]
|
|
333
490
|
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "crc32fast"
|
|
493
|
+
version = "1.4.2"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"cfg-if",
|
|
498
|
+
]
|
|
499
|
+
|
|
334
500
|
[[package]]
|
|
335
501
|
name = "crossbeam-channel"
|
|
336
502
|
version = "0.5.15"
|
|
@@ -383,7 +549,7 @@ dependencies = [
|
|
|
383
549
|
"bitflags",
|
|
384
550
|
"crossterm_winapi",
|
|
385
551
|
"parking_lot",
|
|
386
|
-
"rustix",
|
|
552
|
+
"rustix 0.38.44",
|
|
387
553
|
"winapi",
|
|
388
554
|
]
|
|
389
555
|
|
|
@@ -427,6 +593,12 @@ dependencies = [
|
|
|
427
593
|
"memchr",
|
|
428
594
|
]
|
|
429
595
|
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "debug_unsafe"
|
|
598
|
+
version = "0.1.3"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "85d3cef41d236720ed453e102153a53e4cc3d2fde848c0078a50cf249e8e3e5b"
|
|
601
|
+
|
|
430
602
|
[[package]]
|
|
431
603
|
name = "digest"
|
|
432
604
|
version = "0.10.7"
|
|
@@ -437,6 +609,17 @@ dependencies = [
|
|
|
437
609
|
"crypto-common",
|
|
438
610
|
]
|
|
439
611
|
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "displaydoc"
|
|
614
|
+
version = "0.2.5"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"proc-macro2",
|
|
619
|
+
"quote",
|
|
620
|
+
"syn",
|
|
621
|
+
]
|
|
622
|
+
|
|
440
623
|
[[package]]
|
|
441
624
|
name = "dyn-clone"
|
|
442
625
|
version = "1.0.19"
|
|
@@ -449,18 +632,6 @@ version = "1.15.0"
|
|
|
449
632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
633
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
451
634
|
|
|
452
|
-
[[package]]
|
|
453
|
-
name = "enum_dispatch"
|
|
454
|
-
version = "0.3.13"
|
|
455
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
-
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
|
457
|
-
dependencies = [
|
|
458
|
-
"once_cell",
|
|
459
|
-
"proc-macro2",
|
|
460
|
-
"quote",
|
|
461
|
-
"syn 2.0.104",
|
|
462
|
-
]
|
|
463
|
-
|
|
464
635
|
[[package]]
|
|
465
636
|
name = "equivalent"
|
|
466
637
|
version = "1.0.2"
|
|
@@ -483,6 +654,27 @@ version = "1.5.2"
|
|
|
483
654
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
655
|
checksum = "ca81e6b4777c89fd810c25a4be2b1bd93ea034fbe58e6a75216a34c6b82c539b"
|
|
485
656
|
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "event-listener"
|
|
659
|
+
version = "5.4.0"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"concurrent-queue",
|
|
664
|
+
"parking",
|
|
665
|
+
"pin-project-lite",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "event-listener-strategy"
|
|
670
|
+
version = "0.5.4"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"event-listener",
|
|
675
|
+
"pin-project-lite",
|
|
676
|
+
]
|
|
677
|
+
|
|
486
678
|
[[package]]
|
|
487
679
|
name = "fallible-streaming-iterator"
|
|
488
680
|
version = "0.1.9"
|
|
@@ -490,10 +682,140 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
490
682
|
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
|
491
683
|
|
|
492
684
|
[[package]]
|
|
493
|
-
name = "fast-
|
|
494
|
-
version = "0.2.
|
|
685
|
+
name = "fast-float2"
|
|
686
|
+
version = "0.2.3"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "flate2"
|
|
692
|
+
version = "1.1.2"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
|
695
|
+
dependencies = [
|
|
696
|
+
"crc32fast",
|
|
697
|
+
"miniz_oxide",
|
|
698
|
+
]
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "fnv"
|
|
702
|
+
version = "1.0.7"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "foldhash"
|
|
708
|
+
version = "0.1.5"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "form_urlencoded"
|
|
714
|
+
version = "1.2.1"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"percent-encoding",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "fs4"
|
|
723
|
+
version = "0.13.1"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"rustix 1.0.7",
|
|
728
|
+
"windows-sys 0.59.0",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "futures"
|
|
733
|
+
version = "0.3.31"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
736
|
+
dependencies = [
|
|
737
|
+
"futures-channel",
|
|
738
|
+
"futures-core",
|
|
739
|
+
"futures-executor",
|
|
740
|
+
"futures-io",
|
|
741
|
+
"futures-sink",
|
|
742
|
+
"futures-task",
|
|
743
|
+
"futures-util",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "futures-channel"
|
|
748
|
+
version = "0.3.31"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
751
|
+
dependencies = [
|
|
752
|
+
"futures-core",
|
|
753
|
+
"futures-sink",
|
|
754
|
+
]
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "futures-core"
|
|
758
|
+
version = "0.3.31"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "futures-executor"
|
|
764
|
+
version = "0.3.31"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"futures-core",
|
|
769
|
+
"futures-task",
|
|
770
|
+
"futures-util",
|
|
771
|
+
]
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "futures-io"
|
|
775
|
+
version = "0.3.31"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
778
|
+
|
|
779
|
+
[[package]]
|
|
780
|
+
name = "futures-macro"
|
|
781
|
+
version = "0.3.31"
|
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
784
|
+
dependencies = [
|
|
785
|
+
"proc-macro2",
|
|
786
|
+
"quote",
|
|
787
|
+
"syn",
|
|
788
|
+
]
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "futures-sink"
|
|
792
|
+
version = "0.3.31"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "futures-task"
|
|
798
|
+
version = "0.3.31"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "futures-util"
|
|
804
|
+
version = "0.3.31"
|
|
495
805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
-
checksum = "
|
|
806
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"futures-channel",
|
|
809
|
+
"futures-core",
|
|
810
|
+
"futures-io",
|
|
811
|
+
"futures-macro",
|
|
812
|
+
"futures-sink",
|
|
813
|
+
"futures-task",
|
|
814
|
+
"memchr",
|
|
815
|
+
"pin-project-lite",
|
|
816
|
+
"pin-utils",
|
|
817
|
+
"slab",
|
|
818
|
+
]
|
|
497
819
|
|
|
498
820
|
[[package]]
|
|
499
821
|
name = "generic-array"
|
|
@@ -525,17 +847,44 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
525
847
|
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
526
848
|
dependencies = [
|
|
527
849
|
"cfg-if",
|
|
850
|
+
"js-sys",
|
|
528
851
|
"libc",
|
|
529
852
|
"r-efi",
|
|
530
853
|
"wasi 0.14.2+wasi-0.2.4",
|
|
854
|
+
"wasm-bindgen",
|
|
531
855
|
]
|
|
532
856
|
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "gimli"
|
|
859
|
+
version = "0.31.1"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
862
|
+
|
|
533
863
|
[[package]]
|
|
534
864
|
name = "glob"
|
|
535
865
|
version = "0.3.2"
|
|
536
866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
867
|
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
538
868
|
|
|
869
|
+
[[package]]
|
|
870
|
+
name = "h2"
|
|
871
|
+
version = "0.4.10"
|
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
|
+
checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
|
|
874
|
+
dependencies = [
|
|
875
|
+
"atomic-waker",
|
|
876
|
+
"bytes",
|
|
877
|
+
"fnv",
|
|
878
|
+
"futures-core",
|
|
879
|
+
"futures-sink",
|
|
880
|
+
"http",
|
|
881
|
+
"indexmap",
|
|
882
|
+
"slab",
|
|
883
|
+
"tokio",
|
|
884
|
+
"tokio-util",
|
|
885
|
+
"tracing",
|
|
886
|
+
]
|
|
887
|
+
|
|
539
888
|
[[package]]
|
|
540
889
|
name = "hashbrown"
|
|
541
890
|
version = "0.14.5"
|
|
@@ -553,6 +902,13 @@ name = "hashbrown"
|
|
|
553
902
|
version = "0.15.4"
|
|
554
903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
904
|
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"allocator-api2",
|
|
907
|
+
"equivalent",
|
|
908
|
+
"foldhash",
|
|
909
|
+
"rayon",
|
|
910
|
+
"serde",
|
|
911
|
+
]
|
|
556
912
|
|
|
557
913
|
[[package]]
|
|
558
914
|
name = "heck"
|
|
@@ -576,63 +932,296 @@ dependencies = [
|
|
|
576
932
|
]
|
|
577
933
|
|
|
578
934
|
[[package]]
|
|
579
|
-
name = "
|
|
580
|
-
version = "
|
|
935
|
+
name = "http"
|
|
936
|
+
version = "1.3.1"
|
|
581
937
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
-
checksum = "
|
|
938
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
583
939
|
dependencies = [
|
|
584
|
-
"
|
|
585
|
-
"
|
|
586
|
-
"
|
|
587
|
-
"js-sys",
|
|
588
|
-
"log",
|
|
589
|
-
"wasm-bindgen",
|
|
590
|
-
"windows-core 0.61.2",
|
|
940
|
+
"bytes",
|
|
941
|
+
"fnv",
|
|
942
|
+
"itoa",
|
|
591
943
|
]
|
|
592
944
|
|
|
593
945
|
[[package]]
|
|
594
|
-
name = "
|
|
595
|
-
version = "0.1
|
|
946
|
+
name = "http-body"
|
|
947
|
+
version = "1.0.1"
|
|
596
948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
-
checksum = "
|
|
949
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
598
950
|
dependencies = [
|
|
599
|
-
"
|
|
951
|
+
"bytes",
|
|
952
|
+
"http",
|
|
600
953
|
]
|
|
601
954
|
|
|
602
955
|
[[package]]
|
|
603
|
-
name = "
|
|
604
|
-
version = "
|
|
956
|
+
name = "http-body-util"
|
|
957
|
+
version = "0.1.3"
|
|
605
958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
-
checksum = "
|
|
959
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
607
960
|
dependencies = [
|
|
608
|
-
"
|
|
609
|
-
"
|
|
610
|
-
"
|
|
961
|
+
"bytes",
|
|
962
|
+
"futures-core",
|
|
963
|
+
"http",
|
|
964
|
+
"http-body",
|
|
965
|
+
"pin-project-lite",
|
|
611
966
|
]
|
|
612
967
|
|
|
613
968
|
[[package]]
|
|
614
|
-
name = "
|
|
615
|
-
version = "
|
|
969
|
+
name = "httparse"
|
|
970
|
+
version = "1.10.1"
|
|
616
971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
-
checksum = "
|
|
972
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
618
973
|
|
|
619
974
|
[[package]]
|
|
620
|
-
name = "
|
|
621
|
-
version = "
|
|
975
|
+
name = "humantime"
|
|
976
|
+
version = "2.2.0"
|
|
622
977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
-
checksum = "
|
|
978
|
+
checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
|
|
624
979
|
|
|
625
980
|
[[package]]
|
|
626
|
-
name = "
|
|
627
|
-
version = "1.0
|
|
981
|
+
name = "hyper"
|
|
982
|
+
version = "1.6.0"
|
|
628
983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
-
checksum = "
|
|
984
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
|
985
|
+
dependencies = [
|
|
986
|
+
"bytes",
|
|
987
|
+
"futures-channel",
|
|
988
|
+
"futures-util",
|
|
989
|
+
"h2",
|
|
990
|
+
"http",
|
|
991
|
+
"http-body",
|
|
992
|
+
"httparse",
|
|
993
|
+
"itoa",
|
|
994
|
+
"pin-project-lite",
|
|
995
|
+
"smallvec",
|
|
996
|
+
"tokio",
|
|
997
|
+
"want",
|
|
998
|
+
]
|
|
630
999
|
|
|
631
1000
|
[[package]]
|
|
632
|
-
name = "
|
|
633
|
-
version = "
|
|
1001
|
+
name = "hyper-rustls"
|
|
1002
|
+
version = "0.27.7"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1005
|
+
dependencies = [
|
|
1006
|
+
"http",
|
|
1007
|
+
"hyper",
|
|
1008
|
+
"hyper-util",
|
|
1009
|
+
"rustls",
|
|
1010
|
+
"rustls-native-certs",
|
|
1011
|
+
"rustls-pki-types",
|
|
1012
|
+
"tokio",
|
|
1013
|
+
"tokio-rustls",
|
|
1014
|
+
"tower-service",
|
|
1015
|
+
]
|
|
1016
|
+
|
|
1017
|
+
[[package]]
|
|
1018
|
+
name = "hyper-util"
|
|
1019
|
+
version = "0.1.14"
|
|
1020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
+
checksum = "dc2fdfdbff08affe55bb779f33b053aa1fe5dd5b54c257343c17edfa55711bdb"
|
|
1022
|
+
dependencies = [
|
|
1023
|
+
"base64",
|
|
1024
|
+
"bytes",
|
|
1025
|
+
"futures-channel",
|
|
1026
|
+
"futures-core",
|
|
1027
|
+
"futures-util",
|
|
1028
|
+
"http",
|
|
1029
|
+
"http-body",
|
|
1030
|
+
"hyper",
|
|
1031
|
+
"ipnet",
|
|
1032
|
+
"libc",
|
|
1033
|
+
"percent-encoding",
|
|
1034
|
+
"pin-project-lite",
|
|
1035
|
+
"socket2",
|
|
1036
|
+
"tokio",
|
|
1037
|
+
"tower-service",
|
|
1038
|
+
"tracing",
|
|
1039
|
+
]
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "iana-time-zone"
|
|
1043
|
+
version = "0.1.63"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
|
1046
|
+
dependencies = [
|
|
1047
|
+
"android_system_properties",
|
|
1048
|
+
"core-foundation-sys",
|
|
1049
|
+
"iana-time-zone-haiku",
|
|
1050
|
+
"js-sys",
|
|
1051
|
+
"log",
|
|
1052
|
+
"wasm-bindgen",
|
|
1053
|
+
"windows-core",
|
|
1054
|
+
]
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "iana-time-zone-haiku"
|
|
1058
|
+
version = "0.1.2"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1061
|
+
dependencies = [
|
|
1062
|
+
"cc",
|
|
1063
|
+
]
|
|
1064
|
+
|
|
1065
|
+
[[package]]
|
|
1066
|
+
name = "icu_collections"
|
|
1067
|
+
version = "2.0.0"
|
|
1068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
1070
|
+
dependencies = [
|
|
1071
|
+
"displaydoc",
|
|
1072
|
+
"potential_utf",
|
|
1073
|
+
"yoke",
|
|
1074
|
+
"zerofrom",
|
|
1075
|
+
"zerovec",
|
|
1076
|
+
]
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "icu_locale_core"
|
|
1080
|
+
version = "2.0.0"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
1083
|
+
dependencies = [
|
|
1084
|
+
"displaydoc",
|
|
1085
|
+
"litemap",
|
|
1086
|
+
"tinystr",
|
|
1087
|
+
"writeable",
|
|
1088
|
+
"zerovec",
|
|
1089
|
+
]
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "icu_normalizer"
|
|
1093
|
+
version = "2.0.0"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
|
1096
|
+
dependencies = [
|
|
1097
|
+
"displaydoc",
|
|
1098
|
+
"icu_collections",
|
|
1099
|
+
"icu_normalizer_data",
|
|
1100
|
+
"icu_properties",
|
|
1101
|
+
"icu_provider",
|
|
1102
|
+
"smallvec",
|
|
1103
|
+
"zerovec",
|
|
1104
|
+
]
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "icu_normalizer_data"
|
|
1108
|
+
version = "2.0.0"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "icu_properties"
|
|
1114
|
+
version = "2.0.1"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
|
1117
|
+
dependencies = [
|
|
1118
|
+
"displaydoc",
|
|
1119
|
+
"icu_collections",
|
|
1120
|
+
"icu_locale_core",
|
|
1121
|
+
"icu_properties_data",
|
|
1122
|
+
"icu_provider",
|
|
1123
|
+
"potential_utf",
|
|
1124
|
+
"zerotrie",
|
|
1125
|
+
"zerovec",
|
|
1126
|
+
]
|
|
1127
|
+
|
|
1128
|
+
[[package]]
|
|
1129
|
+
name = "icu_properties_data"
|
|
1130
|
+
version = "2.0.1"
|
|
1131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "icu_provider"
|
|
1136
|
+
version = "2.0.0"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"displaydoc",
|
|
1141
|
+
"icu_locale_core",
|
|
1142
|
+
"stable_deref_trait",
|
|
1143
|
+
"tinystr",
|
|
1144
|
+
"writeable",
|
|
1145
|
+
"yoke",
|
|
1146
|
+
"zerofrom",
|
|
1147
|
+
"zerotrie",
|
|
1148
|
+
"zerovec",
|
|
1149
|
+
]
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "idna"
|
|
1153
|
+
version = "1.0.3"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"idna_adapter",
|
|
1158
|
+
"smallvec",
|
|
1159
|
+
"utf8_iter",
|
|
1160
|
+
]
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "idna_adapter"
|
|
1164
|
+
version = "1.2.1"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1167
|
+
dependencies = [
|
|
1168
|
+
"icu_normalizer",
|
|
1169
|
+
"icu_properties",
|
|
1170
|
+
]
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "indexmap"
|
|
1174
|
+
version = "2.9.0"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
1177
|
+
dependencies = [
|
|
1178
|
+
"equivalent",
|
|
1179
|
+
"hashbrown 0.15.4",
|
|
1180
|
+
"serde",
|
|
1181
|
+
]
|
|
1182
|
+
|
|
1183
|
+
[[package]]
|
|
1184
|
+
name = "indoc"
|
|
1185
|
+
version = "2.0.6"
|
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
1188
|
+
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "ipnet"
|
|
1191
|
+
version = "2.11.0"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1194
|
+
|
|
1195
|
+
[[package]]
|
|
1196
|
+
name = "iri-string"
|
|
1197
|
+
version = "0.7.8"
|
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
+
checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
|
|
1200
|
+
dependencies = [
|
|
1201
|
+
"memchr",
|
|
1202
|
+
"serde",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "is_terminal_polyfill"
|
|
1207
|
+
version = "1.70.1"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
1210
|
+
|
|
1211
|
+
[[package]]
|
|
1212
|
+
name = "itertools"
|
|
1213
|
+
version = "0.14.0"
|
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1216
|
+
dependencies = [
|
|
1217
|
+
"either",
|
|
1218
|
+
]
|
|
1219
|
+
|
|
1220
|
+
[[package]]
|
|
1221
|
+
name = "itoa"
|
|
1222
|
+
version = "1.0.15"
|
|
634
1223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
-
checksum = "
|
|
1224
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
636
1225
|
|
|
637
1226
|
[[package]]
|
|
638
1227
|
name = "jobserver"
|
|
@@ -672,6 +1261,18 @@ version = "0.4.15"
|
|
|
672
1261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
1262
|
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
674
1263
|
|
|
1264
|
+
[[package]]
|
|
1265
|
+
name = "linux-raw-sys"
|
|
1266
|
+
version = "0.9.4"
|
|
1267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "litemap"
|
|
1272
|
+
version = "0.8.0"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
1275
|
+
|
|
675
1276
|
[[package]]
|
|
676
1277
|
name = "lock_api"
|
|
677
1278
|
version = "0.4.13"
|
|
@@ -688,6 +1289,12 @@ version = "0.4.27"
|
|
|
688
1289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
1290
|
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
690
1291
|
|
|
1292
|
+
[[package]]
|
|
1293
|
+
name = "lru-slab"
|
|
1294
|
+
version = "0.1.2"
|
|
1295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1297
|
+
|
|
691
1298
|
[[package]]
|
|
692
1299
|
name = "lz4"
|
|
693
1300
|
version = "1.28.1"
|
|
@@ -715,9 +1322,9 @@ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
|
715
1322
|
|
|
716
1323
|
[[package]]
|
|
717
1324
|
name = "memmap2"
|
|
718
|
-
version = "0.
|
|
1325
|
+
version = "0.9.5"
|
|
719
1326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
-
checksum = "
|
|
1327
|
+
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
|
721
1328
|
dependencies = [
|
|
722
1329
|
"libc",
|
|
723
1330
|
]
|
|
@@ -732,30 +1339,28 @@ dependencies = [
|
|
|
732
1339
|
]
|
|
733
1340
|
|
|
734
1341
|
[[package]]
|
|
735
|
-
name = "
|
|
736
|
-
version = "0.
|
|
1342
|
+
name = "miniz_oxide"
|
|
1343
|
+
version = "0.8.9"
|
|
737
1344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
-
checksum = "
|
|
1345
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
739
1346
|
dependencies = [
|
|
740
|
-
"
|
|
741
|
-
"target-features",
|
|
1347
|
+
"adler2",
|
|
742
1348
|
]
|
|
743
1349
|
|
|
744
1350
|
[[package]]
|
|
745
|
-
name = "
|
|
746
|
-
version = "0.
|
|
1351
|
+
name = "mio"
|
|
1352
|
+
version = "1.0.4"
|
|
747
1353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
-
checksum = "
|
|
1354
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
|
749
1355
|
dependencies = [
|
|
750
|
-
"
|
|
751
|
-
"
|
|
752
|
-
"
|
|
753
|
-
"target-features",
|
|
1356
|
+
"libc",
|
|
1357
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
1358
|
+
"windows-sys 0.59.0",
|
|
754
1359
|
]
|
|
755
1360
|
|
|
756
1361
|
[[package]]
|
|
757
1362
|
name = "nc-gcode-interpreter"
|
|
758
|
-
version = "0.1.
|
|
1363
|
+
version = "0.1.12"
|
|
759
1364
|
dependencies = [
|
|
760
1365
|
"clap",
|
|
761
1366
|
"csv",
|
|
@@ -764,7 +1369,7 @@ dependencies = [
|
|
|
764
1369
|
"polars",
|
|
765
1370
|
"pyo3",
|
|
766
1371
|
"pyo3-polars",
|
|
767
|
-
"thiserror
|
|
1372
|
+
"thiserror 2.0.12",
|
|
768
1373
|
]
|
|
769
1374
|
|
|
770
1375
|
[[package]]
|
|
@@ -776,15 +1381,6 @@ dependencies = [
|
|
|
776
1381
|
"chrono",
|
|
777
1382
|
]
|
|
778
1383
|
|
|
779
|
-
[[package]]
|
|
780
|
-
name = "ntapi"
|
|
781
|
-
version = "0.4.1"
|
|
782
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
-
checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
|
|
784
|
-
dependencies = [
|
|
785
|
-
"winapi",
|
|
786
|
-
]
|
|
787
|
-
|
|
788
1384
|
[[package]]
|
|
789
1385
|
name = "num-traits"
|
|
790
1386
|
version = "0.2.19"
|
|
@@ -795,6 +1391,50 @@ dependencies = [
|
|
|
795
1391
|
"libm",
|
|
796
1392
|
]
|
|
797
1393
|
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "object"
|
|
1396
|
+
version = "0.36.7"
|
|
1397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
1399
|
+
dependencies = [
|
|
1400
|
+
"memchr",
|
|
1401
|
+
]
|
|
1402
|
+
|
|
1403
|
+
[[package]]
|
|
1404
|
+
name = "object_store"
|
|
1405
|
+
version = "0.12.2"
|
|
1406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
+
checksum = "7781f96d79ed0f961a7021424ab01840efbda64ae7a505aaea195efc91eaaec4"
|
|
1408
|
+
dependencies = [
|
|
1409
|
+
"async-trait",
|
|
1410
|
+
"base64",
|
|
1411
|
+
"bytes",
|
|
1412
|
+
"chrono",
|
|
1413
|
+
"form_urlencoded",
|
|
1414
|
+
"futures",
|
|
1415
|
+
"http",
|
|
1416
|
+
"http-body-util",
|
|
1417
|
+
"humantime",
|
|
1418
|
+
"hyper",
|
|
1419
|
+
"itertools",
|
|
1420
|
+
"parking_lot",
|
|
1421
|
+
"percent-encoding",
|
|
1422
|
+
"quick-xml",
|
|
1423
|
+
"rand 0.9.1",
|
|
1424
|
+
"reqwest",
|
|
1425
|
+
"ring",
|
|
1426
|
+
"serde",
|
|
1427
|
+
"serde_json",
|
|
1428
|
+
"serde_urlencoded",
|
|
1429
|
+
"thiserror 2.0.12",
|
|
1430
|
+
"tokio",
|
|
1431
|
+
"tracing",
|
|
1432
|
+
"url",
|
|
1433
|
+
"walkdir",
|
|
1434
|
+
"wasm-bindgen-futures",
|
|
1435
|
+
"web-time",
|
|
1436
|
+
]
|
|
1437
|
+
|
|
798
1438
|
[[package]]
|
|
799
1439
|
name = "once_cell"
|
|
800
1440
|
version = "1.21.3"
|
|
@@ -807,6 +1447,18 @@ version = "1.70.1"
|
|
|
807
1447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
1448
|
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
|
809
1449
|
|
|
1450
|
+
[[package]]
|
|
1451
|
+
name = "openssl-probe"
|
|
1452
|
+
version = "0.1.6"
|
|
1453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1454
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1455
|
+
|
|
1456
|
+
[[package]]
|
|
1457
|
+
name = "parking"
|
|
1458
|
+
version = "2.2.1"
|
|
1459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1460
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
1461
|
+
|
|
810
1462
|
[[package]]
|
|
811
1463
|
name = "parking_lot"
|
|
812
1464
|
version = "0.12.4"
|
|
@@ -830,12 +1482,6 @@ dependencies = [
|
|
|
830
1482
|
"windows-targets 0.52.6",
|
|
831
1483
|
]
|
|
832
1484
|
|
|
833
|
-
[[package]]
|
|
834
|
-
name = "parquet-format-safe"
|
|
835
|
-
version = "0.2.4"
|
|
836
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
-
checksum = "1131c54b167dd4e4799ce762e1ab01549ebb94d5bdd13e6ec1b467491c378e1f"
|
|
838
|
-
|
|
839
1485
|
[[package]]
|
|
840
1486
|
name = "parse-zoneinfo"
|
|
841
1487
|
version = "0.3.1"
|
|
@@ -845,6 +1491,12 @@ dependencies = [
|
|
|
845
1491
|
"regex",
|
|
846
1492
|
]
|
|
847
1493
|
|
|
1494
|
+
[[package]]
|
|
1495
|
+
name = "paste"
|
|
1496
|
+
version = "1.0.15"
|
|
1497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1498
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1499
|
+
|
|
848
1500
|
[[package]]
|
|
849
1501
|
name = "percent-encoding"
|
|
850
1502
|
version = "2.3.1"
|
|
@@ -882,7 +1534,7 @@ dependencies = [
|
|
|
882
1534
|
"pest_meta",
|
|
883
1535
|
"proc-macro2",
|
|
884
1536
|
"quote",
|
|
885
|
-
"syn
|
|
1537
|
+
"syn",
|
|
886
1538
|
]
|
|
887
1539
|
|
|
888
1540
|
[[package]]
|
|
@@ -921,7 +1573,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
921
1573
|
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
922
1574
|
dependencies = [
|
|
923
1575
|
"phf_shared",
|
|
924
|
-
"rand",
|
|
1576
|
+
"rand 0.8.5",
|
|
925
1577
|
]
|
|
926
1578
|
|
|
927
1579
|
[[package]]
|
|
@@ -933,6 +1585,18 @@ dependencies = [
|
|
|
933
1585
|
"siphasher",
|
|
934
1586
|
]
|
|
935
1587
|
|
|
1588
|
+
[[package]]
|
|
1589
|
+
name = "pin-project-lite"
|
|
1590
|
+
version = "0.2.16"
|
|
1591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1592
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "pin-utils"
|
|
1596
|
+
version = "0.1.0"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1599
|
+
|
|
936
1600
|
[[package]]
|
|
937
1601
|
name = "pkg-config"
|
|
938
1602
|
version = "0.3.32"
|
|
@@ -941,18 +1605,19 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
|
941
1605
|
|
|
942
1606
|
[[package]]
|
|
943
1607
|
name = "planus"
|
|
944
|
-
version = "
|
|
1608
|
+
version = "1.1.1"
|
|
945
1609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
-
checksum = "
|
|
1610
|
+
checksum = "3daf8e3d4b712abe1d690838f6e29fb76b76ea19589c4afa39ec30e12f62af71"
|
|
947
1611
|
dependencies = [
|
|
948
1612
|
"array-init-cursor",
|
|
1613
|
+
"hashbrown 0.15.4",
|
|
949
1614
|
]
|
|
950
1615
|
|
|
951
1616
|
[[package]]
|
|
952
1617
|
name = "polars"
|
|
953
|
-
version = "0.
|
|
1618
|
+
version = "0.49.1"
|
|
954
1619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
-
checksum = "
|
|
1620
|
+
checksum = "443824f43bca39b178353d6c09e4b44e115b21f107a5654d5f980d20b432a303"
|
|
956
1621
|
dependencies = [
|
|
957
1622
|
"getrandom 0.2.16",
|
|
958
1623
|
"polars-arrow",
|
|
@@ -970,45 +1635,40 @@ dependencies = [
|
|
|
970
1635
|
|
|
971
1636
|
[[package]]
|
|
972
1637
|
name = "polars-arrow"
|
|
973
|
-
version = "0.
|
|
1638
|
+
version = "0.49.1"
|
|
974
1639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
-
checksum = "
|
|
1640
|
+
checksum = "809c5340e9e6c16eee5a07585161bae99f903f53af7402075efec23ee75fce5b"
|
|
976
1641
|
dependencies = [
|
|
977
|
-
"ahash",
|
|
978
|
-
"atoi",
|
|
979
1642
|
"atoi_simd",
|
|
1643
|
+
"bitflags",
|
|
980
1644
|
"bytemuck",
|
|
981
1645
|
"chrono",
|
|
982
1646
|
"chrono-tz",
|
|
983
1647
|
"dyn-clone",
|
|
984
1648
|
"either",
|
|
985
1649
|
"ethnum",
|
|
986
|
-
"fast-float",
|
|
987
1650
|
"getrandom 0.2.16",
|
|
988
|
-
"hashbrown 0.
|
|
1651
|
+
"hashbrown 0.15.4",
|
|
989
1652
|
"itoa",
|
|
990
|
-
"itoap",
|
|
991
1653
|
"lz4",
|
|
992
|
-
"multiversion",
|
|
993
1654
|
"num-traits",
|
|
994
|
-
"parking_lot",
|
|
995
1655
|
"polars-arrow-format",
|
|
996
1656
|
"polars-error",
|
|
997
1657
|
"polars-schema",
|
|
998
1658
|
"polars-utils",
|
|
999
|
-
"
|
|
1659
|
+
"serde",
|
|
1000
1660
|
"simdutf8",
|
|
1001
1661
|
"streaming-iterator",
|
|
1002
|
-
"
|
|
1662
|
+
"strum_macros",
|
|
1003
1663
|
"version_check",
|
|
1004
1664
|
"zstd",
|
|
1005
1665
|
]
|
|
1006
1666
|
|
|
1007
1667
|
[[package]]
|
|
1008
1668
|
name = "polars-arrow-format"
|
|
1009
|
-
version = "0.
|
|
1669
|
+
version = "0.2.0"
|
|
1010
1670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
-
checksum = "
|
|
1671
|
+
checksum = "863c04c514be005eced7db7053e20d49f7e7a58048a282fa52dfea1fd5434e78"
|
|
1012
1672
|
dependencies = [
|
|
1013
1673
|
"planus",
|
|
1014
1674
|
"serde",
|
|
@@ -1016,134 +1676,164 @@ dependencies = [
|
|
|
1016
1676
|
|
|
1017
1677
|
[[package]]
|
|
1018
1678
|
name = "polars-compute"
|
|
1019
|
-
version = "0.
|
|
1679
|
+
version = "0.49.1"
|
|
1020
1680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1021
|
-
checksum = "
|
|
1681
|
+
checksum = "8b8802ff2cccea01a845ea8267a7600e495747ed109035bb5020c33eb8717ff4"
|
|
1022
1682
|
dependencies = [
|
|
1683
|
+
"atoi_simd",
|
|
1023
1684
|
"bytemuck",
|
|
1685
|
+
"chrono",
|
|
1024
1686
|
"either",
|
|
1687
|
+
"fast-float2",
|
|
1688
|
+
"hashbrown 0.15.4",
|
|
1689
|
+
"itoa",
|
|
1025
1690
|
"num-traits",
|
|
1026
1691
|
"polars-arrow",
|
|
1027
1692
|
"polars-error",
|
|
1028
1693
|
"polars-utils",
|
|
1694
|
+
"rand 0.8.5",
|
|
1695
|
+
"ryu",
|
|
1696
|
+
"serde",
|
|
1697
|
+
"skiplist",
|
|
1029
1698
|
"strength_reduce",
|
|
1699
|
+
"strum_macros",
|
|
1030
1700
|
"version_check",
|
|
1031
1701
|
]
|
|
1032
1702
|
|
|
1033
1703
|
[[package]]
|
|
1034
1704
|
name = "polars-core"
|
|
1035
|
-
version = "0.
|
|
1705
|
+
version = "0.49.1"
|
|
1036
1706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
-
checksum = "
|
|
1707
|
+
checksum = "3fc3c99d7000be1be11665e1e260b93dc3b927342b9da3b53d9a1ac264e4343d"
|
|
1038
1708
|
dependencies = [
|
|
1039
|
-
"ahash",
|
|
1040
1709
|
"bitflags",
|
|
1710
|
+
"boxcar",
|
|
1041
1711
|
"bytemuck",
|
|
1042
1712
|
"chrono",
|
|
1043
1713
|
"chrono-tz",
|
|
1044
1714
|
"comfy-table",
|
|
1045
1715
|
"either",
|
|
1046
1716
|
"hashbrown 0.14.5",
|
|
1717
|
+
"hashbrown 0.15.4",
|
|
1047
1718
|
"indexmap",
|
|
1719
|
+
"itoa",
|
|
1048
1720
|
"num-traits",
|
|
1049
|
-
"once_cell",
|
|
1050
1721
|
"polars-arrow",
|
|
1051
1722
|
"polars-compute",
|
|
1052
1723
|
"polars-error",
|
|
1053
1724
|
"polars-row",
|
|
1054
1725
|
"polars-schema",
|
|
1055
1726
|
"polars-utils",
|
|
1056
|
-
"rand",
|
|
1727
|
+
"rand 0.8.5",
|
|
1057
1728
|
"rand_distr",
|
|
1058
1729
|
"rayon",
|
|
1059
1730
|
"regex",
|
|
1060
|
-
"
|
|
1731
|
+
"serde",
|
|
1732
|
+
"serde_json",
|
|
1733
|
+
"strum_macros",
|
|
1734
|
+
"uuid",
|
|
1061
1735
|
"version_check",
|
|
1062
1736
|
"xxhash-rust",
|
|
1063
1737
|
]
|
|
1064
1738
|
|
|
1065
1739
|
[[package]]
|
|
1066
1740
|
name = "polars-error"
|
|
1067
|
-
version = "0.
|
|
1741
|
+
version = "0.49.1"
|
|
1068
1742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
-
checksum = "
|
|
1743
|
+
checksum = "1397c17712e61a55fdd45c033a69f0451fde2973ff2609c22e363e21d68f11ef"
|
|
1070
1744
|
dependencies = [
|
|
1745
|
+
"object_store",
|
|
1746
|
+
"parking_lot",
|
|
1071
1747
|
"polars-arrow-format",
|
|
1072
1748
|
"regex",
|
|
1749
|
+
"signal-hook",
|
|
1073
1750
|
"simdutf8",
|
|
1074
|
-
"thiserror 1.0.69",
|
|
1075
1751
|
]
|
|
1076
1752
|
|
|
1077
1753
|
[[package]]
|
|
1078
1754
|
name = "polars-expr"
|
|
1079
|
-
version = "0.
|
|
1755
|
+
version = "0.49.1"
|
|
1080
1756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
-
checksum = "
|
|
1757
|
+
checksum = "33d3aa6722c9a3e0b721ec2bcdc4affd9e50e4cb606cd81bb94535a9a5a6ade9"
|
|
1082
1758
|
dependencies = [
|
|
1083
|
-
"ahash",
|
|
1084
1759
|
"bitflags",
|
|
1085
|
-
"
|
|
1760
|
+
"hashbrown 0.15.4",
|
|
1761
|
+
"num-traits",
|
|
1086
1762
|
"polars-arrow",
|
|
1087
1763
|
"polars-compute",
|
|
1088
1764
|
"polars-core",
|
|
1089
1765
|
"polars-io",
|
|
1090
1766
|
"polars-ops",
|
|
1091
1767
|
"polars-plan",
|
|
1768
|
+
"polars-row",
|
|
1092
1769
|
"polars-time",
|
|
1093
1770
|
"polars-utils",
|
|
1771
|
+
"rand 0.8.5",
|
|
1094
1772
|
"rayon",
|
|
1773
|
+
"recursive",
|
|
1095
1774
|
]
|
|
1096
1775
|
|
|
1097
1776
|
[[package]]
|
|
1098
1777
|
name = "polars-io"
|
|
1099
|
-
version = "0.
|
|
1778
|
+
version = "0.49.1"
|
|
1100
1779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
-
checksum = "
|
|
1780
|
+
checksum = "1a632d442a99821250a8fa66f7d488bf5ee98e5f515e65256b12956cb81fc110"
|
|
1102
1781
|
dependencies = [
|
|
1103
|
-
"
|
|
1782
|
+
"async-trait",
|
|
1104
1783
|
"atoi_simd",
|
|
1784
|
+
"blake3",
|
|
1105
1785
|
"bytes",
|
|
1106
1786
|
"chrono",
|
|
1107
|
-
"fast-
|
|
1787
|
+
"fast-float2",
|
|
1788
|
+
"fs4",
|
|
1789
|
+
"futures",
|
|
1108
1790
|
"glob",
|
|
1109
|
-
"hashbrown 0.
|
|
1791
|
+
"hashbrown 0.15.4",
|
|
1110
1792
|
"home",
|
|
1111
1793
|
"itoa",
|
|
1112
1794
|
"memchr",
|
|
1113
1795
|
"memmap2",
|
|
1114
1796
|
"num-traits",
|
|
1115
|
-
"
|
|
1797
|
+
"object_store",
|
|
1116
1798
|
"percent-encoding",
|
|
1117
1799
|
"polars-arrow",
|
|
1118
1800
|
"polars-core",
|
|
1119
1801
|
"polars-error",
|
|
1802
|
+
"polars-parquet",
|
|
1120
1803
|
"polars-schema",
|
|
1121
1804
|
"polars-time",
|
|
1122
1805
|
"polars-utils",
|
|
1123
1806
|
"rayon",
|
|
1124
1807
|
"regex",
|
|
1808
|
+
"reqwest",
|
|
1125
1809
|
"ryu",
|
|
1810
|
+
"serde",
|
|
1811
|
+
"serde_json",
|
|
1126
1812
|
"simdutf8",
|
|
1813
|
+
"tokio",
|
|
1814
|
+
"tokio-util",
|
|
1815
|
+
"url",
|
|
1127
1816
|
]
|
|
1128
1817
|
|
|
1129
1818
|
[[package]]
|
|
1130
1819
|
name = "polars-lazy"
|
|
1131
|
-
version = "0.
|
|
1820
|
+
version = "0.49.1"
|
|
1132
1821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
-
checksum = "
|
|
1822
|
+
checksum = "f4ed0c87bdc8820447a38ae8efdb5a51a5a93e8bd528cffb05d05cf1145e4161"
|
|
1134
1823
|
dependencies = [
|
|
1135
|
-
"ahash",
|
|
1136
1824
|
"bitflags",
|
|
1825
|
+
"chrono",
|
|
1826
|
+
"either",
|
|
1137
1827
|
"memchr",
|
|
1138
|
-
"once_cell",
|
|
1139
1828
|
"polars-arrow",
|
|
1829
|
+
"polars-compute",
|
|
1140
1830
|
"polars-core",
|
|
1141
1831
|
"polars-expr",
|
|
1142
1832
|
"polars-io",
|
|
1143
1833
|
"polars-mem-engine",
|
|
1144
1834
|
"polars-ops",
|
|
1145
|
-
"polars-pipe",
|
|
1146
1835
|
"polars-plan",
|
|
1836
|
+
"polars-stream",
|
|
1147
1837
|
"polars-time",
|
|
1148
1838
|
"polars-utils",
|
|
1149
1839
|
"rayon",
|
|
@@ -1152,9 +1842,9 @@ dependencies = [
|
|
|
1152
1842
|
|
|
1153
1843
|
[[package]]
|
|
1154
1844
|
name = "polars-mem-engine"
|
|
1155
|
-
version = "0.
|
|
1845
|
+
version = "0.49.1"
|
|
1156
1846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
-
checksum = "
|
|
1847
|
+
checksum = "675294ddf9174029e48caa4e59b0665ea64bfb784a366b197690895a6ed65c68"
|
|
1158
1848
|
dependencies = [
|
|
1159
1849
|
"memmap2",
|
|
1160
1850
|
"polars-arrow",
|
|
@@ -1167,24 +1857,25 @@ dependencies = [
|
|
|
1167
1857
|
"polars-time",
|
|
1168
1858
|
"polars-utils",
|
|
1169
1859
|
"rayon",
|
|
1860
|
+
"recursive",
|
|
1170
1861
|
]
|
|
1171
1862
|
|
|
1172
1863
|
[[package]]
|
|
1173
1864
|
name = "polars-ops"
|
|
1174
|
-
version = "0.
|
|
1865
|
+
version = "0.49.1"
|
|
1175
1866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
-
checksum = "
|
|
1867
|
+
checksum = "1eb4db68956f857c52eeda072d87644a7b42eac41d55073af94dfac8441af6cf"
|
|
1177
1868
|
dependencies = [
|
|
1178
|
-
"ahash",
|
|
1179
1869
|
"argminmax",
|
|
1180
1870
|
"base64",
|
|
1181
1871
|
"bytemuck",
|
|
1182
1872
|
"chrono",
|
|
1183
1873
|
"chrono-tz",
|
|
1184
1874
|
"either",
|
|
1185
|
-
"hashbrown 0.
|
|
1875
|
+
"hashbrown 0.15.4",
|
|
1186
1876
|
"hex",
|
|
1187
1877
|
"indexmap",
|
|
1878
|
+
"libm",
|
|
1188
1879
|
"memchr",
|
|
1189
1880
|
"num-traits",
|
|
1190
1881
|
"polars-arrow",
|
|
@@ -1195,74 +1886,64 @@ dependencies = [
|
|
|
1195
1886
|
"polars-utils",
|
|
1196
1887
|
"rayon",
|
|
1197
1888
|
"regex",
|
|
1889
|
+
"regex-syntax",
|
|
1890
|
+
"strum_macros",
|
|
1891
|
+
"unicode-normalization",
|
|
1198
1892
|
"unicode-reverse",
|
|
1199
1893
|
"version_check",
|
|
1200
1894
|
]
|
|
1201
1895
|
|
|
1202
1896
|
[[package]]
|
|
1203
1897
|
name = "polars-parquet"
|
|
1204
|
-
version = "0.
|
|
1898
|
+
version = "0.49.1"
|
|
1205
1899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
-
checksum = "
|
|
1900
|
+
checksum = "7c849c10edd9511ccd4ec4130e283ee3a8b3bb48a7d74ac6354c1c20add81065"
|
|
1207
1901
|
dependencies = [
|
|
1208
|
-
"
|
|
1902
|
+
"async-stream",
|
|
1209
1903
|
"base64",
|
|
1210
1904
|
"bytemuck",
|
|
1211
1905
|
"ethnum",
|
|
1212
|
-
"
|
|
1906
|
+
"futures",
|
|
1907
|
+
"hashbrown 0.15.4",
|
|
1213
1908
|
"num-traits",
|
|
1214
|
-
"parquet-format-safe",
|
|
1215
1909
|
"polars-arrow",
|
|
1216
1910
|
"polars-compute",
|
|
1217
1911
|
"polars-error",
|
|
1912
|
+
"polars-parquet-format",
|
|
1218
1913
|
"polars-utils",
|
|
1914
|
+
"serde",
|
|
1219
1915
|
"simdutf8",
|
|
1220
1916
|
"streaming-decompression",
|
|
1221
1917
|
]
|
|
1222
1918
|
|
|
1223
1919
|
[[package]]
|
|
1224
|
-
name = "polars-
|
|
1225
|
-
version = "0.
|
|
1920
|
+
name = "polars-parquet-format"
|
|
1921
|
+
version = "0.1.0"
|
|
1226
1922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1227
|
-
checksum = "
|
|
1923
|
+
checksum = "c025243dcfe8dbc57e94d9f82eb3bef10b565ab180d5b99bed87fd8aea319ce1"
|
|
1228
1924
|
dependencies = [
|
|
1229
|
-
"
|
|
1230
|
-
"
|
|
1231
|
-
"enum_dispatch",
|
|
1232
|
-
"hashbrown 0.14.5",
|
|
1233
|
-
"num-traits",
|
|
1234
|
-
"polars-arrow",
|
|
1235
|
-
"polars-compute",
|
|
1236
|
-
"polars-core",
|
|
1237
|
-
"polars-expr",
|
|
1238
|
-
"polars-io",
|
|
1239
|
-
"polars-ops",
|
|
1240
|
-
"polars-plan",
|
|
1241
|
-
"polars-row",
|
|
1242
|
-
"polars-utils",
|
|
1243
|
-
"rayon",
|
|
1244
|
-
"uuid",
|
|
1245
|
-
"version_check",
|
|
1925
|
+
"async-trait",
|
|
1926
|
+
"futures",
|
|
1246
1927
|
]
|
|
1247
1928
|
|
|
1248
1929
|
[[package]]
|
|
1249
1930
|
name = "polars-plan"
|
|
1250
|
-
version = "0.
|
|
1931
|
+
version = "0.49.1"
|
|
1251
1932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
-
checksum = "
|
|
1933
|
+
checksum = "71fb4412c42bf637c2c02a617381c682ed425d9c8e4bd1fcb85cf352ed2a67c6"
|
|
1253
1934
|
dependencies = [
|
|
1254
|
-
"ahash",
|
|
1255
1935
|
"bitflags",
|
|
1256
1936
|
"bytemuck",
|
|
1257
1937
|
"bytes",
|
|
1258
1938
|
"chrono",
|
|
1259
1939
|
"chrono-tz",
|
|
1260
1940
|
"either",
|
|
1261
|
-
"hashbrown 0.
|
|
1941
|
+
"hashbrown 0.15.4",
|
|
1262
1942
|
"memmap2",
|
|
1263
|
-
"
|
|
1943
|
+
"num-traits",
|
|
1264
1944
|
"percent-encoding",
|
|
1265
1945
|
"polars-arrow",
|
|
1946
|
+
"polars-compute",
|
|
1266
1947
|
"polars-core",
|
|
1267
1948
|
"polars-io",
|
|
1268
1949
|
"polars-ops",
|
|
@@ -1277,37 +1958,39 @@ dependencies = [
|
|
|
1277
1958
|
|
|
1278
1959
|
[[package]]
|
|
1279
1960
|
name = "polars-row"
|
|
1280
|
-
version = "0.
|
|
1961
|
+
version = "0.49.1"
|
|
1281
1962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1282
|
-
checksum = "
|
|
1963
|
+
checksum = "08fb77ac1d37340d9cfe57cf58000cf3d9cce429e10d25066952c6145c684cc0"
|
|
1283
1964
|
dependencies = [
|
|
1965
|
+
"bitflags",
|
|
1284
1966
|
"bytemuck",
|
|
1285
1967
|
"polars-arrow",
|
|
1968
|
+
"polars-compute",
|
|
1286
1969
|
"polars-error",
|
|
1287
1970
|
"polars-utils",
|
|
1288
1971
|
]
|
|
1289
1972
|
|
|
1290
1973
|
[[package]]
|
|
1291
1974
|
name = "polars-schema"
|
|
1292
|
-
version = "0.
|
|
1975
|
+
version = "0.49.1"
|
|
1293
1976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
-
checksum = "
|
|
1977
|
+
checksum = "ada7c7e2fbbeffbdd67628cd8a89f02b0a8d21c71d34e297e2463a7c17575203"
|
|
1295
1978
|
dependencies = [
|
|
1296
1979
|
"indexmap",
|
|
1297
1980
|
"polars-error",
|
|
1298
1981
|
"polars-utils",
|
|
1982
|
+
"serde",
|
|
1299
1983
|
"version_check",
|
|
1300
1984
|
]
|
|
1301
1985
|
|
|
1302
1986
|
[[package]]
|
|
1303
1987
|
name = "polars-sql"
|
|
1304
|
-
version = "0.
|
|
1988
|
+
version = "0.49.1"
|
|
1305
1989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
-
checksum = "
|
|
1990
|
+
checksum = "4a8e512b1f05ffda9963fe8f6a7c62dcba86be85218bc033ecdad2802cc1b1a0"
|
|
1307
1991
|
dependencies = [
|
|
1992
|
+
"bitflags",
|
|
1308
1993
|
"hex",
|
|
1309
|
-
"once_cell",
|
|
1310
|
-
"polars-arrow",
|
|
1311
1994
|
"polars-core",
|
|
1312
1995
|
"polars-error",
|
|
1313
1996
|
"polars-lazy",
|
|
@@ -1315,53 +1998,99 @@ dependencies = [
|
|
|
1315
1998
|
"polars-plan",
|
|
1316
1999
|
"polars-time",
|
|
1317
2000
|
"polars-utils",
|
|
1318
|
-
"rand",
|
|
2001
|
+
"rand 0.8.5",
|
|
2002
|
+
"regex",
|
|
1319
2003
|
"serde",
|
|
1320
|
-
"serde_json",
|
|
1321
2004
|
"sqlparser",
|
|
1322
2005
|
]
|
|
1323
2006
|
|
|
2007
|
+
[[package]]
|
|
2008
|
+
name = "polars-stream"
|
|
2009
|
+
version = "0.49.1"
|
|
2010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
+
checksum = "5b0a02d8050acd9b64ed7e36c5bc96f6d4f46a940220f9c0e34c96b51f830f8c"
|
|
2012
|
+
dependencies = [
|
|
2013
|
+
"async-channel",
|
|
2014
|
+
"async-trait",
|
|
2015
|
+
"atomic-waker",
|
|
2016
|
+
"bitflags",
|
|
2017
|
+
"crossbeam-channel",
|
|
2018
|
+
"crossbeam-deque",
|
|
2019
|
+
"crossbeam-queue",
|
|
2020
|
+
"crossbeam-utils",
|
|
2021
|
+
"futures",
|
|
2022
|
+
"memmap2",
|
|
2023
|
+
"parking_lot",
|
|
2024
|
+
"percent-encoding",
|
|
2025
|
+
"pin-project-lite",
|
|
2026
|
+
"polars-arrow",
|
|
2027
|
+
"polars-core",
|
|
2028
|
+
"polars-error",
|
|
2029
|
+
"polars-expr",
|
|
2030
|
+
"polars-io",
|
|
2031
|
+
"polars-mem-engine",
|
|
2032
|
+
"polars-ops",
|
|
2033
|
+
"polars-parquet",
|
|
2034
|
+
"polars-plan",
|
|
2035
|
+
"polars-utils",
|
|
2036
|
+
"rand 0.8.5",
|
|
2037
|
+
"rayon",
|
|
2038
|
+
"recursive",
|
|
2039
|
+
"slotmap",
|
|
2040
|
+
"tokio",
|
|
2041
|
+
"version_check",
|
|
2042
|
+
]
|
|
2043
|
+
|
|
1324
2044
|
[[package]]
|
|
1325
2045
|
name = "polars-time"
|
|
1326
|
-
version = "0.
|
|
2046
|
+
version = "0.49.1"
|
|
1327
2047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
-
checksum = "
|
|
2048
|
+
checksum = "72e84a30110880ffede8d93c085fc429ab1b8bf1acf3d6d489143dd34be374c4"
|
|
1329
2049
|
dependencies = [
|
|
1330
|
-
"
|
|
2050
|
+
"atoi_simd",
|
|
1331
2051
|
"bytemuck",
|
|
1332
2052
|
"chrono",
|
|
1333
2053
|
"chrono-tz",
|
|
1334
2054
|
"now",
|
|
1335
|
-
"
|
|
2055
|
+
"num-traits",
|
|
1336
2056
|
"polars-arrow",
|
|
2057
|
+
"polars-compute",
|
|
1337
2058
|
"polars-core",
|
|
1338
2059
|
"polars-error",
|
|
1339
2060
|
"polars-ops",
|
|
1340
2061
|
"polars-utils",
|
|
2062
|
+
"rayon",
|
|
1341
2063
|
"regex",
|
|
2064
|
+
"strum_macros",
|
|
1342
2065
|
]
|
|
1343
2066
|
|
|
1344
2067
|
[[package]]
|
|
1345
2068
|
name = "polars-utils"
|
|
1346
|
-
version = "0.
|
|
2069
|
+
version = "0.49.1"
|
|
1347
2070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
-
checksum = "
|
|
2071
|
+
checksum = "a05e033960552c47fc35afe14d5af5b29696acc97ae5d3c585ebc33c246cc15f"
|
|
1349
2072
|
dependencies = [
|
|
1350
|
-
"
|
|
2073
|
+
"bincode",
|
|
1351
2074
|
"bytemuck",
|
|
1352
2075
|
"bytes",
|
|
1353
2076
|
"compact_str",
|
|
1354
|
-
"
|
|
2077
|
+
"flate2",
|
|
2078
|
+
"foldhash",
|
|
2079
|
+
"hashbrown 0.15.4",
|
|
1355
2080
|
"indexmap",
|
|
1356
2081
|
"libc",
|
|
1357
2082
|
"memmap2",
|
|
1358
2083
|
"num-traits",
|
|
1359
|
-
"once_cell",
|
|
1360
2084
|
"polars-error",
|
|
2085
|
+
"rand 0.8.5",
|
|
1361
2086
|
"raw-cpuid",
|
|
1362
2087
|
"rayon",
|
|
2088
|
+
"regex",
|
|
2089
|
+
"rmp-serde",
|
|
2090
|
+
"serde",
|
|
2091
|
+
"serde_json",
|
|
2092
|
+
"slotmap",
|
|
1363
2093
|
"stacker",
|
|
1364
|
-
"sysinfo",
|
|
1365
2094
|
"version_check",
|
|
1366
2095
|
]
|
|
1367
2096
|
|
|
@@ -1371,6 +2100,15 @@ version = "1.11.1"
|
|
|
1371
2100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
2101
|
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
1373
2102
|
|
|
2103
|
+
[[package]]
|
|
2104
|
+
name = "potential_utf"
|
|
2105
|
+
version = "0.1.2"
|
|
2106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2107
|
+
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
|
|
2108
|
+
dependencies = [
|
|
2109
|
+
"zerovec",
|
|
2110
|
+
]
|
|
2111
|
+
|
|
1374
2112
|
[[package]]
|
|
1375
2113
|
name = "ppv-lite86"
|
|
1376
2114
|
version = "0.2.21"
|
|
@@ -1400,11 +2138,10 @@ dependencies = [
|
|
|
1400
2138
|
|
|
1401
2139
|
[[package]]
|
|
1402
2140
|
name = "pyo3"
|
|
1403
|
-
version = "0.
|
|
2141
|
+
version = "0.25.1"
|
|
1404
2142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
-
checksum = "
|
|
2143
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
1406
2144
|
dependencies = [
|
|
1407
|
-
"cfg-if",
|
|
1408
2145
|
"indoc",
|
|
1409
2146
|
"libc",
|
|
1410
2147
|
"memoffset",
|
|
@@ -1418,9 +2155,9 @@ dependencies = [
|
|
|
1418
2155
|
|
|
1419
2156
|
[[package]]
|
|
1420
2157
|
name = "pyo3-build-config"
|
|
1421
|
-
version = "0.
|
|
2158
|
+
version = "0.25.1"
|
|
1422
2159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
-
checksum = "
|
|
2160
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
1424
2161
|
dependencies = [
|
|
1425
2162
|
"once_cell",
|
|
1426
2163
|
"target-lexicon",
|
|
@@ -1428,9 +2165,9 @@ dependencies = [
|
|
|
1428
2165
|
|
|
1429
2166
|
[[package]]
|
|
1430
2167
|
name = "pyo3-ffi"
|
|
1431
|
-
version = "0.
|
|
2168
|
+
version = "0.25.1"
|
|
1432
2169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
-
checksum = "
|
|
2170
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
1434
2171
|
dependencies = [
|
|
1435
2172
|
"libc",
|
|
1436
2173
|
"pyo3-build-config",
|
|
@@ -1438,43 +2175,109 @@ dependencies = [
|
|
|
1438
2175
|
|
|
1439
2176
|
[[package]]
|
|
1440
2177
|
name = "pyo3-macros"
|
|
1441
|
-
version = "0.
|
|
2178
|
+
version = "0.25.1"
|
|
1442
2179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1443
|
-
checksum = "
|
|
2180
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
1444
2181
|
dependencies = [
|
|
1445
2182
|
"proc-macro2",
|
|
1446
2183
|
"pyo3-macros-backend",
|
|
1447
2184
|
"quote",
|
|
1448
|
-
"syn
|
|
2185
|
+
"syn",
|
|
1449
2186
|
]
|
|
1450
2187
|
|
|
1451
2188
|
[[package]]
|
|
1452
2189
|
name = "pyo3-macros-backend"
|
|
1453
|
-
version = "0.
|
|
2190
|
+
version = "0.25.1"
|
|
1454
2191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
-
checksum = "
|
|
2192
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
1456
2193
|
dependencies = [
|
|
1457
2194
|
"heck",
|
|
1458
2195
|
"proc-macro2",
|
|
1459
2196
|
"pyo3-build-config",
|
|
1460
2197
|
"quote",
|
|
1461
|
-
"syn
|
|
2198
|
+
"syn",
|
|
1462
2199
|
]
|
|
1463
2200
|
|
|
1464
2201
|
[[package]]
|
|
1465
2202
|
name = "pyo3-polars"
|
|
1466
|
-
version = "0.
|
|
2203
|
+
version = "0.22.0"
|
|
1467
2204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
|
-
checksum = "
|
|
2205
|
+
checksum = "780638e429de4b5c2b336c3f2527440a55be1b7e8627579f6e98f8e189192c7b"
|
|
1469
2206
|
dependencies = [
|
|
1470
2207
|
"libc",
|
|
1471
2208
|
"once_cell",
|
|
1472
2209
|
"polars",
|
|
2210
|
+
"polars-arrow",
|
|
1473
2211
|
"polars-core",
|
|
1474
2212
|
"pyo3",
|
|
1475
2213
|
"thiserror 1.0.69",
|
|
1476
2214
|
]
|
|
1477
2215
|
|
|
2216
|
+
[[package]]
|
|
2217
|
+
name = "quick-xml"
|
|
2218
|
+
version = "0.37.5"
|
|
2219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2220
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
|
2221
|
+
dependencies = [
|
|
2222
|
+
"memchr",
|
|
2223
|
+
"serde",
|
|
2224
|
+
]
|
|
2225
|
+
|
|
2226
|
+
[[package]]
|
|
2227
|
+
name = "quinn"
|
|
2228
|
+
version = "0.11.8"
|
|
2229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2230
|
+
checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
|
|
2231
|
+
dependencies = [
|
|
2232
|
+
"bytes",
|
|
2233
|
+
"cfg_aliases",
|
|
2234
|
+
"pin-project-lite",
|
|
2235
|
+
"quinn-proto",
|
|
2236
|
+
"quinn-udp",
|
|
2237
|
+
"rustc-hash",
|
|
2238
|
+
"rustls",
|
|
2239
|
+
"socket2",
|
|
2240
|
+
"thiserror 2.0.12",
|
|
2241
|
+
"tokio",
|
|
2242
|
+
"tracing",
|
|
2243
|
+
"web-time",
|
|
2244
|
+
]
|
|
2245
|
+
|
|
2246
|
+
[[package]]
|
|
2247
|
+
name = "quinn-proto"
|
|
2248
|
+
version = "0.11.12"
|
|
2249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2250
|
+
checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
|
|
2251
|
+
dependencies = [
|
|
2252
|
+
"bytes",
|
|
2253
|
+
"getrandom 0.3.3",
|
|
2254
|
+
"lru-slab",
|
|
2255
|
+
"rand 0.9.1",
|
|
2256
|
+
"ring",
|
|
2257
|
+
"rustc-hash",
|
|
2258
|
+
"rustls",
|
|
2259
|
+
"rustls-pki-types",
|
|
2260
|
+
"slab",
|
|
2261
|
+
"thiserror 2.0.12",
|
|
2262
|
+
"tinyvec",
|
|
2263
|
+
"tracing",
|
|
2264
|
+
"web-time",
|
|
2265
|
+
]
|
|
2266
|
+
|
|
2267
|
+
[[package]]
|
|
2268
|
+
name = "quinn-udp"
|
|
2269
|
+
version = "0.5.13"
|
|
2270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2271
|
+
checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970"
|
|
2272
|
+
dependencies = [
|
|
2273
|
+
"cfg_aliases",
|
|
2274
|
+
"libc",
|
|
2275
|
+
"once_cell",
|
|
2276
|
+
"socket2",
|
|
2277
|
+
"tracing",
|
|
2278
|
+
"windows-sys 0.59.0",
|
|
2279
|
+
]
|
|
2280
|
+
|
|
1478
2281
|
[[package]]
|
|
1479
2282
|
name = "quote"
|
|
1480
2283
|
version = "1.0.40"
|
|
@@ -1497,8 +2300,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1497
2300
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1498
2301
|
dependencies = [
|
|
1499
2302
|
"libc",
|
|
1500
|
-
"rand_chacha",
|
|
1501
|
-
"rand_core",
|
|
2303
|
+
"rand_chacha 0.3.1",
|
|
2304
|
+
"rand_core 0.6.4",
|
|
2305
|
+
]
|
|
2306
|
+
|
|
2307
|
+
[[package]]
|
|
2308
|
+
name = "rand"
|
|
2309
|
+
version = "0.9.1"
|
|
2310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2311
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
|
2312
|
+
dependencies = [
|
|
2313
|
+
"rand_chacha 0.9.0",
|
|
2314
|
+
"rand_core 0.9.3",
|
|
1502
2315
|
]
|
|
1503
2316
|
|
|
1504
2317
|
[[package]]
|
|
@@ -1508,7 +2321,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1508
2321
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1509
2322
|
dependencies = [
|
|
1510
2323
|
"ppv-lite86",
|
|
1511
|
-
"rand_core",
|
|
2324
|
+
"rand_core 0.6.4",
|
|
2325
|
+
]
|
|
2326
|
+
|
|
2327
|
+
[[package]]
|
|
2328
|
+
name = "rand_chacha"
|
|
2329
|
+
version = "0.9.0"
|
|
2330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2332
|
+
dependencies = [
|
|
2333
|
+
"ppv-lite86",
|
|
2334
|
+
"rand_core 0.9.3",
|
|
1512
2335
|
]
|
|
1513
2336
|
|
|
1514
2337
|
[[package]]
|
|
@@ -1520,6 +2343,15 @@ dependencies = [
|
|
|
1520
2343
|
"getrandom 0.2.16",
|
|
1521
2344
|
]
|
|
1522
2345
|
|
|
2346
|
+
[[package]]
|
|
2347
|
+
name = "rand_core"
|
|
2348
|
+
version = "0.9.3"
|
|
2349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2350
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2351
|
+
dependencies = [
|
|
2352
|
+
"getrandom 0.3.3",
|
|
2353
|
+
]
|
|
2354
|
+
|
|
1523
2355
|
[[package]]
|
|
1524
2356
|
name = "rand_distr"
|
|
1525
2357
|
version = "0.4.3"
|
|
@@ -1527,7 +2359,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1527
2359
|
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
1528
2360
|
dependencies = [
|
|
1529
2361
|
"num-traits",
|
|
1530
|
-
"rand",
|
|
2362
|
+
"rand 0.8.5",
|
|
1531
2363
|
]
|
|
1532
2364
|
|
|
1533
2365
|
[[package]]
|
|
@@ -1576,7 +2408,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1576
2408
|
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
|
1577
2409
|
dependencies = [
|
|
1578
2410
|
"quote",
|
|
1579
|
-
"syn
|
|
2411
|
+
"syn",
|
|
1580
2412
|
]
|
|
1581
2413
|
|
|
1582
2414
|
[[package]]
|
|
@@ -1617,6 +2449,96 @@ version = "0.8.5"
|
|
|
1617
2449
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1618
2450
|
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
1619
2451
|
|
|
2452
|
+
[[package]]
|
|
2453
|
+
name = "reqwest"
|
|
2454
|
+
version = "0.12.20"
|
|
2455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2456
|
+
checksum = "eabf4c97d9130e2bf606614eb937e86edac8292eaa6f422f995d7e8de1eb1813"
|
|
2457
|
+
dependencies = [
|
|
2458
|
+
"base64",
|
|
2459
|
+
"bytes",
|
|
2460
|
+
"futures-core",
|
|
2461
|
+
"futures-util",
|
|
2462
|
+
"h2",
|
|
2463
|
+
"http",
|
|
2464
|
+
"http-body",
|
|
2465
|
+
"http-body-util",
|
|
2466
|
+
"hyper",
|
|
2467
|
+
"hyper-rustls",
|
|
2468
|
+
"hyper-util",
|
|
2469
|
+
"js-sys",
|
|
2470
|
+
"log",
|
|
2471
|
+
"percent-encoding",
|
|
2472
|
+
"pin-project-lite",
|
|
2473
|
+
"quinn",
|
|
2474
|
+
"rustls",
|
|
2475
|
+
"rustls-native-certs",
|
|
2476
|
+
"rustls-pki-types",
|
|
2477
|
+
"serde",
|
|
2478
|
+
"serde_json",
|
|
2479
|
+
"serde_urlencoded",
|
|
2480
|
+
"sync_wrapper",
|
|
2481
|
+
"tokio",
|
|
2482
|
+
"tokio-rustls",
|
|
2483
|
+
"tokio-util",
|
|
2484
|
+
"tower",
|
|
2485
|
+
"tower-http",
|
|
2486
|
+
"tower-service",
|
|
2487
|
+
"url",
|
|
2488
|
+
"wasm-bindgen",
|
|
2489
|
+
"wasm-bindgen-futures",
|
|
2490
|
+
"wasm-streams",
|
|
2491
|
+
"web-sys",
|
|
2492
|
+
]
|
|
2493
|
+
|
|
2494
|
+
[[package]]
|
|
2495
|
+
name = "ring"
|
|
2496
|
+
version = "0.17.14"
|
|
2497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2498
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2499
|
+
dependencies = [
|
|
2500
|
+
"cc",
|
|
2501
|
+
"cfg-if",
|
|
2502
|
+
"getrandom 0.2.16",
|
|
2503
|
+
"libc",
|
|
2504
|
+
"untrusted",
|
|
2505
|
+
"windows-sys 0.52.0",
|
|
2506
|
+
]
|
|
2507
|
+
|
|
2508
|
+
[[package]]
|
|
2509
|
+
name = "rmp"
|
|
2510
|
+
version = "0.8.14"
|
|
2511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2512
|
+
checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
|
|
2513
|
+
dependencies = [
|
|
2514
|
+
"byteorder",
|
|
2515
|
+
"num-traits",
|
|
2516
|
+
"paste",
|
|
2517
|
+
]
|
|
2518
|
+
|
|
2519
|
+
[[package]]
|
|
2520
|
+
name = "rmp-serde"
|
|
2521
|
+
version = "1.3.0"
|
|
2522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2523
|
+
checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
|
|
2524
|
+
dependencies = [
|
|
2525
|
+
"byteorder",
|
|
2526
|
+
"rmp",
|
|
2527
|
+
"serde",
|
|
2528
|
+
]
|
|
2529
|
+
|
|
2530
|
+
[[package]]
|
|
2531
|
+
name = "rustc-demangle"
|
|
2532
|
+
version = "0.1.25"
|
|
2533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2534
|
+
checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
|
|
2535
|
+
|
|
2536
|
+
[[package]]
|
|
2537
|
+
name = "rustc-hash"
|
|
2538
|
+
version = "2.1.1"
|
|
2539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2540
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2541
|
+
|
|
1620
2542
|
[[package]]
|
|
1621
2543
|
name = "rustix"
|
|
1622
2544
|
version = "0.38.44"
|
|
@@ -1626,10 +2548,70 @@ dependencies = [
|
|
|
1626
2548
|
"bitflags",
|
|
1627
2549
|
"errno",
|
|
1628
2550
|
"libc",
|
|
1629
|
-
"linux-raw-sys",
|
|
2551
|
+
"linux-raw-sys 0.4.15",
|
|
2552
|
+
"windows-sys 0.59.0",
|
|
2553
|
+
]
|
|
2554
|
+
|
|
2555
|
+
[[package]]
|
|
2556
|
+
name = "rustix"
|
|
2557
|
+
version = "1.0.7"
|
|
2558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2559
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
|
2560
|
+
dependencies = [
|
|
2561
|
+
"bitflags",
|
|
2562
|
+
"errno",
|
|
2563
|
+
"libc",
|
|
2564
|
+
"linux-raw-sys 0.9.4",
|
|
1630
2565
|
"windows-sys 0.59.0",
|
|
1631
2566
|
]
|
|
1632
2567
|
|
|
2568
|
+
[[package]]
|
|
2569
|
+
name = "rustls"
|
|
2570
|
+
version = "0.23.28"
|
|
2571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2572
|
+
checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643"
|
|
2573
|
+
dependencies = [
|
|
2574
|
+
"once_cell",
|
|
2575
|
+
"ring",
|
|
2576
|
+
"rustls-pki-types",
|
|
2577
|
+
"rustls-webpki",
|
|
2578
|
+
"subtle",
|
|
2579
|
+
"zeroize",
|
|
2580
|
+
]
|
|
2581
|
+
|
|
2582
|
+
[[package]]
|
|
2583
|
+
name = "rustls-native-certs"
|
|
2584
|
+
version = "0.8.1"
|
|
2585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2586
|
+
checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
|
|
2587
|
+
dependencies = [
|
|
2588
|
+
"openssl-probe",
|
|
2589
|
+
"rustls-pki-types",
|
|
2590
|
+
"schannel",
|
|
2591
|
+
"security-framework",
|
|
2592
|
+
]
|
|
2593
|
+
|
|
2594
|
+
[[package]]
|
|
2595
|
+
name = "rustls-pki-types"
|
|
2596
|
+
version = "1.12.0"
|
|
2597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2598
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
|
2599
|
+
dependencies = [
|
|
2600
|
+
"web-time",
|
|
2601
|
+
"zeroize",
|
|
2602
|
+
]
|
|
2603
|
+
|
|
2604
|
+
[[package]]
|
|
2605
|
+
name = "rustls-webpki"
|
|
2606
|
+
version = "0.103.3"
|
|
2607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2608
|
+
checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
|
|
2609
|
+
dependencies = [
|
|
2610
|
+
"ring",
|
|
2611
|
+
"rustls-pki-types",
|
|
2612
|
+
"untrusted",
|
|
2613
|
+
]
|
|
2614
|
+
|
|
1633
2615
|
[[package]]
|
|
1634
2616
|
name = "rustversion"
|
|
1635
2617
|
version = "1.0.21"
|
|
@@ -1642,12 +2624,53 @@ version = "1.0.20"
|
|
|
1642
2624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
2625
|
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1644
2626
|
|
|
2627
|
+
[[package]]
|
|
2628
|
+
name = "same-file"
|
|
2629
|
+
version = "1.0.6"
|
|
2630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2632
|
+
dependencies = [
|
|
2633
|
+
"winapi-util",
|
|
2634
|
+
]
|
|
2635
|
+
|
|
2636
|
+
[[package]]
|
|
2637
|
+
name = "schannel"
|
|
2638
|
+
version = "0.1.27"
|
|
2639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
|
2641
|
+
dependencies = [
|
|
2642
|
+
"windows-sys 0.59.0",
|
|
2643
|
+
]
|
|
2644
|
+
|
|
1645
2645
|
[[package]]
|
|
1646
2646
|
name = "scopeguard"
|
|
1647
2647
|
version = "1.2.0"
|
|
1648
2648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1649
2649
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1650
2650
|
|
|
2651
|
+
[[package]]
|
|
2652
|
+
name = "security-framework"
|
|
2653
|
+
version = "3.2.0"
|
|
2654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2655
|
+
checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
|
|
2656
|
+
dependencies = [
|
|
2657
|
+
"bitflags",
|
|
2658
|
+
"core-foundation",
|
|
2659
|
+
"core-foundation-sys",
|
|
2660
|
+
"libc",
|
|
2661
|
+
"security-framework-sys",
|
|
2662
|
+
]
|
|
2663
|
+
|
|
2664
|
+
[[package]]
|
|
2665
|
+
name = "security-framework-sys"
|
|
2666
|
+
version = "2.14.0"
|
|
2667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2668
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
|
2669
|
+
dependencies = [
|
|
2670
|
+
"core-foundation-sys",
|
|
2671
|
+
"libc",
|
|
2672
|
+
]
|
|
2673
|
+
|
|
1651
2674
|
[[package]]
|
|
1652
2675
|
name = "serde"
|
|
1653
2676
|
version = "1.0.219"
|
|
@@ -1665,7 +2688,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
|
1665
2688
|
dependencies = [
|
|
1666
2689
|
"proc-macro2",
|
|
1667
2690
|
"quote",
|
|
1668
|
-
"syn
|
|
2691
|
+
"syn",
|
|
1669
2692
|
]
|
|
1670
2693
|
|
|
1671
2694
|
[[package]]
|
|
@@ -1680,6 +2703,18 @@ dependencies = [
|
|
|
1680
2703
|
"serde",
|
|
1681
2704
|
]
|
|
1682
2705
|
|
|
2706
|
+
[[package]]
|
|
2707
|
+
name = "serde_urlencoded"
|
|
2708
|
+
version = "0.7.1"
|
|
2709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2710
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2711
|
+
dependencies = [
|
|
2712
|
+
"form_urlencoded",
|
|
2713
|
+
"itoa",
|
|
2714
|
+
"ryu",
|
|
2715
|
+
"serde",
|
|
2716
|
+
]
|
|
2717
|
+
|
|
1683
2718
|
[[package]]
|
|
1684
2719
|
name = "sha2"
|
|
1685
2720
|
version = "0.10.9"
|
|
@@ -1697,6 +2732,25 @@ version = "1.3.0"
|
|
|
1697
2732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
2733
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1699
2734
|
|
|
2735
|
+
[[package]]
|
|
2736
|
+
name = "signal-hook"
|
|
2737
|
+
version = "0.3.18"
|
|
2738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2739
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
|
2740
|
+
dependencies = [
|
|
2741
|
+
"libc",
|
|
2742
|
+
"signal-hook-registry",
|
|
2743
|
+
]
|
|
2744
|
+
|
|
2745
|
+
[[package]]
|
|
2746
|
+
name = "signal-hook-registry"
|
|
2747
|
+
version = "1.4.5"
|
|
2748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2749
|
+
checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
|
|
2750
|
+
dependencies = [
|
|
2751
|
+
"libc",
|
|
2752
|
+
]
|
|
2753
|
+
|
|
1700
2754
|
[[package]]
|
|
1701
2755
|
name = "simdutf8"
|
|
1702
2756
|
version = "0.1.5"
|
|
@@ -1709,167 +2763,360 @@ version = "1.0.1"
|
|
|
1709
2763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
2764
|
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
1711
2765
|
|
|
2766
|
+
[[package]]
|
|
2767
|
+
name = "skiplist"
|
|
2768
|
+
version = "0.5.1"
|
|
2769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2770
|
+
checksum = "0eec25f46463fcdc5e02f388c2780b1b58e01be81a8378e62ec60931beccc3f6"
|
|
2771
|
+
dependencies = [
|
|
2772
|
+
"rand 0.8.5",
|
|
2773
|
+
]
|
|
2774
|
+
|
|
2775
|
+
[[package]]
|
|
2776
|
+
name = "slab"
|
|
2777
|
+
version = "0.4.10"
|
|
2778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2779
|
+
checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
|
|
2780
|
+
|
|
2781
|
+
[[package]]
|
|
2782
|
+
name = "slotmap"
|
|
2783
|
+
version = "1.0.7"
|
|
2784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2785
|
+
checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
|
|
2786
|
+
dependencies = [
|
|
2787
|
+
"version_check",
|
|
2788
|
+
]
|
|
2789
|
+
|
|
1712
2790
|
[[package]]
|
|
1713
2791
|
name = "smallvec"
|
|
1714
2792
|
version = "1.15.1"
|
|
1715
2793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
2794
|
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1717
2795
|
|
|
2796
|
+
[[package]]
|
|
2797
|
+
name = "socket2"
|
|
2798
|
+
version = "0.5.10"
|
|
2799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
2801
|
+
dependencies = [
|
|
2802
|
+
"libc",
|
|
2803
|
+
"windows-sys 0.52.0",
|
|
2804
|
+
]
|
|
2805
|
+
|
|
1718
2806
|
[[package]]
|
|
1719
2807
|
name = "sqlparser"
|
|
1720
|
-
version = "0.
|
|
2808
|
+
version = "0.53.0"
|
|
2809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2810
|
+
checksum = "05a528114c392209b3264855ad491fcce534b94a38771b0a0b97a79379275ce8"
|
|
2811
|
+
dependencies = [
|
|
2812
|
+
"log",
|
|
2813
|
+
]
|
|
2814
|
+
|
|
2815
|
+
[[package]]
|
|
2816
|
+
name = "stable_deref_trait"
|
|
2817
|
+
version = "1.2.0"
|
|
1721
2818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
-
checksum = "
|
|
2819
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
2820
|
+
|
|
2821
|
+
[[package]]
|
|
2822
|
+
name = "stacker"
|
|
2823
|
+
version = "0.1.21"
|
|
2824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2825
|
+
checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b"
|
|
2826
|
+
dependencies = [
|
|
2827
|
+
"cc",
|
|
2828
|
+
"cfg-if",
|
|
2829
|
+
"libc",
|
|
2830
|
+
"psm",
|
|
2831
|
+
"windows-sys 0.59.0",
|
|
2832
|
+
]
|
|
2833
|
+
|
|
2834
|
+
[[package]]
|
|
2835
|
+
name = "static_assertions"
|
|
2836
|
+
version = "1.1.0"
|
|
2837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2838
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2839
|
+
|
|
2840
|
+
[[package]]
|
|
2841
|
+
name = "streaming-decompression"
|
|
2842
|
+
version = "0.1.2"
|
|
2843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2844
|
+
checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3"
|
|
2845
|
+
dependencies = [
|
|
2846
|
+
"fallible-streaming-iterator",
|
|
2847
|
+
]
|
|
2848
|
+
|
|
2849
|
+
[[package]]
|
|
2850
|
+
name = "streaming-iterator"
|
|
2851
|
+
version = "0.1.9"
|
|
2852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2853
|
+
checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
|
|
2854
|
+
|
|
2855
|
+
[[package]]
|
|
2856
|
+
name = "strength_reduce"
|
|
2857
|
+
version = "0.2.4"
|
|
2858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2859
|
+
checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
|
2860
|
+
|
|
2861
|
+
[[package]]
|
|
2862
|
+
name = "strsim"
|
|
2863
|
+
version = "0.11.1"
|
|
2864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2865
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2866
|
+
|
|
2867
|
+
[[package]]
|
|
2868
|
+
name = "strum_macros"
|
|
2869
|
+
version = "0.26.4"
|
|
2870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2871
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
2872
|
+
dependencies = [
|
|
2873
|
+
"heck",
|
|
2874
|
+
"proc-macro2",
|
|
2875
|
+
"quote",
|
|
2876
|
+
"rustversion",
|
|
2877
|
+
"syn",
|
|
2878
|
+
]
|
|
2879
|
+
|
|
2880
|
+
[[package]]
|
|
2881
|
+
name = "subtle"
|
|
2882
|
+
version = "2.6.1"
|
|
2883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2884
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2885
|
+
|
|
2886
|
+
[[package]]
|
|
2887
|
+
name = "syn"
|
|
2888
|
+
version = "2.0.104"
|
|
2889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
|
2891
|
+
dependencies = [
|
|
2892
|
+
"proc-macro2",
|
|
2893
|
+
"quote",
|
|
2894
|
+
"unicode-ident",
|
|
2895
|
+
]
|
|
2896
|
+
|
|
2897
|
+
[[package]]
|
|
2898
|
+
name = "sync_wrapper"
|
|
2899
|
+
version = "1.0.2"
|
|
2900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2901
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2902
|
+
dependencies = [
|
|
2903
|
+
"futures-core",
|
|
2904
|
+
]
|
|
2905
|
+
|
|
2906
|
+
[[package]]
|
|
2907
|
+
name = "synstructure"
|
|
2908
|
+
version = "0.13.2"
|
|
2909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2911
|
+
dependencies = [
|
|
2912
|
+
"proc-macro2",
|
|
2913
|
+
"quote",
|
|
2914
|
+
"syn",
|
|
2915
|
+
]
|
|
2916
|
+
|
|
2917
|
+
[[package]]
|
|
2918
|
+
name = "target-lexicon"
|
|
2919
|
+
version = "0.13.2"
|
|
2920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2921
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
2922
|
+
|
|
2923
|
+
[[package]]
|
|
2924
|
+
name = "thiserror"
|
|
2925
|
+
version = "1.0.69"
|
|
2926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2927
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2928
|
+
dependencies = [
|
|
2929
|
+
"thiserror-impl 1.0.69",
|
|
2930
|
+
]
|
|
2931
|
+
|
|
2932
|
+
[[package]]
|
|
2933
|
+
name = "thiserror"
|
|
2934
|
+
version = "2.0.12"
|
|
2935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2936
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
1723
2937
|
dependencies = [
|
|
1724
|
-
"
|
|
2938
|
+
"thiserror-impl 2.0.12",
|
|
1725
2939
|
]
|
|
1726
2940
|
|
|
1727
2941
|
[[package]]
|
|
1728
|
-
name = "
|
|
1729
|
-
version = "0.
|
|
2942
|
+
name = "thiserror-impl"
|
|
2943
|
+
version = "1.0.69"
|
|
1730
2944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
-
checksum = "
|
|
2945
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1732
2946
|
dependencies = [
|
|
1733
|
-
"
|
|
1734
|
-
"
|
|
1735
|
-
"
|
|
1736
|
-
"psm",
|
|
1737
|
-
"windows-sys 0.59.0",
|
|
2947
|
+
"proc-macro2",
|
|
2948
|
+
"quote",
|
|
2949
|
+
"syn",
|
|
1738
2950
|
]
|
|
1739
2951
|
|
|
1740
2952
|
[[package]]
|
|
1741
|
-
name = "
|
|
1742
|
-
version = "
|
|
2953
|
+
name = "thiserror-impl"
|
|
2954
|
+
version = "2.0.12"
|
|
1743
2955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1744
|
-
checksum = "
|
|
2956
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
2957
|
+
dependencies = [
|
|
2958
|
+
"proc-macro2",
|
|
2959
|
+
"quote",
|
|
2960
|
+
"syn",
|
|
2961
|
+
]
|
|
1745
2962
|
|
|
1746
2963
|
[[package]]
|
|
1747
|
-
name = "
|
|
1748
|
-
version = "0.1
|
|
2964
|
+
name = "tinystr"
|
|
2965
|
+
version = "0.8.1"
|
|
1749
2966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1750
|
-
checksum = "
|
|
2967
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
1751
2968
|
dependencies = [
|
|
1752
|
-
"
|
|
2969
|
+
"displaydoc",
|
|
2970
|
+
"zerovec",
|
|
1753
2971
|
]
|
|
1754
2972
|
|
|
1755
2973
|
[[package]]
|
|
1756
|
-
name = "
|
|
1757
|
-
version = "
|
|
2974
|
+
name = "tinyvec"
|
|
2975
|
+
version = "1.9.0"
|
|
1758
2976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1759
|
-
checksum = "
|
|
2977
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
|
2978
|
+
dependencies = [
|
|
2979
|
+
"tinyvec_macros",
|
|
2980
|
+
]
|
|
1760
2981
|
|
|
1761
2982
|
[[package]]
|
|
1762
|
-
name = "
|
|
1763
|
-
version = "0.
|
|
2983
|
+
name = "tinyvec_macros"
|
|
2984
|
+
version = "0.1.1"
|
|
1764
2985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1765
|
-
checksum = "
|
|
2986
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1766
2987
|
|
|
1767
2988
|
[[package]]
|
|
1768
|
-
name = "
|
|
1769
|
-
version = "
|
|
2989
|
+
name = "tokio"
|
|
2990
|
+
version = "1.45.1"
|
|
1770
2991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
-
checksum = "
|
|
2992
|
+
checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779"
|
|
2993
|
+
dependencies = [
|
|
2994
|
+
"backtrace",
|
|
2995
|
+
"bytes",
|
|
2996
|
+
"libc",
|
|
2997
|
+
"mio",
|
|
2998
|
+
"pin-project-lite",
|
|
2999
|
+
"socket2",
|
|
3000
|
+
"tokio-macros",
|
|
3001
|
+
"windows-sys 0.52.0",
|
|
3002
|
+
]
|
|
1772
3003
|
|
|
1773
3004
|
[[package]]
|
|
1774
|
-
name = "
|
|
1775
|
-
version = "
|
|
3005
|
+
name = "tokio-macros"
|
|
3006
|
+
version = "2.5.0"
|
|
1776
3007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
-
checksum = "
|
|
3008
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
1778
3009
|
dependencies = [
|
|
1779
|
-
"heck",
|
|
1780
3010
|
"proc-macro2",
|
|
1781
3011
|
"quote",
|
|
1782
|
-
"
|
|
1783
|
-
"syn 2.0.104",
|
|
3012
|
+
"syn",
|
|
1784
3013
|
]
|
|
1785
3014
|
|
|
1786
3015
|
[[package]]
|
|
1787
|
-
name = "
|
|
1788
|
-
version = "
|
|
3016
|
+
name = "tokio-rustls"
|
|
3017
|
+
version = "0.26.2"
|
|
1789
3018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
-
checksum = "
|
|
3019
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
|
1791
3020
|
dependencies = [
|
|
1792
|
-
"
|
|
1793
|
-
"
|
|
1794
|
-
"unicode-ident",
|
|
3021
|
+
"rustls",
|
|
3022
|
+
"tokio",
|
|
1795
3023
|
]
|
|
1796
3024
|
|
|
1797
3025
|
[[package]]
|
|
1798
|
-
name = "
|
|
1799
|
-
version = "
|
|
3026
|
+
name = "tokio-util"
|
|
3027
|
+
version = "0.7.15"
|
|
1800
3028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
-
checksum = "
|
|
3029
|
+
checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
|
|
1802
3030
|
dependencies = [
|
|
1803
|
-
"
|
|
1804
|
-
"
|
|
1805
|
-
"
|
|
3031
|
+
"bytes",
|
|
3032
|
+
"futures-core",
|
|
3033
|
+
"futures-sink",
|
|
3034
|
+
"pin-project-lite",
|
|
3035
|
+
"tokio",
|
|
1806
3036
|
]
|
|
1807
3037
|
|
|
1808
3038
|
[[package]]
|
|
1809
|
-
name = "
|
|
1810
|
-
version = "0.
|
|
3039
|
+
name = "tower"
|
|
3040
|
+
version = "0.5.2"
|
|
1811
3041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
-
checksum = "
|
|
3042
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
1813
3043
|
dependencies = [
|
|
1814
|
-
"core
|
|
1815
|
-
"
|
|
1816
|
-
"
|
|
1817
|
-
"
|
|
1818
|
-
"
|
|
3044
|
+
"futures-core",
|
|
3045
|
+
"futures-util",
|
|
3046
|
+
"pin-project-lite",
|
|
3047
|
+
"sync_wrapper",
|
|
3048
|
+
"tokio",
|
|
3049
|
+
"tower-layer",
|
|
3050
|
+
"tower-service",
|
|
1819
3051
|
]
|
|
1820
3052
|
|
|
1821
3053
|
[[package]]
|
|
1822
|
-
name = "
|
|
1823
|
-
version = "0.
|
|
3054
|
+
name = "tower-http"
|
|
3055
|
+
version = "0.6.6"
|
|
1824
3056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1825
|
-
checksum = "
|
|
3057
|
+
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
|
|
3058
|
+
dependencies = [
|
|
3059
|
+
"bitflags",
|
|
3060
|
+
"bytes",
|
|
3061
|
+
"futures-util",
|
|
3062
|
+
"http",
|
|
3063
|
+
"http-body",
|
|
3064
|
+
"iri-string",
|
|
3065
|
+
"pin-project-lite",
|
|
3066
|
+
"tower",
|
|
3067
|
+
"tower-layer",
|
|
3068
|
+
"tower-service",
|
|
3069
|
+
]
|
|
1826
3070
|
|
|
1827
3071
|
[[package]]
|
|
1828
|
-
name = "
|
|
1829
|
-
version = "0.
|
|
3072
|
+
name = "tower-layer"
|
|
3073
|
+
version = "0.3.3"
|
|
1830
3074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
-
checksum = "
|
|
3075
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1832
3076
|
|
|
1833
3077
|
[[package]]
|
|
1834
|
-
name = "
|
|
1835
|
-
version = "
|
|
3078
|
+
name = "tower-service"
|
|
3079
|
+
version = "0.3.3"
|
|
1836
3080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
-
checksum = "
|
|
1838
|
-
dependencies = [
|
|
1839
|
-
"thiserror-impl 1.0.69",
|
|
1840
|
-
]
|
|
3081
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1841
3082
|
|
|
1842
3083
|
[[package]]
|
|
1843
|
-
name = "
|
|
1844
|
-
version = "
|
|
3084
|
+
name = "tracing"
|
|
3085
|
+
version = "0.1.41"
|
|
1845
3086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
-
checksum = "
|
|
3087
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
1847
3088
|
dependencies = [
|
|
1848
|
-
"
|
|
3089
|
+
"pin-project-lite",
|
|
3090
|
+
"tracing-attributes",
|
|
3091
|
+
"tracing-core",
|
|
1849
3092
|
]
|
|
1850
3093
|
|
|
1851
3094
|
[[package]]
|
|
1852
|
-
name = "
|
|
1853
|
-
version = "1.
|
|
3095
|
+
name = "tracing-attributes"
|
|
3096
|
+
version = "0.1.30"
|
|
1854
3097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1855
|
-
checksum = "
|
|
3098
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
|
1856
3099
|
dependencies = [
|
|
1857
3100
|
"proc-macro2",
|
|
1858
3101
|
"quote",
|
|
1859
|
-
"syn
|
|
3102
|
+
"syn",
|
|
1860
3103
|
]
|
|
1861
3104
|
|
|
1862
3105
|
[[package]]
|
|
1863
|
-
name = "
|
|
1864
|
-
version = "
|
|
3106
|
+
name = "tracing-core"
|
|
3107
|
+
version = "0.1.34"
|
|
1865
3108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
|
-
checksum = "
|
|
3109
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
1867
3110
|
dependencies = [
|
|
1868
|
-
"
|
|
1869
|
-
"quote",
|
|
1870
|
-
"syn 2.0.104",
|
|
3111
|
+
"once_cell",
|
|
1871
3112
|
]
|
|
1872
3113
|
|
|
3114
|
+
[[package]]
|
|
3115
|
+
name = "try-lock"
|
|
3116
|
+
version = "0.2.5"
|
|
3117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3118
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3119
|
+
|
|
1873
3120
|
[[package]]
|
|
1874
3121
|
name = "typenum"
|
|
1875
3122
|
version = "1.18.0"
|
|
@@ -1888,6 +3135,15 @@ version = "1.0.18"
|
|
|
1888
3135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1889
3136
|
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
1890
3137
|
|
|
3138
|
+
[[package]]
|
|
3139
|
+
name = "unicode-normalization"
|
|
3140
|
+
version = "0.1.24"
|
|
3141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3142
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
|
3143
|
+
dependencies = [
|
|
3144
|
+
"tinyvec",
|
|
3145
|
+
]
|
|
3146
|
+
|
|
1891
3147
|
[[package]]
|
|
1892
3148
|
name = "unicode-reverse"
|
|
1893
3149
|
version = "1.0.9"
|
|
@@ -1915,6 +3171,29 @@ version = "0.2.4"
|
|
|
1915
3171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1916
3172
|
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1917
3173
|
|
|
3174
|
+
[[package]]
|
|
3175
|
+
name = "untrusted"
|
|
3176
|
+
version = "0.9.0"
|
|
3177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3178
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3179
|
+
|
|
3180
|
+
[[package]]
|
|
3181
|
+
name = "url"
|
|
3182
|
+
version = "2.5.4"
|
|
3183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3184
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
3185
|
+
dependencies = [
|
|
3186
|
+
"form_urlencoded",
|
|
3187
|
+
"idna",
|
|
3188
|
+
"percent-encoding",
|
|
3189
|
+
]
|
|
3190
|
+
|
|
3191
|
+
[[package]]
|
|
3192
|
+
name = "utf8_iter"
|
|
3193
|
+
version = "1.0.4"
|
|
3194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3195
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3196
|
+
|
|
1918
3197
|
[[package]]
|
|
1919
3198
|
name = "utf8parse"
|
|
1920
3199
|
version = "0.2.2"
|
|
@@ -1938,6 +3217,25 @@ version = "0.9.5"
|
|
|
1938
3217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
3218
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1940
3219
|
|
|
3220
|
+
[[package]]
|
|
3221
|
+
name = "walkdir"
|
|
3222
|
+
version = "2.5.0"
|
|
3223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3224
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3225
|
+
dependencies = [
|
|
3226
|
+
"same-file",
|
|
3227
|
+
"winapi-util",
|
|
3228
|
+
]
|
|
3229
|
+
|
|
3230
|
+
[[package]]
|
|
3231
|
+
name = "want"
|
|
3232
|
+
version = "0.3.1"
|
|
3233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3234
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3235
|
+
dependencies = [
|
|
3236
|
+
"try-lock",
|
|
3237
|
+
]
|
|
3238
|
+
|
|
1941
3239
|
[[package]]
|
|
1942
3240
|
name = "wasi"
|
|
1943
3241
|
version = "0.11.1+wasi-snapshot-preview1"
|
|
@@ -1975,10 +3273,23 @@ dependencies = [
|
|
|
1975
3273
|
"log",
|
|
1976
3274
|
"proc-macro2",
|
|
1977
3275
|
"quote",
|
|
1978
|
-
"syn
|
|
3276
|
+
"syn",
|
|
1979
3277
|
"wasm-bindgen-shared",
|
|
1980
3278
|
]
|
|
1981
3279
|
|
|
3280
|
+
[[package]]
|
|
3281
|
+
name = "wasm-bindgen-futures"
|
|
3282
|
+
version = "0.4.50"
|
|
3283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3284
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
3285
|
+
dependencies = [
|
|
3286
|
+
"cfg-if",
|
|
3287
|
+
"js-sys",
|
|
3288
|
+
"once_cell",
|
|
3289
|
+
"wasm-bindgen",
|
|
3290
|
+
"web-sys",
|
|
3291
|
+
]
|
|
3292
|
+
|
|
1982
3293
|
[[package]]
|
|
1983
3294
|
name = "wasm-bindgen-macro"
|
|
1984
3295
|
version = "0.2.100"
|
|
@@ -1997,7 +3308,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
|
1997
3308
|
dependencies = [
|
|
1998
3309
|
"proc-macro2",
|
|
1999
3310
|
"quote",
|
|
2000
|
-
"syn
|
|
3311
|
+
"syn",
|
|
2001
3312
|
"wasm-bindgen-backend",
|
|
2002
3313
|
"wasm-bindgen-shared",
|
|
2003
3314
|
]
|
|
@@ -2011,6 +3322,39 @@ dependencies = [
|
|
|
2011
3322
|
"unicode-ident",
|
|
2012
3323
|
]
|
|
2013
3324
|
|
|
3325
|
+
[[package]]
|
|
3326
|
+
name = "wasm-streams"
|
|
3327
|
+
version = "0.4.2"
|
|
3328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3329
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
3330
|
+
dependencies = [
|
|
3331
|
+
"futures-util",
|
|
3332
|
+
"js-sys",
|
|
3333
|
+
"wasm-bindgen",
|
|
3334
|
+
"wasm-bindgen-futures",
|
|
3335
|
+
"web-sys",
|
|
3336
|
+
]
|
|
3337
|
+
|
|
3338
|
+
[[package]]
|
|
3339
|
+
name = "web-sys"
|
|
3340
|
+
version = "0.3.77"
|
|
3341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3342
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
3343
|
+
dependencies = [
|
|
3344
|
+
"js-sys",
|
|
3345
|
+
"wasm-bindgen",
|
|
3346
|
+
]
|
|
3347
|
+
|
|
3348
|
+
[[package]]
|
|
3349
|
+
name = "web-time"
|
|
3350
|
+
version = "1.1.0"
|
|
3351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3352
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3353
|
+
dependencies = [
|
|
3354
|
+
"js-sys",
|
|
3355
|
+
"wasm-bindgen",
|
|
3356
|
+
]
|
|
3357
|
+
|
|
2014
3358
|
[[package]]
|
|
2015
3359
|
name = "winapi"
|
|
2016
3360
|
version = "0.3.9"
|
|
@@ -2028,32 +3372,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2028
3372
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2029
3373
|
|
|
2030
3374
|
[[package]]
|
|
2031
|
-
name = "winapi-
|
|
2032
|
-
version = "0.
|
|
2033
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
|
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2035
|
-
|
|
2036
|
-
[[package]]
|
|
2037
|
-
name = "windows"
|
|
2038
|
-
version = "0.57.0"
|
|
3375
|
+
name = "winapi-util"
|
|
3376
|
+
version = "0.1.9"
|
|
2039
3377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
-
checksum = "
|
|
3378
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
2041
3379
|
dependencies = [
|
|
2042
|
-
"windows-
|
|
2043
|
-
"windows-targets 0.52.6",
|
|
3380
|
+
"windows-sys 0.59.0",
|
|
2044
3381
|
]
|
|
2045
3382
|
|
|
2046
3383
|
[[package]]
|
|
2047
|
-
name = "windows-
|
|
2048
|
-
version = "0.
|
|
3384
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3385
|
+
version = "0.4.0"
|
|
2049
3386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2050
|
-
checksum = "
|
|
2051
|
-
dependencies = [
|
|
2052
|
-
"windows-implement 0.57.0",
|
|
2053
|
-
"windows-interface 0.57.0",
|
|
2054
|
-
"windows-result 0.1.2",
|
|
2055
|
-
"windows-targets 0.52.6",
|
|
2056
|
-
]
|
|
3387
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2057
3388
|
|
|
2058
3389
|
[[package]]
|
|
2059
3390
|
name = "windows-core"
|
|
@@ -2061,24 +3392,13 @@ version = "0.61.2"
|
|
|
2061
3392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2062
3393
|
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
2063
3394
|
dependencies = [
|
|
2064
|
-
"windows-implement
|
|
2065
|
-
"windows-interface
|
|
3395
|
+
"windows-implement",
|
|
3396
|
+
"windows-interface",
|
|
2066
3397
|
"windows-link",
|
|
2067
|
-
"windows-result
|
|
3398
|
+
"windows-result",
|
|
2068
3399
|
"windows-strings",
|
|
2069
3400
|
]
|
|
2070
3401
|
|
|
2071
|
-
[[package]]
|
|
2072
|
-
name = "windows-implement"
|
|
2073
|
-
version = "0.57.0"
|
|
2074
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2075
|
-
checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
|
|
2076
|
-
dependencies = [
|
|
2077
|
-
"proc-macro2",
|
|
2078
|
-
"quote",
|
|
2079
|
-
"syn 2.0.104",
|
|
2080
|
-
]
|
|
2081
|
-
|
|
2082
3402
|
[[package]]
|
|
2083
3403
|
name = "windows-implement"
|
|
2084
3404
|
version = "0.60.0"
|
|
@@ -2087,18 +3407,7 @@ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
|
2087
3407
|
dependencies = [
|
|
2088
3408
|
"proc-macro2",
|
|
2089
3409
|
"quote",
|
|
2090
|
-
"syn
|
|
2091
|
-
]
|
|
2092
|
-
|
|
2093
|
-
[[package]]
|
|
2094
|
-
name = "windows-interface"
|
|
2095
|
-
version = "0.57.0"
|
|
2096
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2097
|
-
checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
|
|
2098
|
-
dependencies = [
|
|
2099
|
-
"proc-macro2",
|
|
2100
|
-
"quote",
|
|
2101
|
-
"syn 2.0.104",
|
|
3410
|
+
"syn",
|
|
2102
3411
|
]
|
|
2103
3412
|
|
|
2104
3413
|
[[package]]
|
|
@@ -2109,7 +3418,7 @@ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
|
2109
3418
|
dependencies = [
|
|
2110
3419
|
"proc-macro2",
|
|
2111
3420
|
"quote",
|
|
2112
|
-
"syn
|
|
3421
|
+
"syn",
|
|
2113
3422
|
]
|
|
2114
3423
|
|
|
2115
3424
|
[[package]]
|
|
@@ -2118,15 +3427,6 @@ version = "0.1.3"
|
|
|
2118
3427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
3428
|
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
2120
3429
|
|
|
2121
|
-
[[package]]
|
|
2122
|
-
name = "windows-result"
|
|
2123
|
-
version = "0.1.2"
|
|
2124
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2125
|
-
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
|
|
2126
|
-
dependencies = [
|
|
2127
|
-
"windows-targets 0.52.6",
|
|
2128
|
-
]
|
|
2129
|
-
|
|
2130
3430
|
[[package]]
|
|
2131
3431
|
name = "windows-result"
|
|
2132
3432
|
version = "0.3.4"
|
|
@@ -2145,6 +3445,15 @@ dependencies = [
|
|
|
2145
3445
|
"windows-link",
|
|
2146
3446
|
]
|
|
2147
3447
|
|
|
3448
|
+
[[package]]
|
|
3449
|
+
name = "windows-sys"
|
|
3450
|
+
version = "0.52.0"
|
|
3451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3452
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3453
|
+
dependencies = [
|
|
3454
|
+
"windows-targets 0.52.6",
|
|
3455
|
+
]
|
|
3456
|
+
|
|
2148
3457
|
[[package]]
|
|
2149
3458
|
name = "windows-sys"
|
|
2150
3459
|
version = "0.59.0"
|
|
@@ -2300,12 +3609,42 @@ dependencies = [
|
|
|
2300
3609
|
"bitflags",
|
|
2301
3610
|
]
|
|
2302
3611
|
|
|
3612
|
+
[[package]]
|
|
3613
|
+
name = "writeable"
|
|
3614
|
+
version = "0.6.1"
|
|
3615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3616
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
3617
|
+
|
|
2303
3618
|
[[package]]
|
|
2304
3619
|
name = "xxhash-rust"
|
|
2305
3620
|
version = "0.8.15"
|
|
2306
3621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2307
3622
|
checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
2308
3623
|
|
|
3624
|
+
[[package]]
|
|
3625
|
+
name = "yoke"
|
|
3626
|
+
version = "0.8.0"
|
|
3627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3628
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
|
3629
|
+
dependencies = [
|
|
3630
|
+
"serde",
|
|
3631
|
+
"stable_deref_trait",
|
|
3632
|
+
"yoke-derive",
|
|
3633
|
+
"zerofrom",
|
|
3634
|
+
]
|
|
3635
|
+
|
|
3636
|
+
[[package]]
|
|
3637
|
+
name = "yoke-derive"
|
|
3638
|
+
version = "0.8.0"
|
|
3639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3640
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
3641
|
+
dependencies = [
|
|
3642
|
+
"proc-macro2",
|
|
3643
|
+
"quote",
|
|
3644
|
+
"syn",
|
|
3645
|
+
"synstructure",
|
|
3646
|
+
]
|
|
3647
|
+
|
|
2309
3648
|
[[package]]
|
|
2310
3649
|
name = "zerocopy"
|
|
2311
3650
|
version = "0.8.26"
|
|
@@ -2323,7 +3662,67 @@ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
|
|
|
2323
3662
|
dependencies = [
|
|
2324
3663
|
"proc-macro2",
|
|
2325
3664
|
"quote",
|
|
2326
|
-
"syn
|
|
3665
|
+
"syn",
|
|
3666
|
+
]
|
|
3667
|
+
|
|
3668
|
+
[[package]]
|
|
3669
|
+
name = "zerofrom"
|
|
3670
|
+
version = "0.1.6"
|
|
3671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3672
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
3673
|
+
dependencies = [
|
|
3674
|
+
"zerofrom-derive",
|
|
3675
|
+
]
|
|
3676
|
+
|
|
3677
|
+
[[package]]
|
|
3678
|
+
name = "zerofrom-derive"
|
|
3679
|
+
version = "0.1.6"
|
|
3680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3681
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
3682
|
+
dependencies = [
|
|
3683
|
+
"proc-macro2",
|
|
3684
|
+
"quote",
|
|
3685
|
+
"syn",
|
|
3686
|
+
"synstructure",
|
|
3687
|
+
]
|
|
3688
|
+
|
|
3689
|
+
[[package]]
|
|
3690
|
+
name = "zeroize"
|
|
3691
|
+
version = "1.8.1"
|
|
3692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3693
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
3694
|
+
|
|
3695
|
+
[[package]]
|
|
3696
|
+
name = "zerotrie"
|
|
3697
|
+
version = "0.2.2"
|
|
3698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3699
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
3700
|
+
dependencies = [
|
|
3701
|
+
"displaydoc",
|
|
3702
|
+
"yoke",
|
|
3703
|
+
"zerofrom",
|
|
3704
|
+
]
|
|
3705
|
+
|
|
3706
|
+
[[package]]
|
|
3707
|
+
name = "zerovec"
|
|
3708
|
+
version = "0.11.2"
|
|
3709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3710
|
+
checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
|
|
3711
|
+
dependencies = [
|
|
3712
|
+
"yoke",
|
|
3713
|
+
"zerofrom",
|
|
3714
|
+
"zerovec-derive",
|
|
3715
|
+
]
|
|
3716
|
+
|
|
3717
|
+
[[package]]
|
|
3718
|
+
name = "zerovec-derive"
|
|
3719
|
+
version = "0.11.1"
|
|
3720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3721
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
3722
|
+
dependencies = [
|
|
3723
|
+
"proc-macro2",
|
|
3724
|
+
"quote",
|
|
3725
|
+
"syn",
|
|
2327
3726
|
]
|
|
2328
3727
|
|
|
2329
3728
|
[[package]]
|