polars-df 0.5.0-x86_64-linux → 0.7.0-x86_64-linux
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +26 -0
- data/Cargo.lock +595 -709
- data/Cargo.toml +1 -0
- data/LICENSE-THIRD-PARTY.txt +3854 -4496
- data/README.md +11 -9
- data/lib/polars/3.0/polars.so +0 -0
- data/lib/polars/3.1/polars.so +0 -0
- data/lib/polars/3.2/polars.so +0 -0
- data/lib/polars/array_expr.rb +84 -0
- data/lib/polars/array_name_space.rb +77 -0
- data/lib/polars/batched_csv_reader.rb +1 -1
- data/lib/polars/config.rb +530 -0
- data/lib/polars/data_frame.rb +206 -131
- data/lib/polars/data_types.rb +163 -29
- data/lib/polars/date_time_expr.rb +13 -18
- data/lib/polars/date_time_name_space.rb +22 -28
- data/lib/polars/dynamic_group_by.rb +2 -2
- data/lib/polars/expr.rb +241 -151
- data/lib/polars/functions.rb +29 -38
- data/lib/polars/group_by.rb +38 -76
- data/lib/polars/io.rb +37 -2
- data/lib/polars/lazy_frame.rb +174 -95
- data/lib/polars/lazy_functions.rb +87 -63
- data/lib/polars/lazy_group_by.rb +7 -8
- data/lib/polars/list_expr.rb +40 -36
- data/lib/polars/list_name_space.rb +15 -15
- data/lib/polars/name_expr.rb +198 -0
- data/lib/polars/rolling_group_by.rb +6 -4
- data/lib/polars/series.rb +95 -28
- data/lib/polars/sql_context.rb +194 -0
- data/lib/polars/string_expr.rb +249 -69
- data/lib/polars/string_name_space.rb +155 -25
- data/lib/polars/utils.rb +119 -57
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +6 -0
- metadata +7 -2
data/Cargo.lock
CHANGED
@@ -2,6 +2,15 @@
|
|
2
2
|
# It is not intended for manual editing.
|
3
3
|
version = 3
|
4
4
|
|
5
|
+
[[package]]
|
6
|
+
name = "addr2line"
|
7
|
+
version = "0.21.0"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
10
|
+
dependencies = [
|
11
|
+
"gimli",
|
12
|
+
]
|
13
|
+
|
5
14
|
[[package]]
|
6
15
|
name = "adler"
|
7
16
|
version = "1.0.2"
|
@@ -16,21 +25,22 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
|
16
25
|
|
17
26
|
[[package]]
|
18
27
|
name = "ahash"
|
19
|
-
version = "0.8.
|
28
|
+
version = "0.8.6"
|
20
29
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
21
|
-
checksum = "
|
30
|
+
checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a"
|
22
31
|
dependencies = [
|
23
32
|
"cfg-if",
|
24
33
|
"getrandom",
|
25
34
|
"once_cell",
|
26
35
|
"version_check",
|
36
|
+
"zerocopy",
|
27
37
|
]
|
28
38
|
|
29
39
|
[[package]]
|
30
40
|
name = "aho-corasick"
|
31
|
-
version = "1.
|
41
|
+
version = "1.1.2"
|
32
42
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
33
|
-
checksum = "
|
43
|
+
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
|
34
44
|
dependencies = [
|
35
45
|
"memchr",
|
36
46
|
]
|
@@ -50,6 +60,18 @@ dependencies = [
|
|
50
60
|
"alloc-no-stdlib",
|
51
61
|
]
|
52
62
|
|
63
|
+
[[package]]
|
64
|
+
name = "allocator-api2"
|
65
|
+
version = "0.2.16"
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
67
|
+
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
|
68
|
+
|
69
|
+
[[package]]
|
70
|
+
name = "android-tzdata"
|
71
|
+
version = "0.1.1"
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
73
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
74
|
+
|
53
75
|
[[package]]
|
54
76
|
name = "android_system_properties"
|
55
77
|
version = "0.1.5"
|
@@ -84,43 +106,6 @@ dependencies = [
|
|
84
106
|
"serde",
|
85
107
|
]
|
86
108
|
|
87
|
-
[[package]]
|
88
|
-
name = "arrow2"
|
89
|
-
version = "0.17.1"
|
90
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
91
|
-
checksum = "a0f73029049896b3d70ba17756afef171ceef3569016cfa9dbca58d29e0e16f9"
|
92
|
-
dependencies = [
|
93
|
-
"ahash",
|
94
|
-
"arrow-format",
|
95
|
-
"avro-schema",
|
96
|
-
"base64",
|
97
|
-
"bytemuck",
|
98
|
-
"chrono",
|
99
|
-
"chrono-tz",
|
100
|
-
"dyn-clone",
|
101
|
-
"either",
|
102
|
-
"ethnum",
|
103
|
-
"fallible-streaming-iterator",
|
104
|
-
"foreign_vec",
|
105
|
-
"futures",
|
106
|
-
"getrandom",
|
107
|
-
"hash_hasher",
|
108
|
-
"indexmap",
|
109
|
-
"json-deserializer",
|
110
|
-
"lexical-core",
|
111
|
-
"lz4",
|
112
|
-
"multiversion",
|
113
|
-
"num-traits",
|
114
|
-
"parquet2",
|
115
|
-
"regex",
|
116
|
-
"regex-syntax 0.6.29",
|
117
|
-
"rustc_version",
|
118
|
-
"simdutf8",
|
119
|
-
"streaming-iterator",
|
120
|
-
"strength_reduce",
|
121
|
-
"zstd",
|
122
|
-
]
|
123
|
-
|
124
109
|
[[package]]
|
125
110
|
name = "async-stream"
|
126
111
|
version = "0.3.5"
|
@@ -140,18 +125,18 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
|
140
125
|
dependencies = [
|
141
126
|
"proc-macro2",
|
142
127
|
"quote",
|
143
|
-
"syn 2.0.
|
128
|
+
"syn 2.0.39",
|
144
129
|
]
|
145
130
|
|
146
131
|
[[package]]
|
147
132
|
name = "async-trait"
|
148
|
-
version = "0.1.
|
133
|
+
version = "0.1.74"
|
149
134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
150
|
-
checksum = "
|
135
|
+
checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9"
|
151
136
|
dependencies = [
|
152
137
|
"proc-macro2",
|
153
138
|
"quote",
|
154
|
-
"syn 2.0.
|
139
|
+
"syn 2.0.39",
|
155
140
|
]
|
156
141
|
|
157
142
|
[[package]]
|
@@ -163,6 +148,12 @@ dependencies = [
|
|
163
148
|
"num-traits",
|
164
149
|
]
|
165
150
|
|
151
|
+
[[package]]
|
152
|
+
name = "atoi_simd"
|
153
|
+
version = "0.15.3"
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
155
|
+
checksum = "fc41b65e01b6851bdcd2d741824e6b310d571396bf3915e31e4792034ee65126"
|
156
|
+
|
166
157
|
[[package]]
|
167
158
|
name = "autocfg"
|
168
159
|
version = "1.1.0"
|
@@ -183,19 +174,34 @@ dependencies = [
|
|
183
174
|
"snap",
|
184
175
|
]
|
185
176
|
|
177
|
+
[[package]]
|
178
|
+
name = "backtrace"
|
179
|
+
version = "0.3.69"
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
181
|
+
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
|
182
|
+
dependencies = [
|
183
|
+
"addr2line",
|
184
|
+
"cc",
|
185
|
+
"cfg-if",
|
186
|
+
"libc",
|
187
|
+
"miniz_oxide",
|
188
|
+
"object",
|
189
|
+
"rustc-demangle",
|
190
|
+
]
|
191
|
+
|
186
192
|
[[package]]
|
187
193
|
name = "base64"
|
188
|
-
version = "0.21.
|
194
|
+
version = "0.21.5"
|
189
195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
190
|
-
checksum = "
|
196
|
+
checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
|
191
197
|
|
192
198
|
[[package]]
|
193
199
|
name = "bindgen"
|
194
|
-
version = "0.
|
200
|
+
version = "0.69.1"
|
195
201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
196
|
-
checksum = "
|
202
|
+
checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2"
|
197
203
|
dependencies = [
|
198
|
-
"bitflags",
|
204
|
+
"bitflags 2.4.1",
|
199
205
|
"cexpr",
|
200
206
|
"clang-sys",
|
201
207
|
"lazy_static",
|
@@ -206,6 +212,7 @@ dependencies = [
|
|
206
212
|
"regex",
|
207
213
|
"rustc-hash",
|
208
214
|
"shlex",
|
215
|
+
"syn 2.0.39",
|
209
216
|
]
|
210
217
|
|
211
218
|
[[package]]
|
@@ -214,11 +221,20 @@ version = "1.3.2"
|
|
214
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
215
222
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
216
223
|
|
224
|
+
[[package]]
|
225
|
+
name = "bitflags"
|
226
|
+
version = "2.4.1"
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
228
|
+
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
|
229
|
+
dependencies = [
|
230
|
+
"serde",
|
231
|
+
]
|
232
|
+
|
217
233
|
[[package]]
|
218
234
|
name = "brotli"
|
219
|
-
version = "3.
|
235
|
+
version = "3.4.0"
|
220
236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
221
|
-
checksum = "
|
237
|
+
checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f"
|
222
238
|
dependencies = [
|
223
239
|
"alloc-no-stdlib",
|
224
240
|
"alloc-stdlib",
|
@@ -227,9 +243,9 @@ dependencies = [
|
|
227
243
|
|
228
244
|
[[package]]
|
229
245
|
name = "brotli-decompressor"
|
230
|
-
version = "2.
|
246
|
+
version = "2.5.1"
|
231
247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
232
|
-
checksum = "
|
248
|
+
checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f"
|
233
249
|
dependencies = [
|
234
250
|
"alloc-no-stdlib",
|
235
251
|
"alloc-stdlib",
|
@@ -237,43 +253,44 @@ dependencies = [
|
|
237
253
|
|
238
254
|
[[package]]
|
239
255
|
name = "bumpalo"
|
240
|
-
version = "3.
|
256
|
+
version = "3.14.0"
|
241
257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
242
|
-
checksum = "
|
258
|
+
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
|
243
259
|
|
244
260
|
[[package]]
|
245
261
|
name = "bytemuck"
|
246
|
-
version = "1.
|
262
|
+
version = "1.14.0"
|
247
263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
248
|
-
checksum = "
|
264
|
+
checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6"
|
249
265
|
dependencies = [
|
250
266
|
"bytemuck_derive",
|
251
267
|
]
|
252
268
|
|
253
269
|
[[package]]
|
254
270
|
name = "bytemuck_derive"
|
255
|
-
version = "1.
|
271
|
+
version = "1.5.0"
|
256
272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
257
|
-
checksum = "
|
273
|
+
checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1"
|
258
274
|
dependencies = [
|
259
275
|
"proc-macro2",
|
260
276
|
"quote",
|
261
|
-
"syn 2.0.
|
277
|
+
"syn 2.0.39",
|
262
278
|
]
|
263
279
|
|
264
280
|
[[package]]
|
265
281
|
name = "bytes"
|
266
|
-
version = "1.
|
282
|
+
version = "1.5.0"
|
267
283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
268
|
-
checksum = "
|
284
|
+
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
|
269
285
|
|
270
286
|
[[package]]
|
271
287
|
name = "cc"
|
272
|
-
version = "1.0.
|
288
|
+
version = "1.0.83"
|
273
289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
274
|
-
checksum = "
|
290
|
+
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
|
275
291
|
dependencies = [
|
276
292
|
"jobserver",
|
293
|
+
"libc",
|
277
294
|
]
|
278
295
|
|
279
296
|
[[package]]
|
@@ -293,25 +310,24 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
293
310
|
|
294
311
|
[[package]]
|
295
312
|
name = "chrono"
|
296
|
-
version = "0.4.
|
313
|
+
version = "0.4.31"
|
297
314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
298
|
-
checksum = "
|
315
|
+
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
|
299
316
|
dependencies = [
|
317
|
+
"android-tzdata",
|
300
318
|
"iana-time-zone",
|
301
319
|
"js-sys",
|
302
|
-
"num-integer",
|
303
320
|
"num-traits",
|
304
321
|
"serde",
|
305
|
-
"time",
|
306
322
|
"wasm-bindgen",
|
307
|
-
"
|
323
|
+
"windows-targets",
|
308
324
|
]
|
309
325
|
|
310
326
|
[[package]]
|
311
327
|
name = "chrono-tz"
|
312
|
-
version = "0.8.
|
328
|
+
version = "0.8.4"
|
313
329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
314
|
-
checksum = "
|
330
|
+
checksum = "e23185c0e21df6ed832a12e2bda87c7d1def6842881fb634a8511ced741b0d76"
|
315
331
|
dependencies = [
|
316
332
|
"chrono",
|
317
333
|
"chrono-tz-build",
|
@@ -320,9 +336,9 @@ dependencies = [
|
|
320
336
|
|
321
337
|
[[package]]
|
322
338
|
name = "chrono-tz-build"
|
323
|
-
version = "0.1
|
339
|
+
version = "0.2.1"
|
324
340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
325
|
-
checksum = "
|
341
|
+
checksum = "433e39f13c9a060046954e0592a8d0a4bcb1040125cbf91cb8ee58964cfb350f"
|
326
342
|
dependencies = [
|
327
343
|
"parse-zoneinfo",
|
328
344
|
"phf",
|
@@ -340,21 +356,11 @@ dependencies = [
|
|
340
356
|
"libloading",
|
341
357
|
]
|
342
358
|
|
343
|
-
[[package]]
|
344
|
-
name = "codespan-reporting"
|
345
|
-
version = "0.11.1"
|
346
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
347
|
-
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
|
348
|
-
dependencies = [
|
349
|
-
"termcolor",
|
350
|
-
"unicode-width",
|
351
|
-
]
|
352
|
-
|
353
359
|
[[package]]
|
354
360
|
name = "comfy-table"
|
355
|
-
version = "
|
361
|
+
version = "7.1.0"
|
356
362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
357
|
-
checksum = "
|
363
|
+
checksum = "7c64043d6c7b7a4c58e39e7efccfdea7b93d885a795d0c054a69dbbf4dd52686"
|
358
364
|
dependencies = [
|
359
365
|
"crossterm",
|
360
366
|
"strum",
|
@@ -415,9 +421,9 @@ dependencies = [
|
|
415
421
|
|
416
422
|
[[package]]
|
417
423
|
name = "crossbeam-epoch"
|
418
|
-
version = "0.9.
|
424
|
+
version = "0.9.15"
|
419
425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
420
|
-
checksum = "
|
426
|
+
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
|
421
427
|
dependencies = [
|
422
428
|
"autocfg",
|
423
429
|
"cfg-if",
|
@@ -438,111 +444,70 @@ dependencies = [
|
|
438
444
|
|
439
445
|
[[package]]
|
440
446
|
name = "crossbeam-utils"
|
441
|
-
version = "0.8.
|
447
|
+
version = "0.8.16"
|
442
448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
443
|
-
checksum = "
|
449
|
+
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
|
444
450
|
dependencies = [
|
445
451
|
"cfg-if",
|
446
452
|
]
|
447
453
|
|
448
454
|
[[package]]
|
449
455
|
name = "crossterm"
|
450
|
-
version = "0.
|
456
|
+
version = "0.27.0"
|
451
457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
452
|
-
checksum = "
|
458
|
+
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
|
453
459
|
dependencies = [
|
454
|
-
"bitflags",
|
460
|
+
"bitflags 2.4.1",
|
455
461
|
"crossterm_winapi",
|
456
462
|
"libc",
|
457
|
-
"
|
458
|
-
"parking_lot 0.12.1",
|
459
|
-
"signal-hook",
|
460
|
-
"signal-hook-mio",
|
463
|
+
"parking_lot",
|
461
464
|
"winapi",
|
462
465
|
]
|
463
466
|
|
464
467
|
[[package]]
|
465
468
|
name = "crossterm_winapi"
|
466
|
-
version = "0.9.
|
469
|
+
version = "0.9.1"
|
467
470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
468
|
-
checksum = "
|
471
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
469
472
|
dependencies = [
|
470
473
|
"winapi",
|
471
474
|
]
|
472
475
|
|
473
|
-
[[package]]
|
474
|
-
name = "cxx"
|
475
|
-
version = "1.0.94"
|
476
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
477
|
-
checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93"
|
478
|
-
dependencies = [
|
479
|
-
"cc",
|
480
|
-
"cxxbridge-flags",
|
481
|
-
"cxxbridge-macro",
|
482
|
-
"link-cplusplus",
|
483
|
-
]
|
484
|
-
|
485
|
-
[[package]]
|
486
|
-
name = "cxx-build"
|
487
|
-
version = "1.0.94"
|
488
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
489
|
-
checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b"
|
490
|
-
dependencies = [
|
491
|
-
"cc",
|
492
|
-
"codespan-reporting",
|
493
|
-
"once_cell",
|
494
|
-
"proc-macro2",
|
495
|
-
"quote",
|
496
|
-
"scratch",
|
497
|
-
"syn 2.0.15",
|
498
|
-
]
|
499
|
-
|
500
|
-
[[package]]
|
501
|
-
name = "cxxbridge-flags"
|
502
|
-
version = "1.0.94"
|
503
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
504
|
-
checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb"
|
505
|
-
|
506
|
-
[[package]]
|
507
|
-
name = "cxxbridge-macro"
|
508
|
-
version = "1.0.94"
|
509
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
510
|
-
checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5"
|
511
|
-
dependencies = [
|
512
|
-
"proc-macro2",
|
513
|
-
"quote",
|
514
|
-
"syn 2.0.15",
|
515
|
-
]
|
516
|
-
|
517
476
|
[[package]]
|
518
477
|
name = "dyn-clone"
|
519
|
-
version = "1.0.
|
478
|
+
version = "1.0.16"
|
520
479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
521
|
-
checksum = "
|
480
|
+
checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d"
|
522
481
|
|
523
482
|
[[package]]
|
524
483
|
name = "either"
|
525
|
-
version = "1.
|
484
|
+
version = "1.9.0"
|
526
485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
527
|
-
checksum = "
|
486
|
+
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
528
487
|
|
529
488
|
[[package]]
|
530
489
|
name = "enum_dispatch"
|
531
|
-
version = "0.3.
|
490
|
+
version = "0.3.12"
|
532
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
533
|
-
checksum = "
|
492
|
+
checksum = "8f33313078bb8d4d05a2733a94ac4c2d8a0df9a2b84424ebf4f33bfc224a890e"
|
534
493
|
dependencies = [
|
535
494
|
"once_cell",
|
536
495
|
"proc-macro2",
|
537
496
|
"quote",
|
538
|
-
"syn
|
497
|
+
"syn 2.0.39",
|
539
498
|
]
|
540
499
|
|
500
|
+
[[package]]
|
501
|
+
name = "equivalent"
|
502
|
+
version = "1.0.1"
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
504
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
505
|
+
|
541
506
|
[[package]]
|
542
507
|
name = "ethnum"
|
543
|
-
version = "1.
|
508
|
+
version = "1.5.0"
|
544
509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
545
|
-
checksum = "
|
510
|
+
checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c"
|
546
511
|
|
547
512
|
[[package]]
|
548
513
|
name = "fallible-streaming-iterator"
|
@@ -558,9 +523,9 @@ checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
|
|
558
523
|
|
559
524
|
[[package]]
|
560
525
|
name = "flate2"
|
561
|
-
version = "1.0.
|
526
|
+
version = "1.0.28"
|
562
527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
563
|
-
checksum = "
|
528
|
+
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
|
564
529
|
dependencies = [
|
565
530
|
"crc32fast",
|
566
531
|
"miniz_oxide",
|
@@ -583,9 +548,9 @@ checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
|
|
583
548
|
|
584
549
|
[[package]]
|
585
550
|
name = "futures"
|
586
|
-
version = "0.3.
|
551
|
+
version = "0.3.29"
|
587
552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
588
|
-
checksum = "
|
553
|
+
checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335"
|
589
554
|
dependencies = [
|
590
555
|
"futures-channel",
|
591
556
|
"futures-core",
|
@@ -598,9 +563,9 @@ dependencies = [
|
|
598
563
|
|
599
564
|
[[package]]
|
600
565
|
name = "futures-channel"
|
601
|
-
version = "0.3.
|
566
|
+
version = "0.3.29"
|
602
567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
603
|
-
checksum = "
|
568
|
+
checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb"
|
604
569
|
dependencies = [
|
605
570
|
"futures-core",
|
606
571
|
"futures-sink",
|
@@ -608,15 +573,15 @@ dependencies = [
|
|
608
573
|
|
609
574
|
[[package]]
|
610
575
|
name = "futures-core"
|
611
|
-
version = "0.3.
|
576
|
+
version = "0.3.29"
|
612
577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
613
|
-
checksum = "
|
578
|
+
checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c"
|
614
579
|
|
615
580
|
[[package]]
|
616
581
|
name = "futures-executor"
|
617
|
-
version = "0.3.
|
582
|
+
version = "0.3.29"
|
618
583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
619
|
-
checksum = "
|
584
|
+
checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc"
|
620
585
|
dependencies = [
|
621
586
|
"futures-core",
|
622
587
|
"futures-task",
|
@@ -625,38 +590,38 @@ dependencies = [
|
|
625
590
|
|
626
591
|
[[package]]
|
627
592
|
name = "futures-io"
|
628
|
-
version = "0.3.
|
593
|
+
version = "0.3.29"
|
629
594
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
630
|
-
checksum = "
|
595
|
+
checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa"
|
631
596
|
|
632
597
|
[[package]]
|
633
598
|
name = "futures-macro"
|
634
|
-
version = "0.3.
|
599
|
+
version = "0.3.29"
|
635
600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
636
|
-
checksum = "
|
601
|
+
checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb"
|
637
602
|
dependencies = [
|
638
603
|
"proc-macro2",
|
639
604
|
"quote",
|
640
|
-
"syn 2.0.
|
605
|
+
"syn 2.0.39",
|
641
606
|
]
|
642
607
|
|
643
608
|
[[package]]
|
644
609
|
name = "futures-sink"
|
645
|
-
version = "0.3.
|
610
|
+
version = "0.3.29"
|
646
611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
647
|
-
checksum = "
|
612
|
+
checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817"
|
648
613
|
|
649
614
|
[[package]]
|
650
615
|
name = "futures-task"
|
651
|
-
version = "0.3.
|
616
|
+
version = "0.3.29"
|
652
617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
653
|
-
checksum = "
|
618
|
+
checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2"
|
654
619
|
|
655
620
|
[[package]]
|
656
621
|
name = "futures-util"
|
657
|
-
version = "0.3.
|
622
|
+
version = "0.3.29"
|
658
623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
659
|
-
checksum = "
|
624
|
+
checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104"
|
660
625
|
dependencies = [
|
661
626
|
"futures-channel",
|
662
627
|
"futures-core",
|
@@ -672,17 +637,23 @@ dependencies = [
|
|
672
637
|
|
673
638
|
[[package]]
|
674
639
|
name = "getrandom"
|
675
|
-
version = "0.2.
|
640
|
+
version = "0.2.11"
|
676
641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
677
|
-
checksum = "
|
642
|
+
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
|
678
643
|
dependencies = [
|
679
644
|
"cfg-if",
|
680
645
|
"js-sys",
|
681
646
|
"libc",
|
682
|
-
"wasi
|
647
|
+
"wasi",
|
683
648
|
"wasm-bindgen",
|
684
649
|
]
|
685
650
|
|
651
|
+
[[package]]
|
652
|
+
name = "gimli"
|
653
|
+
version = "0.28.0"
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
655
|
+
checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
|
656
|
+
|
686
657
|
[[package]]
|
687
658
|
name = "glob"
|
688
659
|
version = "0.3.1"
|
@@ -691,34 +662,31 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
691
662
|
|
692
663
|
[[package]]
|
693
664
|
name = "halfbrown"
|
694
|
-
version = "0.2.
|
665
|
+
version = "0.2.4"
|
695
666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
696
|
-
checksum = "
|
667
|
+
checksum = "5681137554ddff44396e5f149892c769d45301dd9aa19c51602a89ee214cb0ec"
|
697
668
|
dependencies = [
|
698
669
|
"hashbrown 0.13.2",
|
699
|
-
"rustc-hash",
|
700
670
|
"serde",
|
701
671
|
]
|
702
672
|
|
703
|
-
[[package]]
|
704
|
-
name = "hash_hasher"
|
705
|
-
version = "2.0.3"
|
706
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
707
|
-
checksum = "74721d007512d0cb3338cd20f0654ac913920061a4c4d0d8708edb3f2a698c0c"
|
708
|
-
|
709
673
|
[[package]]
|
710
674
|
name = "hashbrown"
|
711
|
-
version = "0.
|
675
|
+
version = "0.13.2"
|
712
676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
713
|
-
checksum = "
|
677
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
678
|
+
dependencies = [
|
679
|
+
"ahash",
|
680
|
+
]
|
714
681
|
|
715
682
|
[[package]]
|
716
683
|
name = "hashbrown"
|
717
|
-
version = "0.
|
684
|
+
version = "0.14.2"
|
718
685
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
719
|
-
checksum = "
|
686
|
+
checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156"
|
720
687
|
dependencies = [
|
721
688
|
"ahash",
|
689
|
+
"allocator-api2",
|
722
690
|
"rayon",
|
723
691
|
]
|
724
692
|
|
@@ -730,12 +698,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
730
698
|
|
731
699
|
[[package]]
|
732
700
|
name = "hermit-abi"
|
733
|
-
version = "0.
|
701
|
+
version = "0.3.3"
|
734
702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
735
|
-
checksum = "
|
736
|
-
dependencies = [
|
737
|
-
"libc",
|
738
|
-
]
|
703
|
+
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
|
739
704
|
|
740
705
|
[[package]]
|
741
706
|
name = "hex"
|
@@ -749,58 +714,48 @@ version = "0.5.5"
|
|
749
714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
750
715
|
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
|
751
716
|
dependencies = [
|
752
|
-
"windows-sys
|
717
|
+
"windows-sys",
|
753
718
|
]
|
754
719
|
|
755
720
|
[[package]]
|
756
721
|
name = "iana-time-zone"
|
757
|
-
version = "0.1.
|
722
|
+
version = "0.1.58"
|
758
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
759
|
-
checksum = "
|
724
|
+
checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20"
|
760
725
|
dependencies = [
|
761
726
|
"android_system_properties",
|
762
727
|
"core-foundation-sys",
|
763
728
|
"iana-time-zone-haiku",
|
764
729
|
"js-sys",
|
765
730
|
"wasm-bindgen",
|
766
|
-
"windows",
|
731
|
+
"windows-core",
|
767
732
|
]
|
768
733
|
|
769
734
|
[[package]]
|
770
735
|
name = "iana-time-zone-haiku"
|
771
|
-
version = "0.1.
|
736
|
+
version = "0.1.2"
|
772
737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
773
|
-
checksum = "
|
738
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
774
739
|
dependencies = [
|
775
|
-
"
|
776
|
-
"cxx-build",
|
740
|
+
"cc",
|
777
741
|
]
|
778
742
|
|
779
743
|
[[package]]
|
780
744
|
name = "indexmap"
|
781
|
-
version = "1.
|
745
|
+
version = "2.1.0"
|
782
746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
783
|
-
checksum = "
|
747
|
+
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
|
784
748
|
dependencies = [
|
785
|
-
"
|
786
|
-
"hashbrown 0.
|
749
|
+
"equivalent",
|
750
|
+
"hashbrown 0.14.2",
|
787
751
|
"serde",
|
788
752
|
]
|
789
753
|
|
790
|
-
[[package]]
|
791
|
-
name = "instant"
|
792
|
-
version = "0.1.12"
|
793
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
794
|
-
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
795
|
-
dependencies = [
|
796
|
-
"cfg-if",
|
797
|
-
]
|
798
|
-
|
799
754
|
[[package]]
|
800
755
|
name = "itoa"
|
801
|
-
version = "1.0.
|
756
|
+
version = "1.0.9"
|
802
757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
803
|
-
checksum = "
|
758
|
+
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
|
804
759
|
|
805
760
|
[[package]]
|
806
761
|
name = "itoap"
|
@@ -810,9 +765,9 @@ checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
|
|
810
765
|
|
811
766
|
[[package]]
|
812
767
|
name = "jemalloc-sys"
|
813
|
-
version = "0.5.
|
768
|
+
version = "0.5.4+5.3.0-patched"
|
814
769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
815
|
-
checksum = "
|
770
|
+
checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2"
|
816
771
|
dependencies = [
|
817
772
|
"cc",
|
818
773
|
"libc",
|
@@ -820,9 +775,9 @@ dependencies = [
|
|
820
775
|
|
821
776
|
[[package]]
|
822
777
|
name = "jemallocator"
|
823
|
-
version = "0.5.
|
778
|
+
version = "0.5.4"
|
824
779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
825
|
-
checksum = "
|
780
|
+
checksum = "a0de374a9f8e63150e6f5e8a60cc14c668226d7a347d8aee1a45766e3c4dd3bc"
|
826
781
|
dependencies = [
|
827
782
|
"jemalloc-sys",
|
828
783
|
"libc",
|
@@ -830,31 +785,22 @@ dependencies = [
|
|
830
785
|
|
831
786
|
[[package]]
|
832
787
|
name = "jobserver"
|
833
|
-
version = "0.1.
|
788
|
+
version = "0.1.27"
|
834
789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
835
|
-
checksum = "
|
790
|
+
checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"
|
836
791
|
dependencies = [
|
837
792
|
"libc",
|
838
793
|
]
|
839
794
|
|
840
795
|
[[package]]
|
841
796
|
name = "js-sys"
|
842
|
-
version = "0.3.
|
797
|
+
version = "0.3.65"
|
843
798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
844
|
-
checksum = "
|
799
|
+
checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8"
|
845
800
|
dependencies = [
|
846
801
|
"wasm-bindgen",
|
847
802
|
]
|
848
803
|
|
849
|
-
[[package]]
|
850
|
-
name = "json-deserializer"
|
851
|
-
version = "0.4.4"
|
852
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
853
|
-
checksum = "5f63b421e16eb4100beb677af56f0b4f3a4f08bab74ef2af079ce5bb92c2683f"
|
854
|
-
dependencies = [
|
855
|
-
"indexmap",
|
856
|
-
]
|
857
|
-
|
858
804
|
[[package]]
|
859
805
|
name = "jsonpath_lib"
|
860
806
|
version = "0.3.0"
|
@@ -877,15 +823,6 @@ version = "1.3.0"
|
|
877
823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
878
824
|
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
879
825
|
|
880
|
-
[[package]]
|
881
|
-
name = "lexical"
|
882
|
-
version = "6.1.1"
|
883
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
884
|
-
checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
|
885
|
-
dependencies = [
|
886
|
-
"lexical-core",
|
887
|
-
]
|
888
|
-
|
889
826
|
[[package]]
|
890
827
|
name = "lexical-core"
|
891
828
|
version = "0.8.5"
|
@@ -952,15 +889,15 @@ dependencies = [
|
|
952
889
|
|
953
890
|
[[package]]
|
954
891
|
name = "libc"
|
955
|
-
version = "0.2.
|
892
|
+
version = "0.2.150"
|
956
893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
957
|
-
checksum = "
|
894
|
+
checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
|
958
895
|
|
959
896
|
[[package]]
|
960
897
|
name = "libflate"
|
961
|
-
version = "1.
|
898
|
+
version = "1.4.0"
|
962
899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
963
|
-
checksum = "
|
900
|
+
checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18"
|
964
901
|
dependencies = [
|
965
902
|
"adler32",
|
966
903
|
"crc32fast",
|
@@ -988,34 +925,25 @@ dependencies = [
|
|
988
925
|
|
989
926
|
[[package]]
|
990
927
|
name = "libm"
|
991
|
-
version = "0.2.
|
928
|
+
version = "0.2.8"
|
992
929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
993
|
-
checksum = "
|
930
|
+
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
994
931
|
|
995
932
|
[[package]]
|
996
933
|
name = "libmimalloc-sys"
|
997
|
-
version = "0.1.
|
934
|
+
version = "0.1.35"
|
998
935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
999
|
-
checksum = "
|
936
|
+
checksum = "3979b5c37ece694f1f5e51e7ecc871fdb0f517ed04ee45f88d15d6d553cb9664"
|
1000
937
|
dependencies = [
|
1001
938
|
"cc",
|
1002
939
|
"libc",
|
1003
940
|
]
|
1004
941
|
|
1005
|
-
[[package]]
|
1006
|
-
name = "link-cplusplus"
|
1007
|
-
version = "1.0.8"
|
1008
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1009
|
-
checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
|
1010
|
-
dependencies = [
|
1011
|
-
"cc",
|
1012
|
-
]
|
1013
|
-
|
1014
942
|
[[package]]
|
1015
943
|
name = "lock_api"
|
1016
|
-
version = "0.4.
|
944
|
+
version = "0.4.11"
|
1017
945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1018
|
-
checksum = "
|
946
|
+
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
1019
947
|
dependencies = [
|
1020
948
|
"autocfg",
|
1021
949
|
"scopeguard",
|
@@ -1023,12 +951,9 @@ dependencies = [
|
|
1023
951
|
|
1024
952
|
[[package]]
|
1025
953
|
name = "log"
|
1026
|
-
version = "0.4.
|
954
|
+
version = "0.4.20"
|
1027
955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1028
|
-
checksum = "
|
1029
|
-
dependencies = [
|
1030
|
-
"cfg-if",
|
1031
|
-
]
|
956
|
+
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
1032
957
|
|
1033
958
|
[[package]]
|
1034
959
|
name = "lz4"
|
@@ -1052,55 +977,56 @@ dependencies = [
|
|
1052
977
|
|
1053
978
|
[[package]]
|
1054
979
|
name = "magnus"
|
1055
|
-
version = "0.
|
980
|
+
version = "0.6.2"
|
1056
981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1057
|
-
checksum = "
|
982
|
+
checksum = "4778544796676e8428e9c622460ebf284bea52d8b10db3aeb449d8b5e61b3a13"
|
1058
983
|
dependencies = [
|
1059
984
|
"magnus-macros",
|
1060
985
|
"rb-sys",
|
1061
986
|
"rb-sys-env",
|
987
|
+
"seq-macro",
|
1062
988
|
]
|
1063
989
|
|
1064
990
|
[[package]]
|
1065
991
|
name = "magnus-macros"
|
1066
|
-
version = "0.
|
992
|
+
version = "0.6.0"
|
1067
993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1068
|
-
checksum = "
|
994
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
1069
995
|
dependencies = [
|
1070
996
|
"proc-macro2",
|
1071
997
|
"quote",
|
1072
|
-
"syn
|
998
|
+
"syn 2.0.39",
|
1073
999
|
]
|
1074
1000
|
|
1075
1001
|
[[package]]
|
1076
1002
|
name = "memchr"
|
1077
|
-
version = "2.
|
1003
|
+
version = "2.6.4"
|
1078
1004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1079
|
-
checksum = "
|
1005
|
+
checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
|
1080
1006
|
|
1081
1007
|
[[package]]
|
1082
1008
|
name = "memmap2"
|
1083
|
-
version = "0.
|
1009
|
+
version = "0.7.1"
|
1084
1010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1085
|
-
checksum = "
|
1011
|
+
checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6"
|
1086
1012
|
dependencies = [
|
1087
1013
|
"libc",
|
1088
1014
|
]
|
1089
1015
|
|
1090
1016
|
[[package]]
|
1091
1017
|
name = "memoffset"
|
1092
|
-
version = "0.
|
1018
|
+
version = "0.9.0"
|
1093
1019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1094
|
-
checksum = "
|
1020
|
+
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
1095
1021
|
dependencies = [
|
1096
1022
|
"autocfg",
|
1097
1023
|
]
|
1098
1024
|
|
1099
1025
|
[[package]]
|
1100
1026
|
name = "mimalloc"
|
1101
|
-
version = "0.1.
|
1027
|
+
version = "0.1.39"
|
1102
1028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1103
|
-
checksum = "
|
1029
|
+
checksum = "fa01922b5ea280a911e323e4d2fd24b7fe5cc4042e0d2cda3c40775cdc4bdc9c"
|
1104
1030
|
dependencies = [
|
1105
1031
|
"libmimalloc-sys",
|
1106
1032
|
]
|
@@ -1122,21 +1048,20 @@ dependencies = [
|
|
1122
1048
|
|
1123
1049
|
[[package]]
|
1124
1050
|
name = "mio"
|
1125
|
-
version = "0.8.
|
1051
|
+
version = "0.8.9"
|
1126
1052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1127
|
-
checksum = "
|
1053
|
+
checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0"
|
1128
1054
|
dependencies = [
|
1129
1055
|
"libc",
|
1130
|
-
"
|
1131
|
-
"
|
1132
|
-
"windows-sys 0.45.0",
|
1056
|
+
"wasi",
|
1057
|
+
"windows-sys",
|
1133
1058
|
]
|
1134
1059
|
|
1135
1060
|
[[package]]
|
1136
1061
|
name = "multiversion"
|
1137
|
-
version = "0.7.
|
1062
|
+
version = "0.7.3"
|
1138
1063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1139
|
-
checksum = "
|
1064
|
+
checksum = "b2c7b9d7fe61760ce5ea19532ead98541f6b4c495d87247aff9826445cf6872a"
|
1140
1065
|
dependencies = [
|
1141
1066
|
"multiversion-macros",
|
1142
1067
|
"target-features",
|
@@ -1144,9 +1069,9 @@ dependencies = [
|
|
1144
1069
|
|
1145
1070
|
[[package]]
|
1146
1071
|
name = "multiversion-macros"
|
1147
|
-
version = "0.7.
|
1072
|
+
version = "0.7.3"
|
1148
1073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1149
|
-
checksum = "
|
1074
|
+
checksum = "26a83d8500ed06d68877e9de1dde76c1dbb83885dcdbda4ef44ccbc3fbda2ac8"
|
1150
1075
|
dependencies = [
|
1151
1076
|
"proc-macro2",
|
1152
1077
|
"quote",
|
@@ -1182,21 +1107,11 @@ dependencies = [
|
|
1182
1107
|
"winapi",
|
1183
1108
|
]
|
1184
1109
|
|
1185
|
-
[[package]]
|
1186
|
-
name = "num-integer"
|
1187
|
-
version = "0.1.45"
|
1188
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1189
|
-
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
1190
|
-
dependencies = [
|
1191
|
-
"autocfg",
|
1192
|
-
"num-traits",
|
1193
|
-
]
|
1194
|
-
|
1195
1110
|
[[package]]
|
1196
1111
|
name = "num-traits"
|
1197
|
-
version = "0.2.
|
1112
|
+
version = "0.2.17"
|
1198
1113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1199
|
-
checksum = "
|
1114
|
+
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
|
1200
1115
|
dependencies = [
|
1201
1116
|
"autocfg",
|
1202
1117
|
"libm",
|
@@ -1204,30 +1119,28 @@ dependencies = [
|
|
1204
1119
|
|
1205
1120
|
[[package]]
|
1206
1121
|
name = "num_cpus"
|
1207
|
-
version = "1.
|
1122
|
+
version = "1.16.0"
|
1208
1123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1209
|
-
checksum = "
|
1124
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
1210
1125
|
dependencies = [
|
1211
1126
|
"hermit-abi",
|
1212
1127
|
"libc",
|
1213
1128
|
]
|
1214
1129
|
|
1215
1130
|
[[package]]
|
1216
|
-
name = "
|
1217
|
-
version = "
|
1131
|
+
name = "object"
|
1132
|
+
version = "0.32.1"
|
1218
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1219
|
-
checksum = "
|
1134
|
+
checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
|
1135
|
+
dependencies = [
|
1136
|
+
"memchr",
|
1137
|
+
]
|
1220
1138
|
|
1221
1139
|
[[package]]
|
1222
|
-
name = "
|
1223
|
-
version = "
|
1140
|
+
name = "once_cell"
|
1141
|
+
version = "1.18.0"
|
1224
1142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1225
|
-
checksum = "
|
1226
|
-
dependencies = [
|
1227
|
-
"instant",
|
1228
|
-
"lock_api",
|
1229
|
-
"parking_lot_core 0.8.6",
|
1230
|
-
]
|
1143
|
+
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
1231
1144
|
|
1232
1145
|
[[package]]
|
1233
1146
|
name = "parking_lot"
|
@@ -1236,34 +1149,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
1149
|
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
1237
1150
|
dependencies = [
|
1238
1151
|
"lock_api",
|
1239
|
-
"parking_lot_core
|
1240
|
-
]
|
1241
|
-
|
1242
|
-
[[package]]
|
1243
|
-
name = "parking_lot_core"
|
1244
|
-
version = "0.8.6"
|
1245
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1246
|
-
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
|
1247
|
-
dependencies = [
|
1248
|
-
"cfg-if",
|
1249
|
-
"instant",
|
1250
|
-
"libc",
|
1251
|
-
"redox_syscall",
|
1252
|
-
"smallvec",
|
1253
|
-
"winapi",
|
1152
|
+
"parking_lot_core",
|
1254
1153
|
]
|
1255
1154
|
|
1256
1155
|
[[package]]
|
1257
1156
|
name = "parking_lot_core"
|
1258
|
-
version = "0.9.
|
1157
|
+
version = "0.9.9"
|
1259
1158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1260
|
-
checksum = "
|
1159
|
+
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
1261
1160
|
dependencies = [
|
1262
1161
|
"cfg-if",
|
1263
1162
|
"libc",
|
1264
1163
|
"redox_syscall",
|
1265
1164
|
"smallvec",
|
1266
|
-
"windows-
|
1165
|
+
"windows-targets",
|
1267
1166
|
]
|
1268
1167
|
|
1269
1168
|
[[package]]
|
@@ -1276,24 +1175,6 @@ dependencies = [
|
|
1276
1175
|
"futures",
|
1277
1176
|
]
|
1278
1177
|
|
1279
|
-
[[package]]
|
1280
|
-
name = "parquet2"
|
1281
|
-
version = "0.17.2"
|
1282
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1283
|
-
checksum = "579fe5745f02cef3d5f236bfed216fd4693e49e4e920a13475c6132233283bce"
|
1284
|
-
dependencies = [
|
1285
|
-
"async-stream",
|
1286
|
-
"brotli",
|
1287
|
-
"flate2",
|
1288
|
-
"futures",
|
1289
|
-
"lz4",
|
1290
|
-
"parquet-format-safe",
|
1291
|
-
"seq-macro",
|
1292
|
-
"snap",
|
1293
|
-
"streaming-decompression",
|
1294
|
-
"zstd",
|
1295
|
-
]
|
1296
|
-
|
1297
1178
|
[[package]]
|
1298
1179
|
name = "parse-zoneinfo"
|
1299
1180
|
version = "0.3.0"
|
@@ -1309,20 +1190,26 @@ version = "0.1.2"
|
|
1309
1190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1310
1191
|
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
1311
1192
|
|
1193
|
+
[[package]]
|
1194
|
+
name = "percent-encoding"
|
1195
|
+
version = "2.3.0"
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1197
|
+
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
|
1198
|
+
|
1312
1199
|
[[package]]
|
1313
1200
|
name = "phf"
|
1314
|
-
version = "0.11.
|
1201
|
+
version = "0.11.2"
|
1315
1202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1316
|
-
checksum = "
|
1203
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
1317
1204
|
dependencies = [
|
1318
1205
|
"phf_shared",
|
1319
1206
|
]
|
1320
1207
|
|
1321
1208
|
[[package]]
|
1322
1209
|
name = "phf_codegen"
|
1323
|
-
version = "0.11.
|
1210
|
+
version = "0.11.2"
|
1324
1211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1325
|
-
checksum = "
|
1212
|
+
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
|
1326
1213
|
dependencies = [
|
1327
1214
|
"phf_generator",
|
1328
1215
|
"phf_shared",
|
@@ -1330,9 +1217,9 @@ dependencies = [
|
|
1330
1217
|
|
1331
1218
|
[[package]]
|
1332
1219
|
name = "phf_generator"
|
1333
|
-
version = "0.11.
|
1220
|
+
version = "0.11.2"
|
1334
1221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1335
|
-
checksum = "
|
1222
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
1336
1223
|
dependencies = [
|
1337
1224
|
"phf_shared",
|
1338
1225
|
"rand",
|
@@ -1340,18 +1227,18 @@ dependencies = [
|
|
1340
1227
|
|
1341
1228
|
[[package]]
|
1342
1229
|
name = "phf_shared"
|
1343
|
-
version = "0.11.
|
1230
|
+
version = "0.11.2"
|
1344
1231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1345
|
-
checksum = "
|
1232
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
1346
1233
|
dependencies = [
|
1347
1234
|
"siphasher",
|
1348
1235
|
]
|
1349
1236
|
|
1350
1237
|
[[package]]
|
1351
1238
|
name = "pin-project-lite"
|
1352
|
-
version = "0.2.
|
1239
|
+
version = "0.2.13"
|
1353
1240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1354
|
-
checksum = "
|
1241
|
+
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
|
1355
1242
|
|
1356
1243
|
[[package]]
|
1357
1244
|
name = "pin-utils"
|
@@ -1376,23 +1263,26 @@ dependencies = [
|
|
1376
1263
|
|
1377
1264
|
[[package]]
|
1378
1265
|
name = "polars"
|
1379
|
-
version = "0.
|
1266
|
+
version = "0.7.0"
|
1380
1267
|
dependencies = [
|
1381
1268
|
"ahash",
|
1269
|
+
"chrono",
|
1270
|
+
"either",
|
1382
1271
|
"jemallocator",
|
1383
1272
|
"magnus",
|
1384
1273
|
"mimalloc",
|
1385
|
-
"polars 0.
|
1274
|
+
"polars 0.35.2",
|
1386
1275
|
"polars-core",
|
1276
|
+
"polars-parquet",
|
1387
1277
|
"serde_json",
|
1388
1278
|
"smartstring",
|
1389
1279
|
]
|
1390
1280
|
|
1391
1281
|
[[package]]
|
1392
1282
|
name = "polars"
|
1393
|
-
version = "0.
|
1283
|
+
version = "0.35.2"
|
1394
1284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1395
|
-
checksum = "
|
1285
|
+
checksum = "987f70ba422ed3f6bb566d4a02f5ad35f2cabcdc7f09705f9340a5ee2ad59215"
|
1396
1286
|
dependencies = [
|
1397
1287
|
"getrandom",
|
1398
1288
|
"polars-core",
|
@@ -1406,35 +1296,55 @@ dependencies = [
|
|
1406
1296
|
|
1407
1297
|
[[package]]
|
1408
1298
|
name = "polars-arrow"
|
1409
|
-
version = "0.
|
1299
|
+
version = "0.35.2"
|
1410
1300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1411
|
-
checksum = "
|
1301
|
+
checksum = "682c24cbb6fc05882c0112da75ec037d0afe88241c3778c074d61211bbf063bf"
|
1412
1302
|
dependencies = [
|
1413
|
-
"
|
1303
|
+
"ahash",
|
1304
|
+
"arrow-format",
|
1305
|
+
"atoi",
|
1306
|
+
"atoi_simd",
|
1307
|
+
"avro-schema",
|
1308
|
+
"bytemuck",
|
1414
1309
|
"chrono",
|
1415
1310
|
"chrono-tz",
|
1416
|
-
"
|
1311
|
+
"dyn-clone",
|
1312
|
+
"either",
|
1313
|
+
"ethnum",
|
1314
|
+
"fast-float",
|
1315
|
+
"foreign_vec",
|
1316
|
+
"futures",
|
1317
|
+
"getrandom",
|
1318
|
+
"hashbrown 0.14.2",
|
1319
|
+
"itoa",
|
1320
|
+
"lz4",
|
1417
1321
|
"multiversion",
|
1418
1322
|
"num-traits",
|
1419
1323
|
"polars-error",
|
1324
|
+
"polars-utils",
|
1325
|
+
"rustc_version",
|
1326
|
+
"ryu",
|
1420
1327
|
"serde",
|
1421
|
-
"
|
1422
|
-
|
1423
|
-
|
1328
|
+
"simdutf8",
|
1329
|
+
"streaming-iterator",
|
1330
|
+
"strength_reduce",
|
1331
|
+
"zstd",
|
1332
|
+
]
|
1333
|
+
|
1424
1334
|
[[package]]
|
1425
1335
|
name = "polars-core"
|
1426
|
-
version = "0.
|
1336
|
+
version = "0.35.2"
|
1427
1337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1428
|
-
checksum = "
|
1338
|
+
checksum = "0fcbe0039cad625b5775c8f8e0dfdd204a71968959ae006322083b3c244475bf"
|
1429
1339
|
dependencies = [
|
1430
1340
|
"ahash",
|
1431
|
-
"
|
1432
|
-
"
|
1341
|
+
"bitflags 2.4.1",
|
1342
|
+
"bytemuck",
|
1433
1343
|
"chrono",
|
1434
1344
|
"chrono-tz",
|
1435
1345
|
"comfy-table",
|
1436
1346
|
"either",
|
1437
|
-
"hashbrown 0.
|
1347
|
+
"hashbrown 0.14.2",
|
1438
1348
|
"indexmap",
|
1439
1349
|
"itoap",
|
1440
1350
|
"num-traits",
|
@@ -1451,69 +1361,98 @@ dependencies = [
|
|
1451
1361
|
"serde_json",
|
1452
1362
|
"smartstring",
|
1453
1363
|
"thiserror",
|
1454
|
-
"
|
1364
|
+
"version_check",
|
1455
1365
|
"xxhash-rust",
|
1456
1366
|
]
|
1457
1367
|
|
1458
1368
|
[[package]]
|
1459
1369
|
name = "polars-error"
|
1460
|
-
version = "0.
|
1370
|
+
version = "0.35.3"
|
1461
1371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1462
|
-
checksum = "
|
1372
|
+
checksum = "bd5581898a3cc5d0930f40f76034a4cf9e18dc4d38e13ef769fb6f427cf63215"
|
1463
1373
|
dependencies = [
|
1464
|
-
"
|
1374
|
+
"arrow-format",
|
1375
|
+
"avro-schema",
|
1465
1376
|
"regex",
|
1377
|
+
"simdutf8",
|
1466
1378
|
"thiserror",
|
1467
1379
|
]
|
1468
1380
|
|
1469
1381
|
[[package]]
|
1470
1382
|
name = "polars-io"
|
1471
|
-
version = "0.
|
1383
|
+
version = "0.35.2"
|
1472
1384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1473
|
-
checksum = "
|
1385
|
+
checksum = "9080fcc2777fcdfb859cfd45029a90096089bd0da15f4f022c23f8276bf5268c"
|
1474
1386
|
dependencies = [
|
1475
1387
|
"ahash",
|
1476
|
-
"arrow2",
|
1477
1388
|
"async-trait",
|
1389
|
+
"atoi_simd",
|
1478
1390
|
"bytes",
|
1479
1391
|
"chrono",
|
1480
1392
|
"chrono-tz",
|
1481
1393
|
"fast-float",
|
1482
1394
|
"futures",
|
1483
1395
|
"home",
|
1484
|
-
"
|
1485
|
-
"lexical-core",
|
1396
|
+
"itoa",
|
1486
1397
|
"memchr",
|
1487
1398
|
"memmap2",
|
1488
1399
|
"num-traits",
|
1489
1400
|
"once_cell",
|
1401
|
+
"percent-encoding",
|
1490
1402
|
"polars-arrow",
|
1491
1403
|
"polars-core",
|
1492
1404
|
"polars-error",
|
1405
|
+
"polars-json",
|
1406
|
+
"polars-parquet",
|
1493
1407
|
"polars-time",
|
1494
1408
|
"polars-utils",
|
1495
1409
|
"rayon",
|
1496
1410
|
"regex",
|
1411
|
+
"ryu",
|
1497
1412
|
"serde",
|
1498
1413
|
"serde_json",
|
1499
1414
|
"simd-json",
|
1500
1415
|
"simdutf8",
|
1416
|
+
"smartstring",
|
1501
1417
|
"tokio",
|
1418
|
+
"tokio-util",
|
1419
|
+
]
|
1420
|
+
|
1421
|
+
[[package]]
|
1422
|
+
name = "polars-json"
|
1423
|
+
version = "0.35.2"
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1425
|
+
checksum = "4d90ab8b514897140841dcf337810d1ea5778ac260fd561896365445e595275c"
|
1426
|
+
dependencies = [
|
1427
|
+
"ahash",
|
1428
|
+
"chrono",
|
1429
|
+
"fallible-streaming-iterator",
|
1430
|
+
"hashbrown 0.14.2",
|
1431
|
+
"indexmap",
|
1432
|
+
"itoa",
|
1433
|
+
"num-traits",
|
1434
|
+
"polars-arrow",
|
1435
|
+
"polars-error",
|
1436
|
+
"polars-utils",
|
1437
|
+
"ryu",
|
1438
|
+
"simd-json",
|
1439
|
+
"streaming-iterator",
|
1502
1440
|
]
|
1503
1441
|
|
1504
1442
|
[[package]]
|
1505
1443
|
name = "polars-lazy"
|
1506
|
-
version = "0.
|
1444
|
+
version = "0.35.2"
|
1507
1445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1508
|
-
checksum = "
|
1446
|
+
checksum = "f20c79e04461bc3fa085c552c7c18919732ab6cde4e5da9f7b52b48d269b0f11"
|
1509
1447
|
dependencies = [
|
1510
1448
|
"ahash",
|
1511
|
-
"bitflags",
|
1449
|
+
"bitflags 2.4.1",
|
1512
1450
|
"glob",
|
1513
1451
|
"once_cell",
|
1514
1452
|
"polars-arrow",
|
1515
1453
|
"polars-core",
|
1516
1454
|
"polars-io",
|
1455
|
+
"polars-json",
|
1517
1456
|
"polars-ops",
|
1518
1457
|
"polars-pipe",
|
1519
1458
|
"polars-plan",
|
@@ -1521,39 +1460,79 @@ dependencies = [
|
|
1521
1460
|
"polars-utils",
|
1522
1461
|
"rayon",
|
1523
1462
|
"smartstring",
|
1463
|
+
"version_check",
|
1524
1464
|
]
|
1525
1465
|
|
1526
1466
|
[[package]]
|
1527
1467
|
name = "polars-ops"
|
1528
|
-
version = "0.
|
1468
|
+
version = "0.35.2"
|
1529
1469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1530
|
-
checksum = "
|
1470
|
+
checksum = "82ad422e9bb854d275f8d700e0f2bbf39cd8f71709a24aa40e54f32ac7410199"
|
1531
1471
|
dependencies = [
|
1472
|
+
"ahash",
|
1532
1473
|
"argminmax",
|
1533
|
-
"arrow2",
|
1534
1474
|
"base64",
|
1475
|
+
"bytemuck",
|
1476
|
+
"chrono",
|
1477
|
+
"chrono-tz",
|
1535
1478
|
"either",
|
1479
|
+
"hashbrown 0.14.2",
|
1536
1480
|
"hex",
|
1481
|
+
"indexmap",
|
1537
1482
|
"jsonpath_lib",
|
1538
1483
|
"memchr",
|
1484
|
+
"num-traits",
|
1539
1485
|
"polars-arrow",
|
1540
1486
|
"polars-core",
|
1487
|
+
"polars-error",
|
1488
|
+
"polars-json",
|
1541
1489
|
"polars-utils",
|
1490
|
+
"rand",
|
1491
|
+
"rand_distr",
|
1492
|
+
"rayon",
|
1493
|
+
"regex",
|
1542
1494
|
"serde",
|
1543
1495
|
"serde_json",
|
1544
1496
|
"smartstring",
|
1497
|
+
"version_check",
|
1498
|
+
]
|
1499
|
+
|
1500
|
+
[[package]]
|
1501
|
+
name = "polars-parquet"
|
1502
|
+
version = "0.35.2"
|
1503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1504
|
+
checksum = "e9d73479f136c036d1ba87d7ea2e9ac89c86ee2c16ab0020a6e15edbb3581135"
|
1505
|
+
dependencies = [
|
1506
|
+
"ahash",
|
1507
|
+
"async-stream",
|
1508
|
+
"base64",
|
1509
|
+
"brotli",
|
1510
|
+
"ethnum",
|
1511
|
+
"flate2",
|
1512
|
+
"futures",
|
1513
|
+
"lz4",
|
1514
|
+
"num-traits",
|
1515
|
+
"parquet-format-safe",
|
1516
|
+
"polars-arrow",
|
1517
|
+
"polars-error",
|
1518
|
+
"polars-utils",
|
1519
|
+
"seq-macro",
|
1520
|
+
"simdutf8",
|
1521
|
+
"snap",
|
1522
|
+
"streaming-decompression",
|
1523
|
+
"zstd",
|
1545
1524
|
]
|
1546
1525
|
|
1547
1526
|
[[package]]
|
1548
1527
|
name = "polars-pipe"
|
1549
|
-
version = "0.
|
1528
|
+
version = "0.35.2"
|
1550
1529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1551
|
-
checksum = "
|
1530
|
+
checksum = "869f372f023554f8a66fc06060709993b92004f2157188d467741c8fcdb226ff"
|
1552
1531
|
dependencies = [
|
1553
1532
|
"crossbeam-channel",
|
1554
1533
|
"crossbeam-queue",
|
1555
1534
|
"enum_dispatch",
|
1556
|
-
"hashbrown 0.
|
1535
|
+
"hashbrown 0.14.2",
|
1557
1536
|
"num-traits",
|
1558
1537
|
"polars-arrow",
|
1559
1538
|
"polars-core",
|
@@ -1564,52 +1543,59 @@ dependencies = [
|
|
1564
1543
|
"polars-utils",
|
1565
1544
|
"rayon",
|
1566
1545
|
"smartstring",
|
1546
|
+
"version_check",
|
1567
1547
|
]
|
1568
1548
|
|
1569
1549
|
[[package]]
|
1570
1550
|
name = "polars-plan"
|
1571
|
-
version = "0.
|
1551
|
+
version = "0.35.2"
|
1572
1552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1573
|
-
checksum = "
|
1553
|
+
checksum = "af139995be30bb6469fdff78669be5da6aad9ae7ec1ec3e538f34ebeaa8b0fb4"
|
1574
1554
|
dependencies = [
|
1575
1555
|
"ahash",
|
1576
|
-
"
|
1556
|
+
"bytemuck",
|
1577
1557
|
"chrono",
|
1578
1558
|
"chrono-tz",
|
1579
1559
|
"once_cell",
|
1560
|
+
"percent-encoding",
|
1580
1561
|
"polars-arrow",
|
1581
1562
|
"polars-core",
|
1582
1563
|
"polars-io",
|
1583
1564
|
"polars-ops",
|
1565
|
+
"polars-parquet",
|
1584
1566
|
"polars-time",
|
1585
1567
|
"polars-utils",
|
1586
1568
|
"rayon",
|
1587
1569
|
"regex",
|
1588
1570
|
"serde",
|
1589
1571
|
"smartstring",
|
1572
|
+
"strum_macros",
|
1573
|
+
"version_check",
|
1590
1574
|
]
|
1591
1575
|
|
1592
1576
|
[[package]]
|
1593
1577
|
name = "polars-row"
|
1594
|
-
version = "0.
|
1578
|
+
version = "0.35.2"
|
1595
1579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1596
|
-
checksum = "
|
1580
|
+
checksum = "7ae5284d603c3111c217d2451e1b62578eebf2f30d49c32e03790dd4f9cc21ad"
|
1597
1581
|
dependencies = [
|
1598
|
-
"
|
1582
|
+
"polars-arrow",
|
1599
1583
|
"polars-error",
|
1600
1584
|
"polars-utils",
|
1601
1585
|
]
|
1602
1586
|
|
1603
1587
|
[[package]]
|
1604
1588
|
name = "polars-sql"
|
1605
|
-
version = "0.
|
1589
|
+
version = "0.35.2"
|
1606
1590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1607
|
-
checksum = "
|
1591
|
+
checksum = "9357cc60db55c2a407230b42e3ca67ef8495513460ade6f368f48fdd4d2a2505"
|
1608
1592
|
dependencies = [
|
1609
1593
|
"polars-arrow",
|
1610
1594
|
"polars-core",
|
1595
|
+
"polars-error",
|
1611
1596
|
"polars-lazy",
|
1612
1597
|
"polars-plan",
|
1598
|
+
"rand",
|
1613
1599
|
"serde",
|
1614
1600
|
"serde_json",
|
1615
1601
|
"sqlparser",
|
@@ -1617,11 +1603,10 @@ dependencies = [
|
|
1617
1603
|
|
1618
1604
|
[[package]]
|
1619
1605
|
name = "polars-time"
|
1620
|
-
version = "0.
|
1606
|
+
version = "0.35.2"
|
1621
1607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1622
|
-
checksum = "
|
1608
|
+
checksum = "cdbd4ad82122f9fa8bebfc40dc41183e311b0a8ce2e58f2a48800b5e1136d41e"
|
1623
1609
|
dependencies = [
|
1624
|
-
"arrow2",
|
1625
1610
|
"atoi",
|
1626
1611
|
"chrono",
|
1627
1612
|
"chrono-tz",
|
@@ -1629,6 +1614,7 @@ dependencies = [
|
|
1629
1614
|
"once_cell",
|
1630
1615
|
"polars-arrow",
|
1631
1616
|
"polars-core",
|
1617
|
+
"polars-error",
|
1632
1618
|
"polars-ops",
|
1633
1619
|
"polars-utils",
|
1634
1620
|
"regex",
|
@@ -1638,14 +1624,21 @@ dependencies = [
|
|
1638
1624
|
|
1639
1625
|
[[package]]
|
1640
1626
|
name = "polars-utils"
|
1641
|
-
version = "0.
|
1627
|
+
version = "0.35.3"
|
1642
1628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1643
|
-
checksum = "
|
1629
|
+
checksum = "c18e77b1bddfe72ff522bfedf5b1bf1e9d9651b1e6a22f86c50022d1aab2b651"
|
1644
1630
|
dependencies = [
|
1631
|
+
"ahash",
|
1632
|
+
"bytemuck",
|
1633
|
+
"hashbrown 0.14.2",
|
1634
|
+
"indexmap",
|
1635
|
+
"num-traits",
|
1645
1636
|
"once_cell",
|
1637
|
+
"polars-error",
|
1646
1638
|
"rayon",
|
1647
1639
|
"smartstring",
|
1648
1640
|
"sysinfo",
|
1641
|
+
"version_check",
|
1649
1642
|
]
|
1650
1643
|
|
1651
1644
|
[[package]]
|
@@ -1656,18 +1649,18 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1656
1649
|
|
1657
1650
|
[[package]]
|
1658
1651
|
name = "proc-macro2"
|
1659
|
-
version = "1.0.
|
1652
|
+
version = "1.0.69"
|
1660
1653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1661
|
-
checksum = "
|
1654
|
+
checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
|
1662
1655
|
dependencies = [
|
1663
1656
|
"unicode-ident",
|
1664
1657
|
]
|
1665
1658
|
|
1666
1659
|
[[package]]
|
1667
1660
|
name = "quote"
|
1668
|
-
version = "1.0.
|
1661
|
+
version = "1.0.33"
|
1669
1662
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1670
|
-
checksum = "
|
1663
|
+
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
|
1671
1664
|
dependencies = [
|
1672
1665
|
"proc-macro2",
|
1673
1666
|
]
|
@@ -1714,9 +1707,9 @@ dependencies = [
|
|
1714
1707
|
|
1715
1708
|
[[package]]
|
1716
1709
|
name = "rayon"
|
1717
|
-
version = "1.
|
1710
|
+
version = "1.8.0"
|
1718
1711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1719
|
-
checksum = "
|
1712
|
+
checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
|
1720
1713
|
dependencies = [
|
1721
1714
|
"either",
|
1722
1715
|
"rayon-core",
|
@@ -1724,30 +1717,28 @@ dependencies = [
|
|
1724
1717
|
|
1725
1718
|
[[package]]
|
1726
1719
|
name = "rayon-core"
|
1727
|
-
version = "1.
|
1720
|
+
version = "1.12.0"
|
1728
1721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1729
|
-
checksum = "
|
1722
|
+
checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
|
1730
1723
|
dependencies = [
|
1731
|
-
"crossbeam-channel",
|
1732
1724
|
"crossbeam-deque",
|
1733
1725
|
"crossbeam-utils",
|
1734
|
-
"num_cpus",
|
1735
1726
|
]
|
1736
1727
|
|
1737
1728
|
[[package]]
|
1738
1729
|
name = "rb-sys"
|
1739
|
-
version = "0.9.
|
1730
|
+
version = "0.9.83"
|
1740
1731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1741
|
-
checksum = "
|
1732
|
+
checksum = "7e5b8d560b60790a3e60e56e73a8c7be88ac14e6af39fc82b5eca72c71753840"
|
1742
1733
|
dependencies = [
|
1743
1734
|
"rb-sys-build",
|
1744
1735
|
]
|
1745
1736
|
|
1746
1737
|
[[package]]
|
1747
1738
|
name = "rb-sys-build"
|
1748
|
-
version = "0.9.
|
1739
|
+
version = "0.9.83"
|
1749
1740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1750
|
-
checksum = "
|
1741
|
+
checksum = "c2d2bfd00002007d7e9ad93d0397437933040caf452d260c26dbef5fd95ae1a6"
|
1751
1742
|
dependencies = [
|
1752
1743
|
"bindgen",
|
1753
1744
|
"lazy_static",
|
@@ -1755,7 +1746,7 @@ dependencies = [
|
|
1755
1746
|
"quote",
|
1756
1747
|
"regex",
|
1757
1748
|
"shell-words",
|
1758
|
-
"syn
|
1749
|
+
"syn 2.0.39",
|
1759
1750
|
]
|
1760
1751
|
|
1761
1752
|
[[package]]
|
@@ -1766,35 +1757,61 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
1766
1757
|
|
1767
1758
|
[[package]]
|
1768
1759
|
name = "redox_syscall"
|
1769
|
-
version = "0.
|
1760
|
+
version = "0.4.1"
|
1761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1762
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
1763
|
+
dependencies = [
|
1764
|
+
"bitflags 1.3.2",
|
1765
|
+
]
|
1766
|
+
|
1767
|
+
[[package]]
|
1768
|
+
name = "ref-cast"
|
1769
|
+
version = "1.0.20"
|
1770
1770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1771
|
-
checksum = "
|
1771
|
+
checksum = "acde58d073e9c79da00f2b5b84eed919c8326832648a5b109b3fce1bb1175280"
|
1772
1772
|
dependencies = [
|
1773
|
-
"
|
1773
|
+
"ref-cast-impl",
|
1774
|
+
]
|
1775
|
+
|
1776
|
+
[[package]]
|
1777
|
+
name = "ref-cast-impl"
|
1778
|
+
version = "1.0.20"
|
1779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1780
|
+
checksum = "7f7473c2cfcf90008193dd0e3e16599455cb601a9fce322b5bb55de799664925"
|
1781
|
+
dependencies = [
|
1782
|
+
"proc-macro2",
|
1783
|
+
"quote",
|
1784
|
+
"syn 2.0.39",
|
1774
1785
|
]
|
1775
1786
|
|
1776
1787
|
[[package]]
|
1777
1788
|
name = "regex"
|
1778
|
-
version = "1.
|
1789
|
+
version = "1.10.2"
|
1779
1790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1780
|
-
checksum = "
|
1791
|
+
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
|
1781
1792
|
dependencies = [
|
1782
1793
|
"aho-corasick",
|
1783
1794
|
"memchr",
|
1784
|
-
"regex-
|
1795
|
+
"regex-automata",
|
1796
|
+
"regex-syntax",
|
1785
1797
|
]
|
1786
1798
|
|
1787
1799
|
[[package]]
|
1788
|
-
name = "regex-
|
1789
|
-
version = "0.
|
1800
|
+
name = "regex-automata"
|
1801
|
+
version = "0.4.3"
|
1790
1802
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1791
|
-
checksum = "
|
1803
|
+
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
|
1804
|
+
dependencies = [
|
1805
|
+
"aho-corasick",
|
1806
|
+
"memchr",
|
1807
|
+
"regex-syntax",
|
1808
|
+
]
|
1792
1809
|
|
1793
1810
|
[[package]]
|
1794
1811
|
name = "regex-syntax"
|
1795
|
-
version = "0.
|
1812
|
+
version = "0.8.2"
|
1796
1813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1797
|
-
checksum = "
|
1814
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
1798
1815
|
|
1799
1816
|
[[package]]
|
1800
1817
|
name = "rle-decode-fast"
|
@@ -1802,6 +1819,12 @@ version = "1.0.3"
|
|
1802
1819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1803
1820
|
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
1804
1821
|
|
1822
|
+
[[package]]
|
1823
|
+
name = "rustc-demangle"
|
1824
|
+
version = "0.1.23"
|
1825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1826
|
+
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
1827
|
+
|
1805
1828
|
[[package]]
|
1806
1829
|
name = "rustc-hash"
|
1807
1830
|
version = "1.1.0"
|
@@ -1819,65 +1842,59 @@ dependencies = [
|
|
1819
1842
|
|
1820
1843
|
[[package]]
|
1821
1844
|
name = "rustversion"
|
1822
|
-
version = "1.0.
|
1845
|
+
version = "1.0.14"
|
1823
1846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1824
|
-
checksum = "
|
1847
|
+
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
|
1825
1848
|
|
1826
1849
|
[[package]]
|
1827
1850
|
name = "ryu"
|
1828
|
-
version = "1.0.
|
1851
|
+
version = "1.0.15"
|
1829
1852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1830
|
-
checksum = "
|
1853
|
+
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
|
1831
1854
|
|
1832
1855
|
[[package]]
|
1833
1856
|
name = "scopeguard"
|
1834
|
-
version = "1.
|
1835
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1836
|
-
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
1837
|
-
|
1838
|
-
[[package]]
|
1839
|
-
name = "scratch"
|
1840
|
-
version = "1.0.5"
|
1857
|
+
version = "1.2.0"
|
1841
1858
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1842
|
-
checksum = "
|
1859
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1843
1860
|
|
1844
1861
|
[[package]]
|
1845
1862
|
name = "semver"
|
1846
|
-
version = "1.0.
|
1863
|
+
version = "1.0.20"
|
1847
1864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1848
|
-
checksum = "
|
1865
|
+
checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090"
|
1849
1866
|
|
1850
1867
|
[[package]]
|
1851
1868
|
name = "seq-macro"
|
1852
|
-
version = "0.3.
|
1869
|
+
version = "0.3.5"
|
1853
1870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1854
|
-
checksum = "
|
1871
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
1855
1872
|
|
1856
1873
|
[[package]]
|
1857
1874
|
name = "serde"
|
1858
|
-
version = "1.0.
|
1875
|
+
version = "1.0.192"
|
1859
1876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1860
|
-
checksum = "
|
1877
|
+
checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001"
|
1861
1878
|
dependencies = [
|
1862
1879
|
"serde_derive",
|
1863
1880
|
]
|
1864
1881
|
|
1865
1882
|
[[package]]
|
1866
1883
|
name = "serde_derive"
|
1867
|
-
version = "1.0.
|
1884
|
+
version = "1.0.192"
|
1868
1885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1869
|
-
checksum = "
|
1886
|
+
checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1"
|
1870
1887
|
dependencies = [
|
1871
1888
|
"proc-macro2",
|
1872
1889
|
"quote",
|
1873
|
-
"syn 2.0.
|
1890
|
+
"syn 2.0.39",
|
1874
1891
|
]
|
1875
1892
|
|
1876
1893
|
[[package]]
|
1877
1894
|
name = "serde_json"
|
1878
|
-
version = "1.0.
|
1895
|
+
version = "1.0.108"
|
1879
1896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1880
|
-
checksum = "
|
1897
|
+
checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
|
1881
1898
|
dependencies = [
|
1882
1899
|
"indexmap",
|
1883
1900
|
"itoa",
|
@@ -1893,48 +1910,22 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
1893
1910
|
|
1894
1911
|
[[package]]
|
1895
1912
|
name = "shlex"
|
1896
|
-
version = "1.
|
1897
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1898
|
-
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
|
1899
|
-
|
1900
|
-
[[package]]
|
1901
|
-
name = "signal-hook"
|
1902
|
-
version = "0.3.15"
|
1903
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1904
|
-
checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9"
|
1905
|
-
dependencies = [
|
1906
|
-
"libc",
|
1907
|
-
"signal-hook-registry",
|
1908
|
-
]
|
1909
|
-
|
1910
|
-
[[package]]
|
1911
|
-
name = "signal-hook-mio"
|
1912
|
-
version = "0.2.3"
|
1913
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1914
|
-
checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
|
1915
|
-
dependencies = [
|
1916
|
-
"libc",
|
1917
|
-
"mio",
|
1918
|
-
"signal-hook",
|
1919
|
-
]
|
1920
|
-
|
1921
|
-
[[package]]
|
1922
|
-
name = "signal-hook-registry"
|
1923
|
-
version = "1.4.1"
|
1913
|
+
version = "1.2.0"
|
1924
1914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1925
|
-
checksum = "
|
1926
|
-
dependencies = [
|
1927
|
-
"libc",
|
1928
|
-
]
|
1915
|
+
checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
|
1929
1916
|
|
1930
1917
|
[[package]]
|
1931
1918
|
name = "simd-json"
|
1932
|
-
version = "0.
|
1919
|
+
version = "0.13.4"
|
1933
1920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1934
|
-
checksum = "
|
1921
|
+
checksum = "e5a3720326b20bf5b95b72dbbd133caae7e0dcf71eae8f6e6656e71a7e5c9aaa"
|
1935
1922
|
dependencies = [
|
1923
|
+
"ahash",
|
1924
|
+
"getrandom",
|
1936
1925
|
"halfbrown",
|
1937
1926
|
"lexical-core",
|
1927
|
+
"once_cell",
|
1928
|
+
"ref-cast",
|
1938
1929
|
"serde",
|
1939
1930
|
"serde_json",
|
1940
1931
|
"simdutf8",
|
@@ -1949,24 +1940,24 @@ checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
|
|
1949
1940
|
|
1950
1941
|
[[package]]
|
1951
1942
|
name = "siphasher"
|
1952
|
-
version = "0.3.
|
1943
|
+
version = "0.3.11"
|
1953
1944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1954
|
-
checksum = "
|
1945
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
1955
1946
|
|
1956
1947
|
[[package]]
|
1957
1948
|
name = "slab"
|
1958
|
-
version = "0.4.
|
1949
|
+
version = "0.4.9"
|
1959
1950
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1960
|
-
checksum = "
|
1951
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
1961
1952
|
dependencies = [
|
1962
1953
|
"autocfg",
|
1963
1954
|
]
|
1964
1955
|
|
1965
1956
|
[[package]]
|
1966
1957
|
name = "smallvec"
|
1967
|
-
version = "1.
|
1958
|
+
version = "1.11.2"
|
1968
1959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1969
|
-
checksum = "
|
1960
|
+
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
|
1970
1961
|
|
1971
1962
|
[[package]]
|
1972
1963
|
name = "smartstring"
|
@@ -1988,19 +1979,19 @@ checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831"
|
|
1988
1979
|
|
1989
1980
|
[[package]]
|
1990
1981
|
name = "socket2"
|
1991
|
-
version = "0.
|
1982
|
+
version = "0.5.5"
|
1992
1983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1993
|
-
checksum = "
|
1984
|
+
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
|
1994
1985
|
dependencies = [
|
1995
1986
|
"libc",
|
1996
|
-
"
|
1987
|
+
"windows-sys",
|
1997
1988
|
]
|
1998
1989
|
|
1999
1990
|
[[package]]
|
2000
1991
|
name = "sqlparser"
|
2001
|
-
version = "0.
|
1992
|
+
version = "0.39.0"
|
2002
1993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2003
|
-
checksum = "
|
1994
|
+
checksum = "743b4dc2cbde11890ccb254a8fc9d537fa41b36da00de2a1c5e9848c9bc42bd7"
|
2004
1995
|
dependencies = [
|
2005
1996
|
"log",
|
2006
1997
|
]
|
@@ -2034,21 +2025,21 @@ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
|
2034
2025
|
|
2035
2026
|
[[package]]
|
2036
2027
|
name = "strum"
|
2037
|
-
version = "0.
|
2028
|
+
version = "0.25.0"
|
2038
2029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2039
|
-
checksum = "
|
2030
|
+
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
|
2040
2031
|
|
2041
2032
|
[[package]]
|
2042
2033
|
name = "strum_macros"
|
2043
|
-
version = "0.
|
2034
|
+
version = "0.25.3"
|
2044
2035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2045
|
-
checksum = "
|
2036
|
+
checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
|
2046
2037
|
dependencies = [
|
2047
2038
|
"heck",
|
2048
2039
|
"proc-macro2",
|
2049
2040
|
"quote",
|
2050
2041
|
"rustversion",
|
2051
|
-
"syn
|
2042
|
+
"syn 2.0.39",
|
2052
2043
|
]
|
2053
2044
|
|
2054
2045
|
[[package]]
|
@@ -2064,9 +2055,9 @@ dependencies = [
|
|
2064
2055
|
|
2065
2056
|
[[package]]
|
2066
2057
|
name = "syn"
|
2067
|
-
version = "2.0.
|
2058
|
+
version = "2.0.39"
|
2068
2059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2069
|
-
checksum = "
|
2060
|
+
checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a"
|
2070
2061
|
dependencies = [
|
2071
2062
|
"proc-macro2",
|
2072
2063
|
"quote",
|
@@ -2075,9 +2066,9 @@ dependencies = [
|
|
2075
2066
|
|
2076
2067
|
[[package]]
|
2077
2068
|
name = "sysinfo"
|
2078
|
-
version = "0.
|
2069
|
+
version = "0.29.10"
|
2079
2070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2080
|
-
checksum = "
|
2071
|
+
checksum = "0a18d114d420ada3a891e6bc8e96a2023402203296a47cdd65083377dad18ba5"
|
2081
2072
|
dependencies = [
|
2082
2073
|
"cfg-if",
|
2083
2074
|
"core-foundation-sys",
|
@@ -2089,81 +2080,76 @@ dependencies = [
|
|
2089
2080
|
|
2090
2081
|
[[package]]
|
2091
2082
|
name = "target-features"
|
2092
|
-
version = "0.1.
|
2093
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2094
|
-
checksum = "24840de800c1707d75c800893dbd727a5e1501ce921944e602f0698167491e36"
|
2095
|
-
|
2096
|
-
[[package]]
|
2097
|
-
name = "termcolor"
|
2098
|
-
version = "1.2.0"
|
2083
|
+
version = "0.1.5"
|
2099
2084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2100
|
-
checksum = "
|
2101
|
-
dependencies = [
|
2102
|
-
"winapi-util",
|
2103
|
-
]
|
2085
|
+
checksum = "cfb5fa503293557c5158bd215fdc225695e567a77e453f5d4452a50a193969bd"
|
2104
2086
|
|
2105
2087
|
[[package]]
|
2106
2088
|
name = "thiserror"
|
2107
|
-
version = "1.0.
|
2089
|
+
version = "1.0.50"
|
2108
2090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2109
|
-
checksum = "
|
2091
|
+
checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
|
2110
2092
|
dependencies = [
|
2111
2093
|
"thiserror-impl",
|
2112
2094
|
]
|
2113
2095
|
|
2114
2096
|
[[package]]
|
2115
2097
|
name = "thiserror-impl"
|
2116
|
-
version = "1.0.
|
2098
|
+
version = "1.0.50"
|
2117
2099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2118
|
-
checksum = "
|
2100
|
+
checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
|
2119
2101
|
dependencies = [
|
2120
2102
|
"proc-macro2",
|
2121
2103
|
"quote",
|
2122
|
-
"syn 2.0.
|
2104
|
+
"syn 2.0.39",
|
2123
2105
|
]
|
2124
2106
|
|
2125
2107
|
[[package]]
|
2126
|
-
name = "
|
2127
|
-
version = "
|
2108
|
+
name = "tokio"
|
2109
|
+
version = "1.34.0"
|
2128
2110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2129
|
-
checksum = "
|
2111
|
+
checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9"
|
2130
2112
|
dependencies = [
|
2113
|
+
"backtrace",
|
2114
|
+
"bytes",
|
2131
2115
|
"libc",
|
2132
|
-
"
|
2133
|
-
"
|
2116
|
+
"mio",
|
2117
|
+
"num_cpus",
|
2118
|
+
"pin-project-lite",
|
2119
|
+
"socket2",
|
2120
|
+
"windows-sys",
|
2134
2121
|
]
|
2135
2122
|
|
2136
2123
|
[[package]]
|
2137
|
-
name = "tokio"
|
2138
|
-
version = "
|
2124
|
+
name = "tokio-util"
|
2125
|
+
version = "0.7.10"
|
2139
2126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2140
|
-
checksum = "
|
2127
|
+
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
|
2141
2128
|
dependencies = [
|
2142
|
-
"
|
2143
|
-
"
|
2144
|
-
"
|
2129
|
+
"bytes",
|
2130
|
+
"futures-core",
|
2131
|
+
"futures-sink",
|
2145
2132
|
"pin-project-lite",
|
2146
|
-
"
|
2147
|
-
"windows-sys 0.48.0",
|
2133
|
+
"tokio",
|
2148
2134
|
]
|
2149
2135
|
|
2150
2136
|
[[package]]
|
2151
2137
|
name = "unicode-ident"
|
2152
|
-
version = "1.0.
|
2138
|
+
version = "1.0.12"
|
2153
2139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2154
|
-
checksum = "
|
2140
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
2155
2141
|
|
2156
2142
|
[[package]]
|
2157
2143
|
name = "unicode-width"
|
2158
|
-
version = "0.1.
|
2144
|
+
version = "0.1.11"
|
2159
2145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2160
|
-
checksum = "
|
2146
|
+
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
|
2161
2147
|
|
2162
2148
|
[[package]]
|
2163
2149
|
name = "value-trait"
|
2164
|
-
version = "0.
|
2150
|
+
version = "0.8.0"
|
2165
2151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2166
|
-
checksum = "
|
2152
|
+
checksum = "ea87257cfcbedcb9444eda79c59fdfea71217e6305afee8ee33f500375c2ac97"
|
2167
2153
|
dependencies = [
|
2168
2154
|
"float-cmp",
|
2169
2155
|
"halfbrown",
|
@@ -2177,12 +2163,6 @@ version = "0.9.4"
|
|
2177
2163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2178
2164
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
2179
2165
|
|
2180
|
-
[[package]]
|
2181
|
-
name = "wasi"
|
2182
|
-
version = "0.10.0+wasi-snapshot-preview1"
|
2183
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2184
|
-
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
|
2185
|
-
|
2186
2166
|
[[package]]
|
2187
2167
|
name = "wasi"
|
2188
2168
|
version = "0.11.0+wasi-snapshot-preview1"
|
@@ -2191,9 +2171,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2191
2171
|
|
2192
2172
|
[[package]]
|
2193
2173
|
name = "wasm-bindgen"
|
2194
|
-
version = "0.2.
|
2174
|
+
version = "0.2.88"
|
2195
2175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2196
|
-
checksum = "
|
2176
|
+
checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce"
|
2197
2177
|
dependencies = [
|
2198
2178
|
"cfg-if",
|
2199
2179
|
"wasm-bindgen-macro",
|
@@ -2201,36 +2181,24 @@ dependencies = [
|
|
2201
2181
|
|
2202
2182
|
[[package]]
|
2203
2183
|
name = "wasm-bindgen-backend"
|
2204
|
-
version = "0.2.
|
2184
|
+
version = "0.2.88"
|
2205
2185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2206
|
-
checksum = "
|
2186
|
+
checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217"
|
2207
2187
|
dependencies = [
|
2208
2188
|
"bumpalo",
|
2209
2189
|
"log",
|
2210
2190
|
"once_cell",
|
2211
2191
|
"proc-macro2",
|
2212
2192
|
"quote",
|
2213
|
-
"syn
|
2193
|
+
"syn 2.0.39",
|
2214
2194
|
"wasm-bindgen-shared",
|
2215
2195
|
]
|
2216
2196
|
|
2217
|
-
[[package]]
|
2218
|
-
name = "wasm-bindgen-futures"
|
2219
|
-
version = "0.4.34"
|
2220
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2221
|
-
checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
|
2222
|
-
dependencies = [
|
2223
|
-
"cfg-if",
|
2224
|
-
"js-sys",
|
2225
|
-
"wasm-bindgen",
|
2226
|
-
"web-sys",
|
2227
|
-
]
|
2228
|
-
|
2229
2197
|
[[package]]
|
2230
2198
|
name = "wasm-bindgen-macro"
|
2231
|
-
version = "0.2.
|
2199
|
+
version = "0.2.88"
|
2232
2200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2233
|
-
checksum = "
|
2201
|
+
checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2"
|
2234
2202
|
dependencies = [
|
2235
2203
|
"quote",
|
2236
2204
|
"wasm-bindgen-macro-support",
|
@@ -2238,47 +2206,22 @@ dependencies = [
|
|
2238
2206
|
|
2239
2207
|
[[package]]
|
2240
2208
|
name = "wasm-bindgen-macro-support"
|
2241
|
-
version = "0.2.
|
2209
|
+
version = "0.2.88"
|
2242
2210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2243
|
-
checksum = "
|
2211
|
+
checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907"
|
2244
2212
|
dependencies = [
|
2245
2213
|
"proc-macro2",
|
2246
2214
|
"quote",
|
2247
|
-
"syn
|
2215
|
+
"syn 2.0.39",
|
2248
2216
|
"wasm-bindgen-backend",
|
2249
2217
|
"wasm-bindgen-shared",
|
2250
2218
|
]
|
2251
2219
|
|
2252
2220
|
[[package]]
|
2253
2221
|
name = "wasm-bindgen-shared"
|
2254
|
-
version = "0.2.
|
2222
|
+
version = "0.2.88"
|
2255
2223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2256
|
-
checksum = "
|
2257
|
-
|
2258
|
-
[[package]]
|
2259
|
-
name = "wasm-timer"
|
2260
|
-
version = "0.2.5"
|
2261
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2262
|
-
checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
|
2263
|
-
dependencies = [
|
2264
|
-
"futures",
|
2265
|
-
"js-sys",
|
2266
|
-
"parking_lot 0.11.2",
|
2267
|
-
"pin-utils",
|
2268
|
-
"wasm-bindgen",
|
2269
|
-
"wasm-bindgen-futures",
|
2270
|
-
"web-sys",
|
2271
|
-
]
|
2272
|
-
|
2273
|
-
[[package]]
|
2274
|
-
name = "web-sys"
|
2275
|
-
version = "0.3.61"
|
2276
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2277
|
-
checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
|
2278
|
-
dependencies = [
|
2279
|
-
"js-sys",
|
2280
|
-
"wasm-bindgen",
|
2281
|
-
]
|
2224
|
+
checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b"
|
2282
2225
|
|
2283
2226
|
[[package]]
|
2284
2227
|
name = "winapi"
|
@@ -2296,15 +2239,6 @@ version = "0.4.0"
|
|
2296
2239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2297
2240
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2298
2241
|
|
2299
|
-
[[package]]
|
2300
|
-
name = "winapi-util"
|
2301
|
-
version = "0.1.5"
|
2302
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2303
|
-
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
2304
|
-
dependencies = [
|
2305
|
-
"winapi",
|
2306
|
-
]
|
2307
|
-
|
2308
2242
|
[[package]]
|
2309
2243
|
name = "winapi-x86_64-pc-windows-gnu"
|
2310
2244
|
version = "0.4.0"
|
@@ -2312,21 +2246,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2312
2246
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2313
2247
|
|
2314
2248
|
[[package]]
|
2315
|
-
name = "windows"
|
2316
|
-
version = "0.
|
2317
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2318
|
-
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
|
2319
|
-
dependencies = [
|
2320
|
-
"windows-targets 0.48.0",
|
2321
|
-
]
|
2322
|
-
|
2323
|
-
[[package]]
|
2324
|
-
name = "windows-sys"
|
2325
|
-
version = "0.45.0"
|
2249
|
+
name = "windows-core"
|
2250
|
+
version = "0.51.1"
|
2326
2251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2327
|
-
checksum = "
|
2252
|
+
checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64"
|
2328
2253
|
dependencies = [
|
2329
|
-
"windows-targets
|
2254
|
+
"windows-targets",
|
2330
2255
|
]
|
2331
2256
|
|
2332
2257
|
[[package]]
|
@@ -2335,155 +2260,116 @@ version = "0.48.0"
|
|
2335
2260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2336
2261
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
2337
2262
|
dependencies = [
|
2338
|
-
"windows-targets
|
2263
|
+
"windows-targets",
|
2339
2264
|
]
|
2340
2265
|
|
2341
2266
|
[[package]]
|
2342
2267
|
name = "windows-targets"
|
2343
|
-
version = "0.
|
2268
|
+
version = "0.48.5"
|
2344
2269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2345
|
-
checksum = "
|
2270
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
2346
2271
|
dependencies = [
|
2347
|
-
"windows_aarch64_gnullvm
|
2348
|
-
"windows_aarch64_msvc
|
2349
|
-
"windows_i686_gnu
|
2350
|
-
"windows_i686_msvc
|
2351
|
-
"windows_x86_64_gnu
|
2352
|
-
"windows_x86_64_gnullvm
|
2353
|
-
"windows_x86_64_msvc
|
2354
|
-
]
|
2355
|
-
|
2356
|
-
[[package]]
|
2357
|
-
name = "windows-targets"
|
2358
|
-
version = "0.48.0"
|
2359
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2360
|
-
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
2361
|
-
dependencies = [
|
2362
|
-
"windows_aarch64_gnullvm 0.48.0",
|
2363
|
-
"windows_aarch64_msvc 0.48.0",
|
2364
|
-
"windows_i686_gnu 0.48.0",
|
2365
|
-
"windows_i686_msvc 0.48.0",
|
2366
|
-
"windows_x86_64_gnu 0.48.0",
|
2367
|
-
"windows_x86_64_gnullvm 0.48.0",
|
2368
|
-
"windows_x86_64_msvc 0.48.0",
|
2272
|
+
"windows_aarch64_gnullvm",
|
2273
|
+
"windows_aarch64_msvc",
|
2274
|
+
"windows_i686_gnu",
|
2275
|
+
"windows_i686_msvc",
|
2276
|
+
"windows_x86_64_gnu",
|
2277
|
+
"windows_x86_64_gnullvm",
|
2278
|
+
"windows_x86_64_msvc",
|
2369
2279
|
]
|
2370
2280
|
|
2371
2281
|
[[package]]
|
2372
2282
|
name = "windows_aarch64_gnullvm"
|
2373
|
-
version = "0.
|
2283
|
+
version = "0.48.5"
|
2374
2284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2375
|
-
checksum = "
|
2376
|
-
|
2377
|
-
[[package]]
|
2378
|
-
name = "windows_aarch64_gnullvm"
|
2379
|
-
version = "0.48.0"
|
2380
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2381
|
-
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
2285
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
2382
2286
|
|
2383
2287
|
[[package]]
|
2384
2288
|
name = "windows_aarch64_msvc"
|
2385
|
-
version = "0.
|
2289
|
+
version = "0.48.5"
|
2386
2290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2387
|
-
checksum = "
|
2388
|
-
|
2389
|
-
[[package]]
|
2390
|
-
name = "windows_aarch64_msvc"
|
2391
|
-
version = "0.48.0"
|
2392
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2393
|
-
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
2291
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
2394
2292
|
|
2395
2293
|
[[package]]
|
2396
2294
|
name = "windows_i686_gnu"
|
2397
|
-
version = "0.
|
2295
|
+
version = "0.48.5"
|
2398
2296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2399
|
-
checksum = "
|
2400
|
-
|
2401
|
-
[[package]]
|
2402
|
-
name = "windows_i686_gnu"
|
2403
|
-
version = "0.48.0"
|
2404
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2405
|
-
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
2297
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
2406
2298
|
|
2407
2299
|
[[package]]
|
2408
2300
|
name = "windows_i686_msvc"
|
2409
|
-
version = "0.
|
2301
|
+
version = "0.48.5"
|
2410
2302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2411
|
-
checksum = "
|
2412
|
-
|
2413
|
-
[[package]]
|
2414
|
-
name = "windows_i686_msvc"
|
2415
|
-
version = "0.48.0"
|
2416
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2417
|
-
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
2418
|
-
|
2419
|
-
[[package]]
|
2420
|
-
name = "windows_x86_64_gnu"
|
2421
|
-
version = "0.42.2"
|
2422
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2423
|
-
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
2303
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
2424
2304
|
|
2425
2305
|
[[package]]
|
2426
2306
|
name = "windows_x86_64_gnu"
|
2427
|
-
version = "0.48.
|
2307
|
+
version = "0.48.5"
|
2428
2308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2429
|
-
checksum = "
|
2309
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
2430
2310
|
|
2431
2311
|
[[package]]
|
2432
2312
|
name = "windows_x86_64_gnullvm"
|
2433
|
-
version = "0.
|
2313
|
+
version = "0.48.5"
|
2434
2314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2435
|
-
checksum = "
|
2315
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
2436
2316
|
|
2437
2317
|
[[package]]
|
2438
|
-
name = "
|
2439
|
-
version = "0.48.
|
2318
|
+
name = "windows_x86_64_msvc"
|
2319
|
+
version = "0.48.5"
|
2440
2320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2441
|
-
checksum = "
|
2321
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
2442
2322
|
|
2443
2323
|
[[package]]
|
2444
|
-
name = "
|
2445
|
-
version = "0.
|
2324
|
+
name = "xxhash-rust"
|
2325
|
+
version = "0.8.7"
|
2446
2326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2447
|
-
checksum = "
|
2327
|
+
checksum = "9828b178da53440fa9c766a3d2f73f7cf5d0ac1fe3980c1e5018d899fd19e07b"
|
2448
2328
|
|
2449
2329
|
[[package]]
|
2450
|
-
name = "
|
2451
|
-
version = "0.
|
2330
|
+
name = "zerocopy"
|
2331
|
+
version = "0.7.26"
|
2452
2332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2453
|
-
checksum = "
|
2333
|
+
checksum = "e97e415490559a91254a2979b4829267a57d2fcd741a98eee8b722fb57289aa0"
|
2334
|
+
dependencies = [
|
2335
|
+
"zerocopy-derive",
|
2336
|
+
]
|
2454
2337
|
|
2455
2338
|
[[package]]
|
2456
|
-
name = "
|
2457
|
-
version = "0.
|
2339
|
+
name = "zerocopy-derive"
|
2340
|
+
version = "0.7.26"
|
2458
2341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2459
|
-
checksum = "
|
2342
|
+
checksum = "dd7e48ccf166952882ca8bd778a43502c64f33bf94c12ebe2a7f08e5a0f6689f"
|
2343
|
+
dependencies = [
|
2344
|
+
"proc-macro2",
|
2345
|
+
"quote",
|
2346
|
+
"syn 2.0.39",
|
2347
|
+
]
|
2460
2348
|
|
2461
2349
|
[[package]]
|
2462
2350
|
name = "zstd"
|
2463
|
-
version = "0.
|
2351
|
+
version = "0.13.0"
|
2464
2352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2465
|
-
checksum = "
|
2353
|
+
checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110"
|
2466
2354
|
dependencies = [
|
2467
2355
|
"zstd-safe",
|
2468
2356
|
]
|
2469
2357
|
|
2470
2358
|
[[package]]
|
2471
2359
|
name = "zstd-safe"
|
2472
|
-
version = "
|
2360
|
+
version = "7.0.0"
|
2473
2361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2474
|
-
checksum = "
|
2362
|
+
checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e"
|
2475
2363
|
dependencies = [
|
2476
|
-
"libc",
|
2477
2364
|
"zstd-sys",
|
2478
2365
|
]
|
2479
2366
|
|
2480
2367
|
[[package]]
|
2481
2368
|
name = "zstd-sys"
|
2482
|
-
version = "2.0.
|
2369
|
+
version = "2.0.9+zstd.1.5.5"
|
2483
2370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2484
|
-
checksum = "
|
2371
|
+
checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
|
2485
2372
|
dependencies = [
|
2486
2373
|
"cc",
|
2487
|
-
"libc",
|
2488
2374
|
"pkg-config",
|
2489
2375
|
]
|