polars-df 0.14.0-x64-mingw-ucrt → 0.16.0-x64-mingw-ucrt
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 +35 -0
- data/Cargo.lock +1523 -378
- data/LICENSE-THIRD-PARTY.txt +24369 -14580
- data/LICENSE.txt +1 -0
- data/README.md +38 -4
- data/lib/polars/3.2/polars.so +0 -0
- data/lib/polars/3.3/polars.so +0 -0
- data/lib/polars/{3.1 → 3.4}/polars.so +0 -0
- data/lib/polars/batched_csv_reader.rb +0 -2
- data/lib/polars/binary_expr.rb +133 -9
- data/lib/polars/binary_name_space.rb +101 -6
- data/lib/polars/config.rb +4 -0
- data/lib/polars/data_frame.rb +452 -101
- data/lib/polars/data_type_group.rb +28 -0
- data/lib/polars/data_types.rb +3 -1
- data/lib/polars/date_time_expr.rb +244 -0
- data/lib/polars/date_time_name_space.rb +87 -0
- data/lib/polars/expr.rb +103 -2
- data/lib/polars/functions/aggregation/horizontal.rb +10 -4
- data/lib/polars/functions/as_datatype.rb +51 -2
- data/lib/polars/functions/col.rb +1 -1
- data/lib/polars/functions/eager.rb +1 -3
- data/lib/polars/functions/lazy.rb +95 -13
- data/lib/polars/functions/range/time_range.rb +21 -21
- data/lib/polars/io/csv.rb +14 -16
- data/lib/polars/io/database.rb +2 -2
- data/lib/polars/io/delta.rb +126 -0
- data/lib/polars/io/ipc.rb +14 -4
- data/lib/polars/io/ndjson.rb +10 -0
- data/lib/polars/io/parquet.rb +168 -111
- data/lib/polars/lazy_frame.rb +684 -20
- data/lib/polars/list_name_space.rb +169 -0
- data/lib/polars/selectors.rb +1226 -0
- data/lib/polars/series.rb +465 -35
- data/lib/polars/string_cache.rb +27 -1
- data/lib/polars/string_expr.rb +0 -1
- data/lib/polars/string_name_space.rb +73 -3
- data/lib/polars/struct_name_space.rb +31 -7
- data/lib/polars/utils/various.rb +5 -1
- data/lib/polars/utils.rb +45 -10
- data/lib/polars/version.rb +1 -1
- data/lib/polars.rb +17 -1
- metadata +9 -8
- data/lib/polars/functions.rb +0 -57
data/Cargo.lock
CHANGED
@@ -4,9 +4,9 @@ version = 3
|
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "addr2line"
|
7
|
-
version = "0.24.
|
7
|
+
version = "0.24.2"
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
10
10
|
dependencies = [
|
11
11
|
"gimli",
|
12
12
|
]
|
@@ -62,9 +62,9 @@ dependencies = [
|
|
62
62
|
|
63
63
|
[[package]]
|
64
64
|
name = "allocator-api2"
|
65
|
-
version = "0.2.
|
65
|
+
version = "0.2.21"
|
66
66
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
67
|
-
checksum = "
|
67
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
68
68
|
|
69
69
|
[[package]]
|
70
70
|
name = "android-tzdata"
|
@@ -96,11 +96,23 @@ version = "0.2.0"
|
|
96
96
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
97
97
|
checksum = "bf7d0a018de4f6aa429b9d33d69edf69072b1c5b1cb8d3e4a5f7ef898fc3eb76"
|
98
98
|
|
99
|
+
[[package]]
|
100
|
+
name = "arrayref"
|
101
|
+
version = "0.3.9"
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
103
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
104
|
+
|
105
|
+
[[package]]
|
106
|
+
name = "arrayvec"
|
107
|
+
version = "0.7.6"
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
109
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
110
|
+
|
99
111
|
[[package]]
|
100
112
|
name = "async-stream"
|
101
|
-
version = "0.3.
|
113
|
+
version = "0.3.6"
|
102
114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
103
|
-
checksum = "
|
115
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
104
116
|
dependencies = [
|
105
117
|
"async-stream-impl",
|
106
118
|
"futures-core",
|
@@ -109,24 +121,24 @@ dependencies = [
|
|
109
121
|
|
110
122
|
[[package]]
|
111
123
|
name = "async-stream-impl"
|
112
|
-
version = "0.3.
|
124
|
+
version = "0.3.6"
|
113
125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
114
|
-
checksum = "
|
126
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
115
127
|
dependencies = [
|
116
128
|
"proc-macro2",
|
117
129
|
"quote",
|
118
|
-
"syn 2.0.
|
130
|
+
"syn 2.0.93",
|
119
131
|
]
|
120
132
|
|
121
133
|
[[package]]
|
122
134
|
name = "async-trait"
|
123
|
-
version = "0.1.
|
135
|
+
version = "0.1.83"
|
124
136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
125
|
-
checksum = "
|
137
|
+
checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
|
126
138
|
dependencies = [
|
127
139
|
"proc-macro2",
|
128
140
|
"quote",
|
129
|
-
"syn 2.0.
|
141
|
+
"syn 2.0.93",
|
130
142
|
]
|
131
143
|
|
132
144
|
[[package]]
|
@@ -140,15 +152,21 @@ dependencies = [
|
|
140
152
|
|
141
153
|
[[package]]
|
142
154
|
name = "atoi_simd"
|
143
|
-
version = "0.
|
155
|
+
version = "0.16.0"
|
156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
157
|
+
checksum = "4790f9e8961209112beb783d85449b508673cf4a6a419c8449b210743ac4dbe9"
|
158
|
+
|
159
|
+
[[package]]
|
160
|
+
name = "atomic-waker"
|
161
|
+
version = "1.1.2"
|
144
162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
145
|
-
checksum = "
|
163
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
146
164
|
|
147
165
|
[[package]]
|
148
166
|
name = "autocfg"
|
149
|
-
version = "1.
|
167
|
+
version = "1.4.0"
|
150
168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
151
|
-
checksum = "
|
169
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
152
170
|
|
153
171
|
[[package]]
|
154
172
|
name = "avro-schema"
|
@@ -187,22 +205,22 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
187
205
|
|
188
206
|
[[package]]
|
189
207
|
name = "bindgen"
|
190
|
-
version = "0.69.
|
208
|
+
version = "0.69.5"
|
191
209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
192
|
-
checksum = "
|
210
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
193
211
|
dependencies = [
|
194
212
|
"bitflags",
|
195
213
|
"cexpr",
|
196
214
|
"clang-sys",
|
197
|
-
"itertools",
|
215
|
+
"itertools 0.12.1",
|
198
216
|
"lazy_static",
|
199
217
|
"lazycell",
|
200
218
|
"proc-macro2",
|
201
219
|
"quote",
|
202
220
|
"regex",
|
203
|
-
"rustc-hash",
|
221
|
+
"rustc-hash 1.1.0",
|
204
222
|
"shlex",
|
205
|
-
"syn 2.0.
|
223
|
+
"syn 2.0.93",
|
206
224
|
]
|
207
225
|
|
208
226
|
[[package]]
|
@@ -214,11 +232,33 @@ dependencies = [
|
|
214
232
|
"serde",
|
215
233
|
]
|
216
234
|
|
235
|
+
[[package]]
|
236
|
+
name = "blake3"
|
237
|
+
version = "1.5.5"
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
239
|
+
checksum = "b8ee0c1824c4dea5b5f81736aff91bae041d2c07ee1192bec91054e10e3e601e"
|
240
|
+
dependencies = [
|
241
|
+
"arrayref",
|
242
|
+
"arrayvec",
|
243
|
+
"cc",
|
244
|
+
"cfg-if",
|
245
|
+
"constant_time_eq",
|
246
|
+
]
|
247
|
+
|
248
|
+
[[package]]
|
249
|
+
name = "block-buffer"
|
250
|
+
version = "0.10.4"
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
252
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
253
|
+
dependencies = [
|
254
|
+
"generic-array",
|
255
|
+
]
|
256
|
+
|
217
257
|
[[package]]
|
218
258
|
name = "brotli"
|
219
|
-
version = "
|
259
|
+
version = "7.0.0"
|
220
260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
221
|
-
checksum = "
|
261
|
+
checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
|
222
262
|
dependencies = [
|
223
263
|
"alloc-no-stdlib",
|
224
264
|
"alloc-stdlib",
|
@@ -243,22 +283,22 @@ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
243
283
|
|
244
284
|
[[package]]
|
245
285
|
name = "bytemuck"
|
246
|
-
version = "1.
|
286
|
+
version = "1.21.0"
|
247
287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
248
|
-
checksum = "
|
288
|
+
checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3"
|
249
289
|
dependencies = [
|
250
290
|
"bytemuck_derive",
|
251
291
|
]
|
252
292
|
|
253
293
|
[[package]]
|
254
294
|
name = "bytemuck_derive"
|
255
|
-
version = "1.
|
295
|
+
version = "1.8.1"
|
256
296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
257
|
-
checksum = "
|
297
|
+
checksum = "3fa76293b4f7bb636ab88fd78228235b5248b4d05cc589aed610f954af5d7c7a"
|
258
298
|
dependencies = [
|
259
299
|
"proc-macro2",
|
260
300
|
"quote",
|
261
|
-
"syn 2.0.
|
301
|
+
"syn 2.0.93",
|
262
302
|
]
|
263
303
|
|
264
304
|
[[package]]
|
@@ -269,9 +309,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
269
309
|
|
270
310
|
[[package]]
|
271
311
|
name = "bytes"
|
272
|
-
version = "1.
|
312
|
+
version = "1.9.0"
|
273
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
274
|
-
checksum = "
|
314
|
+
checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
|
275
315
|
|
276
316
|
[[package]]
|
277
317
|
name = "castaway"
|
@@ -284,9 +324,9 @@ dependencies = [
|
|
284
324
|
|
285
325
|
[[package]]
|
286
326
|
name = "cc"
|
287
|
-
version = "1.
|
327
|
+
version = "1.2.6"
|
288
328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
289
|
-
checksum = "
|
329
|
+
checksum = "8d6dbb628b8f8555f86d0323c2eb39e3ec81901f4b83e091db8a6a76d316a333"
|
290
330
|
dependencies = [
|
291
331
|
"jobserver",
|
292
332
|
"libc",
|
@@ -308,11 +348,17 @@ version = "1.0.0"
|
|
308
348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
309
349
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
310
350
|
|
351
|
+
[[package]]
|
352
|
+
name = "cfg_aliases"
|
353
|
+
version = "0.2.1"
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
355
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
356
|
+
|
311
357
|
[[package]]
|
312
358
|
name = "chrono"
|
313
|
-
version = "0.4.
|
359
|
+
version = "0.4.39"
|
314
360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
315
|
-
checksum = "
|
361
|
+
checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
|
316
362
|
dependencies = [
|
317
363
|
"android-tzdata",
|
318
364
|
"iana-time-zone",
|
@@ -325,9 +371,9 @@ dependencies = [
|
|
325
371
|
|
326
372
|
[[package]]
|
327
373
|
name = "chrono-tz"
|
328
|
-
version = "0.
|
374
|
+
version = "0.10.0"
|
329
375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
330
|
-
checksum = "
|
376
|
+
checksum = "cd6dd8046d00723a59a2f8c5f295c515b9bb9a331ee4f8f3d4dd49e428acd3b6"
|
331
377
|
dependencies = [
|
332
378
|
"chrono",
|
333
379
|
"chrono-tz-build",
|
@@ -336,12 +382,11 @@ dependencies = [
|
|
336
382
|
|
337
383
|
[[package]]
|
338
384
|
name = "chrono-tz-build"
|
339
|
-
version = "0.
|
385
|
+
version = "0.4.0"
|
340
386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
341
|
-
checksum = "
|
387
|
+
checksum = "e94fea34d77a245229e7746bd2beb786cd2a896f306ff491fb8cecb3074b10a7"
|
342
388
|
dependencies = [
|
343
389
|
"parse-zoneinfo",
|
344
|
-
"phf",
|
345
390
|
"phf_codegen",
|
346
391
|
]
|
347
392
|
|
@@ -358,9 +403,9 @@ dependencies = [
|
|
358
403
|
|
359
404
|
[[package]]
|
360
405
|
name = "comfy-table"
|
361
|
-
version = "7.1.
|
406
|
+
version = "7.1.3"
|
362
407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
363
|
-
checksum = "
|
408
|
+
checksum = "24f165e7b643266ea80cb858aed492ad9280e3e05ce24d4a99d7d7b889b6a4d9"
|
364
409
|
dependencies = [
|
365
410
|
"crossterm",
|
366
411
|
"strum",
|
@@ -383,6 +428,22 @@ dependencies = [
|
|
383
428
|
"static_assertions",
|
384
429
|
]
|
385
430
|
|
431
|
+
[[package]]
|
432
|
+
name = "constant_time_eq"
|
433
|
+
version = "0.3.1"
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
435
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
436
|
+
|
437
|
+
[[package]]
|
438
|
+
name = "core-foundation"
|
439
|
+
version = "0.10.0"
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
441
|
+
checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
|
442
|
+
dependencies = [
|
443
|
+
"core-foundation-sys",
|
444
|
+
"libc",
|
445
|
+
]
|
446
|
+
|
386
447
|
[[package]]
|
387
448
|
name = "core-foundation-sys"
|
388
449
|
version = "0.8.7"
|
@@ -415,18 +476,18 @@ dependencies = [
|
|
415
476
|
|
416
477
|
[[package]]
|
417
478
|
name = "crossbeam-channel"
|
418
|
-
version = "0.5.
|
479
|
+
version = "0.5.14"
|
419
480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
420
|
-
checksum = "
|
481
|
+
checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
|
421
482
|
dependencies = [
|
422
483
|
"crossbeam-utils",
|
423
484
|
]
|
424
485
|
|
425
486
|
[[package]]
|
426
487
|
name = "crossbeam-deque"
|
427
|
-
version = "0.8.
|
488
|
+
version = "0.8.6"
|
428
489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
429
|
-
checksum = "
|
490
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
430
491
|
dependencies = [
|
431
492
|
"crossbeam-epoch",
|
432
493
|
"crossbeam-utils",
|
@@ -443,29 +504,29 @@ dependencies = [
|
|
443
504
|
|
444
505
|
[[package]]
|
445
506
|
name = "crossbeam-queue"
|
446
|
-
version = "0.3.
|
507
|
+
version = "0.3.12"
|
447
508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
448
|
-
checksum = "
|
509
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
449
510
|
dependencies = [
|
450
511
|
"crossbeam-utils",
|
451
512
|
]
|
452
513
|
|
453
514
|
[[package]]
|
454
515
|
name = "crossbeam-utils"
|
455
|
-
version = "0.8.
|
516
|
+
version = "0.8.21"
|
456
517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
457
|
-
checksum = "
|
518
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
458
519
|
|
459
520
|
[[package]]
|
460
521
|
name = "crossterm"
|
461
|
-
version = "0.
|
522
|
+
version = "0.28.1"
|
462
523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
463
|
-
checksum = "
|
524
|
+
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
464
525
|
dependencies = [
|
465
526
|
"bitflags",
|
466
527
|
"crossterm_winapi",
|
467
|
-
"libc",
|
468
528
|
"parking_lot",
|
529
|
+
"rustix",
|
469
530
|
"winapi",
|
470
531
|
]
|
471
532
|
|
@@ -478,6 +539,37 @@ dependencies = [
|
|
478
539
|
"winapi",
|
479
540
|
]
|
480
541
|
|
542
|
+
[[package]]
|
543
|
+
name = "crypto-common"
|
544
|
+
version = "0.1.6"
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
546
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
547
|
+
dependencies = [
|
548
|
+
"generic-array",
|
549
|
+
"typenum",
|
550
|
+
]
|
551
|
+
|
552
|
+
[[package]]
|
553
|
+
name = "digest"
|
554
|
+
version = "0.10.7"
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
556
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
557
|
+
dependencies = [
|
558
|
+
"block-buffer",
|
559
|
+
"crypto-common",
|
560
|
+
]
|
561
|
+
|
562
|
+
[[package]]
|
563
|
+
name = "displaydoc"
|
564
|
+
version = "0.2.5"
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
566
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
567
|
+
dependencies = [
|
568
|
+
"proc-macro2",
|
569
|
+
"quote",
|
570
|
+
"syn 2.0.93",
|
571
|
+
]
|
572
|
+
|
481
573
|
[[package]]
|
482
574
|
name = "dyn-clone"
|
483
575
|
version = "1.0.17"
|
@@ -502,7 +594,7 @@ dependencies = [
|
|
502
594
|
"once_cell",
|
503
595
|
"proc-macro2",
|
504
596
|
"quote",
|
505
|
-
"syn 2.0.
|
597
|
+
"syn 2.0.93",
|
506
598
|
]
|
507
599
|
|
508
600
|
[[package]]
|
@@ -511,6 +603,16 @@ version = "1.0.1"
|
|
511
603
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
512
604
|
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
513
605
|
|
606
|
+
[[package]]
|
607
|
+
name = "errno"
|
608
|
+
version = "0.3.10"
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
610
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
611
|
+
dependencies = [
|
612
|
+
"libc",
|
613
|
+
"windows-sys 0.59.0",
|
614
|
+
]
|
615
|
+
|
514
616
|
[[package]]
|
515
617
|
name = "ethnum"
|
516
618
|
version = "1.5.0"
|
@@ -524,16 +626,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
626
|
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
525
627
|
|
526
628
|
[[package]]
|
527
|
-
name = "fast-
|
528
|
-
version = "0.2.
|
629
|
+
name = "fast-float2"
|
630
|
+
version = "0.2.3"
|
529
631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
530
|
-
checksum = "
|
632
|
+
checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
|
531
633
|
|
532
634
|
[[package]]
|
533
635
|
name = "flate2"
|
534
|
-
version = "1.0.
|
636
|
+
version = "1.0.35"
|
535
637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
536
|
-
checksum = "
|
638
|
+
checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
|
537
639
|
dependencies = [
|
538
640
|
"crc32fast",
|
539
641
|
"miniz_oxide",
|
@@ -541,18 +643,49 @@ dependencies = [
|
|
541
643
|
|
542
644
|
[[package]]
|
543
645
|
name = "float-cmp"
|
544
|
-
version = "0.
|
646
|
+
version = "0.10.0"
|
545
647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
546
|
-
checksum = "
|
648
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
547
649
|
dependencies = [
|
548
650
|
"num-traits",
|
549
651
|
]
|
550
652
|
|
653
|
+
[[package]]
|
654
|
+
name = "fnv"
|
655
|
+
version = "1.0.7"
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
657
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
658
|
+
|
659
|
+
[[package]]
|
660
|
+
name = "foldhash"
|
661
|
+
version = "0.1.4"
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
663
|
+
checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
|
664
|
+
|
665
|
+
[[package]]
|
666
|
+
name = "form_urlencoded"
|
667
|
+
version = "1.2.1"
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
669
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
670
|
+
dependencies = [
|
671
|
+
"percent-encoding",
|
672
|
+
]
|
673
|
+
|
674
|
+
[[package]]
|
675
|
+
name = "fs4"
|
676
|
+
version = "0.12.0"
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
678
|
+
checksum = "c29c30684418547d476f0b48e84f4821639119c483b1eccd566c8cd0cd05f521"
|
679
|
+
dependencies = [
|
680
|
+
"rustix",
|
681
|
+
"windows-sys 0.52.0",
|
682
|
+
]
|
683
|
+
|
551
684
|
[[package]]
|
552
685
|
name = "futures"
|
553
|
-
version = "0.3.
|
686
|
+
version = "0.3.31"
|
554
687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
555
|
-
checksum = "
|
688
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
556
689
|
dependencies = [
|
557
690
|
"futures-channel",
|
558
691
|
"futures-core",
|
@@ -565,9 +698,9 @@ dependencies = [
|
|
565
698
|
|
566
699
|
[[package]]
|
567
700
|
name = "futures-channel"
|
568
|
-
version = "0.3.
|
701
|
+
version = "0.3.31"
|
569
702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
570
|
-
checksum = "
|
703
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
571
704
|
dependencies = [
|
572
705
|
"futures-core",
|
573
706
|
"futures-sink",
|
@@ -575,15 +708,15 @@ dependencies = [
|
|
575
708
|
|
576
709
|
[[package]]
|
577
710
|
name = "futures-core"
|
578
|
-
version = "0.3.
|
711
|
+
version = "0.3.31"
|
579
712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
580
|
-
checksum = "
|
713
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
581
714
|
|
582
715
|
[[package]]
|
583
716
|
name = "futures-executor"
|
584
|
-
version = "0.3.
|
717
|
+
version = "0.3.31"
|
585
718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
586
|
-
checksum = "
|
719
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
587
720
|
dependencies = [
|
588
721
|
"futures-core",
|
589
722
|
"futures-task",
|
@@ -592,38 +725,38 @@ dependencies = [
|
|
592
725
|
|
593
726
|
[[package]]
|
594
727
|
name = "futures-io"
|
595
|
-
version = "0.3.
|
728
|
+
version = "0.3.31"
|
596
729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
597
|
-
checksum = "
|
730
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
598
731
|
|
599
732
|
[[package]]
|
600
733
|
name = "futures-macro"
|
601
|
-
version = "0.3.
|
734
|
+
version = "0.3.31"
|
602
735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
603
|
-
checksum = "
|
736
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
604
737
|
dependencies = [
|
605
738
|
"proc-macro2",
|
606
739
|
"quote",
|
607
|
-
"syn 2.0.
|
740
|
+
"syn 2.0.93",
|
608
741
|
]
|
609
742
|
|
610
743
|
[[package]]
|
611
744
|
name = "futures-sink"
|
612
|
-
version = "0.3.
|
745
|
+
version = "0.3.31"
|
613
746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
614
|
-
checksum = "
|
747
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
615
748
|
|
616
749
|
[[package]]
|
617
750
|
name = "futures-task"
|
618
|
-
version = "0.3.
|
751
|
+
version = "0.3.31"
|
619
752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
620
|
-
checksum = "
|
753
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
621
754
|
|
622
755
|
[[package]]
|
623
756
|
name = "futures-util"
|
624
|
-
version = "0.3.
|
757
|
+
version = "0.3.31"
|
625
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
626
|
-
checksum = "
|
759
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
627
760
|
dependencies = [
|
628
761
|
"futures-channel",
|
629
762
|
"futures-core",
|
@@ -637,6 +770,16 @@ dependencies = [
|
|
637
770
|
"slab",
|
638
771
|
]
|
639
772
|
|
773
|
+
[[package]]
|
774
|
+
name = "generic-array"
|
775
|
+
version = "0.14.7"
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
777
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
778
|
+
dependencies = [
|
779
|
+
"typenum",
|
780
|
+
"version_check",
|
781
|
+
]
|
782
|
+
|
640
783
|
[[package]]
|
641
784
|
name = "getrandom"
|
642
785
|
version = "0.2.15"
|
@@ -652,15 +795,34 @@ dependencies = [
|
|
652
795
|
|
653
796
|
[[package]]
|
654
797
|
name = "gimli"
|
655
|
-
version = "0.31.
|
798
|
+
version = "0.31.1"
|
656
799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
657
|
-
checksum = "
|
800
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
658
801
|
|
659
802
|
[[package]]
|
660
803
|
name = "glob"
|
661
|
-
version = "0.3.
|
804
|
+
version = "0.3.2"
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
806
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
807
|
+
|
808
|
+
[[package]]
|
809
|
+
name = "h2"
|
810
|
+
version = "0.4.7"
|
662
811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
663
|
-
checksum = "
|
812
|
+
checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e"
|
813
|
+
dependencies = [
|
814
|
+
"atomic-waker",
|
815
|
+
"bytes",
|
816
|
+
"fnv",
|
817
|
+
"futures-core",
|
818
|
+
"futures-sink",
|
819
|
+
"http",
|
820
|
+
"indexmap",
|
821
|
+
"slab",
|
822
|
+
"tokio",
|
823
|
+
"tokio-util",
|
824
|
+
"tracing",
|
825
|
+
]
|
664
826
|
|
665
827
|
[[package]]
|
666
828
|
name = "halfbrown"
|
@@ -668,7 +830,7 @@ version = "0.2.5"
|
|
668
830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
669
831
|
checksum = "8588661a8607108a5ca69cab034063441a0413a0b041c13618a7dd348021ef6f"
|
670
832
|
dependencies = [
|
671
|
-
"hashbrown",
|
833
|
+
"hashbrown 0.14.5",
|
672
834
|
"serde",
|
673
835
|
]
|
674
836
|
|
@@ -685,16 +847,23 @@ dependencies = [
|
|
685
847
|
]
|
686
848
|
|
687
849
|
[[package]]
|
688
|
-
name = "
|
689
|
-
version = "0.
|
850
|
+
name = "hashbrown"
|
851
|
+
version = "0.15.2"
|
690
852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
691
|
-
checksum = "
|
853
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
854
|
+
dependencies = [
|
855
|
+
"allocator-api2",
|
856
|
+
"equivalent",
|
857
|
+
"foldhash",
|
858
|
+
"rayon",
|
859
|
+
"serde",
|
860
|
+
]
|
692
861
|
|
693
862
|
[[package]]
|
694
|
-
name = "
|
695
|
-
version = "0.
|
863
|
+
name = "heck"
|
864
|
+
version = "0.5.0"
|
696
865
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
697
|
-
checksum = "
|
866
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
698
867
|
|
699
868
|
[[package]]
|
700
869
|
name = "hex"
|
@@ -704,202 +873,396 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
704
873
|
|
705
874
|
[[package]]
|
706
875
|
name = "home"
|
707
|
-
version = "0.5.
|
708
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
709
|
-
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
710
|
-
dependencies = [
|
711
|
-
"windows-sys 0.52.0",
|
712
|
-
]
|
713
|
-
|
714
|
-
[[package]]
|
715
|
-
name = "iana-time-zone"
|
716
|
-
version = "0.1.60"
|
876
|
+
version = "0.5.11"
|
717
877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
718
|
-
checksum = "
|
878
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
719
879
|
dependencies = [
|
720
|
-
"
|
721
|
-
"core-foundation-sys",
|
722
|
-
"iana-time-zone-haiku",
|
723
|
-
"js-sys",
|
724
|
-
"wasm-bindgen",
|
725
|
-
"windows-core 0.52.0",
|
880
|
+
"windows-sys 0.59.0",
|
726
881
|
]
|
727
882
|
|
728
883
|
[[package]]
|
729
|
-
name = "
|
730
|
-
version = "
|
884
|
+
name = "http"
|
885
|
+
version = "1.2.0"
|
731
886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
732
|
-
checksum = "
|
887
|
+
checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
|
733
888
|
dependencies = [
|
734
|
-
"
|
889
|
+
"bytes",
|
890
|
+
"fnv",
|
891
|
+
"itoa",
|
735
892
|
]
|
736
893
|
|
737
894
|
[[package]]
|
738
|
-
name = "
|
739
|
-
version = "
|
895
|
+
name = "http-body"
|
896
|
+
version = "1.0.1"
|
740
897
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
741
|
-
checksum = "
|
898
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
742
899
|
dependencies = [
|
743
|
-
"
|
744
|
-
"
|
745
|
-
"serde",
|
900
|
+
"bytes",
|
901
|
+
"http",
|
746
902
|
]
|
747
903
|
|
748
904
|
[[package]]
|
749
|
-
name = "
|
750
|
-
version = "0.
|
905
|
+
name = "http-body-util"
|
906
|
+
version = "0.1.2"
|
751
907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
752
|
-
checksum = "
|
908
|
+
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
|
753
909
|
dependencies = [
|
754
|
-
"
|
910
|
+
"bytes",
|
911
|
+
"futures-util",
|
912
|
+
"http",
|
913
|
+
"http-body",
|
914
|
+
"pin-project-lite",
|
755
915
|
]
|
756
916
|
|
757
917
|
[[package]]
|
758
|
-
name = "
|
759
|
-
version = "1.
|
918
|
+
name = "httparse"
|
919
|
+
version = "1.9.5"
|
760
920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
761
|
-
checksum = "
|
921
|
+
checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
|
762
922
|
|
763
923
|
[[package]]
|
764
|
-
name = "
|
765
|
-
version = "1.0
|
924
|
+
name = "humantime"
|
925
|
+
version = "2.1.0"
|
766
926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
767
|
-
checksum = "
|
927
|
+
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
768
928
|
|
769
929
|
[[package]]
|
770
|
-
name = "
|
771
|
-
version = "
|
930
|
+
name = "hyper"
|
931
|
+
version = "1.5.2"
|
772
932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
773
|
-
checksum = "
|
933
|
+
checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0"
|
774
934
|
dependencies = [
|
775
|
-
"
|
776
|
-
"
|
935
|
+
"bytes",
|
936
|
+
"futures-channel",
|
937
|
+
"futures-util",
|
938
|
+
"h2",
|
939
|
+
"http",
|
940
|
+
"http-body",
|
941
|
+
"httparse",
|
942
|
+
"itoa",
|
943
|
+
"pin-project-lite",
|
944
|
+
"smallvec",
|
945
|
+
"tokio",
|
946
|
+
"want",
|
777
947
|
]
|
778
948
|
|
779
949
|
[[package]]
|
780
|
-
name = "
|
781
|
-
version = "0.5
|
950
|
+
name = "hyper-rustls"
|
951
|
+
version = "0.27.5"
|
782
952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
783
|
-
checksum = "
|
953
|
+
checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
|
784
954
|
dependencies = [
|
785
|
-
"
|
786
|
-
"
|
955
|
+
"futures-util",
|
956
|
+
"http",
|
957
|
+
"hyper",
|
958
|
+
"hyper-util",
|
959
|
+
"rustls",
|
960
|
+
"rustls-native-certs",
|
961
|
+
"rustls-pki-types",
|
962
|
+
"tokio",
|
963
|
+
"tokio-rustls",
|
964
|
+
"tower-service",
|
787
965
|
]
|
788
966
|
|
789
967
|
[[package]]
|
790
|
-
name = "
|
791
|
-
version = "0.1.
|
968
|
+
name = "hyper-util"
|
969
|
+
version = "0.1.10"
|
792
970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
793
|
-
checksum = "
|
971
|
+
checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
|
794
972
|
dependencies = [
|
795
|
-
"
|
973
|
+
"bytes",
|
974
|
+
"futures-channel",
|
975
|
+
"futures-util",
|
976
|
+
"http",
|
977
|
+
"http-body",
|
978
|
+
"hyper",
|
979
|
+
"pin-project-lite",
|
980
|
+
"socket2",
|
981
|
+
"tokio",
|
982
|
+
"tower-service",
|
983
|
+
"tracing",
|
796
984
|
]
|
797
985
|
|
798
986
|
[[package]]
|
799
|
-
name = "
|
800
|
-
version = "0.
|
987
|
+
name = "iana-time-zone"
|
988
|
+
version = "0.1.61"
|
801
989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
802
|
-
checksum = "
|
990
|
+
checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
|
803
991
|
dependencies = [
|
992
|
+
"android_system_properties",
|
993
|
+
"core-foundation-sys",
|
994
|
+
"iana-time-zone-haiku",
|
995
|
+
"js-sys",
|
804
996
|
"wasm-bindgen",
|
997
|
+
"windows-core 0.52.0",
|
805
998
|
]
|
806
999
|
|
807
1000
|
[[package]]
|
808
|
-
name = "
|
809
|
-
version = "0.
|
1001
|
+
name = "iana-time-zone-haiku"
|
1002
|
+
version = "0.1.2"
|
810
1003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
811
|
-
checksum = "
|
1004
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
812
1005
|
dependencies = [
|
813
|
-
"
|
814
|
-
"serde",
|
815
|
-
"serde_json",
|
1006
|
+
"cc",
|
816
1007
|
]
|
817
1008
|
|
818
1009
|
[[package]]
|
819
|
-
name = "
|
1010
|
+
name = "icu_collections"
|
820
1011
|
version = "1.5.0"
|
821
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
822
|
-
checksum = "
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
1013
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
1014
|
+
dependencies = [
|
1015
|
+
"displaydoc",
|
1016
|
+
"yoke",
|
1017
|
+
"zerofrom",
|
1018
|
+
"zerovec",
|
1019
|
+
]
|
829
1020
|
|
830
1021
|
[[package]]
|
831
|
-
name = "
|
832
|
-
version = "
|
1022
|
+
name = "icu_locid"
|
1023
|
+
version = "1.5.0"
|
833
1024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
834
|
-
checksum = "
|
1025
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
835
1026
|
dependencies = [
|
836
|
-
"
|
837
|
-
"
|
838
|
-
"
|
839
|
-
"
|
840
|
-
"
|
1027
|
+
"displaydoc",
|
1028
|
+
"litemap",
|
1029
|
+
"tinystr",
|
1030
|
+
"writeable",
|
1031
|
+
"zerovec",
|
841
1032
|
]
|
842
1033
|
|
843
1034
|
[[package]]
|
844
|
-
name = "
|
845
|
-
version = "
|
1035
|
+
name = "icu_locid_transform"
|
1036
|
+
version = "1.5.0"
|
846
1037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
847
|
-
checksum = "
|
1038
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
848
1039
|
dependencies = [
|
849
|
-
"
|
850
|
-
"
|
851
|
-
"
|
1040
|
+
"displaydoc",
|
1041
|
+
"icu_locid",
|
1042
|
+
"icu_locid_transform_data",
|
1043
|
+
"icu_provider",
|
1044
|
+
"tinystr",
|
1045
|
+
"zerovec",
|
852
1046
|
]
|
853
1047
|
|
854
1048
|
[[package]]
|
855
|
-
name = "
|
856
|
-
version = "
|
1049
|
+
name = "icu_locid_transform_data"
|
1050
|
+
version = "1.5.0"
|
857
1051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
858
|
-
checksum = "
|
859
|
-
dependencies = [
|
860
|
-
"lexical-util",
|
861
|
-
"static_assertions",
|
862
|
-
]
|
1052
|
+
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
863
1053
|
|
864
1054
|
[[package]]
|
865
|
-
name = "
|
866
|
-
version = "
|
1055
|
+
name = "icu_normalizer"
|
1056
|
+
version = "1.5.0"
|
867
1057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
868
|
-
checksum = "
|
1058
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
869
1059
|
dependencies = [
|
870
|
-
"
|
1060
|
+
"displaydoc",
|
1061
|
+
"icu_collections",
|
1062
|
+
"icu_normalizer_data",
|
1063
|
+
"icu_properties",
|
1064
|
+
"icu_provider",
|
1065
|
+
"smallvec",
|
1066
|
+
"utf16_iter",
|
1067
|
+
"utf8_iter",
|
1068
|
+
"write16",
|
1069
|
+
"zerovec",
|
871
1070
|
]
|
872
1071
|
|
873
1072
|
[[package]]
|
874
|
-
name = "
|
875
|
-
version = "
|
1073
|
+
name = "icu_normalizer_data"
|
1074
|
+
version = "1.5.0"
|
876
1075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
877
|
-
checksum = "
|
878
|
-
dependencies = [
|
879
|
-
"lexical-util",
|
880
|
-
"lexical-write-integer",
|
881
|
-
"static_assertions",
|
882
|
-
]
|
1076
|
+
checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
|
883
1077
|
|
884
1078
|
[[package]]
|
885
|
-
name = "
|
886
|
-
version = "
|
1079
|
+
name = "icu_properties"
|
1080
|
+
version = "1.5.1"
|
887
1081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
888
|
-
checksum = "
|
1082
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
889
1083
|
dependencies = [
|
890
|
-
"
|
891
|
-
"
|
1084
|
+
"displaydoc",
|
1085
|
+
"icu_collections",
|
1086
|
+
"icu_locid_transform",
|
1087
|
+
"icu_properties_data",
|
1088
|
+
"icu_provider",
|
1089
|
+
"tinystr",
|
1090
|
+
"zerovec",
|
892
1091
|
]
|
893
1092
|
|
894
1093
|
[[package]]
|
895
|
-
name = "
|
896
|
-
version = "
|
1094
|
+
name = "icu_properties_data"
|
1095
|
+
version = "1.5.0"
|
897
1096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
898
|
-
checksum = "
|
1097
|
+
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
|
899
1098
|
|
900
1099
|
[[package]]
|
901
|
-
name = "
|
902
|
-
version = "1.
|
1100
|
+
name = "icu_provider"
|
1101
|
+
version = "1.5.0"
|
1102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1103
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
1104
|
+
dependencies = [
|
1105
|
+
"displaydoc",
|
1106
|
+
"icu_locid",
|
1107
|
+
"icu_provider_macros",
|
1108
|
+
"stable_deref_trait",
|
1109
|
+
"tinystr",
|
1110
|
+
"writeable",
|
1111
|
+
"yoke",
|
1112
|
+
"zerofrom",
|
1113
|
+
"zerovec",
|
1114
|
+
]
|
1115
|
+
|
1116
|
+
[[package]]
|
1117
|
+
name = "icu_provider_macros"
|
1118
|
+
version = "1.5.0"
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1120
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
1121
|
+
dependencies = [
|
1122
|
+
"proc-macro2",
|
1123
|
+
"quote",
|
1124
|
+
"syn 2.0.93",
|
1125
|
+
]
|
1126
|
+
|
1127
|
+
[[package]]
|
1128
|
+
name = "idna"
|
1129
|
+
version = "1.0.3"
|
1130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1131
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
1132
|
+
dependencies = [
|
1133
|
+
"idna_adapter",
|
1134
|
+
"smallvec",
|
1135
|
+
"utf8_iter",
|
1136
|
+
]
|
1137
|
+
|
1138
|
+
[[package]]
|
1139
|
+
name = "idna_adapter"
|
1140
|
+
version = "1.2.0"
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1142
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
1143
|
+
dependencies = [
|
1144
|
+
"icu_normalizer",
|
1145
|
+
"icu_properties",
|
1146
|
+
]
|
1147
|
+
|
1148
|
+
[[package]]
|
1149
|
+
name = "indexmap"
|
1150
|
+
version = "2.7.0"
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1152
|
+
checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
|
1153
|
+
dependencies = [
|
1154
|
+
"equivalent",
|
1155
|
+
"hashbrown 0.15.2",
|
1156
|
+
"serde",
|
1157
|
+
]
|
1158
|
+
|
1159
|
+
[[package]]
|
1160
|
+
name = "ipnet"
|
1161
|
+
version = "2.10.1"
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1163
|
+
checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
|
1164
|
+
|
1165
|
+
[[package]]
|
1166
|
+
name = "itertools"
|
1167
|
+
version = "0.12.1"
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1169
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
1170
|
+
dependencies = [
|
1171
|
+
"either",
|
1172
|
+
]
|
1173
|
+
|
1174
|
+
[[package]]
|
1175
|
+
name = "itertools"
|
1176
|
+
version = "0.13.0"
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1178
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
1179
|
+
dependencies = [
|
1180
|
+
"either",
|
1181
|
+
]
|
1182
|
+
|
1183
|
+
[[package]]
|
1184
|
+
name = "itoa"
|
1185
|
+
version = "1.0.14"
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1187
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
1188
|
+
|
1189
|
+
[[package]]
|
1190
|
+
name = "itoap"
|
1191
|
+
version = "1.0.1"
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1193
|
+
checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
|
1194
|
+
|
1195
|
+
[[package]]
|
1196
|
+
name = "jemalloc-sys"
|
1197
|
+
version = "0.5.4+5.3.0-patched"
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1199
|
+
checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2"
|
1200
|
+
dependencies = [
|
1201
|
+
"cc",
|
1202
|
+
"libc",
|
1203
|
+
]
|
1204
|
+
|
1205
|
+
[[package]]
|
1206
|
+
name = "jemallocator"
|
1207
|
+
version = "0.5.4"
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1209
|
+
checksum = "a0de374a9f8e63150e6f5e8a60cc14c668226d7a347d8aee1a45766e3c4dd3bc"
|
1210
|
+
dependencies = [
|
1211
|
+
"jemalloc-sys",
|
1212
|
+
"libc",
|
1213
|
+
]
|
1214
|
+
|
1215
|
+
[[package]]
|
1216
|
+
name = "jobserver"
|
1217
|
+
version = "0.1.32"
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1219
|
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
1220
|
+
dependencies = [
|
1221
|
+
"libc",
|
1222
|
+
]
|
1223
|
+
|
1224
|
+
[[package]]
|
1225
|
+
name = "js-sys"
|
1226
|
+
version = "0.3.76"
|
1227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1228
|
+
checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7"
|
1229
|
+
dependencies = [
|
1230
|
+
"once_cell",
|
1231
|
+
"wasm-bindgen",
|
1232
|
+
]
|
1233
|
+
|
1234
|
+
[[package]]
|
1235
|
+
name = "jsonpath_lib_polars_vendor"
|
1236
|
+
version = "0.0.1"
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1238
|
+
checksum = "f4bd9354947622f7471ff713eacaabdb683ccb13bba4edccaab9860abf480b7d"
|
1239
|
+
dependencies = [
|
1240
|
+
"log",
|
1241
|
+
"serde",
|
1242
|
+
"serde_json",
|
1243
|
+
]
|
1244
|
+
|
1245
|
+
[[package]]
|
1246
|
+
name = "lazy_static"
|
1247
|
+
version = "1.5.0"
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1249
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
1250
|
+
|
1251
|
+
[[package]]
|
1252
|
+
name = "lazycell"
|
1253
|
+
version = "1.3.0"
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1255
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
1256
|
+
|
1257
|
+
[[package]]
|
1258
|
+
name = "libc"
|
1259
|
+
version = "0.2.169"
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1261
|
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
1262
|
+
|
1263
|
+
[[package]]
|
1264
|
+
name = "libflate"
|
1265
|
+
version = "1.4.0"
|
903
1266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
904
1267
|
checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18"
|
905
1268
|
dependencies = [
|
@@ -919,9 +1282,9 @@ dependencies = [
|
|
919
1282
|
|
920
1283
|
[[package]]
|
921
1284
|
name = "libloading"
|
922
|
-
version = "0.8.
|
1285
|
+
version = "0.8.6"
|
923
1286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
924
|
-
checksum = "
|
1287
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
925
1288
|
dependencies = [
|
926
1289
|
"cfg-if",
|
927
1290
|
"windows-targets",
|
@@ -929,9 +1292,9 @@ dependencies = [
|
|
929
1292
|
|
930
1293
|
[[package]]
|
931
1294
|
name = "libm"
|
932
|
-
version = "0.2.
|
1295
|
+
version = "0.2.11"
|
933
1296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
934
|
-
checksum = "
|
1297
|
+
checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
|
935
1298
|
|
936
1299
|
[[package]]
|
937
1300
|
name = "libmimalloc-sys"
|
@@ -943,6 +1306,18 @@ dependencies = [
|
|
943
1306
|
"libc",
|
944
1307
|
]
|
945
1308
|
|
1309
|
+
[[package]]
|
1310
|
+
name = "linux-raw-sys"
|
1311
|
+
version = "0.4.14"
|
1312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1313
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
1314
|
+
|
1315
|
+
[[package]]
|
1316
|
+
name = "litemap"
|
1317
|
+
version = "0.7.4"
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1319
|
+
checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
|
1320
|
+
|
946
1321
|
[[package]]
|
947
1322
|
name = "lock_api"
|
948
1323
|
version = "0.4.12"
|
@@ -961,19 +1336,18 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
961
1336
|
|
962
1337
|
[[package]]
|
963
1338
|
name = "lz4"
|
964
|
-
version = "1.
|
1339
|
+
version = "1.28.0"
|
965
1340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
966
|
-
checksum = "
|
1341
|
+
checksum = "4d1febb2b4a79ddd1980eede06a8f7902197960aa0383ffcfdd62fe723036725"
|
967
1342
|
dependencies = [
|
968
|
-
"libc",
|
969
1343
|
"lz4-sys",
|
970
1344
|
]
|
971
1345
|
|
972
1346
|
[[package]]
|
973
1347
|
name = "lz4-sys"
|
974
|
-
version = "1.10.0"
|
1348
|
+
version = "1.11.1+lz4-1.10.0"
|
975
1349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
976
|
-
checksum = "
|
1350
|
+
checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
|
977
1351
|
dependencies = [
|
978
1352
|
"cc",
|
979
1353
|
"libc",
|
@@ -999,7 +1373,17 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
999
1373
|
dependencies = [
|
1000
1374
|
"proc-macro2",
|
1001
1375
|
"quote",
|
1002
|
-
"syn 2.0.
|
1376
|
+
"syn 2.0.93",
|
1377
|
+
]
|
1378
|
+
|
1379
|
+
[[package]]
|
1380
|
+
name = "md-5"
|
1381
|
+
version = "0.10.6"
|
1382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1383
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
1384
|
+
dependencies = [
|
1385
|
+
"cfg-if",
|
1386
|
+
"digest",
|
1003
1387
|
]
|
1004
1388
|
|
1005
1389
|
[[package]]
|
@@ -1010,9 +1394,9 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
1010
1394
|
|
1011
1395
|
[[package]]
|
1012
1396
|
name = "memmap2"
|
1013
|
-
version = "0.
|
1397
|
+
version = "0.9.5"
|
1014
1398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1015
|
-
checksum = "
|
1399
|
+
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
1016
1400
|
dependencies = [
|
1017
1401
|
"libc",
|
1018
1402
|
]
|
@@ -1026,6 +1410,12 @@ dependencies = [
|
|
1026
1410
|
"libmimalloc-sys",
|
1027
1411
|
]
|
1028
1412
|
|
1413
|
+
[[package]]
|
1414
|
+
name = "mime"
|
1415
|
+
version = "0.3.17"
|
1416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1417
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
1418
|
+
|
1029
1419
|
[[package]]
|
1030
1420
|
name = "minimal-lexical"
|
1031
1421
|
version = "0.2.1"
|
@@ -1034,20 +1424,19 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1034
1424
|
|
1035
1425
|
[[package]]
|
1036
1426
|
name = "miniz_oxide"
|
1037
|
-
version = "0.8.
|
1427
|
+
version = "0.8.2"
|
1038
1428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1039
|
-
checksum = "
|
1429
|
+
checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394"
|
1040
1430
|
dependencies = [
|
1041
1431
|
"adler2",
|
1042
1432
|
]
|
1043
1433
|
|
1044
1434
|
[[package]]
|
1045
1435
|
name = "mio"
|
1046
|
-
version = "1.0.
|
1436
|
+
version = "1.0.3"
|
1047
1437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1048
|
-
checksum = "
|
1438
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
1049
1439
|
dependencies = [
|
1050
|
-
"hermit-abi",
|
1051
1440
|
"libc",
|
1052
1441
|
"wasi",
|
1053
1442
|
"windows-sys 0.52.0",
|
@@ -1115,18 +1504,56 @@ dependencies = [
|
|
1115
1504
|
|
1116
1505
|
[[package]]
|
1117
1506
|
name = "object"
|
1118
|
-
version = "0.36.
|
1507
|
+
version = "0.36.7"
|
1119
1508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1120
|
-
checksum = "
|
1509
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
1121
1510
|
dependencies = [
|
1122
1511
|
"memchr",
|
1123
1512
|
]
|
1124
1513
|
|
1514
|
+
[[package]]
|
1515
|
+
name = "object_store"
|
1516
|
+
version = "0.11.2"
|
1517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1518
|
+
checksum = "3cfccb68961a56facde1163f9319e0d15743352344e7808a11795fb99698dcaf"
|
1519
|
+
dependencies = [
|
1520
|
+
"async-trait",
|
1521
|
+
"base64",
|
1522
|
+
"bytes",
|
1523
|
+
"chrono",
|
1524
|
+
"futures",
|
1525
|
+
"httparse",
|
1526
|
+
"humantime",
|
1527
|
+
"hyper",
|
1528
|
+
"itertools 0.13.0",
|
1529
|
+
"md-5",
|
1530
|
+
"parking_lot",
|
1531
|
+
"percent-encoding",
|
1532
|
+
"quick-xml",
|
1533
|
+
"rand",
|
1534
|
+
"reqwest",
|
1535
|
+
"ring",
|
1536
|
+
"rustls-pemfile",
|
1537
|
+
"serde",
|
1538
|
+
"serde_json",
|
1539
|
+
"snafu",
|
1540
|
+
"tokio",
|
1541
|
+
"tracing",
|
1542
|
+
"url",
|
1543
|
+
"walkdir",
|
1544
|
+
]
|
1545
|
+
|
1125
1546
|
[[package]]
|
1126
1547
|
name = "once_cell"
|
1127
|
-
version = "1.
|
1548
|
+
version = "1.20.2"
|
1549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1550
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
1551
|
+
|
1552
|
+
[[package]]
|
1553
|
+
name = "openssl-probe"
|
1554
|
+
version = "0.1.5"
|
1128
1555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1129
|
-
checksum = "
|
1556
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
1130
1557
|
|
1131
1558
|
[[package]]
|
1132
1559
|
name = "parking_lot"
|
@@ -1151,16 +1578,6 @@ dependencies = [
|
|
1151
1578
|
"windows-targets",
|
1152
1579
|
]
|
1153
1580
|
|
1154
|
-
[[package]]
|
1155
|
-
name = "parquet-format-safe"
|
1156
|
-
version = "0.2.4"
|
1157
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1158
|
-
checksum = "1131c54b167dd4e4799ce762e1ab01549ebb94d5bdd13e6ec1b467491c378e1f"
|
1159
|
-
dependencies = [
|
1160
|
-
"async-trait",
|
1161
|
-
"futures",
|
1162
|
-
]
|
1163
|
-
|
1164
1581
|
[[package]]
|
1165
1582
|
name = "parse-zoneinfo"
|
1166
1583
|
version = "0.3.1"
|
@@ -1216,9 +1633,9 @@ dependencies = [
|
|
1216
1633
|
|
1217
1634
|
[[package]]
|
1218
1635
|
name = "pin-project-lite"
|
1219
|
-
version = "0.2.
|
1636
|
+
version = "0.2.15"
|
1220
1637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1221
|
-
checksum = "
|
1638
|
+
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
|
1222
1639
|
|
1223
1640
|
[[package]]
|
1224
1641
|
name = "pin-utils"
|
@@ -1228,9 +1645,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1228
1645
|
|
1229
1646
|
[[package]]
|
1230
1647
|
name = "pkg-config"
|
1231
|
-
version = "0.3.
|
1648
|
+
version = "0.3.31"
|
1232
1649
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1233
|
-
checksum = "
|
1650
|
+
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
1234
1651
|
|
1235
1652
|
[[package]]
|
1236
1653
|
name = "planus"
|
@@ -1243,26 +1660,30 @@ dependencies = [
|
|
1243
1660
|
|
1244
1661
|
[[package]]
|
1245
1662
|
name = "polars"
|
1246
|
-
version = "0.
|
1663
|
+
version = "0.16.0"
|
1247
1664
|
dependencies = [
|
1248
1665
|
"ahash",
|
1666
|
+
"bytes",
|
1249
1667
|
"chrono",
|
1250
1668
|
"either",
|
1251
1669
|
"jemallocator",
|
1252
1670
|
"magnus",
|
1253
1671
|
"mimalloc",
|
1254
|
-
"polars 0.
|
1672
|
+
"polars 0.45.1",
|
1673
|
+
"polars-arrow",
|
1255
1674
|
"polars-core",
|
1256
1675
|
"polars-parquet",
|
1676
|
+
"polars-plan",
|
1257
1677
|
"polars-utils",
|
1678
|
+
"regex",
|
1258
1679
|
"serde_json",
|
1259
1680
|
]
|
1260
1681
|
|
1261
1682
|
[[package]]
|
1262
1683
|
name = "polars"
|
1263
|
-
version = "0.
|
1684
|
+
version = "0.45.1"
|
1264
1685
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1265
|
-
checksum = "
|
1686
|
+
checksum = "0c0af18ae021b0396c42f39396146332957ebc4d4d25d931b4fe73509948f348"
|
1266
1687
|
dependencies = [
|
1267
1688
|
"getrandom",
|
1268
1689
|
"polars-arrow",
|
@@ -1281,13 +1702,12 @@ dependencies = [
|
|
1281
1702
|
|
1282
1703
|
[[package]]
|
1283
1704
|
name = "polars-arrow"
|
1284
|
-
version = "0.
|
1705
|
+
version = "0.45.1"
|
1285
1706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1286
|
-
checksum = "
|
1707
|
+
checksum = "d1fd3c64d50b7f5f328e1566cab9979d4bc1ba2ff22114b301ed2ee0e518dbca"
|
1287
1708
|
dependencies = [
|
1288
1709
|
"ahash",
|
1289
1710
|
"atoi",
|
1290
|
-
"atoi_simd",
|
1291
1711
|
"avro-schema",
|
1292
1712
|
"bytemuck",
|
1293
1713
|
"chrono",
|
@@ -1295,11 +1715,8 @@ dependencies = [
|
|
1295
1715
|
"dyn-clone",
|
1296
1716
|
"either",
|
1297
1717
|
"ethnum",
|
1298
|
-
"fast-float",
|
1299
|
-
"futures",
|
1300
1718
|
"getrandom",
|
1301
|
-
"hashbrown",
|
1302
|
-
"itoa",
|
1719
|
+
"hashbrown 0.15.2",
|
1303
1720
|
"itoap",
|
1304
1721
|
"lz4",
|
1305
1722
|
"multiversion",
|
@@ -1309,11 +1726,11 @@ dependencies = [
|
|
1309
1726
|
"polars-error",
|
1310
1727
|
"polars-schema",
|
1311
1728
|
"polars-utils",
|
1312
|
-
"ryu",
|
1313
1729
|
"serde",
|
1314
1730
|
"simdutf8",
|
1315
1731
|
"streaming-iterator",
|
1316
1732
|
"strength_reduce",
|
1733
|
+
"strum_macros",
|
1317
1734
|
"version_check",
|
1318
1735
|
"zstd",
|
1319
1736
|
]
|
@@ -1330,25 +1747,31 @@ dependencies = [
|
|
1330
1747
|
|
1331
1748
|
[[package]]
|
1332
1749
|
name = "polars-compute"
|
1333
|
-
version = "0.
|
1750
|
+
version = "0.45.1"
|
1334
1751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1335
|
-
checksum = "
|
1752
|
+
checksum = "e60822c245a870113df5a88fb184039501eda0a56bcd0c3f866406ff659df340"
|
1336
1753
|
dependencies = [
|
1754
|
+
"atoi_simd",
|
1337
1755
|
"bytemuck",
|
1756
|
+
"chrono",
|
1338
1757
|
"either",
|
1758
|
+
"fast-float2",
|
1759
|
+
"itoa",
|
1760
|
+
"itoap",
|
1339
1761
|
"num-traits",
|
1340
1762
|
"polars-arrow",
|
1341
1763
|
"polars-error",
|
1342
1764
|
"polars-utils",
|
1765
|
+
"ryu",
|
1343
1766
|
"strength_reduce",
|
1344
1767
|
"version_check",
|
1345
1768
|
]
|
1346
1769
|
|
1347
1770
|
[[package]]
|
1348
1771
|
name = "polars-core"
|
1349
|
-
version = "0.
|
1772
|
+
version = "0.45.1"
|
1350
1773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1351
|
-
checksum = "
|
1774
|
+
checksum = "4794a9e38ef2faf7e47a6f736c7f156c6fbb66cd529f82593b2d48348e422c8d"
|
1352
1775
|
dependencies = [
|
1353
1776
|
"ahash",
|
1354
1777
|
"bitflags",
|
@@ -1357,8 +1780,10 @@ dependencies = [
|
|
1357
1780
|
"chrono-tz",
|
1358
1781
|
"comfy-table",
|
1359
1782
|
"either",
|
1360
|
-
"hashbrown",
|
1783
|
+
"hashbrown 0.14.5",
|
1784
|
+
"hashbrown 0.15.2",
|
1361
1785
|
"indexmap",
|
1786
|
+
"itoa",
|
1362
1787
|
"num-traits",
|
1363
1788
|
"once_cell",
|
1364
1789
|
"polars-arrow",
|
@@ -1373,6 +1798,7 @@ dependencies = [
|
|
1373
1798
|
"regex",
|
1374
1799
|
"serde",
|
1375
1800
|
"serde_json",
|
1801
|
+
"strum_macros",
|
1376
1802
|
"thiserror",
|
1377
1803
|
"version_check",
|
1378
1804
|
"xxhash-rust",
|
@@ -1380,11 +1806,12 @@ dependencies = [
|
|
1380
1806
|
|
1381
1807
|
[[package]]
|
1382
1808
|
name = "polars-error"
|
1383
|
-
version = "0.
|
1809
|
+
version = "0.45.1"
|
1384
1810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1385
|
-
checksum = "
|
1811
|
+
checksum = "100093a164bf6c001487ea528b7504f4be1a6881bcffe279bd6133e8f4b4e4f7"
|
1386
1812
|
dependencies = [
|
1387
1813
|
"avro-schema",
|
1814
|
+
"object_store",
|
1388
1815
|
"polars-arrow-format",
|
1389
1816
|
"regex",
|
1390
1817
|
"simdutf8",
|
@@ -1393,12 +1820,14 @@ dependencies = [
|
|
1393
1820
|
|
1394
1821
|
[[package]]
|
1395
1822
|
name = "polars-expr"
|
1396
|
-
version = "0.
|
1823
|
+
version = "0.45.1"
|
1397
1824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1398
|
-
checksum = "
|
1825
|
+
checksum = "ad56c5ea4d6e0546fbc3fa35918a537b76587600a5118770ed331136249d50d8"
|
1399
1826
|
dependencies = [
|
1400
1827
|
"ahash",
|
1401
1828
|
"bitflags",
|
1829
|
+
"hashbrown 0.15.2",
|
1830
|
+
"num-traits",
|
1402
1831
|
"once_cell",
|
1403
1832
|
"polars-arrow",
|
1404
1833
|
"polars-compute",
|
@@ -1406,32 +1835,37 @@ dependencies = [
|
|
1406
1835
|
"polars-io",
|
1407
1836
|
"polars-ops",
|
1408
1837
|
"polars-plan",
|
1838
|
+
"polars-row",
|
1409
1839
|
"polars-time",
|
1410
1840
|
"polars-utils",
|
1841
|
+
"rand",
|
1411
1842
|
"rayon",
|
1412
1843
|
]
|
1413
1844
|
|
1414
1845
|
[[package]]
|
1415
1846
|
name = "polars-io"
|
1416
|
-
version = "0.
|
1847
|
+
version = "0.45.1"
|
1417
1848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1418
|
-
checksum = "
|
1849
|
+
checksum = "95d774d5971d2092f0588e89d2f0be524dff35ea368272c0810ba54a860e4411"
|
1419
1850
|
dependencies = [
|
1420
1851
|
"ahash",
|
1421
1852
|
"async-trait",
|
1422
1853
|
"atoi_simd",
|
1854
|
+
"blake3",
|
1423
1855
|
"bytes",
|
1424
1856
|
"chrono",
|
1425
1857
|
"chrono-tz",
|
1426
|
-
"fast-
|
1858
|
+
"fast-float2",
|
1859
|
+
"fs4",
|
1427
1860
|
"futures",
|
1428
1861
|
"glob",
|
1429
|
-
"hashbrown",
|
1862
|
+
"hashbrown 0.15.2",
|
1430
1863
|
"home",
|
1431
1864
|
"itoa",
|
1432
1865
|
"memchr",
|
1433
1866
|
"memmap2",
|
1434
1867
|
"num-traits",
|
1868
|
+
"object_store",
|
1435
1869
|
"once_cell",
|
1436
1870
|
"percent-encoding",
|
1437
1871
|
"polars-arrow",
|
@@ -1444,29 +1878,33 @@ dependencies = [
|
|
1444
1878
|
"polars-utils",
|
1445
1879
|
"rayon",
|
1446
1880
|
"regex",
|
1881
|
+
"reqwest",
|
1447
1882
|
"ryu",
|
1448
1883
|
"serde",
|
1884
|
+
"serde_json",
|
1449
1885
|
"simd-json",
|
1450
1886
|
"simdutf8",
|
1451
1887
|
"tokio",
|
1452
1888
|
"tokio-util",
|
1889
|
+
"url",
|
1453
1890
|
]
|
1454
1891
|
|
1455
1892
|
[[package]]
|
1456
1893
|
name = "polars-json"
|
1457
|
-
version = "0.
|
1894
|
+
version = "0.45.1"
|
1458
1895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1459
|
-
checksum = "
|
1896
|
+
checksum = "19d97ebf73da016f4af4e5af8663523137e273e09d1a459e0cf87b5fdfd8f007"
|
1460
1897
|
dependencies = [
|
1461
1898
|
"ahash",
|
1462
1899
|
"chrono",
|
1463
1900
|
"chrono-tz",
|
1464
1901
|
"fallible-streaming-iterator",
|
1465
|
-
"hashbrown",
|
1902
|
+
"hashbrown 0.15.2",
|
1466
1903
|
"indexmap",
|
1467
1904
|
"itoa",
|
1468
1905
|
"num-traits",
|
1469
1906
|
"polars-arrow",
|
1907
|
+
"polars-compute",
|
1470
1908
|
"polars-error",
|
1471
1909
|
"polars-utils",
|
1472
1910
|
"ryu",
|
@@ -1476,12 +1914,13 @@ dependencies = [
|
|
1476
1914
|
|
1477
1915
|
[[package]]
|
1478
1916
|
name = "polars-lazy"
|
1479
|
-
version = "0.
|
1917
|
+
version = "0.45.1"
|
1480
1918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1481
|
-
checksum = "
|
1919
|
+
checksum = "fa457bfa96f45cf14c33507eaa3ebcec6a8d52e7f7fc60cd23f338631369d417"
|
1482
1920
|
dependencies = [
|
1483
1921
|
"ahash",
|
1484
1922
|
"bitflags",
|
1923
|
+
"futures",
|
1485
1924
|
"memchr",
|
1486
1925
|
"once_cell",
|
1487
1926
|
"polars-arrow",
|
@@ -1493,18 +1932,21 @@ dependencies = [
|
|
1493
1932
|
"polars-ops",
|
1494
1933
|
"polars-pipe",
|
1495
1934
|
"polars-plan",
|
1935
|
+
"polars-stream",
|
1496
1936
|
"polars-time",
|
1497
1937
|
"polars-utils",
|
1498
1938
|
"rayon",
|
1939
|
+
"tokio",
|
1499
1940
|
"version_check",
|
1500
1941
|
]
|
1501
1942
|
|
1502
1943
|
[[package]]
|
1503
1944
|
name = "polars-mem-engine"
|
1504
|
-
version = "0.
|
1945
|
+
version = "0.45.1"
|
1505
1946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1506
|
-
checksum = "
|
1947
|
+
checksum = "f73aa56fc0a4c1e9d56b4a4485800f4780ca214030d32d0150eccc44f71d6dab"
|
1507
1948
|
dependencies = [
|
1949
|
+
"futures",
|
1508
1950
|
"memmap2",
|
1509
1951
|
"polars-arrow",
|
1510
1952
|
"polars-core",
|
@@ -1517,13 +1959,14 @@ dependencies = [
|
|
1517
1959
|
"polars-time",
|
1518
1960
|
"polars-utils",
|
1519
1961
|
"rayon",
|
1962
|
+
"tokio",
|
1520
1963
|
]
|
1521
1964
|
|
1522
1965
|
[[package]]
|
1523
1966
|
name = "polars-ops"
|
1524
|
-
version = "0.
|
1967
|
+
version = "0.45.1"
|
1525
1968
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1526
|
-
checksum = "
|
1969
|
+
checksum = "b267480495ffe382dab63318e3c6bf4073bb82971c8b80294d079293fece458b"
|
1527
1970
|
dependencies = [
|
1528
1971
|
"ahash",
|
1529
1972
|
"aho-corasick",
|
@@ -1533,7 +1976,7 @@ dependencies = [
|
|
1533
1976
|
"chrono",
|
1534
1977
|
"chrono-tz",
|
1535
1978
|
"either",
|
1536
|
-
"hashbrown",
|
1979
|
+
"hashbrown 0.15.2",
|
1537
1980
|
"hex",
|
1538
1981
|
"indexmap",
|
1539
1982
|
"jsonpath_lib_polars_vendor",
|
@@ -1550,17 +1993,19 @@ dependencies = [
|
|
1550
1993
|
"rand_distr",
|
1551
1994
|
"rayon",
|
1552
1995
|
"regex",
|
1996
|
+
"regex-syntax",
|
1553
1997
|
"serde",
|
1554
1998
|
"serde_json",
|
1999
|
+
"strum_macros",
|
1555
2000
|
"unicode-reverse",
|
1556
2001
|
"version_check",
|
1557
2002
|
]
|
1558
2003
|
|
1559
2004
|
[[package]]
|
1560
2005
|
name = "polars-parquet"
|
1561
|
-
version = "0.
|
2006
|
+
version = "0.45.1"
|
1562
2007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1563
|
-
checksum = "
|
2008
|
+
checksum = "20237f232b1a74b1fae6b5c9bea8c440f2e5d3b5506601b038f0a7a34b84b710"
|
1564
2009
|
dependencies = [
|
1565
2010
|
"ahash",
|
1566
2011
|
"async-stream",
|
@@ -1570,13 +2015,13 @@ dependencies = [
|
|
1570
2015
|
"ethnum",
|
1571
2016
|
"flate2",
|
1572
2017
|
"futures",
|
1573
|
-
"hashbrown",
|
2018
|
+
"hashbrown 0.15.2",
|
1574
2019
|
"lz4",
|
1575
2020
|
"num-traits",
|
1576
|
-
"parquet-format-safe",
|
1577
2021
|
"polars-arrow",
|
1578
2022
|
"polars-compute",
|
1579
2023
|
"polars-error",
|
2024
|
+
"polars-parquet-format",
|
1580
2025
|
"polars-utils",
|
1581
2026
|
"serde",
|
1582
2027
|
"simdutf8",
|
@@ -1585,17 +2030,27 @@ dependencies = [
|
|
1585
2030
|
"zstd",
|
1586
2031
|
]
|
1587
2032
|
|
2033
|
+
[[package]]
|
2034
|
+
name = "polars-parquet-format"
|
2035
|
+
version = "0.1.0"
|
2036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2037
|
+
checksum = "c025243dcfe8dbc57e94d9f82eb3bef10b565ab180d5b99bed87fd8aea319ce1"
|
2038
|
+
dependencies = [
|
2039
|
+
"async-trait",
|
2040
|
+
"futures",
|
2041
|
+
]
|
2042
|
+
|
1588
2043
|
[[package]]
|
1589
2044
|
name = "polars-pipe"
|
1590
|
-
version = "0.
|
2045
|
+
version = "0.45.1"
|
1591
2046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1592
|
-
checksum = "
|
2047
|
+
checksum = "82e3066f4fea8e55e72eba54ffe20ebdf08f63b9691aba8ea1135c3aeb9c2c7e"
|
1593
2048
|
dependencies = [
|
1594
2049
|
"crossbeam-channel",
|
1595
2050
|
"crossbeam-queue",
|
1596
2051
|
"enum_dispatch",
|
1597
2052
|
"futures",
|
1598
|
-
"hashbrown",
|
2053
|
+
"hashbrown 0.15.2",
|
1599
2054
|
"num-traits",
|
1600
2055
|
"polars-arrow",
|
1601
2056
|
"polars-compute",
|
@@ -1607,15 +2062,16 @@ dependencies = [
|
|
1607
2062
|
"polars-row",
|
1608
2063
|
"polars-utils",
|
1609
2064
|
"rayon",
|
2065
|
+
"tokio",
|
1610
2066
|
"uuid",
|
1611
2067
|
"version_check",
|
1612
2068
|
]
|
1613
2069
|
|
1614
2070
|
[[package]]
|
1615
2071
|
name = "polars-plan"
|
1616
|
-
version = "0.
|
2072
|
+
version = "0.45.1"
|
1617
2073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1618
|
-
checksum = "
|
2074
|
+
checksum = "99a3832887671df1eb326df52cbfcc47789d3d58454c1084a154b48b240175e2"
|
1619
2075
|
dependencies = [
|
1620
2076
|
"ahash",
|
1621
2077
|
"bitflags",
|
@@ -1624,11 +2080,14 @@ dependencies = [
|
|
1624
2080
|
"chrono",
|
1625
2081
|
"chrono-tz",
|
1626
2082
|
"either",
|
1627
|
-
"
|
2083
|
+
"futures",
|
2084
|
+
"hashbrown 0.15.2",
|
1628
2085
|
"memmap2",
|
2086
|
+
"num-traits",
|
1629
2087
|
"once_cell",
|
1630
2088
|
"percent-encoding",
|
1631
2089
|
"polars-arrow",
|
2090
|
+
"polars-compute",
|
1632
2091
|
"polars-core",
|
1633
2092
|
"polars-io",
|
1634
2093
|
"polars-json",
|
@@ -1646,21 +2105,23 @@ dependencies = [
|
|
1646
2105
|
|
1647
2106
|
[[package]]
|
1648
2107
|
name = "polars-row"
|
1649
|
-
version = "0.
|
2108
|
+
version = "0.45.1"
|
1650
2109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1651
|
-
checksum = "
|
2110
|
+
checksum = "8e36350fb8a90238e02c8ece0f0c4c24f3374197e9c08c1c22cc8b9c526e6c25"
|
1652
2111
|
dependencies = [
|
2112
|
+
"bitflags",
|
1653
2113
|
"bytemuck",
|
1654
2114
|
"polars-arrow",
|
2115
|
+
"polars-compute",
|
1655
2116
|
"polars-error",
|
1656
2117
|
"polars-utils",
|
1657
2118
|
]
|
1658
2119
|
|
1659
2120
|
[[package]]
|
1660
2121
|
name = "polars-schema"
|
1661
|
-
version = "0.
|
2122
|
+
version = "0.45.1"
|
1662
2123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1663
|
-
checksum = "
|
2124
|
+
checksum = "8c6aa4913cffc522cea3ccbc0cafb350bec18fed0a1ef8d417ac88ea320d7749"
|
1664
2125
|
dependencies = [
|
1665
2126
|
"indexmap",
|
1666
2127
|
"polars-error",
|
@@ -1671,9 +2132,9 @@ dependencies = [
|
|
1671
2132
|
|
1672
2133
|
[[package]]
|
1673
2134
|
name = "polars-sql"
|
1674
|
-
version = "0.
|
2135
|
+
version = "0.45.1"
|
1675
2136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1676
|
-
checksum = "
|
2137
|
+
checksum = "c62a2247028629b1db384437a9f2792488f0ddb539ec16fb46a5e2bceeba6dbc"
|
1677
2138
|
dependencies = [
|
1678
2139
|
"hex",
|
1679
2140
|
"once_cell",
|
@@ -1691,11 +2152,41 @@ dependencies = [
|
|
1691
2152
|
"sqlparser",
|
1692
2153
|
]
|
1693
2154
|
|
2155
|
+
[[package]]
|
2156
|
+
name = "polars-stream"
|
2157
|
+
version = "0.45.1"
|
2158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2159
|
+
checksum = "b8cd9da4b063146c3ab7c08678a52eb9d466ade4f4c8617605a5a3ea063002c6"
|
2160
|
+
dependencies = [
|
2161
|
+
"atomic-waker",
|
2162
|
+
"crossbeam-deque",
|
2163
|
+
"crossbeam-utils",
|
2164
|
+
"futures",
|
2165
|
+
"memmap2",
|
2166
|
+
"parking_lot",
|
2167
|
+
"pin-project-lite",
|
2168
|
+
"polars-core",
|
2169
|
+
"polars-error",
|
2170
|
+
"polars-expr",
|
2171
|
+
"polars-io",
|
2172
|
+
"polars-mem-engine",
|
2173
|
+
"polars-ops",
|
2174
|
+
"polars-parquet",
|
2175
|
+
"polars-plan",
|
2176
|
+
"polars-utils",
|
2177
|
+
"rand",
|
2178
|
+
"rayon",
|
2179
|
+
"recursive",
|
2180
|
+
"slotmap",
|
2181
|
+
"tokio",
|
2182
|
+
"version_check",
|
2183
|
+
]
|
2184
|
+
|
1694
2185
|
[[package]]
|
1695
2186
|
name = "polars-time"
|
1696
|
-
version = "0.
|
2187
|
+
version = "0.45.1"
|
1697
2188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1698
|
-
checksum = "
|
2189
|
+
checksum = "12f005c3441eed1a96464305f73e197813cbae7894ff6712726a1182e31f52b4"
|
1699
2190
|
dependencies = [
|
1700
2191
|
"atoi",
|
1701
2192
|
"bytemuck",
|
@@ -1704,31 +2195,34 @@ dependencies = [
|
|
1704
2195
|
"now",
|
1705
2196
|
"once_cell",
|
1706
2197
|
"polars-arrow",
|
2198
|
+
"polars-compute",
|
1707
2199
|
"polars-core",
|
1708
2200
|
"polars-error",
|
1709
2201
|
"polars-ops",
|
1710
2202
|
"polars-utils",
|
1711
2203
|
"regex",
|
1712
2204
|
"serde",
|
2205
|
+
"strum_macros",
|
1713
2206
|
]
|
1714
2207
|
|
1715
2208
|
[[package]]
|
1716
2209
|
name = "polars-utils"
|
1717
|
-
version = "0.
|
2210
|
+
version = "0.45.1"
|
1718
2211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1719
|
-
checksum = "
|
2212
|
+
checksum = "e0fc010eea42ad113b641aa53106e4d6e474650c73573d959a546eed0ce6d479"
|
1720
2213
|
dependencies = [
|
1721
2214
|
"ahash",
|
1722
2215
|
"bytemuck",
|
1723
2216
|
"bytes",
|
1724
2217
|
"compact_str",
|
1725
|
-
"hashbrown",
|
2218
|
+
"hashbrown 0.15.2",
|
1726
2219
|
"indexmap",
|
1727
2220
|
"libc",
|
1728
2221
|
"memmap2",
|
1729
2222
|
"num-traits",
|
1730
2223
|
"once_cell",
|
1731
2224
|
"polars-error",
|
2225
|
+
"rand",
|
1732
2226
|
"raw-cpuid",
|
1733
2227
|
"rayon",
|
1734
2228
|
"serde",
|
@@ -1748,29 +2242,91 @@ dependencies = [
|
|
1748
2242
|
|
1749
2243
|
[[package]]
|
1750
2244
|
name = "proc-macro2"
|
1751
|
-
version = "1.0.
|
2245
|
+
version = "1.0.92"
|
1752
2246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1753
|
-
checksum = "
|
2247
|
+
checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
|
1754
2248
|
dependencies = [
|
1755
2249
|
"unicode-ident",
|
1756
2250
|
]
|
1757
2251
|
|
1758
2252
|
[[package]]
|
1759
2253
|
name = "psm"
|
1760
|
-
version = "0.1.
|
2254
|
+
version = "0.1.24"
|
1761
2255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1762
|
-
checksum = "
|
2256
|
+
checksum = "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810"
|
1763
2257
|
dependencies = [
|
1764
2258
|
"cc",
|
1765
2259
|
]
|
1766
2260
|
|
1767
2261
|
[[package]]
|
1768
|
-
name = "
|
1769
|
-
version = "
|
2262
|
+
name = "quick-xml"
|
2263
|
+
version = "0.37.1"
|
1770
2264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1771
|
-
checksum = "
|
2265
|
+
checksum = "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03"
|
1772
2266
|
dependencies = [
|
1773
|
-
"
|
2267
|
+
"memchr",
|
2268
|
+
"serde",
|
2269
|
+
]
|
2270
|
+
|
2271
|
+
[[package]]
|
2272
|
+
name = "quinn"
|
2273
|
+
version = "0.11.6"
|
2274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2275
|
+
checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
|
2276
|
+
dependencies = [
|
2277
|
+
"bytes",
|
2278
|
+
"pin-project-lite",
|
2279
|
+
"quinn-proto",
|
2280
|
+
"quinn-udp",
|
2281
|
+
"rustc-hash 2.1.0",
|
2282
|
+
"rustls",
|
2283
|
+
"socket2",
|
2284
|
+
"thiserror",
|
2285
|
+
"tokio",
|
2286
|
+
"tracing",
|
2287
|
+
]
|
2288
|
+
|
2289
|
+
[[package]]
|
2290
|
+
name = "quinn-proto"
|
2291
|
+
version = "0.11.9"
|
2292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2293
|
+
checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
|
2294
|
+
dependencies = [
|
2295
|
+
"bytes",
|
2296
|
+
"getrandom",
|
2297
|
+
"rand",
|
2298
|
+
"ring",
|
2299
|
+
"rustc-hash 2.1.0",
|
2300
|
+
"rustls",
|
2301
|
+
"rustls-pki-types",
|
2302
|
+
"slab",
|
2303
|
+
"thiserror",
|
2304
|
+
"tinyvec",
|
2305
|
+
"tracing",
|
2306
|
+
"web-time",
|
2307
|
+
]
|
2308
|
+
|
2309
|
+
[[package]]
|
2310
|
+
name = "quinn-udp"
|
2311
|
+
version = "0.5.9"
|
2312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2313
|
+
checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904"
|
2314
|
+
dependencies = [
|
2315
|
+
"cfg_aliases",
|
2316
|
+
"libc",
|
2317
|
+
"once_cell",
|
2318
|
+
"socket2",
|
2319
|
+
"tracing",
|
2320
|
+
"windows-sys 0.59.0",
|
2321
|
+
]
|
2322
|
+
|
2323
|
+
[[package]]
|
2324
|
+
name = "quote"
|
2325
|
+
version = "1.0.38"
|
2326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2327
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
2328
|
+
dependencies = [
|
2329
|
+
"proc-macro2",
|
1774
2330
|
]
|
1775
2331
|
|
1776
2332
|
[[package]]
|
@@ -1815,9 +2371,9 @@ dependencies = [
|
|
1815
2371
|
|
1816
2372
|
[[package]]
|
1817
2373
|
name = "raw-cpuid"
|
1818
|
-
version = "11.
|
2374
|
+
version = "11.2.0"
|
1819
2375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1820
|
-
checksum = "
|
2376
|
+
checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0"
|
1821
2377
|
dependencies = [
|
1822
2378
|
"bitflags",
|
1823
2379
|
]
|
@@ -1844,18 +2400,18 @@ dependencies = [
|
|
1844
2400
|
|
1845
2401
|
[[package]]
|
1846
2402
|
name = "rb-sys"
|
1847
|
-
version = "0.9.
|
2403
|
+
version = "0.9.105"
|
1848
2404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1849
|
-
checksum = "
|
2405
|
+
checksum = "4b3a1f3ce8e7c36d777d52fe7a99039fe4fea7c8ec355a4c4f3a17f92a14029f"
|
1850
2406
|
dependencies = [
|
1851
2407
|
"rb-sys-build",
|
1852
2408
|
]
|
1853
2409
|
|
1854
2410
|
[[package]]
|
1855
2411
|
name = "rb-sys-build"
|
1856
|
-
version = "0.9.
|
2412
|
+
version = "0.9.105"
|
1857
2413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1858
|
-
checksum = "
|
2414
|
+
checksum = "3e6b246c29c0809e1cbe60a1ba9e093da72a4676d02adc68469297d1e589bbf0"
|
1859
2415
|
dependencies = [
|
1860
2416
|
"bindgen",
|
1861
2417
|
"lazy_static",
|
@@ -1863,7 +2419,7 @@ dependencies = [
|
|
1863
2419
|
"quote",
|
1864
2420
|
"regex",
|
1865
2421
|
"shell-words",
|
1866
|
-
"syn 2.0.
|
2422
|
+
"syn 2.0.93",
|
1867
2423
|
]
|
1868
2424
|
|
1869
2425
|
[[package]]
|
@@ -1889,14 +2445,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1889
2445
|
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
1890
2446
|
dependencies = [
|
1891
2447
|
"quote",
|
1892
|
-
"syn 2.0.
|
2448
|
+
"syn 2.0.93",
|
1893
2449
|
]
|
1894
2450
|
|
1895
2451
|
[[package]]
|
1896
2452
|
name = "redox_syscall"
|
1897
|
-
version = "0.5.
|
2453
|
+
version = "0.5.8"
|
1898
2454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1899
|
-
checksum = "
|
2455
|
+
checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
|
1900
2456
|
dependencies = [
|
1901
2457
|
"bitflags",
|
1902
2458
|
]
|
@@ -1918,14 +2474,14 @@ checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6"
|
|
1918
2474
|
dependencies = [
|
1919
2475
|
"proc-macro2",
|
1920
2476
|
"quote",
|
1921
|
-
"syn 2.0.
|
2477
|
+
"syn 2.0.93",
|
1922
2478
|
]
|
1923
2479
|
|
1924
2480
|
[[package]]
|
1925
2481
|
name = "regex"
|
1926
|
-
version = "1.
|
2482
|
+
version = "1.11.1"
|
1927
2483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1928
|
-
checksum = "
|
2484
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
1929
2485
|
dependencies = [
|
1930
2486
|
"aho-corasick",
|
1931
2487
|
"memchr",
|
@@ -1935,9 +2491,9 @@ dependencies = [
|
|
1935
2491
|
|
1936
2492
|
[[package]]
|
1937
2493
|
name = "regex-automata"
|
1938
|
-
version = "0.4.
|
2494
|
+
version = "0.4.9"
|
1939
2495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1940
|
-
checksum = "
|
2496
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
1941
2497
|
dependencies = [
|
1942
2498
|
"aho-corasick",
|
1943
2499
|
"memchr",
|
@@ -1946,9 +2502,70 @@ dependencies = [
|
|
1946
2502
|
|
1947
2503
|
[[package]]
|
1948
2504
|
name = "regex-syntax"
|
1949
|
-
version = "0.8.
|
2505
|
+
version = "0.8.5"
|
1950
2506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1951
|
-
checksum = "
|
2507
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
2508
|
+
|
2509
|
+
[[package]]
|
2510
|
+
name = "reqwest"
|
2511
|
+
version = "0.12.11"
|
2512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2513
|
+
checksum = "7fe060fe50f524be480214aba758c71f99f90ee8c83c5a36b5e9e1d568eb4eb3"
|
2514
|
+
dependencies = [
|
2515
|
+
"base64",
|
2516
|
+
"bytes",
|
2517
|
+
"futures-core",
|
2518
|
+
"futures-util",
|
2519
|
+
"h2",
|
2520
|
+
"http",
|
2521
|
+
"http-body",
|
2522
|
+
"http-body-util",
|
2523
|
+
"hyper",
|
2524
|
+
"hyper-rustls",
|
2525
|
+
"hyper-util",
|
2526
|
+
"ipnet",
|
2527
|
+
"js-sys",
|
2528
|
+
"log",
|
2529
|
+
"mime",
|
2530
|
+
"once_cell",
|
2531
|
+
"percent-encoding",
|
2532
|
+
"pin-project-lite",
|
2533
|
+
"quinn",
|
2534
|
+
"rustls",
|
2535
|
+
"rustls-native-certs",
|
2536
|
+
"rustls-pemfile",
|
2537
|
+
"rustls-pki-types",
|
2538
|
+
"serde",
|
2539
|
+
"serde_json",
|
2540
|
+
"serde_urlencoded",
|
2541
|
+
"sync_wrapper",
|
2542
|
+
"tokio",
|
2543
|
+
"tokio-rustls",
|
2544
|
+
"tokio-util",
|
2545
|
+
"tower",
|
2546
|
+
"tower-service",
|
2547
|
+
"url",
|
2548
|
+
"wasm-bindgen",
|
2549
|
+
"wasm-bindgen-futures",
|
2550
|
+
"wasm-streams",
|
2551
|
+
"web-sys",
|
2552
|
+
"windows-registry",
|
2553
|
+
]
|
2554
|
+
|
2555
|
+
[[package]]
|
2556
|
+
name = "ring"
|
2557
|
+
version = "0.17.8"
|
2558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2559
|
+
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
|
2560
|
+
dependencies = [
|
2561
|
+
"cc",
|
2562
|
+
"cfg-if",
|
2563
|
+
"getrandom",
|
2564
|
+
"libc",
|
2565
|
+
"spin",
|
2566
|
+
"untrusted",
|
2567
|
+
"windows-sys 0.52.0",
|
2568
|
+
]
|
1952
2569
|
|
1953
2570
|
[[package]]
|
1954
2571
|
name = "rle-decode-fast"
|
@@ -1968,11 +2585,85 @@ version = "1.1.0"
|
|
1968
2585
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1969
2586
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1970
2587
|
|
2588
|
+
[[package]]
|
2589
|
+
name = "rustc-hash"
|
2590
|
+
version = "2.1.0"
|
2591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2592
|
+
checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
|
2593
|
+
|
2594
|
+
[[package]]
|
2595
|
+
name = "rustix"
|
2596
|
+
version = "0.38.42"
|
2597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2598
|
+
checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
|
2599
|
+
dependencies = [
|
2600
|
+
"bitflags",
|
2601
|
+
"errno",
|
2602
|
+
"libc",
|
2603
|
+
"linux-raw-sys",
|
2604
|
+
"windows-sys 0.59.0",
|
2605
|
+
]
|
2606
|
+
|
2607
|
+
[[package]]
|
2608
|
+
name = "rustls"
|
2609
|
+
version = "0.23.20"
|
2610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2611
|
+
checksum = "5065c3f250cbd332cd894be57c40fa52387247659b14a2d6041d121547903b1b"
|
2612
|
+
dependencies = [
|
2613
|
+
"once_cell",
|
2614
|
+
"ring",
|
2615
|
+
"rustls-pki-types",
|
2616
|
+
"rustls-webpki",
|
2617
|
+
"subtle",
|
2618
|
+
"zeroize",
|
2619
|
+
]
|
2620
|
+
|
2621
|
+
[[package]]
|
2622
|
+
name = "rustls-native-certs"
|
2623
|
+
version = "0.8.1"
|
2624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2625
|
+
checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
|
2626
|
+
dependencies = [
|
2627
|
+
"openssl-probe",
|
2628
|
+
"rustls-pki-types",
|
2629
|
+
"schannel",
|
2630
|
+
"security-framework",
|
2631
|
+
]
|
2632
|
+
|
2633
|
+
[[package]]
|
2634
|
+
name = "rustls-pemfile"
|
2635
|
+
version = "2.2.0"
|
2636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2637
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
2638
|
+
dependencies = [
|
2639
|
+
"rustls-pki-types",
|
2640
|
+
]
|
2641
|
+
|
2642
|
+
[[package]]
|
2643
|
+
name = "rustls-pki-types"
|
2644
|
+
version = "1.10.1"
|
2645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2646
|
+
checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37"
|
2647
|
+
dependencies = [
|
2648
|
+
"web-time",
|
2649
|
+
]
|
2650
|
+
|
2651
|
+
[[package]]
|
2652
|
+
name = "rustls-webpki"
|
2653
|
+
version = "0.102.8"
|
2654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2655
|
+
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
|
2656
|
+
dependencies = [
|
2657
|
+
"ring",
|
2658
|
+
"rustls-pki-types",
|
2659
|
+
"untrusted",
|
2660
|
+
]
|
2661
|
+
|
1971
2662
|
[[package]]
|
1972
2663
|
name = "rustversion"
|
1973
|
-
version = "1.0.
|
2664
|
+
version = "1.0.19"
|
1974
2665
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1975
|
-
checksum = "
|
2666
|
+
checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
|
1976
2667
|
|
1977
2668
|
[[package]]
|
1978
2669
|
name = "ryu"
|
@@ -1980,12 +2671,53 @@ version = "1.0.18"
|
|
1980
2671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1981
2672
|
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
1982
2673
|
|
2674
|
+
[[package]]
|
2675
|
+
name = "same-file"
|
2676
|
+
version = "1.0.6"
|
2677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2678
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
2679
|
+
dependencies = [
|
2680
|
+
"winapi-util",
|
2681
|
+
]
|
2682
|
+
|
2683
|
+
[[package]]
|
2684
|
+
name = "schannel"
|
2685
|
+
version = "0.1.27"
|
2686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2687
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
2688
|
+
dependencies = [
|
2689
|
+
"windows-sys 0.59.0",
|
2690
|
+
]
|
2691
|
+
|
1983
2692
|
[[package]]
|
1984
2693
|
name = "scopeguard"
|
1985
2694
|
version = "1.2.0"
|
1986
2695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1987
2696
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1988
2697
|
|
2698
|
+
[[package]]
|
2699
|
+
name = "security-framework"
|
2700
|
+
version = "3.1.0"
|
2701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2702
|
+
checksum = "81d3f8c9bfcc3cbb6b0179eb57042d75b1582bdc65c3cb95f3fa999509c03cbc"
|
2703
|
+
dependencies = [
|
2704
|
+
"bitflags",
|
2705
|
+
"core-foundation",
|
2706
|
+
"core-foundation-sys",
|
2707
|
+
"libc",
|
2708
|
+
"security-framework-sys",
|
2709
|
+
]
|
2710
|
+
|
2711
|
+
[[package]]
|
2712
|
+
name = "security-framework-sys"
|
2713
|
+
version = "2.13.0"
|
2714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2715
|
+
checksum = "1863fd3768cd83c56a7f60faa4dc0d403f1b6df0a38c3c25f44b7894e45370d5"
|
2716
|
+
dependencies = [
|
2717
|
+
"core-foundation-sys",
|
2718
|
+
"libc",
|
2719
|
+
]
|
2720
|
+
|
1989
2721
|
[[package]]
|
1990
2722
|
name = "seq-macro"
|
1991
2723
|
version = "0.3.5"
|
@@ -1994,29 +2726,29 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
|
1994
2726
|
|
1995
2727
|
[[package]]
|
1996
2728
|
name = "serde"
|
1997
|
-
version = "1.0.
|
2729
|
+
version = "1.0.217"
|
1998
2730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1999
|
-
checksum = "
|
2731
|
+
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
2000
2732
|
dependencies = [
|
2001
2733
|
"serde_derive",
|
2002
2734
|
]
|
2003
2735
|
|
2004
2736
|
[[package]]
|
2005
2737
|
name = "serde_derive"
|
2006
|
-
version = "1.0.
|
2738
|
+
version = "1.0.217"
|
2007
2739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2008
|
-
checksum = "
|
2740
|
+
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
2009
2741
|
dependencies = [
|
2010
2742
|
"proc-macro2",
|
2011
2743
|
"quote",
|
2012
|
-
"syn 2.0.
|
2744
|
+
"syn 2.0.93",
|
2013
2745
|
]
|
2014
2746
|
|
2015
2747
|
[[package]]
|
2016
2748
|
name = "serde_json"
|
2017
|
-
version = "1.0.
|
2749
|
+
version = "1.0.134"
|
2018
2750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019
|
-
checksum = "
|
2751
|
+
checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d"
|
2020
2752
|
dependencies = [
|
2021
2753
|
"indexmap",
|
2022
2754
|
"itoa",
|
@@ -2025,6 +2757,18 @@ dependencies = [
|
|
2025
2757
|
"serde",
|
2026
2758
|
]
|
2027
2759
|
|
2760
|
+
[[package]]
|
2761
|
+
name = "serde_urlencoded"
|
2762
|
+
version = "0.7.1"
|
2763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2764
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
2765
|
+
dependencies = [
|
2766
|
+
"form_urlencoded",
|
2767
|
+
"itoa",
|
2768
|
+
"ryu",
|
2769
|
+
"serde",
|
2770
|
+
]
|
2771
|
+
|
2028
2772
|
[[package]]
|
2029
2773
|
name = "shell-words"
|
2030
2774
|
version = "1.1.0"
|
@@ -2039,14 +2783,13 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2039
2783
|
|
2040
2784
|
[[package]]
|
2041
2785
|
name = "simd-json"
|
2042
|
-
version = "0.
|
2786
|
+
version = "0.14.3"
|
2043
2787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2044
|
-
checksum = "
|
2788
|
+
checksum = "aa2bcf6c6e164e81bc7a5d49fc6988b3d515d9e8c07457d7b74ffb9324b9cd40"
|
2045
2789
|
dependencies = [
|
2046
2790
|
"ahash",
|
2047
2791
|
"getrandom",
|
2048
2792
|
"halfbrown",
|
2049
|
-
"lexical-core",
|
2050
2793
|
"once_cell",
|
2051
2794
|
"ref-cast",
|
2052
2795
|
"serde",
|
@@ -2057,9 +2800,9 @@ dependencies = [
|
|
2057
2800
|
|
2058
2801
|
[[package]]
|
2059
2802
|
name = "simdutf8"
|
2060
|
-
version = "0.1.
|
2803
|
+
version = "0.1.5"
|
2061
2804
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2062
|
-
checksum = "
|
2805
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
2063
2806
|
|
2064
2807
|
[[package]]
|
2065
2808
|
name = "siphasher"
|
@@ -2076,12 +2819,42 @@ dependencies = [
|
|
2076
2819
|
"autocfg",
|
2077
2820
|
]
|
2078
2821
|
|
2822
|
+
[[package]]
|
2823
|
+
name = "slotmap"
|
2824
|
+
version = "1.0.7"
|
2825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2826
|
+
checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
|
2827
|
+
dependencies = [
|
2828
|
+
"version_check",
|
2829
|
+
]
|
2830
|
+
|
2079
2831
|
[[package]]
|
2080
2832
|
name = "smallvec"
|
2081
2833
|
version = "1.13.2"
|
2082
2834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2083
2835
|
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
2084
2836
|
|
2837
|
+
[[package]]
|
2838
|
+
name = "snafu"
|
2839
|
+
version = "0.8.5"
|
2840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2841
|
+
checksum = "223891c85e2a29c3fe8fb900c1fae5e69c2e42415e3177752e8718475efa5019"
|
2842
|
+
dependencies = [
|
2843
|
+
"snafu-derive",
|
2844
|
+
]
|
2845
|
+
|
2846
|
+
[[package]]
|
2847
|
+
name = "snafu-derive"
|
2848
|
+
version = "0.8.5"
|
2849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2850
|
+
checksum = "03c3c6b7927ffe7ecaa769ee0e3994da3b8cafc8f444578982c83ecb161af917"
|
2851
|
+
dependencies = [
|
2852
|
+
"heck",
|
2853
|
+
"proc-macro2",
|
2854
|
+
"quote",
|
2855
|
+
"syn 2.0.93",
|
2856
|
+
]
|
2857
|
+
|
2085
2858
|
[[package]]
|
2086
2859
|
name = "snap"
|
2087
2860
|
version = "1.1.1"
|
@@ -2090,23 +2863,35 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
2090
2863
|
|
2091
2864
|
[[package]]
|
2092
2865
|
name = "socket2"
|
2093
|
-
version = "0.5.
|
2866
|
+
version = "0.5.8"
|
2094
2867
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2095
|
-
checksum = "
|
2868
|
+
checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
|
2096
2869
|
dependencies = [
|
2097
2870
|
"libc",
|
2098
2871
|
"windows-sys 0.52.0",
|
2099
2872
|
]
|
2100
2873
|
|
2874
|
+
[[package]]
|
2875
|
+
name = "spin"
|
2876
|
+
version = "0.9.8"
|
2877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2878
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
2879
|
+
|
2101
2880
|
[[package]]
|
2102
2881
|
name = "sqlparser"
|
2103
|
-
version = "0.
|
2882
|
+
version = "0.52.0"
|
2104
2883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2105
|
-
checksum = "
|
2884
|
+
checksum = "9a875d8cd437cc8a97e9aeaeea352ec9a19aea99c23e9effb17757291de80b08"
|
2106
2885
|
dependencies = [
|
2107
2886
|
"log",
|
2108
2887
|
]
|
2109
2888
|
|
2889
|
+
[[package]]
|
2890
|
+
name = "stable_deref_trait"
|
2891
|
+
version = "1.2.0"
|
2892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2893
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
2894
|
+
|
2110
2895
|
[[package]]
|
2111
2896
|
name = "stacker"
|
2112
2897
|
version = "0.1.17"
|
@@ -2163,9 +2948,15 @@ dependencies = [
|
|
2163
2948
|
"proc-macro2",
|
2164
2949
|
"quote",
|
2165
2950
|
"rustversion",
|
2166
|
-
"syn 2.0.
|
2951
|
+
"syn 2.0.93",
|
2167
2952
|
]
|
2168
2953
|
|
2954
|
+
[[package]]
|
2955
|
+
name = "subtle"
|
2956
|
+
version = "2.6.1"
|
2957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2958
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
2959
|
+
|
2169
2960
|
[[package]]
|
2170
2961
|
name = "syn"
|
2171
2962
|
version = "1.0.109"
|
@@ -2179,20 +2970,40 @@ dependencies = [
|
|
2179
2970
|
|
2180
2971
|
[[package]]
|
2181
2972
|
name = "syn"
|
2182
|
-
version = "2.0.
|
2973
|
+
version = "2.0.93"
|
2183
2974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2184
|
-
checksum = "
|
2975
|
+
checksum = "9c786062daee0d6db1132800e623df74274a0a87322d8e183338e01b3d98d058"
|
2185
2976
|
dependencies = [
|
2186
2977
|
"proc-macro2",
|
2187
2978
|
"quote",
|
2188
2979
|
"unicode-ident",
|
2189
2980
|
]
|
2190
2981
|
|
2982
|
+
[[package]]
|
2983
|
+
name = "sync_wrapper"
|
2984
|
+
version = "1.0.2"
|
2985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2986
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
2987
|
+
dependencies = [
|
2988
|
+
"futures-core",
|
2989
|
+
]
|
2990
|
+
|
2991
|
+
[[package]]
|
2992
|
+
name = "synstructure"
|
2993
|
+
version = "0.13.1"
|
2994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2995
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
2996
|
+
dependencies = [
|
2997
|
+
"proc-macro2",
|
2998
|
+
"quote",
|
2999
|
+
"syn 2.0.93",
|
3000
|
+
]
|
3001
|
+
|
2191
3002
|
[[package]]
|
2192
3003
|
name = "sysinfo"
|
2193
|
-
version = "0.
|
3004
|
+
version = "0.32.1"
|
2194
3005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2195
|
-
checksum = "
|
3006
|
+
checksum = "4c33cd241af0f2e9e3b5c32163b873b29956890b5342e6745b917ce9d490f4af"
|
2196
3007
|
dependencies = [
|
2197
3008
|
"core-foundation-sys",
|
2198
3009
|
"libc",
|
@@ -2209,29 +3020,54 @@ checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
|
|
2209
3020
|
|
2210
3021
|
[[package]]
|
2211
3022
|
name = "thiserror"
|
2212
|
-
version = "
|
3023
|
+
version = "2.0.9"
|
2213
3024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2214
|
-
checksum = "
|
3025
|
+
checksum = "f072643fd0190df67a8bab670c20ef5d8737177d6ac6b2e9a236cb096206b2cc"
|
2215
3026
|
dependencies = [
|
2216
3027
|
"thiserror-impl",
|
2217
3028
|
]
|
2218
3029
|
|
2219
3030
|
[[package]]
|
2220
3031
|
name = "thiserror-impl"
|
2221
|
-
version = "
|
3032
|
+
version = "2.0.9"
|
2222
3033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2223
|
-
checksum = "
|
3034
|
+
checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4"
|
2224
3035
|
dependencies = [
|
2225
3036
|
"proc-macro2",
|
2226
3037
|
"quote",
|
2227
|
-
"syn 2.0.
|
3038
|
+
"syn 2.0.93",
|
3039
|
+
]
|
3040
|
+
|
3041
|
+
[[package]]
|
3042
|
+
name = "tinystr"
|
3043
|
+
version = "0.7.6"
|
3044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3045
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
3046
|
+
dependencies = [
|
3047
|
+
"displaydoc",
|
3048
|
+
"zerovec",
|
3049
|
+
]
|
3050
|
+
|
3051
|
+
[[package]]
|
3052
|
+
name = "tinyvec"
|
3053
|
+
version = "1.8.1"
|
3054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3055
|
+
checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
|
3056
|
+
dependencies = [
|
3057
|
+
"tinyvec_macros",
|
2228
3058
|
]
|
2229
3059
|
|
3060
|
+
[[package]]
|
3061
|
+
name = "tinyvec_macros"
|
3062
|
+
version = "0.1.1"
|
3063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3064
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
3065
|
+
|
2230
3066
|
[[package]]
|
2231
3067
|
name = "tokio"
|
2232
|
-
version = "1.
|
3068
|
+
version = "1.42.0"
|
2233
3069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2234
|
-
checksum = "
|
3070
|
+
checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551"
|
2235
3071
|
dependencies = [
|
2236
3072
|
"backtrace",
|
2237
3073
|
"bytes",
|
@@ -2239,14 +3075,36 @@ dependencies = [
|
|
2239
3075
|
"mio",
|
2240
3076
|
"pin-project-lite",
|
2241
3077
|
"socket2",
|
3078
|
+
"tokio-macros",
|
2242
3079
|
"windows-sys 0.52.0",
|
2243
3080
|
]
|
2244
3081
|
|
3082
|
+
[[package]]
|
3083
|
+
name = "tokio-macros"
|
3084
|
+
version = "2.4.0"
|
3085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3086
|
+
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
|
3087
|
+
dependencies = [
|
3088
|
+
"proc-macro2",
|
3089
|
+
"quote",
|
3090
|
+
"syn 2.0.93",
|
3091
|
+
]
|
3092
|
+
|
3093
|
+
[[package]]
|
3094
|
+
name = "tokio-rustls"
|
3095
|
+
version = "0.26.1"
|
3096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3097
|
+
checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37"
|
3098
|
+
dependencies = [
|
3099
|
+
"rustls",
|
3100
|
+
"tokio",
|
3101
|
+
]
|
3102
|
+
|
2245
3103
|
[[package]]
|
2246
3104
|
name = "tokio-util"
|
2247
|
-
version = "0.7.
|
3105
|
+
version = "0.7.13"
|
2248
3106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2249
|
-
checksum = "
|
3107
|
+
checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
|
2250
3108
|
dependencies = [
|
2251
3109
|
"bytes",
|
2252
3110
|
"futures-core",
|
@@ -2255,11 +3113,81 @@ dependencies = [
|
|
2255
3113
|
"tokio",
|
2256
3114
|
]
|
2257
3115
|
|
3116
|
+
[[package]]
|
3117
|
+
name = "tower"
|
3118
|
+
version = "0.5.2"
|
3119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3120
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
3121
|
+
dependencies = [
|
3122
|
+
"futures-core",
|
3123
|
+
"futures-util",
|
3124
|
+
"pin-project-lite",
|
3125
|
+
"sync_wrapper",
|
3126
|
+
"tokio",
|
3127
|
+
"tower-layer",
|
3128
|
+
"tower-service",
|
3129
|
+
]
|
3130
|
+
|
3131
|
+
[[package]]
|
3132
|
+
name = "tower-layer"
|
3133
|
+
version = "0.3.3"
|
3134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3135
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
3136
|
+
|
3137
|
+
[[package]]
|
3138
|
+
name = "tower-service"
|
3139
|
+
version = "0.3.3"
|
3140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3141
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
3142
|
+
|
3143
|
+
[[package]]
|
3144
|
+
name = "tracing"
|
3145
|
+
version = "0.1.41"
|
3146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3147
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
3148
|
+
dependencies = [
|
3149
|
+
"pin-project-lite",
|
3150
|
+
"tracing-attributes",
|
3151
|
+
"tracing-core",
|
3152
|
+
]
|
3153
|
+
|
3154
|
+
[[package]]
|
3155
|
+
name = "tracing-attributes"
|
3156
|
+
version = "0.1.28"
|
3157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3158
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
3159
|
+
dependencies = [
|
3160
|
+
"proc-macro2",
|
3161
|
+
"quote",
|
3162
|
+
"syn 2.0.93",
|
3163
|
+
]
|
3164
|
+
|
3165
|
+
[[package]]
|
3166
|
+
name = "tracing-core"
|
3167
|
+
version = "0.1.33"
|
3168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3169
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
3170
|
+
dependencies = [
|
3171
|
+
"once_cell",
|
3172
|
+
]
|
3173
|
+
|
3174
|
+
[[package]]
|
3175
|
+
name = "try-lock"
|
3176
|
+
version = "0.2.5"
|
3177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3178
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
3179
|
+
|
3180
|
+
[[package]]
|
3181
|
+
name = "typenum"
|
3182
|
+
version = "1.17.0"
|
3183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3184
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
3185
|
+
|
2258
3186
|
[[package]]
|
2259
3187
|
name = "unicode-ident"
|
2260
|
-
version = "1.0.
|
3188
|
+
version = "1.0.14"
|
2261
3189
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2262
|
-
checksum = "
|
3190
|
+
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
|
2263
3191
|
|
2264
3192
|
[[package]]
|
2265
3193
|
name = "unicode-reverse"
|
@@ -2272,30 +3200,59 @@ dependencies = [
|
|
2272
3200
|
|
2273
3201
|
[[package]]
|
2274
3202
|
name = "unicode-segmentation"
|
2275
|
-
version = "1.
|
3203
|
+
version = "1.12.0"
|
2276
3204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2277
|
-
checksum = "
|
3205
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
2278
3206
|
|
2279
3207
|
[[package]]
|
2280
3208
|
name = "unicode-width"
|
2281
|
-
version = "0.
|
3209
|
+
version = "0.2.0"
|
3210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3211
|
+
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
3212
|
+
|
3213
|
+
[[package]]
|
3214
|
+
name = "untrusted"
|
3215
|
+
version = "0.9.0"
|
3216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3217
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
3218
|
+
|
3219
|
+
[[package]]
|
3220
|
+
name = "url"
|
3221
|
+
version = "2.5.4"
|
3222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3223
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
3224
|
+
dependencies = [
|
3225
|
+
"form_urlencoded",
|
3226
|
+
"idna",
|
3227
|
+
"percent-encoding",
|
3228
|
+
]
|
3229
|
+
|
3230
|
+
[[package]]
|
3231
|
+
name = "utf16_iter"
|
3232
|
+
version = "1.0.5"
|
3233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3234
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
3235
|
+
|
3236
|
+
[[package]]
|
3237
|
+
name = "utf8_iter"
|
3238
|
+
version = "1.0.4"
|
2282
3239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2283
|
-
checksum = "
|
3240
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
2284
3241
|
|
2285
3242
|
[[package]]
|
2286
3243
|
name = "uuid"
|
2287
|
-
version = "1.
|
3244
|
+
version = "1.11.0"
|
2288
3245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2289
|
-
checksum = "
|
3246
|
+
checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
|
2290
3247
|
dependencies = [
|
2291
3248
|
"getrandom",
|
2292
3249
|
]
|
2293
3250
|
|
2294
3251
|
[[package]]
|
2295
3252
|
name = "value-trait"
|
2296
|
-
version = "0.
|
3253
|
+
version = "0.10.1"
|
2297
3254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2298
|
-
checksum = "
|
3255
|
+
checksum = "9170e001f458781e92711d2ad666110f153e4e50bfd5cbd02db6547625714187"
|
2299
3256
|
dependencies = [
|
2300
3257
|
"float-cmp",
|
2301
3258
|
"halfbrown",
|
@@ -2309,6 +3266,25 @@ version = "0.9.5"
|
|
2309
3266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2310
3267
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
2311
3268
|
|
3269
|
+
[[package]]
|
3270
|
+
name = "walkdir"
|
3271
|
+
version = "2.5.0"
|
3272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3273
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
3274
|
+
dependencies = [
|
3275
|
+
"same-file",
|
3276
|
+
"winapi-util",
|
3277
|
+
]
|
3278
|
+
|
3279
|
+
[[package]]
|
3280
|
+
name = "want"
|
3281
|
+
version = "0.3.1"
|
3282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3283
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
3284
|
+
dependencies = [
|
3285
|
+
"try-lock",
|
3286
|
+
]
|
3287
|
+
|
2312
3288
|
[[package]]
|
2313
3289
|
name = "wasi"
|
2314
3290
|
version = "0.11.0+wasi-snapshot-preview1"
|
@@ -2317,9 +3293,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2317
3293
|
|
2318
3294
|
[[package]]
|
2319
3295
|
name = "wasm-bindgen"
|
2320
|
-
version = "0.2.
|
3296
|
+
version = "0.2.99"
|
2321
3297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2322
|
-
checksum = "
|
3298
|
+
checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
|
2323
3299
|
dependencies = [
|
2324
3300
|
"cfg-if",
|
2325
3301
|
"once_cell",
|
@@ -2328,24 +3304,36 @@ dependencies = [
|
|
2328
3304
|
|
2329
3305
|
[[package]]
|
2330
3306
|
name = "wasm-bindgen-backend"
|
2331
|
-
version = "0.2.
|
3307
|
+
version = "0.2.99"
|
2332
3308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2333
|
-
checksum = "
|
3309
|
+
checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
|
2334
3310
|
dependencies = [
|
2335
3311
|
"bumpalo",
|
2336
3312
|
"log",
|
2337
|
-
"once_cell",
|
2338
3313
|
"proc-macro2",
|
2339
3314
|
"quote",
|
2340
|
-
"syn 2.0.
|
3315
|
+
"syn 2.0.93",
|
2341
3316
|
"wasm-bindgen-shared",
|
2342
3317
|
]
|
2343
3318
|
|
3319
|
+
[[package]]
|
3320
|
+
name = "wasm-bindgen-futures"
|
3321
|
+
version = "0.4.49"
|
3322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3323
|
+
checksum = "38176d9b44ea84e9184eff0bc34cc167ed044f816accfe5922e54d84cf48eca2"
|
3324
|
+
dependencies = [
|
3325
|
+
"cfg-if",
|
3326
|
+
"js-sys",
|
3327
|
+
"once_cell",
|
3328
|
+
"wasm-bindgen",
|
3329
|
+
"web-sys",
|
3330
|
+
]
|
3331
|
+
|
2344
3332
|
[[package]]
|
2345
3333
|
name = "wasm-bindgen-macro"
|
2346
|
-
version = "0.2.
|
3334
|
+
version = "0.2.99"
|
2347
3335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2348
|
-
checksum = "
|
3336
|
+
checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
|
2349
3337
|
dependencies = [
|
2350
3338
|
"quote",
|
2351
3339
|
"wasm-bindgen-macro-support",
|
@@ -2353,22 +3341,55 @@ dependencies = [
|
|
2353
3341
|
|
2354
3342
|
[[package]]
|
2355
3343
|
name = "wasm-bindgen-macro-support"
|
2356
|
-
version = "0.2.
|
3344
|
+
version = "0.2.99"
|
2357
3345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2358
|
-
checksum = "
|
3346
|
+
checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
|
2359
3347
|
dependencies = [
|
2360
3348
|
"proc-macro2",
|
2361
3349
|
"quote",
|
2362
|
-
"syn 2.0.
|
3350
|
+
"syn 2.0.93",
|
2363
3351
|
"wasm-bindgen-backend",
|
2364
3352
|
"wasm-bindgen-shared",
|
2365
3353
|
]
|
2366
3354
|
|
2367
3355
|
[[package]]
|
2368
3356
|
name = "wasm-bindgen-shared"
|
2369
|
-
version = "0.2.
|
3357
|
+
version = "0.2.99"
|
2370
3358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2371
|
-
checksum = "
|
3359
|
+
checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
|
3360
|
+
|
3361
|
+
[[package]]
|
3362
|
+
name = "wasm-streams"
|
3363
|
+
version = "0.4.2"
|
3364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3365
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
3366
|
+
dependencies = [
|
3367
|
+
"futures-util",
|
3368
|
+
"js-sys",
|
3369
|
+
"wasm-bindgen",
|
3370
|
+
"wasm-bindgen-futures",
|
3371
|
+
"web-sys",
|
3372
|
+
]
|
3373
|
+
|
3374
|
+
[[package]]
|
3375
|
+
name = "web-sys"
|
3376
|
+
version = "0.3.76"
|
3377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3378
|
+
checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc"
|
3379
|
+
dependencies = [
|
3380
|
+
"js-sys",
|
3381
|
+
"wasm-bindgen",
|
3382
|
+
]
|
3383
|
+
|
3384
|
+
[[package]]
|
3385
|
+
name = "web-time"
|
3386
|
+
version = "1.1.0"
|
3387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3388
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
3389
|
+
dependencies = [
|
3390
|
+
"js-sys",
|
3391
|
+
"wasm-bindgen",
|
3392
|
+
]
|
2372
3393
|
|
2373
3394
|
[[package]]
|
2374
3395
|
name = "winapi"
|
@@ -2386,6 +3407,15 @@ version = "0.4.0"
|
|
2386
3407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2387
3408
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2388
3409
|
|
3410
|
+
[[package]]
|
3411
|
+
name = "winapi-util"
|
3412
|
+
version = "0.1.9"
|
3413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3414
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
3415
|
+
dependencies = [
|
3416
|
+
"windows-sys 0.59.0",
|
3417
|
+
]
|
3418
|
+
|
2389
3419
|
[[package]]
|
2390
3420
|
name = "winapi-x86_64-pc-windows-gnu"
|
2391
3421
|
version = "0.4.0"
|
@@ -2419,7 +3449,7 @@ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
|
|
2419
3449
|
dependencies = [
|
2420
3450
|
"windows-implement",
|
2421
3451
|
"windows-interface",
|
2422
|
-
"windows-result",
|
3452
|
+
"windows-result 0.1.2",
|
2423
3453
|
"windows-targets",
|
2424
3454
|
]
|
2425
3455
|
|
@@ -2431,7 +3461,7 @@ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
|
|
2431
3461
|
dependencies = [
|
2432
3462
|
"proc-macro2",
|
2433
3463
|
"quote",
|
2434
|
-
"syn 2.0.
|
3464
|
+
"syn 2.0.93",
|
2435
3465
|
]
|
2436
3466
|
|
2437
3467
|
[[package]]
|
@@ -2442,7 +3472,18 @@ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
|
|
2442
3472
|
dependencies = [
|
2443
3473
|
"proc-macro2",
|
2444
3474
|
"quote",
|
2445
|
-
"syn 2.0.
|
3475
|
+
"syn 2.0.93",
|
3476
|
+
]
|
3477
|
+
|
3478
|
+
[[package]]
|
3479
|
+
name = "windows-registry"
|
3480
|
+
version = "0.2.0"
|
3481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3482
|
+
checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
|
3483
|
+
dependencies = [
|
3484
|
+
"windows-result 0.2.0",
|
3485
|
+
"windows-strings",
|
3486
|
+
"windows-targets",
|
2446
3487
|
]
|
2447
3488
|
|
2448
3489
|
[[package]]
|
@@ -2454,6 +3495,25 @@ dependencies = [
|
|
2454
3495
|
"windows-targets",
|
2455
3496
|
]
|
2456
3497
|
|
3498
|
+
[[package]]
|
3499
|
+
name = "windows-result"
|
3500
|
+
version = "0.2.0"
|
3501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3502
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
3503
|
+
dependencies = [
|
3504
|
+
"windows-targets",
|
3505
|
+
]
|
3506
|
+
|
3507
|
+
[[package]]
|
3508
|
+
name = "windows-strings"
|
3509
|
+
version = "0.1.0"
|
3510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3511
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
3512
|
+
dependencies = [
|
3513
|
+
"windows-result 0.2.0",
|
3514
|
+
"windows-targets",
|
3515
|
+
]
|
3516
|
+
|
2457
3517
|
[[package]]
|
2458
3518
|
name = "windows-sys"
|
2459
3519
|
version = "0.52.0"
|
@@ -2536,11 +3596,47 @@ version = "0.52.6"
|
|
2536
3596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2537
3597
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
2538
3598
|
|
3599
|
+
[[package]]
|
3600
|
+
name = "write16"
|
3601
|
+
version = "1.0.0"
|
3602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3603
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
3604
|
+
|
3605
|
+
[[package]]
|
3606
|
+
name = "writeable"
|
3607
|
+
version = "0.5.5"
|
3608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3609
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
3610
|
+
|
2539
3611
|
[[package]]
|
2540
3612
|
name = "xxhash-rust"
|
2541
|
-
version = "0.8.
|
3613
|
+
version = "0.8.14"
|
3614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3615
|
+
checksum = "d7d48f1b18be023c95e7b75f481cac649d74be7c507ff4a407c55cfb957f7934"
|
3616
|
+
|
3617
|
+
[[package]]
|
3618
|
+
name = "yoke"
|
3619
|
+
version = "0.7.5"
|
3620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3621
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
3622
|
+
dependencies = [
|
3623
|
+
"serde",
|
3624
|
+
"stable_deref_trait",
|
3625
|
+
"yoke-derive",
|
3626
|
+
"zerofrom",
|
3627
|
+
]
|
3628
|
+
|
3629
|
+
[[package]]
|
3630
|
+
name = "yoke-derive"
|
3631
|
+
version = "0.7.5"
|
2542
3632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2543
|
-
checksum = "
|
3633
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
3634
|
+
dependencies = [
|
3635
|
+
"proc-macro2",
|
3636
|
+
"quote",
|
3637
|
+
"syn 2.0.93",
|
3638
|
+
"synstructure",
|
3639
|
+
]
|
2544
3640
|
|
2545
3641
|
[[package]]
|
2546
3642
|
name = "zerocopy"
|
@@ -2560,7 +3656,56 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
2560
3656
|
dependencies = [
|
2561
3657
|
"proc-macro2",
|
2562
3658
|
"quote",
|
2563
|
-
"syn 2.0.
|
3659
|
+
"syn 2.0.93",
|
3660
|
+
]
|
3661
|
+
|
3662
|
+
[[package]]
|
3663
|
+
name = "zerofrom"
|
3664
|
+
version = "0.1.5"
|
3665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3666
|
+
checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
|
3667
|
+
dependencies = [
|
3668
|
+
"zerofrom-derive",
|
3669
|
+
]
|
3670
|
+
|
3671
|
+
[[package]]
|
3672
|
+
name = "zerofrom-derive"
|
3673
|
+
version = "0.1.5"
|
3674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3675
|
+
checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
|
3676
|
+
dependencies = [
|
3677
|
+
"proc-macro2",
|
3678
|
+
"quote",
|
3679
|
+
"syn 2.0.93",
|
3680
|
+
"synstructure",
|
3681
|
+
]
|
3682
|
+
|
3683
|
+
[[package]]
|
3684
|
+
name = "zeroize"
|
3685
|
+
version = "1.8.1"
|
3686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3687
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
3688
|
+
|
3689
|
+
[[package]]
|
3690
|
+
name = "zerovec"
|
3691
|
+
version = "0.10.4"
|
3692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3693
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
3694
|
+
dependencies = [
|
3695
|
+
"yoke",
|
3696
|
+
"zerofrom",
|
3697
|
+
"zerovec-derive",
|
3698
|
+
]
|
3699
|
+
|
3700
|
+
[[package]]
|
3701
|
+
name = "zerovec-derive"
|
3702
|
+
version = "0.10.3"
|
3703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3704
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
3705
|
+
dependencies = [
|
3706
|
+
"proc-macro2",
|
3707
|
+
"quote",
|
3708
|
+
"syn 2.0.93",
|
2564
3709
|
]
|
2565
3710
|
|
2566
3711
|
[[package]]
|