polars-df 0.14.0 → 0.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -0
- data/Cargo.lock +1296 -283
- data/LICENSE.txt +1 -0
- data/README.md +1 -2
- data/ext/polars/Cargo.toml +15 -5
- data/ext/polars/src/batched_csv.rs +7 -10
- data/ext/polars/src/conversion/any_value.rs +31 -21
- data/ext/polars/src/conversion/mod.rs +125 -28
- data/ext/polars/src/dataframe/construction.rs +0 -3
- data/ext/polars/src/dataframe/export.rs +9 -2
- data/ext/polars/src/dataframe/general.rs +16 -11
- data/ext/polars/src/dataframe/io.rs +73 -169
- data/ext/polars/src/dataframe/mod.rs +1 -0
- data/ext/polars/src/dataframe/serde.rs +15 -0
- data/ext/polars/src/error.rs +31 -48
- data/ext/polars/src/exceptions.rs +24 -0
- data/ext/polars/src/expr/binary.rs +4 -42
- data/ext/polars/src/expr/datetime.rs +5 -4
- data/ext/polars/src/expr/general.rs +13 -22
- data/ext/polars/src/expr/list.rs +18 -11
- data/ext/polars/src/expr/rolling.rs +6 -7
- data/ext/polars/src/expr/string.rs +9 -36
- data/ext/polars/src/file.rs +59 -22
- data/ext/polars/src/functions/business.rs +15 -0
- data/ext/polars/src/functions/lazy.rs +17 -8
- data/ext/polars/src/functions/mod.rs +1 -0
- data/ext/polars/src/interop/arrow/mod.rs +1 -0
- data/ext/polars/src/interop/arrow/to_ruby.rs +83 -0
- data/ext/polars/src/interop/mod.rs +1 -0
- data/ext/polars/src/lazyframe/general.rs +877 -0
- data/ext/polars/src/lazyframe/mod.rs +3 -827
- data/ext/polars/src/lazyframe/serde.rs +31 -0
- data/ext/polars/src/lib.rs +45 -14
- data/ext/polars/src/map/dataframe.rs +10 -6
- data/ext/polars/src/map/lazy.rs +65 -4
- data/ext/polars/src/map/mod.rs +9 -8
- data/ext/polars/src/on_startup.rs +1 -1
- data/ext/polars/src/series/aggregation.rs +1 -5
- data/ext/polars/src/series/arithmetic.rs +10 -10
- data/ext/polars/src/series/construction.rs +2 -2
- data/ext/polars/src/series/export.rs +1 -1
- data/ext/polars/src/series/general.rs +643 -0
- data/ext/polars/src/series/import.rs +55 -0
- data/ext/polars/src/series/mod.rs +11 -638
- data/ext/polars/src/series/scatter.rs +2 -2
- data/ext/polars/src/utils.rs +0 -20
- 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 +275 -52
- data/lib/polars/data_type_group.rb +28 -0
- data/lib/polars/data_types.rb +2 -0
- 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/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 +88 -10
- 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/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 +649 -15
- data/lib/polars/list_name_space.rb +169 -0
- data/lib/polars/selectors.rb +1144 -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 +2 -1
- metadata +14 -4
- 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
|
]
|
@@ -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.85",
|
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.85",
|
130
142
|
]
|
131
143
|
|
132
144
|
[[package]]
|
@@ -144,11 +156,17 @@ version = "0.15.6"
|
|
144
156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
145
157
|
checksum = "9ae037714f313c1353189ead58ef9eec30a8e8dc101b2622d461418fd59e28a9"
|
146
158
|
|
159
|
+
[[package]]
|
160
|
+
name = "atomic-waker"
|
161
|
+
version = "1.1.2"
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
163
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
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.85",
|
206
224
|
]
|
207
225
|
|
208
226
|
[[package]]
|
@@ -214,6 +232,28 @@ dependencies = [
|
|
214
232
|
"serde",
|
215
233
|
]
|
216
234
|
|
235
|
+
[[package]]
|
236
|
+
name = "blake3"
|
237
|
+
version = "1.5.4"
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
239
|
+
checksum = "d82033247fd8e890df8f740e407ad4d038debb9eb1f40533fffb32e7d17dc6f7"
|
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
259
|
version = "6.0.0"
|
@@ -243,22 +283,22 @@ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
243
283
|
|
244
284
|
[[package]]
|
245
285
|
name = "bytemuck"
|
246
|
-
version = "1.
|
286
|
+
version = "1.19.0"
|
247
287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
248
|
-
checksum = "
|
288
|
+
checksum = "8334215b81e418a0a7bdb8ef0849474f40bb10c8b71f1c4ed315cff49f32494d"
|
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.0"
|
256
296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
257
|
-
checksum = "
|
297
|
+
checksum = "bcfcc3cd946cb52f0bbfdbbcfa2f4e24f75ebb6c0e1002f7c25904fada18b9ec"
|
258
298
|
dependencies = [
|
259
299
|
"proc-macro2",
|
260
300
|
"quote",
|
261
|
-
"syn 2.0.
|
301
|
+
"syn 2.0.85",
|
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.8.0"
|
273
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
274
|
-
checksum = "
|
314
|
+
checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
|
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.1.
|
327
|
+
version = "1.1.31"
|
288
328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
289
|
-
checksum = "
|
329
|
+
checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f"
|
290
330
|
dependencies = [
|
291
331
|
"jobserver",
|
292
332
|
"libc",
|
@@ -308,6 +348,12 @@ 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
359
|
version = "0.4.38"
|
@@ -345,6 +391,33 @@ dependencies = [
|
|
345
391
|
"phf_codegen",
|
346
392
|
]
|
347
393
|
|
394
|
+
[[package]]
|
395
|
+
name = "ciborium"
|
396
|
+
version = "0.2.2"
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
398
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
399
|
+
dependencies = [
|
400
|
+
"ciborium-io",
|
401
|
+
"ciborium-ll",
|
402
|
+
"serde",
|
403
|
+
]
|
404
|
+
|
405
|
+
[[package]]
|
406
|
+
name = "ciborium-io"
|
407
|
+
version = "0.2.2"
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
409
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
410
|
+
|
411
|
+
[[package]]
|
412
|
+
name = "ciborium-ll"
|
413
|
+
version = "0.2.2"
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
415
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
416
|
+
dependencies = [
|
417
|
+
"ciborium-io",
|
418
|
+
"half",
|
419
|
+
]
|
420
|
+
|
348
421
|
[[package]]
|
349
422
|
name = "clang-sys"
|
350
423
|
version = "1.8.1"
|
@@ -383,6 +456,22 @@ dependencies = [
|
|
383
456
|
"static_assertions",
|
384
457
|
]
|
385
458
|
|
459
|
+
[[package]]
|
460
|
+
name = "constant_time_eq"
|
461
|
+
version = "0.3.1"
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
463
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
464
|
+
|
465
|
+
[[package]]
|
466
|
+
name = "core-foundation"
|
467
|
+
version = "0.9.4"
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
469
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
470
|
+
dependencies = [
|
471
|
+
"core-foundation-sys",
|
472
|
+
"libc",
|
473
|
+
]
|
474
|
+
|
386
475
|
[[package]]
|
387
476
|
name = "core-foundation-sys"
|
388
477
|
version = "0.8.7"
|
@@ -478,6 +567,38 @@ dependencies = [
|
|
478
567
|
"winapi",
|
479
568
|
]
|
480
569
|
|
570
|
+
[[package]]
|
571
|
+
name = "crunchy"
|
572
|
+
version = "0.2.2"
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
574
|
+
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
575
|
+
|
576
|
+
[[package]]
|
577
|
+
name = "crypto-common"
|
578
|
+
version = "0.1.6"
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
580
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
581
|
+
dependencies = [
|
582
|
+
"generic-array",
|
583
|
+
"typenum",
|
584
|
+
]
|
585
|
+
|
586
|
+
[[package]]
|
587
|
+
name = "digest"
|
588
|
+
version = "0.10.7"
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
590
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
591
|
+
dependencies = [
|
592
|
+
"block-buffer",
|
593
|
+
"crypto-common",
|
594
|
+
]
|
595
|
+
|
596
|
+
[[package]]
|
597
|
+
name = "doc-comment"
|
598
|
+
version = "0.3.3"
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
+
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
601
|
+
|
481
602
|
[[package]]
|
482
603
|
name = "dyn-clone"
|
483
604
|
version = "1.0.17"
|
@@ -502,7 +623,7 @@ dependencies = [
|
|
502
623
|
"once_cell",
|
503
624
|
"proc-macro2",
|
504
625
|
"quote",
|
505
|
-
"syn 2.0.
|
626
|
+
"syn 2.0.85",
|
506
627
|
]
|
507
628
|
|
508
629
|
[[package]]
|
@@ -511,6 +632,16 @@ version = "1.0.1"
|
|
511
632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
512
633
|
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
513
634
|
|
635
|
+
[[package]]
|
636
|
+
name = "errno"
|
637
|
+
version = "0.3.9"
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
639
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
640
|
+
dependencies = [
|
641
|
+
"libc",
|
642
|
+
"windows-sys 0.52.0",
|
643
|
+
]
|
644
|
+
|
514
645
|
[[package]]
|
515
646
|
name = "ethnum"
|
516
647
|
version = "1.5.0"
|
@@ -531,9 +662,9 @@ checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
|
|
531
662
|
|
532
663
|
[[package]]
|
533
664
|
name = "flate2"
|
534
|
-
version = "1.0.
|
665
|
+
version = "1.0.34"
|
535
666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
536
|
-
checksum = "
|
667
|
+
checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
|
537
668
|
dependencies = [
|
538
669
|
"crc32fast",
|
539
670
|
"miniz_oxide",
|
@@ -541,18 +672,49 @@ dependencies = [
|
|
541
672
|
|
542
673
|
[[package]]
|
543
674
|
name = "float-cmp"
|
544
|
-
version = "0.
|
675
|
+
version = "0.10.0"
|
545
676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
546
|
-
checksum = "
|
677
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
547
678
|
dependencies = [
|
548
679
|
"num-traits",
|
549
680
|
]
|
550
681
|
|
682
|
+
[[package]]
|
683
|
+
name = "fnv"
|
684
|
+
version = "1.0.7"
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
686
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
687
|
+
|
688
|
+
[[package]]
|
689
|
+
name = "foldhash"
|
690
|
+
version = "0.1.3"
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
692
|
+
checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2"
|
693
|
+
|
694
|
+
[[package]]
|
695
|
+
name = "form_urlencoded"
|
696
|
+
version = "1.2.1"
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
698
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
699
|
+
dependencies = [
|
700
|
+
"percent-encoding",
|
701
|
+
]
|
702
|
+
|
703
|
+
[[package]]
|
704
|
+
name = "fs4"
|
705
|
+
version = "0.9.1"
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
707
|
+
checksum = "e8c6b3bd49c37d2aa3f3f2220233b29a7cd23f79d1fe70e5337d25fb390793de"
|
708
|
+
dependencies = [
|
709
|
+
"rustix",
|
710
|
+
"windows-sys 0.52.0",
|
711
|
+
]
|
712
|
+
|
551
713
|
[[package]]
|
552
714
|
name = "futures"
|
553
|
-
version = "0.3.
|
715
|
+
version = "0.3.31"
|
554
716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
555
|
-
checksum = "
|
717
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
556
718
|
dependencies = [
|
557
719
|
"futures-channel",
|
558
720
|
"futures-core",
|
@@ -565,9 +727,9 @@ dependencies = [
|
|
565
727
|
|
566
728
|
[[package]]
|
567
729
|
name = "futures-channel"
|
568
|
-
version = "0.3.
|
730
|
+
version = "0.3.31"
|
569
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
570
|
-
checksum = "
|
732
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
571
733
|
dependencies = [
|
572
734
|
"futures-core",
|
573
735
|
"futures-sink",
|
@@ -575,15 +737,15 @@ dependencies = [
|
|
575
737
|
|
576
738
|
[[package]]
|
577
739
|
name = "futures-core"
|
578
|
-
version = "0.3.
|
740
|
+
version = "0.3.31"
|
579
741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
580
|
-
checksum = "
|
742
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
581
743
|
|
582
744
|
[[package]]
|
583
745
|
name = "futures-executor"
|
584
|
-
version = "0.3.
|
746
|
+
version = "0.3.31"
|
585
747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
586
|
-
checksum = "
|
748
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
587
749
|
dependencies = [
|
588
750
|
"futures-core",
|
589
751
|
"futures-task",
|
@@ -592,38 +754,38 @@ dependencies = [
|
|
592
754
|
|
593
755
|
[[package]]
|
594
756
|
name = "futures-io"
|
595
|
-
version = "0.3.
|
757
|
+
version = "0.3.31"
|
596
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
597
|
-
checksum = "
|
759
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
598
760
|
|
599
761
|
[[package]]
|
600
762
|
name = "futures-macro"
|
601
|
-
version = "0.3.
|
763
|
+
version = "0.3.31"
|
602
764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
603
|
-
checksum = "
|
765
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
604
766
|
dependencies = [
|
605
767
|
"proc-macro2",
|
606
768
|
"quote",
|
607
|
-
"syn 2.0.
|
769
|
+
"syn 2.0.85",
|
608
770
|
]
|
609
771
|
|
610
772
|
[[package]]
|
611
773
|
name = "futures-sink"
|
612
|
-
version = "0.3.
|
774
|
+
version = "0.3.31"
|
613
775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
614
|
-
checksum = "
|
776
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
615
777
|
|
616
778
|
[[package]]
|
617
779
|
name = "futures-task"
|
618
|
-
version = "0.3.
|
780
|
+
version = "0.3.31"
|
619
781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
620
|
-
checksum = "
|
782
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
621
783
|
|
622
784
|
[[package]]
|
623
785
|
name = "futures-util"
|
624
|
-
version = "0.3.
|
786
|
+
version = "0.3.31"
|
625
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
626
|
-
checksum = "
|
788
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
627
789
|
dependencies = [
|
628
790
|
"futures-channel",
|
629
791
|
"futures-core",
|
@@ -637,6 +799,16 @@ dependencies = [
|
|
637
799
|
"slab",
|
638
800
|
]
|
639
801
|
|
802
|
+
[[package]]
|
803
|
+
name = "generic-array"
|
804
|
+
version = "0.14.7"
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
806
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
807
|
+
dependencies = [
|
808
|
+
"typenum",
|
809
|
+
"version_check",
|
810
|
+
]
|
811
|
+
|
640
812
|
[[package]]
|
641
813
|
name = "getrandom"
|
642
814
|
version = "0.2.15"
|
@@ -652,9 +824,9 @@ dependencies = [
|
|
652
824
|
|
653
825
|
[[package]]
|
654
826
|
name = "gimli"
|
655
|
-
version = "0.31.
|
827
|
+
version = "0.31.1"
|
656
828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
657
|
-
checksum = "
|
829
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
658
830
|
|
659
831
|
[[package]]
|
660
832
|
name = "glob"
|
@@ -662,13 +834,42 @@ version = "0.3.1"
|
|
662
834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
663
835
|
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
664
836
|
|
837
|
+
[[package]]
|
838
|
+
name = "h2"
|
839
|
+
version = "0.4.6"
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
841
|
+
checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205"
|
842
|
+
dependencies = [
|
843
|
+
"atomic-waker",
|
844
|
+
"bytes",
|
845
|
+
"fnv",
|
846
|
+
"futures-core",
|
847
|
+
"futures-sink",
|
848
|
+
"http",
|
849
|
+
"indexmap",
|
850
|
+
"slab",
|
851
|
+
"tokio",
|
852
|
+
"tokio-util",
|
853
|
+
"tracing",
|
854
|
+
]
|
855
|
+
|
856
|
+
[[package]]
|
857
|
+
name = "half"
|
858
|
+
version = "2.4.1"
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
860
|
+
checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
|
861
|
+
dependencies = [
|
862
|
+
"cfg-if",
|
863
|
+
"crunchy",
|
864
|
+
]
|
865
|
+
|
665
866
|
[[package]]
|
666
867
|
name = "halfbrown"
|
667
868
|
version = "0.2.5"
|
668
869
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
669
870
|
checksum = "8588661a8607108a5ca69cab034063441a0413a0b041c13618a7dd348021ef6f"
|
670
871
|
dependencies = [
|
671
|
-
"hashbrown",
|
872
|
+
"hashbrown 0.14.5",
|
672
873
|
"serde",
|
673
874
|
]
|
674
875
|
|
@@ -684,6 +885,25 @@ dependencies = [
|
|
684
885
|
"serde",
|
685
886
|
]
|
686
887
|
|
888
|
+
[[package]]
|
889
|
+
name = "hashbrown"
|
890
|
+
version = "0.15.0"
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
892
|
+
checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
|
893
|
+
dependencies = [
|
894
|
+
"allocator-api2",
|
895
|
+
"equivalent",
|
896
|
+
"foldhash",
|
897
|
+
"rayon",
|
898
|
+
"serde",
|
899
|
+
]
|
900
|
+
|
901
|
+
[[package]]
|
902
|
+
name = "heck"
|
903
|
+
version = "0.4.1"
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
905
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
906
|
+
|
687
907
|
[[package]]
|
688
908
|
name = "heck"
|
689
909
|
version = "0.5.0"
|
@@ -711,11 +931,114 @@ dependencies = [
|
|
711
931
|
"windows-sys 0.52.0",
|
712
932
|
]
|
713
933
|
|
934
|
+
[[package]]
|
935
|
+
name = "http"
|
936
|
+
version = "1.1.0"
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
938
|
+
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
|
939
|
+
dependencies = [
|
940
|
+
"bytes",
|
941
|
+
"fnv",
|
942
|
+
"itoa",
|
943
|
+
]
|
944
|
+
|
945
|
+
[[package]]
|
946
|
+
name = "http-body"
|
947
|
+
version = "1.0.1"
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
949
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
950
|
+
dependencies = [
|
951
|
+
"bytes",
|
952
|
+
"http",
|
953
|
+
]
|
954
|
+
|
955
|
+
[[package]]
|
956
|
+
name = "http-body-util"
|
957
|
+
version = "0.1.2"
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
959
|
+
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
|
960
|
+
dependencies = [
|
961
|
+
"bytes",
|
962
|
+
"futures-util",
|
963
|
+
"http",
|
964
|
+
"http-body",
|
965
|
+
"pin-project-lite",
|
966
|
+
]
|
967
|
+
|
968
|
+
[[package]]
|
969
|
+
name = "httparse"
|
970
|
+
version = "1.9.5"
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
972
|
+
checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
|
973
|
+
|
974
|
+
[[package]]
|
975
|
+
name = "humantime"
|
976
|
+
version = "2.1.0"
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
978
|
+
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
979
|
+
|
980
|
+
[[package]]
|
981
|
+
name = "hyper"
|
982
|
+
version = "1.5.0"
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
984
|
+
checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a"
|
985
|
+
dependencies = [
|
986
|
+
"bytes",
|
987
|
+
"futures-channel",
|
988
|
+
"futures-util",
|
989
|
+
"h2",
|
990
|
+
"http",
|
991
|
+
"http-body",
|
992
|
+
"httparse",
|
993
|
+
"itoa",
|
994
|
+
"pin-project-lite",
|
995
|
+
"smallvec",
|
996
|
+
"tokio",
|
997
|
+
"want",
|
998
|
+
]
|
999
|
+
|
1000
|
+
[[package]]
|
1001
|
+
name = "hyper-rustls"
|
1002
|
+
version = "0.27.3"
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1004
|
+
checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333"
|
1005
|
+
dependencies = [
|
1006
|
+
"futures-util",
|
1007
|
+
"http",
|
1008
|
+
"hyper",
|
1009
|
+
"hyper-util",
|
1010
|
+
"rustls",
|
1011
|
+
"rustls-native-certs",
|
1012
|
+
"rustls-pki-types",
|
1013
|
+
"tokio",
|
1014
|
+
"tokio-rustls",
|
1015
|
+
"tower-service",
|
1016
|
+
]
|
1017
|
+
|
1018
|
+
[[package]]
|
1019
|
+
name = "hyper-util"
|
1020
|
+
version = "0.1.10"
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1022
|
+
checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
|
1023
|
+
dependencies = [
|
1024
|
+
"bytes",
|
1025
|
+
"futures-channel",
|
1026
|
+
"futures-util",
|
1027
|
+
"http",
|
1028
|
+
"http-body",
|
1029
|
+
"hyper",
|
1030
|
+
"pin-project-lite",
|
1031
|
+
"socket2",
|
1032
|
+
"tokio",
|
1033
|
+
"tower-service",
|
1034
|
+
"tracing",
|
1035
|
+
]
|
1036
|
+
|
714
1037
|
[[package]]
|
715
1038
|
name = "iana-time-zone"
|
716
|
-
version = "0.1.
|
1039
|
+
version = "0.1.61"
|
717
1040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
718
|
-
checksum = "
|
1041
|
+
checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
|
719
1042
|
dependencies = [
|
720
1043
|
"android_system_properties",
|
721
1044
|
"core-foundation-sys",
|
@@ -734,17 +1057,39 @@ dependencies = [
|
|
734
1057
|
"cc",
|
735
1058
|
]
|
736
1059
|
|
1060
|
+
[[package]]
|
1061
|
+
name = "idna"
|
1062
|
+
version = "0.5.0"
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1064
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
1065
|
+
dependencies = [
|
1066
|
+
"unicode-bidi",
|
1067
|
+
"unicode-normalization",
|
1068
|
+
]
|
1069
|
+
|
737
1070
|
[[package]]
|
738
1071
|
name = "indexmap"
|
739
|
-
version = "2.
|
1072
|
+
version = "2.6.0"
|
740
1073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
741
|
-
checksum = "
|
1074
|
+
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
|
742
1075
|
dependencies = [
|
743
1076
|
"equivalent",
|
744
|
-
"hashbrown",
|
1077
|
+
"hashbrown 0.15.0",
|
745
1078
|
"serde",
|
746
1079
|
]
|
747
1080
|
|
1081
|
+
[[package]]
|
1082
|
+
name = "indoc"
|
1083
|
+
version = "2.0.5"
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1085
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
1086
|
+
|
1087
|
+
[[package]]
|
1088
|
+
name = "ipnet"
|
1089
|
+
version = "2.10.1"
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1091
|
+
checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
|
1092
|
+
|
748
1093
|
[[package]]
|
749
1094
|
name = "itertools"
|
750
1095
|
version = "0.12.1"
|
@@ -754,6 +1099,15 @@ dependencies = [
|
|
754
1099
|
"either",
|
755
1100
|
]
|
756
1101
|
|
1102
|
+
[[package]]
|
1103
|
+
name = "itertools"
|
1104
|
+
version = "0.13.0"
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1106
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
1107
|
+
dependencies = [
|
1108
|
+
"either",
|
1109
|
+
]
|
1110
|
+
|
757
1111
|
[[package]]
|
758
1112
|
name = "itoa"
|
759
1113
|
version = "1.0.11"
|
@@ -797,9 +1151,9 @@ dependencies = [
|
|
797
1151
|
|
798
1152
|
[[package]]
|
799
1153
|
name = "js-sys"
|
800
|
-
version = "0.3.
|
1154
|
+
version = "0.3.72"
|
801
1155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
802
|
-
checksum = "
|
1156
|
+
checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
|
803
1157
|
dependencies = [
|
804
1158
|
"wasm-bindgen",
|
805
1159
|
]
|
@@ -828,110 +1182,46 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
1182
|
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
829
1183
|
|
830
1184
|
[[package]]
|
831
|
-
name = "
|
832
|
-
version = "0.
|
1185
|
+
name = "libc"
|
1186
|
+
version = "0.2.161"
|
833
1187
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
834
|
-
checksum = "
|
835
|
-
dependencies = [
|
836
|
-
"lexical-parse-float",
|
837
|
-
"lexical-parse-integer",
|
838
|
-
"lexical-util",
|
839
|
-
"lexical-write-float",
|
840
|
-
"lexical-write-integer",
|
841
|
-
]
|
1188
|
+
checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
|
842
1189
|
|
843
1190
|
[[package]]
|
844
|
-
name = "
|
845
|
-
version = "
|
1191
|
+
name = "libflate"
|
1192
|
+
version = "1.4.0"
|
846
1193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
847
|
-
checksum = "
|
1194
|
+
checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18"
|
848
1195
|
dependencies = [
|
849
|
-
"
|
850
|
-
"
|
851
|
-
"
|
1196
|
+
"adler32",
|
1197
|
+
"crc32fast",
|
1198
|
+
"libflate_lz77",
|
852
1199
|
]
|
853
1200
|
|
854
1201
|
[[package]]
|
855
|
-
name = "
|
856
|
-
version = "
|
1202
|
+
name = "libflate_lz77"
|
1203
|
+
version = "1.2.0"
|
857
1204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
858
|
-
checksum = "
|
1205
|
+
checksum = "a52d3a8bfc85f250440e4424db7d857e241a3aebbbe301f3eb606ab15c39acbf"
|
859
1206
|
dependencies = [
|
860
|
-
"
|
861
|
-
"static_assertions",
|
1207
|
+
"rle-decode-fast",
|
862
1208
|
]
|
863
1209
|
|
864
1210
|
[[package]]
|
865
|
-
name = "
|
1211
|
+
name = "libloading"
|
866
1212
|
version = "0.8.5"
|
867
1213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
868
|
-
checksum = "
|
1214
|
+
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
|
869
1215
|
dependencies = [
|
870
|
-
"
|
1216
|
+
"cfg-if",
|
1217
|
+
"windows-targets",
|
871
1218
|
]
|
872
1219
|
|
873
1220
|
[[package]]
|
874
|
-
name = "
|
875
|
-
version = "0.
|
1221
|
+
name = "libm"
|
1222
|
+
version = "0.2.11"
|
876
1223
|
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
|
-
]
|
883
|
-
|
884
|
-
[[package]]
|
885
|
-
name = "lexical-write-integer"
|
886
|
-
version = "0.8.5"
|
887
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
888
|
-
checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
|
889
|
-
dependencies = [
|
890
|
-
"lexical-util",
|
891
|
-
"static_assertions",
|
892
|
-
]
|
893
|
-
|
894
|
-
[[package]]
|
895
|
-
name = "libc"
|
896
|
-
version = "0.2.158"
|
897
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
898
|
-
checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
|
899
|
-
|
900
|
-
[[package]]
|
901
|
-
name = "libflate"
|
902
|
-
version = "1.4.0"
|
903
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
904
|
-
checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18"
|
905
|
-
dependencies = [
|
906
|
-
"adler32",
|
907
|
-
"crc32fast",
|
908
|
-
"libflate_lz77",
|
909
|
-
]
|
910
|
-
|
911
|
-
[[package]]
|
912
|
-
name = "libflate_lz77"
|
913
|
-
version = "1.2.0"
|
914
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
915
|
-
checksum = "a52d3a8bfc85f250440e4424db7d857e241a3aebbbe301f3eb606ab15c39acbf"
|
916
|
-
dependencies = [
|
917
|
-
"rle-decode-fast",
|
918
|
-
]
|
919
|
-
|
920
|
-
[[package]]
|
921
|
-
name = "libloading"
|
922
|
-
version = "0.8.5"
|
923
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
924
|
-
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
|
925
|
-
dependencies = [
|
926
|
-
"cfg-if",
|
927
|
-
"windows-targets",
|
928
|
-
]
|
929
|
-
|
930
|
-
[[package]]
|
931
|
-
name = "libm"
|
932
|
-
version = "0.2.8"
|
933
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
934
|
-
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
1224
|
+
checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
|
935
1225
|
|
936
1226
|
[[package]]
|
937
1227
|
name = "libmimalloc-sys"
|
@@ -943,6 +1233,12 @@ dependencies = [
|
|
943
1233
|
"libc",
|
944
1234
|
]
|
945
1235
|
|
1236
|
+
[[package]]
|
1237
|
+
name = "linux-raw-sys"
|
1238
|
+
version = "0.4.14"
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1240
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
1241
|
+
|
946
1242
|
[[package]]
|
947
1243
|
name = "lock_api"
|
948
1244
|
version = "0.4.12"
|
@@ -961,19 +1257,18 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
961
1257
|
|
962
1258
|
[[package]]
|
963
1259
|
name = "lz4"
|
964
|
-
version = "1.
|
1260
|
+
version = "1.28.0"
|
965
1261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
966
|
-
checksum = "
|
1262
|
+
checksum = "4d1febb2b4a79ddd1980eede06a8f7902197960aa0383ffcfdd62fe723036725"
|
967
1263
|
dependencies = [
|
968
|
-
"libc",
|
969
1264
|
"lz4-sys",
|
970
1265
|
]
|
971
1266
|
|
972
1267
|
[[package]]
|
973
1268
|
name = "lz4-sys"
|
974
|
-
version = "1.10.0"
|
1269
|
+
version = "1.11.1+lz4-1.10.0"
|
975
1270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
976
|
-
checksum = "
|
1271
|
+
checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
|
977
1272
|
dependencies = [
|
978
1273
|
"cc",
|
979
1274
|
"libc",
|
@@ -999,7 +1294,17 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
999
1294
|
dependencies = [
|
1000
1295
|
"proc-macro2",
|
1001
1296
|
"quote",
|
1002
|
-
"syn 2.0.
|
1297
|
+
"syn 2.0.85",
|
1298
|
+
]
|
1299
|
+
|
1300
|
+
[[package]]
|
1301
|
+
name = "md-5"
|
1302
|
+
version = "0.10.6"
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1304
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
1305
|
+
dependencies = [
|
1306
|
+
"cfg-if",
|
1307
|
+
"digest",
|
1003
1308
|
]
|
1004
1309
|
|
1005
1310
|
[[package]]
|
@@ -1017,6 +1322,15 @@ dependencies = [
|
|
1017
1322
|
"libc",
|
1018
1323
|
]
|
1019
1324
|
|
1325
|
+
[[package]]
|
1326
|
+
name = "memoffset"
|
1327
|
+
version = "0.9.1"
|
1328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1329
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
1330
|
+
dependencies = [
|
1331
|
+
"autocfg",
|
1332
|
+
]
|
1333
|
+
|
1020
1334
|
[[package]]
|
1021
1335
|
name = "mimalloc"
|
1022
1336
|
version = "0.1.43"
|
@@ -1026,6 +1340,12 @@ dependencies = [
|
|
1026
1340
|
"libmimalloc-sys",
|
1027
1341
|
]
|
1028
1342
|
|
1343
|
+
[[package]]
|
1344
|
+
name = "mime"
|
1345
|
+
version = "0.3.17"
|
1346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1347
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
1348
|
+
|
1029
1349
|
[[package]]
|
1030
1350
|
name = "minimal-lexical"
|
1031
1351
|
version = "0.2.1"
|
@@ -1115,18 +1435,55 @@ dependencies = [
|
|
1115
1435
|
|
1116
1436
|
[[package]]
|
1117
1437
|
name = "object"
|
1118
|
-
version = "0.36.
|
1438
|
+
version = "0.36.5"
|
1119
1439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1120
|
-
checksum = "
|
1440
|
+
checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
|
1121
1441
|
dependencies = [
|
1122
1442
|
"memchr",
|
1123
1443
|
]
|
1124
1444
|
|
1445
|
+
[[package]]
|
1446
|
+
name = "object_store"
|
1447
|
+
version = "0.10.2"
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1449
|
+
checksum = "e6da452820c715ce78221e8202ccc599b4a52f3e1eb3eedb487b680c81a8e3f3"
|
1450
|
+
dependencies = [
|
1451
|
+
"async-trait",
|
1452
|
+
"base64",
|
1453
|
+
"bytes",
|
1454
|
+
"chrono",
|
1455
|
+
"futures",
|
1456
|
+
"humantime",
|
1457
|
+
"hyper",
|
1458
|
+
"itertools 0.13.0",
|
1459
|
+
"md-5",
|
1460
|
+
"parking_lot",
|
1461
|
+
"percent-encoding",
|
1462
|
+
"quick-xml",
|
1463
|
+
"rand",
|
1464
|
+
"reqwest",
|
1465
|
+
"ring",
|
1466
|
+
"rustls-pemfile",
|
1467
|
+
"serde",
|
1468
|
+
"serde_json",
|
1469
|
+
"snafu",
|
1470
|
+
"tokio",
|
1471
|
+
"tracing",
|
1472
|
+
"url",
|
1473
|
+
"walkdir",
|
1474
|
+
]
|
1475
|
+
|
1125
1476
|
[[package]]
|
1126
1477
|
name = "once_cell"
|
1127
|
-
version = "1.
|
1478
|
+
version = "1.20.2"
|
1479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1480
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
1481
|
+
|
1482
|
+
[[package]]
|
1483
|
+
name = "openssl-probe"
|
1484
|
+
version = "0.1.5"
|
1128
1485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1129
|
-
checksum = "
|
1486
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
1130
1487
|
|
1131
1488
|
[[package]]
|
1132
1489
|
name = "parking_lot"
|
@@ -1151,16 +1508,6 @@ dependencies = [
|
|
1151
1508
|
"windows-targets",
|
1152
1509
|
]
|
1153
1510
|
|
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
1511
|
[[package]]
|
1165
1512
|
name = "parse-zoneinfo"
|
1166
1513
|
version = "0.3.1"
|
@@ -1216,9 +1563,9 @@ dependencies = [
|
|
1216
1563
|
|
1217
1564
|
[[package]]
|
1218
1565
|
name = "pin-project-lite"
|
1219
|
-
version = "0.2.
|
1566
|
+
version = "0.2.15"
|
1220
1567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1221
|
-
checksum = "
|
1568
|
+
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
|
1222
1569
|
|
1223
1570
|
[[package]]
|
1224
1571
|
name = "pin-utils"
|
@@ -1228,9 +1575,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1228
1575
|
|
1229
1576
|
[[package]]
|
1230
1577
|
name = "pkg-config"
|
1231
|
-
version = "0.3.
|
1578
|
+
version = "0.3.31"
|
1232
1579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1233
|
-
checksum = "
|
1580
|
+
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
1234
1581
|
|
1235
1582
|
[[package]]
|
1236
1583
|
name = "planus"
|
@@ -1243,26 +1590,30 @@ dependencies = [
|
|
1243
1590
|
|
1244
1591
|
[[package]]
|
1245
1592
|
name = "polars"
|
1246
|
-
version = "0.
|
1593
|
+
version = "0.15.0"
|
1247
1594
|
dependencies = [
|
1248
1595
|
"ahash",
|
1596
|
+
"bytes",
|
1249
1597
|
"chrono",
|
1250
1598
|
"either",
|
1251
1599
|
"jemallocator",
|
1252
1600
|
"magnus",
|
1253
1601
|
"mimalloc",
|
1254
|
-
"polars 0.
|
1602
|
+
"polars 0.44.2",
|
1603
|
+
"polars-arrow",
|
1255
1604
|
"polars-core",
|
1256
1605
|
"polars-parquet",
|
1606
|
+
"polars-plan",
|
1257
1607
|
"polars-utils",
|
1608
|
+
"regex",
|
1258
1609
|
"serde_json",
|
1259
1610
|
]
|
1260
1611
|
|
1261
1612
|
[[package]]
|
1262
1613
|
name = "polars"
|
1263
|
-
version = "0.
|
1614
|
+
version = "0.44.2"
|
1264
1615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1265
|
-
checksum = "
|
1616
|
+
checksum = "f65c6aa86d991a64c95416a61202f7952da2f8cccefa448f9a23c1b8f2301ecc"
|
1266
1617
|
dependencies = [
|
1267
1618
|
"getrandom",
|
1268
1619
|
"polars-arrow",
|
@@ -1281,9 +1632,9 @@ dependencies = [
|
|
1281
1632
|
|
1282
1633
|
[[package]]
|
1283
1634
|
name = "polars-arrow"
|
1284
|
-
version = "0.
|
1635
|
+
version = "0.44.2"
|
1285
1636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1286
|
-
checksum = "
|
1637
|
+
checksum = "87dbb24d29ddea5abb73d7954df8b8d3d4bb7f02a3e5c96d1519cdad9e816a3d"
|
1287
1638
|
dependencies = [
|
1288
1639
|
"ahash",
|
1289
1640
|
"atoi",
|
@@ -1296,9 +1647,8 @@ dependencies = [
|
|
1296
1647
|
"either",
|
1297
1648
|
"ethnum",
|
1298
1649
|
"fast-float",
|
1299
|
-
"futures",
|
1300
1650
|
"getrandom",
|
1301
|
-
"hashbrown",
|
1651
|
+
"hashbrown 0.15.0",
|
1302
1652
|
"itoa",
|
1303
1653
|
"itoap",
|
1304
1654
|
"lz4",
|
@@ -1314,6 +1664,7 @@ dependencies = [
|
|
1314
1664
|
"simdutf8",
|
1315
1665
|
"streaming-iterator",
|
1316
1666
|
"strength_reduce",
|
1667
|
+
"strum_macros",
|
1317
1668
|
"version_check",
|
1318
1669
|
"zstd",
|
1319
1670
|
]
|
@@ -1330,9 +1681,9 @@ dependencies = [
|
|
1330
1681
|
|
1331
1682
|
[[package]]
|
1332
1683
|
name = "polars-compute"
|
1333
|
-
version = "0.
|
1684
|
+
version = "0.44.2"
|
1334
1685
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1335
|
-
checksum = "
|
1686
|
+
checksum = "cbdb1071147452a4c4b25560f23d2fbaffef255b04757291131b22fc2c0d35b2"
|
1336
1687
|
dependencies = [
|
1337
1688
|
"bytemuck",
|
1338
1689
|
"either",
|
@@ -1346,9 +1697,9 @@ dependencies = [
|
|
1346
1697
|
|
1347
1698
|
[[package]]
|
1348
1699
|
name = "polars-core"
|
1349
|
-
version = "0.
|
1700
|
+
version = "0.44.2"
|
1350
1701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1351
|
-
checksum = "
|
1702
|
+
checksum = "dd5df9b55e614088a3270b06f8649dce76537c268d6b1ca4d9c37008b2be5949"
|
1352
1703
|
dependencies = [
|
1353
1704
|
"ahash",
|
1354
1705
|
"bitflags",
|
@@ -1357,7 +1708,8 @@ dependencies = [
|
|
1357
1708
|
"chrono-tz",
|
1358
1709
|
"comfy-table",
|
1359
1710
|
"either",
|
1360
|
-
"hashbrown",
|
1711
|
+
"hashbrown 0.14.5",
|
1712
|
+
"hashbrown 0.15.0",
|
1361
1713
|
"indexmap",
|
1362
1714
|
"num-traits",
|
1363
1715
|
"once_cell",
|
@@ -1373,6 +1725,7 @@ dependencies = [
|
|
1373
1725
|
"regex",
|
1374
1726
|
"serde",
|
1375
1727
|
"serde_json",
|
1728
|
+
"strum_macros",
|
1376
1729
|
"thiserror",
|
1377
1730
|
"version_check",
|
1378
1731
|
"xxhash-rust",
|
@@ -1380,11 +1733,12 @@ dependencies = [
|
|
1380
1733
|
|
1381
1734
|
[[package]]
|
1382
1735
|
name = "polars-error"
|
1383
|
-
version = "0.
|
1736
|
+
version = "0.44.2"
|
1384
1737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1385
|
-
checksum = "
|
1738
|
+
checksum = "4643898a644f30c83737db85f942f8c8956b0c11190b39afec745218eae1746b"
|
1386
1739
|
dependencies = [
|
1387
1740
|
"avro-schema",
|
1741
|
+
"object_store",
|
1388
1742
|
"polars-arrow-format",
|
1389
1743
|
"regex",
|
1390
1744
|
"simdutf8",
|
@@ -1393,12 +1747,14 @@ dependencies = [
|
|
1393
1747
|
|
1394
1748
|
[[package]]
|
1395
1749
|
name = "polars-expr"
|
1396
|
-
version = "0.
|
1750
|
+
version = "0.44.2"
|
1397
1751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1398
|
-
checksum = "
|
1752
|
+
checksum = "ea1b431ed816cba1120cff200f06b962748001bbb2e615ce53cfbbdf701cc136"
|
1399
1753
|
dependencies = [
|
1400
1754
|
"ahash",
|
1401
1755
|
"bitflags",
|
1756
|
+
"hashbrown 0.15.0",
|
1757
|
+
"num-traits",
|
1402
1758
|
"once_cell",
|
1403
1759
|
"polars-arrow",
|
1404
1760
|
"polars-compute",
|
@@ -1406,32 +1762,37 @@ dependencies = [
|
|
1406
1762
|
"polars-io",
|
1407
1763
|
"polars-ops",
|
1408
1764
|
"polars-plan",
|
1765
|
+
"polars-row",
|
1409
1766
|
"polars-time",
|
1410
1767
|
"polars-utils",
|
1768
|
+
"rand",
|
1411
1769
|
"rayon",
|
1412
1770
|
]
|
1413
1771
|
|
1414
1772
|
[[package]]
|
1415
1773
|
name = "polars-io"
|
1416
|
-
version = "0.
|
1774
|
+
version = "0.44.2"
|
1417
1775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1418
|
-
checksum = "
|
1776
|
+
checksum = "b2fab2c016635cb416b49461fd6419b0208c6c13a4fd065bd65e4a87dbb66314"
|
1419
1777
|
dependencies = [
|
1420
1778
|
"ahash",
|
1421
1779
|
"async-trait",
|
1422
1780
|
"atoi_simd",
|
1781
|
+
"blake3",
|
1423
1782
|
"bytes",
|
1424
1783
|
"chrono",
|
1425
1784
|
"chrono-tz",
|
1426
1785
|
"fast-float",
|
1786
|
+
"fs4",
|
1427
1787
|
"futures",
|
1428
1788
|
"glob",
|
1429
|
-
"hashbrown",
|
1789
|
+
"hashbrown 0.15.0",
|
1430
1790
|
"home",
|
1431
1791
|
"itoa",
|
1432
1792
|
"memchr",
|
1433
1793
|
"memmap2",
|
1434
1794
|
"num-traits",
|
1795
|
+
"object_store",
|
1435
1796
|
"once_cell",
|
1436
1797
|
"percent-encoding",
|
1437
1798
|
"polars-arrow",
|
@@ -1442,27 +1803,31 @@ dependencies = [
|
|
1442
1803
|
"polars-schema",
|
1443
1804
|
"polars-time",
|
1444
1805
|
"polars-utils",
|
1806
|
+
"pyo3",
|
1445
1807
|
"rayon",
|
1446
1808
|
"regex",
|
1809
|
+
"reqwest",
|
1447
1810
|
"ryu",
|
1448
1811
|
"serde",
|
1812
|
+
"serde_json",
|
1449
1813
|
"simd-json",
|
1450
1814
|
"simdutf8",
|
1451
1815
|
"tokio",
|
1452
1816
|
"tokio-util",
|
1817
|
+
"url",
|
1453
1818
|
]
|
1454
1819
|
|
1455
1820
|
[[package]]
|
1456
1821
|
name = "polars-json"
|
1457
|
-
version = "0.
|
1822
|
+
version = "0.44.2"
|
1458
1823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1459
|
-
checksum = "
|
1824
|
+
checksum = "d5c8c057ef04feaf34b6ce52096bdea3a766fa4725f50442078c8a4ee86397bf"
|
1460
1825
|
dependencies = [
|
1461
1826
|
"ahash",
|
1462
1827
|
"chrono",
|
1463
1828
|
"chrono-tz",
|
1464
1829
|
"fallible-streaming-iterator",
|
1465
|
-
"hashbrown",
|
1830
|
+
"hashbrown 0.15.0",
|
1466
1831
|
"indexmap",
|
1467
1832
|
"itoa",
|
1468
1833
|
"num-traits",
|
@@ -1476,12 +1841,13 @@ dependencies = [
|
|
1476
1841
|
|
1477
1842
|
[[package]]
|
1478
1843
|
name = "polars-lazy"
|
1479
|
-
version = "0.
|
1844
|
+
version = "0.44.2"
|
1480
1845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1481
|
-
checksum = "
|
1846
|
+
checksum = "4a8ca74f42e7b47cad241b36b98d991cc7fbb51b8d0695a055eb937588d1f310"
|
1482
1847
|
dependencies = [
|
1483
1848
|
"ahash",
|
1484
1849
|
"bitflags",
|
1850
|
+
"futures",
|
1485
1851
|
"memchr",
|
1486
1852
|
"once_cell",
|
1487
1853
|
"polars-arrow",
|
@@ -1493,18 +1859,21 @@ dependencies = [
|
|
1493
1859
|
"polars-ops",
|
1494
1860
|
"polars-pipe",
|
1495
1861
|
"polars-plan",
|
1862
|
+
"polars-stream",
|
1496
1863
|
"polars-time",
|
1497
1864
|
"polars-utils",
|
1498
1865
|
"rayon",
|
1866
|
+
"tokio",
|
1499
1867
|
"version_check",
|
1500
1868
|
]
|
1501
1869
|
|
1502
1870
|
[[package]]
|
1503
1871
|
name = "polars-mem-engine"
|
1504
|
-
version = "0.
|
1872
|
+
version = "0.44.2"
|
1505
1873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1506
|
-
checksum = "
|
1874
|
+
checksum = "7a32614e5b52c9b83856d80c7e2880b79d83055bfd59969bd1d0b148f9cfdc7a"
|
1507
1875
|
dependencies = [
|
1876
|
+
"futures",
|
1508
1877
|
"memmap2",
|
1509
1878
|
"polars-arrow",
|
1510
1879
|
"polars-core",
|
@@ -1516,14 +1885,16 @@ dependencies = [
|
|
1516
1885
|
"polars-plan",
|
1517
1886
|
"polars-time",
|
1518
1887
|
"polars-utils",
|
1888
|
+
"pyo3",
|
1519
1889
|
"rayon",
|
1890
|
+
"tokio",
|
1520
1891
|
]
|
1521
1892
|
|
1522
1893
|
[[package]]
|
1523
1894
|
name = "polars-ops"
|
1524
|
-
version = "0.
|
1895
|
+
version = "0.44.2"
|
1525
1896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1526
|
-
checksum = "
|
1897
|
+
checksum = "035c800fbe5bbd820afeb8313713ed345853bb014e0f821a4025d40cf0d60e1a"
|
1527
1898
|
dependencies = [
|
1528
1899
|
"ahash",
|
1529
1900
|
"aho-corasick",
|
@@ -1533,7 +1904,7 @@ dependencies = [
|
|
1533
1904
|
"chrono",
|
1534
1905
|
"chrono-tz",
|
1535
1906
|
"either",
|
1536
|
-
"hashbrown",
|
1907
|
+
"hashbrown 0.15.0",
|
1537
1908
|
"hex",
|
1538
1909
|
"indexmap",
|
1539
1910
|
"jsonpath_lib_polars_vendor",
|
@@ -1550,17 +1921,19 @@ dependencies = [
|
|
1550
1921
|
"rand_distr",
|
1551
1922
|
"rayon",
|
1552
1923
|
"regex",
|
1924
|
+
"regex-syntax",
|
1553
1925
|
"serde",
|
1554
1926
|
"serde_json",
|
1927
|
+
"strum_macros",
|
1555
1928
|
"unicode-reverse",
|
1556
1929
|
"version_check",
|
1557
1930
|
]
|
1558
1931
|
|
1559
1932
|
[[package]]
|
1560
1933
|
name = "polars-parquet"
|
1561
|
-
version = "0.
|
1934
|
+
version = "0.44.2"
|
1562
1935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1563
|
-
checksum = "
|
1936
|
+
checksum = "91dcf1d9f048079376949eaf2e24e240b313ff4a102fb83b57c9a5f807cdca52"
|
1564
1937
|
dependencies = [
|
1565
1938
|
"ahash",
|
1566
1939
|
"async-stream",
|
@@ -1570,13 +1943,13 @@ dependencies = [
|
|
1570
1943
|
"ethnum",
|
1571
1944
|
"flate2",
|
1572
1945
|
"futures",
|
1573
|
-
"hashbrown",
|
1946
|
+
"hashbrown 0.15.0",
|
1574
1947
|
"lz4",
|
1575
1948
|
"num-traits",
|
1576
|
-
"parquet-format-safe",
|
1577
1949
|
"polars-arrow",
|
1578
1950
|
"polars-compute",
|
1579
1951
|
"polars-error",
|
1952
|
+
"polars-parquet-format",
|
1580
1953
|
"polars-utils",
|
1581
1954
|
"serde",
|
1582
1955
|
"simdutf8",
|
@@ -1585,17 +1958,27 @@ dependencies = [
|
|
1585
1958
|
"zstd",
|
1586
1959
|
]
|
1587
1960
|
|
1961
|
+
[[package]]
|
1962
|
+
name = "polars-parquet-format"
|
1963
|
+
version = "0.1.0"
|
1964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1965
|
+
checksum = "c025243dcfe8dbc57e94d9f82eb3bef10b565ab180d5b99bed87fd8aea319ce1"
|
1966
|
+
dependencies = [
|
1967
|
+
"async-trait",
|
1968
|
+
"futures",
|
1969
|
+
]
|
1970
|
+
|
1588
1971
|
[[package]]
|
1589
1972
|
name = "polars-pipe"
|
1590
|
-
version = "0.
|
1973
|
+
version = "0.44.2"
|
1591
1974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1592
|
-
checksum = "
|
1975
|
+
checksum = "05936f2b3981eecb2fe74d8ef092bb75a93d2a056b3e4f339f4ac20c71c9e331"
|
1593
1976
|
dependencies = [
|
1594
1977
|
"crossbeam-channel",
|
1595
1978
|
"crossbeam-queue",
|
1596
1979
|
"enum_dispatch",
|
1597
1980
|
"futures",
|
1598
|
-
"hashbrown",
|
1981
|
+
"hashbrown 0.15.0",
|
1599
1982
|
"num-traits",
|
1600
1983
|
"polars-arrow",
|
1601
1984
|
"polars-compute",
|
@@ -1607,15 +1990,16 @@ dependencies = [
|
|
1607
1990
|
"polars-row",
|
1608
1991
|
"polars-utils",
|
1609
1992
|
"rayon",
|
1993
|
+
"tokio",
|
1610
1994
|
"uuid",
|
1611
1995
|
"version_check",
|
1612
1996
|
]
|
1613
1997
|
|
1614
1998
|
[[package]]
|
1615
1999
|
name = "polars-plan"
|
1616
|
-
version = "0.
|
2000
|
+
version = "0.44.2"
|
1617
2001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1618
|
-
checksum = "
|
2002
|
+
checksum = "23de436f33f4d1134c58f24e7059a221b957ec20730807e0ef0c80c8e4b3d06a"
|
1619
2003
|
dependencies = [
|
1620
2004
|
"ahash",
|
1621
2005
|
"bitflags",
|
@@ -1623,9 +2007,12 @@ dependencies = [
|
|
1623
2007
|
"bytes",
|
1624
2008
|
"chrono",
|
1625
2009
|
"chrono-tz",
|
2010
|
+
"ciborium",
|
1626
2011
|
"either",
|
1627
|
-
"
|
2012
|
+
"futures",
|
2013
|
+
"hashbrown 0.15.0",
|
1628
2014
|
"memmap2",
|
2015
|
+
"num-traits",
|
1629
2016
|
"once_cell",
|
1630
2017
|
"percent-encoding",
|
1631
2018
|
"polars-arrow",
|
@@ -1636,6 +2023,7 @@ dependencies = [
|
|
1636
2023
|
"polars-parquet",
|
1637
2024
|
"polars-time",
|
1638
2025
|
"polars-utils",
|
2026
|
+
"pyo3",
|
1639
2027
|
"rayon",
|
1640
2028
|
"recursive",
|
1641
2029
|
"regex",
|
@@ -1646,9 +2034,9 @@ dependencies = [
|
|
1646
2034
|
|
1647
2035
|
[[package]]
|
1648
2036
|
name = "polars-row"
|
1649
|
-
version = "0.
|
2037
|
+
version = "0.44.2"
|
1650
2038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1651
|
-
checksum = "
|
2039
|
+
checksum = "3823d3de3e614509bba6929798f1f3d5ae05c1cdfc4eb7029d2ec6ad77201da2"
|
1652
2040
|
dependencies = [
|
1653
2041
|
"bytemuck",
|
1654
2042
|
"polars-arrow",
|
@@ -1658,9 +2046,9 @@ dependencies = [
|
|
1658
2046
|
|
1659
2047
|
[[package]]
|
1660
2048
|
name = "polars-schema"
|
1661
|
-
version = "0.
|
2049
|
+
version = "0.44.2"
|
1662
2050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1663
|
-
checksum = "
|
2051
|
+
checksum = "d88667f770291cefa2e8cd366a54f29dc6fe362e9a263914c903db411a58ac1d"
|
1664
2052
|
dependencies = [
|
1665
2053
|
"indexmap",
|
1666
2054
|
"polars-error",
|
@@ -1671,9 +2059,9 @@ dependencies = [
|
|
1671
2059
|
|
1672
2060
|
[[package]]
|
1673
2061
|
name = "polars-sql"
|
1674
|
-
version = "0.
|
2062
|
+
version = "0.44.2"
|
1675
2063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1676
|
-
checksum = "
|
2064
|
+
checksum = "69451f08363bb497407f6ebebe00bc01972a51716d20d115b75f9b5326f1f3c8"
|
1677
2065
|
dependencies = [
|
1678
2066
|
"hex",
|
1679
2067
|
"once_cell",
|
@@ -1691,11 +2079,40 @@ dependencies = [
|
|
1691
2079
|
"sqlparser",
|
1692
2080
|
]
|
1693
2081
|
|
2082
|
+
[[package]]
|
2083
|
+
name = "polars-stream"
|
2084
|
+
version = "0.44.2"
|
2085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2086
|
+
checksum = "188622b0a4bc4530cf91a288134254ffa065d18932e261075377914225e757c2"
|
2087
|
+
dependencies = [
|
2088
|
+
"atomic-waker",
|
2089
|
+
"crossbeam-deque",
|
2090
|
+
"crossbeam-utils",
|
2091
|
+
"futures",
|
2092
|
+
"memmap2",
|
2093
|
+
"parking_lot",
|
2094
|
+
"pin-project-lite",
|
2095
|
+
"polars-core",
|
2096
|
+
"polars-error",
|
2097
|
+
"polars-expr",
|
2098
|
+
"polars-io",
|
2099
|
+
"polars-mem-engine",
|
2100
|
+
"polars-parquet",
|
2101
|
+
"polars-plan",
|
2102
|
+
"polars-utils",
|
2103
|
+
"rand",
|
2104
|
+
"rayon",
|
2105
|
+
"recursive",
|
2106
|
+
"slotmap",
|
2107
|
+
"tokio",
|
2108
|
+
"version_check",
|
2109
|
+
]
|
2110
|
+
|
1694
2111
|
[[package]]
|
1695
2112
|
name = "polars-time"
|
1696
|
-
version = "0.
|
2113
|
+
version = "0.44.2"
|
1697
2114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1698
|
-
checksum = "
|
2115
|
+
checksum = "90f36e4d6b19f2c406faea585b9a1814f422fc5b310f65ccf8a55216df0754ef"
|
1699
2116
|
dependencies = [
|
1700
2117
|
"atoi",
|
1701
2118
|
"bytemuck",
|
@@ -1710,25 +2127,27 @@ dependencies = [
|
|
1710
2127
|
"polars-utils",
|
1711
2128
|
"regex",
|
1712
2129
|
"serde",
|
2130
|
+
"strum_macros",
|
1713
2131
|
]
|
1714
2132
|
|
1715
2133
|
[[package]]
|
1716
2134
|
name = "polars-utils"
|
1717
|
-
version = "0.
|
2135
|
+
version = "0.44.2"
|
1718
2136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1719
|
-
checksum = "
|
2137
|
+
checksum = "96186b70bda00c90b5027bf2f69193c5c40571e80d3e8ec505c22cdc8e3e39aa"
|
1720
2138
|
dependencies = [
|
1721
2139
|
"ahash",
|
1722
2140
|
"bytemuck",
|
1723
2141
|
"bytes",
|
1724
2142
|
"compact_str",
|
1725
|
-
"hashbrown",
|
2143
|
+
"hashbrown 0.15.0",
|
1726
2144
|
"indexmap",
|
1727
2145
|
"libc",
|
1728
2146
|
"memmap2",
|
1729
2147
|
"num-traits",
|
1730
2148
|
"once_cell",
|
1731
2149
|
"polars-error",
|
2150
|
+
"pyo3",
|
1732
2151
|
"raw-cpuid",
|
1733
2152
|
"rayon",
|
1734
2153
|
"serde",
|
@@ -1737,6 +2156,12 @@ dependencies = [
|
|
1737
2156
|
"version_check",
|
1738
2157
|
]
|
1739
2158
|
|
2159
|
+
[[package]]
|
2160
|
+
name = "portable-atomic"
|
2161
|
+
version = "1.9.0"
|
2162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2163
|
+
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
|
2164
|
+
|
1740
2165
|
[[package]]
|
1741
2166
|
name = "ppv-lite86"
|
1742
2167
|
version = "0.2.20"
|
@@ -1748,9 +2173,9 @@ dependencies = [
|
|
1748
2173
|
|
1749
2174
|
[[package]]
|
1750
2175
|
name = "proc-macro2"
|
1751
|
-
version = "1.0.
|
2176
|
+
version = "1.0.89"
|
1752
2177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1753
|
-
checksum = "
|
2178
|
+
checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
|
1754
2179
|
dependencies = [
|
1755
2180
|
"unicode-ident",
|
1756
2181
|
]
|
@@ -1764,6 +2189,128 @@ dependencies = [
|
|
1764
2189
|
"cc",
|
1765
2190
|
]
|
1766
2191
|
|
2192
|
+
[[package]]
|
2193
|
+
name = "pyo3"
|
2194
|
+
version = "0.21.2"
|
2195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2196
|
+
checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
|
2197
|
+
dependencies = [
|
2198
|
+
"cfg-if",
|
2199
|
+
"indoc",
|
2200
|
+
"libc",
|
2201
|
+
"memoffset",
|
2202
|
+
"parking_lot",
|
2203
|
+
"portable-atomic",
|
2204
|
+
"pyo3-build-config",
|
2205
|
+
"pyo3-ffi",
|
2206
|
+
"pyo3-macros",
|
2207
|
+
"unindent",
|
2208
|
+
]
|
2209
|
+
|
2210
|
+
[[package]]
|
2211
|
+
name = "pyo3-build-config"
|
2212
|
+
version = "0.21.2"
|
2213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2214
|
+
checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
|
2215
|
+
dependencies = [
|
2216
|
+
"once_cell",
|
2217
|
+
"target-lexicon",
|
2218
|
+
]
|
2219
|
+
|
2220
|
+
[[package]]
|
2221
|
+
name = "pyo3-ffi"
|
2222
|
+
version = "0.21.2"
|
2223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2224
|
+
checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
|
2225
|
+
dependencies = [
|
2226
|
+
"libc",
|
2227
|
+
"pyo3-build-config",
|
2228
|
+
]
|
2229
|
+
|
2230
|
+
[[package]]
|
2231
|
+
name = "pyo3-macros"
|
2232
|
+
version = "0.21.2"
|
2233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2234
|
+
checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
|
2235
|
+
dependencies = [
|
2236
|
+
"proc-macro2",
|
2237
|
+
"pyo3-macros-backend",
|
2238
|
+
"quote",
|
2239
|
+
"syn 2.0.85",
|
2240
|
+
]
|
2241
|
+
|
2242
|
+
[[package]]
|
2243
|
+
name = "pyo3-macros-backend"
|
2244
|
+
version = "0.21.2"
|
2245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2246
|
+
checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
|
2247
|
+
dependencies = [
|
2248
|
+
"heck 0.4.1",
|
2249
|
+
"proc-macro2",
|
2250
|
+
"pyo3-build-config",
|
2251
|
+
"quote",
|
2252
|
+
"syn 2.0.85",
|
2253
|
+
]
|
2254
|
+
|
2255
|
+
[[package]]
|
2256
|
+
name = "quick-xml"
|
2257
|
+
version = "0.36.2"
|
2258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2259
|
+
checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe"
|
2260
|
+
dependencies = [
|
2261
|
+
"memchr",
|
2262
|
+
"serde",
|
2263
|
+
]
|
2264
|
+
|
2265
|
+
[[package]]
|
2266
|
+
name = "quinn"
|
2267
|
+
version = "0.11.5"
|
2268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2269
|
+
checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684"
|
2270
|
+
dependencies = [
|
2271
|
+
"bytes",
|
2272
|
+
"pin-project-lite",
|
2273
|
+
"quinn-proto",
|
2274
|
+
"quinn-udp",
|
2275
|
+
"rustc-hash 2.0.0",
|
2276
|
+
"rustls",
|
2277
|
+
"socket2",
|
2278
|
+
"thiserror",
|
2279
|
+
"tokio",
|
2280
|
+
"tracing",
|
2281
|
+
]
|
2282
|
+
|
2283
|
+
[[package]]
|
2284
|
+
name = "quinn-proto"
|
2285
|
+
version = "0.11.8"
|
2286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2287
|
+
checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6"
|
2288
|
+
dependencies = [
|
2289
|
+
"bytes",
|
2290
|
+
"rand",
|
2291
|
+
"ring",
|
2292
|
+
"rustc-hash 2.0.0",
|
2293
|
+
"rustls",
|
2294
|
+
"slab",
|
2295
|
+
"thiserror",
|
2296
|
+
"tinyvec",
|
2297
|
+
"tracing",
|
2298
|
+
]
|
2299
|
+
|
2300
|
+
[[package]]
|
2301
|
+
name = "quinn-udp"
|
2302
|
+
version = "0.5.6"
|
2303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2304
|
+
checksum = "e346e016eacfff12233c243718197ca12f148c84e1e84268a896699b41c71780"
|
2305
|
+
dependencies = [
|
2306
|
+
"cfg_aliases",
|
2307
|
+
"libc",
|
2308
|
+
"once_cell",
|
2309
|
+
"socket2",
|
2310
|
+
"tracing",
|
2311
|
+
"windows-sys 0.59.0",
|
2312
|
+
]
|
2313
|
+
|
1767
2314
|
[[package]]
|
1768
2315
|
name = "quote"
|
1769
2316
|
version = "1.0.37"
|
@@ -1815,9 +2362,9 @@ dependencies = [
|
|
1815
2362
|
|
1816
2363
|
[[package]]
|
1817
2364
|
name = "raw-cpuid"
|
1818
|
-
version = "11.
|
2365
|
+
version = "11.2.0"
|
1819
2366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1820
|
-
checksum = "
|
2367
|
+
checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0"
|
1821
2368
|
dependencies = [
|
1822
2369
|
"bitflags",
|
1823
2370
|
]
|
@@ -1863,7 +2410,7 @@ dependencies = [
|
|
1863
2410
|
"quote",
|
1864
2411
|
"regex",
|
1865
2412
|
"shell-words",
|
1866
|
-
"syn 2.0.
|
2413
|
+
"syn 2.0.85",
|
1867
2414
|
]
|
1868
2415
|
|
1869
2416
|
[[package]]
|
@@ -1889,14 +2436,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1889
2436
|
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
1890
2437
|
dependencies = [
|
1891
2438
|
"quote",
|
1892
|
-
"syn 2.0.
|
2439
|
+
"syn 2.0.85",
|
1893
2440
|
]
|
1894
2441
|
|
1895
2442
|
[[package]]
|
1896
2443
|
name = "redox_syscall"
|
1897
|
-
version = "0.5.
|
2444
|
+
version = "0.5.7"
|
1898
2445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1899
|
-
checksum = "
|
2446
|
+
checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
|
1900
2447
|
dependencies = [
|
1901
2448
|
"bitflags",
|
1902
2449
|
]
|
@@ -1918,14 +2465,14 @@ checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6"
|
|
1918
2465
|
dependencies = [
|
1919
2466
|
"proc-macro2",
|
1920
2467
|
"quote",
|
1921
|
-
"syn 2.0.
|
2468
|
+
"syn 2.0.85",
|
1922
2469
|
]
|
1923
2470
|
|
1924
2471
|
[[package]]
|
1925
2472
|
name = "regex"
|
1926
|
-
version = "1.
|
2473
|
+
version = "1.11.1"
|
1927
2474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1928
|
-
checksum = "
|
2475
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
1929
2476
|
dependencies = [
|
1930
2477
|
"aho-corasick",
|
1931
2478
|
"memchr",
|
@@ -1935,9 +2482,9 @@ dependencies = [
|
|
1935
2482
|
|
1936
2483
|
[[package]]
|
1937
2484
|
name = "regex-automata"
|
1938
|
-
version = "0.4.
|
2485
|
+
version = "0.4.8"
|
1939
2486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1940
|
-
checksum = "
|
2487
|
+
checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
|
1941
2488
|
dependencies = [
|
1942
2489
|
"aho-corasick",
|
1943
2490
|
"memchr",
|
@@ -1946,9 +2493,69 @@ dependencies = [
|
|
1946
2493
|
|
1947
2494
|
[[package]]
|
1948
2495
|
name = "regex-syntax"
|
1949
|
-
version = "0.8.
|
2496
|
+
version = "0.8.5"
|
1950
2497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1951
|
-
checksum = "
|
2498
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
2499
|
+
|
2500
|
+
[[package]]
|
2501
|
+
name = "reqwest"
|
2502
|
+
version = "0.12.9"
|
2503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2504
|
+
checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f"
|
2505
|
+
dependencies = [
|
2506
|
+
"base64",
|
2507
|
+
"bytes",
|
2508
|
+
"futures-core",
|
2509
|
+
"futures-util",
|
2510
|
+
"h2",
|
2511
|
+
"http",
|
2512
|
+
"http-body",
|
2513
|
+
"http-body-util",
|
2514
|
+
"hyper",
|
2515
|
+
"hyper-rustls",
|
2516
|
+
"hyper-util",
|
2517
|
+
"ipnet",
|
2518
|
+
"js-sys",
|
2519
|
+
"log",
|
2520
|
+
"mime",
|
2521
|
+
"once_cell",
|
2522
|
+
"percent-encoding",
|
2523
|
+
"pin-project-lite",
|
2524
|
+
"quinn",
|
2525
|
+
"rustls",
|
2526
|
+
"rustls-native-certs",
|
2527
|
+
"rustls-pemfile",
|
2528
|
+
"rustls-pki-types",
|
2529
|
+
"serde",
|
2530
|
+
"serde_json",
|
2531
|
+
"serde_urlencoded",
|
2532
|
+
"sync_wrapper",
|
2533
|
+
"tokio",
|
2534
|
+
"tokio-rustls",
|
2535
|
+
"tokio-util",
|
2536
|
+
"tower-service",
|
2537
|
+
"url",
|
2538
|
+
"wasm-bindgen",
|
2539
|
+
"wasm-bindgen-futures",
|
2540
|
+
"wasm-streams",
|
2541
|
+
"web-sys",
|
2542
|
+
"windows-registry",
|
2543
|
+
]
|
2544
|
+
|
2545
|
+
[[package]]
|
2546
|
+
name = "ring"
|
2547
|
+
version = "0.17.8"
|
2548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2549
|
+
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
|
2550
|
+
dependencies = [
|
2551
|
+
"cc",
|
2552
|
+
"cfg-if",
|
2553
|
+
"getrandom",
|
2554
|
+
"libc",
|
2555
|
+
"spin",
|
2556
|
+
"untrusted",
|
2557
|
+
"windows-sys 0.52.0",
|
2558
|
+
]
|
1952
2559
|
|
1953
2560
|
[[package]]
|
1954
2561
|
name = "rle-decode-fast"
|
@@ -1968,11 +2575,83 @@ version = "1.1.0"
|
|
1968
2575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1969
2576
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1970
2577
|
|
2578
|
+
[[package]]
|
2579
|
+
name = "rustc-hash"
|
2580
|
+
version = "2.0.0"
|
2581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2582
|
+
checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
|
2583
|
+
|
2584
|
+
[[package]]
|
2585
|
+
name = "rustix"
|
2586
|
+
version = "0.38.38"
|
2587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2588
|
+
checksum = "aa260229e6538e52293eeb577aabd09945a09d6d9cc0fc550ed7529056c2e32a"
|
2589
|
+
dependencies = [
|
2590
|
+
"bitflags",
|
2591
|
+
"errno",
|
2592
|
+
"libc",
|
2593
|
+
"linux-raw-sys",
|
2594
|
+
"windows-sys 0.52.0",
|
2595
|
+
]
|
2596
|
+
|
2597
|
+
[[package]]
|
2598
|
+
name = "rustls"
|
2599
|
+
version = "0.23.16"
|
2600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2601
|
+
checksum = "eee87ff5d9b36712a58574e12e9f0ea80f915a5b0ac518d322b24a465617925e"
|
2602
|
+
dependencies = [
|
2603
|
+
"once_cell",
|
2604
|
+
"ring",
|
2605
|
+
"rustls-pki-types",
|
2606
|
+
"rustls-webpki",
|
2607
|
+
"subtle",
|
2608
|
+
"zeroize",
|
2609
|
+
]
|
2610
|
+
|
2611
|
+
[[package]]
|
2612
|
+
name = "rustls-native-certs"
|
2613
|
+
version = "0.8.0"
|
2614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2615
|
+
checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a"
|
2616
|
+
dependencies = [
|
2617
|
+
"openssl-probe",
|
2618
|
+
"rustls-pemfile",
|
2619
|
+
"rustls-pki-types",
|
2620
|
+
"schannel",
|
2621
|
+
"security-framework",
|
2622
|
+
]
|
2623
|
+
|
2624
|
+
[[package]]
|
2625
|
+
name = "rustls-pemfile"
|
2626
|
+
version = "2.2.0"
|
2627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2628
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
2629
|
+
dependencies = [
|
2630
|
+
"rustls-pki-types",
|
2631
|
+
]
|
2632
|
+
|
2633
|
+
[[package]]
|
2634
|
+
name = "rustls-pki-types"
|
2635
|
+
version = "1.10.0"
|
2636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2637
|
+
checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
|
2638
|
+
|
2639
|
+
[[package]]
|
2640
|
+
name = "rustls-webpki"
|
2641
|
+
version = "0.102.8"
|
2642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2643
|
+
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
|
2644
|
+
dependencies = [
|
2645
|
+
"ring",
|
2646
|
+
"rustls-pki-types",
|
2647
|
+
"untrusted",
|
2648
|
+
]
|
2649
|
+
|
1971
2650
|
[[package]]
|
1972
2651
|
name = "rustversion"
|
1973
|
-
version = "1.0.
|
2652
|
+
version = "1.0.18"
|
1974
2653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1975
|
-
checksum = "
|
2654
|
+
checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248"
|
1976
2655
|
|
1977
2656
|
[[package]]
|
1978
2657
|
name = "ryu"
|
@@ -1980,12 +2659,53 @@ version = "1.0.18"
|
|
1980
2659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1981
2660
|
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
1982
2661
|
|
2662
|
+
[[package]]
|
2663
|
+
name = "same-file"
|
2664
|
+
version = "1.0.6"
|
2665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2666
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
2667
|
+
dependencies = [
|
2668
|
+
"winapi-util",
|
2669
|
+
]
|
2670
|
+
|
2671
|
+
[[package]]
|
2672
|
+
name = "schannel"
|
2673
|
+
version = "0.1.26"
|
2674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2675
|
+
checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1"
|
2676
|
+
dependencies = [
|
2677
|
+
"windows-sys 0.59.0",
|
2678
|
+
]
|
2679
|
+
|
1983
2680
|
[[package]]
|
1984
2681
|
name = "scopeguard"
|
1985
2682
|
version = "1.2.0"
|
1986
2683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1987
2684
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1988
2685
|
|
2686
|
+
[[package]]
|
2687
|
+
name = "security-framework"
|
2688
|
+
version = "2.11.1"
|
2689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2690
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
2691
|
+
dependencies = [
|
2692
|
+
"bitflags",
|
2693
|
+
"core-foundation",
|
2694
|
+
"core-foundation-sys",
|
2695
|
+
"libc",
|
2696
|
+
"security-framework-sys",
|
2697
|
+
]
|
2698
|
+
|
2699
|
+
[[package]]
|
2700
|
+
name = "security-framework-sys"
|
2701
|
+
version = "2.12.0"
|
2702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2703
|
+
checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6"
|
2704
|
+
dependencies = [
|
2705
|
+
"core-foundation-sys",
|
2706
|
+
"libc",
|
2707
|
+
]
|
2708
|
+
|
1989
2709
|
[[package]]
|
1990
2710
|
name = "seq-macro"
|
1991
2711
|
version = "0.3.5"
|
@@ -1994,29 +2714,29 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
|
1994
2714
|
|
1995
2715
|
[[package]]
|
1996
2716
|
name = "serde"
|
1997
|
-
version = "1.0.
|
2717
|
+
version = "1.0.214"
|
1998
2718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1999
|
-
checksum = "
|
2719
|
+
checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5"
|
2000
2720
|
dependencies = [
|
2001
2721
|
"serde_derive",
|
2002
2722
|
]
|
2003
2723
|
|
2004
2724
|
[[package]]
|
2005
2725
|
name = "serde_derive"
|
2006
|
-
version = "1.0.
|
2726
|
+
version = "1.0.214"
|
2007
2727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2008
|
-
checksum = "
|
2728
|
+
checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766"
|
2009
2729
|
dependencies = [
|
2010
2730
|
"proc-macro2",
|
2011
2731
|
"quote",
|
2012
|
-
"syn 2.0.
|
2732
|
+
"syn 2.0.85",
|
2013
2733
|
]
|
2014
2734
|
|
2015
2735
|
[[package]]
|
2016
2736
|
name = "serde_json"
|
2017
|
-
version = "1.0.
|
2737
|
+
version = "1.0.132"
|
2018
2738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019
|
-
checksum = "
|
2739
|
+
checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03"
|
2020
2740
|
dependencies = [
|
2021
2741
|
"indexmap",
|
2022
2742
|
"itoa",
|
@@ -2025,6 +2745,18 @@ dependencies = [
|
|
2025
2745
|
"serde",
|
2026
2746
|
]
|
2027
2747
|
|
2748
|
+
[[package]]
|
2749
|
+
name = "serde_urlencoded"
|
2750
|
+
version = "0.7.1"
|
2751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2752
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
2753
|
+
dependencies = [
|
2754
|
+
"form_urlencoded",
|
2755
|
+
"itoa",
|
2756
|
+
"ryu",
|
2757
|
+
"serde",
|
2758
|
+
]
|
2759
|
+
|
2028
2760
|
[[package]]
|
2029
2761
|
name = "shell-words"
|
2030
2762
|
version = "1.1.0"
|
@@ -2039,14 +2771,13 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2039
2771
|
|
2040
2772
|
[[package]]
|
2041
2773
|
name = "simd-json"
|
2042
|
-
version = "0.
|
2774
|
+
version = "0.14.2"
|
2043
2775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2044
|
-
checksum = "
|
2776
|
+
checksum = "b1df0290e9bfe79ddd5ff8798ca887cd107b75353d2957efe9777296e17f26b5"
|
2045
2777
|
dependencies = [
|
2046
2778
|
"ahash",
|
2047
2779
|
"getrandom",
|
2048
2780
|
"halfbrown",
|
2049
|
-
"lexical-core",
|
2050
2781
|
"once_cell",
|
2051
2782
|
"ref-cast",
|
2052
2783
|
"serde",
|
@@ -2057,9 +2788,9 @@ dependencies = [
|
|
2057
2788
|
|
2058
2789
|
[[package]]
|
2059
2790
|
name = "simdutf8"
|
2060
|
-
version = "0.1.
|
2791
|
+
version = "0.1.5"
|
2061
2792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2062
|
-
checksum = "
|
2793
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
2063
2794
|
|
2064
2795
|
[[package]]
|
2065
2796
|
name = "siphasher"
|
@@ -2076,12 +2807,43 @@ dependencies = [
|
|
2076
2807
|
"autocfg",
|
2077
2808
|
]
|
2078
2809
|
|
2810
|
+
[[package]]
|
2811
|
+
name = "slotmap"
|
2812
|
+
version = "1.0.7"
|
2813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2814
|
+
checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
|
2815
|
+
dependencies = [
|
2816
|
+
"version_check",
|
2817
|
+
]
|
2818
|
+
|
2079
2819
|
[[package]]
|
2080
2820
|
name = "smallvec"
|
2081
2821
|
version = "1.13.2"
|
2082
2822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2083
2823
|
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
2084
2824
|
|
2825
|
+
[[package]]
|
2826
|
+
name = "snafu"
|
2827
|
+
version = "0.7.5"
|
2828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2829
|
+
checksum = "e4de37ad025c587a29e8f3f5605c00f70b98715ef90b9061a815b9e59e9042d6"
|
2830
|
+
dependencies = [
|
2831
|
+
"doc-comment",
|
2832
|
+
"snafu-derive",
|
2833
|
+
]
|
2834
|
+
|
2835
|
+
[[package]]
|
2836
|
+
name = "snafu-derive"
|
2837
|
+
version = "0.7.5"
|
2838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2839
|
+
checksum = "990079665f075b699031e9c08fd3ab99be5029b96f3b78dc0709e8f77e4efebf"
|
2840
|
+
dependencies = [
|
2841
|
+
"heck 0.4.1",
|
2842
|
+
"proc-macro2",
|
2843
|
+
"quote",
|
2844
|
+
"syn 1.0.109",
|
2845
|
+
]
|
2846
|
+
|
2085
2847
|
[[package]]
|
2086
2848
|
name = "snap"
|
2087
2849
|
version = "1.1.1"
|
@@ -2098,6 +2860,12 @@ dependencies = [
|
|
2098
2860
|
"windows-sys 0.52.0",
|
2099
2861
|
]
|
2100
2862
|
|
2863
|
+
[[package]]
|
2864
|
+
name = "spin"
|
2865
|
+
version = "0.9.8"
|
2866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2867
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
2868
|
+
|
2101
2869
|
[[package]]
|
2102
2870
|
name = "sqlparser"
|
2103
2871
|
version = "0.49.0"
|
@@ -2159,13 +2927,19 @@ version = "0.26.4"
|
|
2159
2927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2160
2928
|
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
2161
2929
|
dependencies = [
|
2162
|
-
"heck",
|
2930
|
+
"heck 0.5.0",
|
2163
2931
|
"proc-macro2",
|
2164
2932
|
"quote",
|
2165
2933
|
"rustversion",
|
2166
|
-
"syn 2.0.
|
2934
|
+
"syn 2.0.85",
|
2167
2935
|
]
|
2168
2936
|
|
2937
|
+
[[package]]
|
2938
|
+
name = "subtle"
|
2939
|
+
version = "2.6.1"
|
2940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2941
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
2942
|
+
|
2169
2943
|
[[package]]
|
2170
2944
|
name = "syn"
|
2171
2945
|
version = "1.0.109"
|
@@ -2179,15 +2953,24 @@ dependencies = [
|
|
2179
2953
|
|
2180
2954
|
[[package]]
|
2181
2955
|
name = "syn"
|
2182
|
-
version = "2.0.
|
2956
|
+
version = "2.0.85"
|
2183
2957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2184
|
-
checksum = "
|
2958
|
+
checksum = "5023162dfcd14ef8f32034d8bcd4cc5ddc61ef7a247c024a33e24e1f24d21b56"
|
2185
2959
|
dependencies = [
|
2186
2960
|
"proc-macro2",
|
2187
2961
|
"quote",
|
2188
2962
|
"unicode-ident",
|
2189
2963
|
]
|
2190
2964
|
|
2965
|
+
[[package]]
|
2966
|
+
name = "sync_wrapper"
|
2967
|
+
version = "1.0.1"
|
2968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2969
|
+
checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
|
2970
|
+
dependencies = [
|
2971
|
+
"futures-core",
|
2972
|
+
]
|
2973
|
+
|
2191
2974
|
[[package]]
|
2192
2975
|
name = "sysinfo"
|
2193
2976
|
version = "0.31.4"
|
@@ -2207,31 +2990,52 @@ version = "0.1.6"
|
|
2207
2990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2208
2991
|
checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
|
2209
2992
|
|
2993
|
+
[[package]]
|
2994
|
+
name = "target-lexicon"
|
2995
|
+
version = "0.12.16"
|
2996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2997
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
2998
|
+
|
2210
2999
|
[[package]]
|
2211
3000
|
name = "thiserror"
|
2212
|
-
version = "1.0.
|
3001
|
+
version = "1.0.65"
|
2213
3002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2214
|
-
checksum = "
|
3003
|
+
checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5"
|
2215
3004
|
dependencies = [
|
2216
3005
|
"thiserror-impl",
|
2217
3006
|
]
|
2218
3007
|
|
2219
3008
|
[[package]]
|
2220
3009
|
name = "thiserror-impl"
|
2221
|
-
version = "1.0.
|
3010
|
+
version = "1.0.65"
|
2222
3011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2223
|
-
checksum = "
|
3012
|
+
checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602"
|
2224
3013
|
dependencies = [
|
2225
3014
|
"proc-macro2",
|
2226
3015
|
"quote",
|
2227
|
-
"syn 2.0.
|
3016
|
+
"syn 2.0.85",
|
3017
|
+
]
|
3018
|
+
|
3019
|
+
[[package]]
|
3020
|
+
name = "tinyvec"
|
3021
|
+
version = "1.8.0"
|
3022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3023
|
+
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
|
3024
|
+
dependencies = [
|
3025
|
+
"tinyvec_macros",
|
2228
3026
|
]
|
2229
3027
|
|
3028
|
+
[[package]]
|
3029
|
+
name = "tinyvec_macros"
|
3030
|
+
version = "0.1.1"
|
3031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3032
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
3033
|
+
|
2230
3034
|
[[package]]
|
2231
3035
|
name = "tokio"
|
2232
|
-
version = "1.
|
3036
|
+
version = "1.41.0"
|
2233
3037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2234
|
-
checksum = "
|
3038
|
+
checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb"
|
2235
3039
|
dependencies = [
|
2236
3040
|
"backtrace",
|
2237
3041
|
"bytes",
|
@@ -2239,9 +3043,32 @@ dependencies = [
|
|
2239
3043
|
"mio",
|
2240
3044
|
"pin-project-lite",
|
2241
3045
|
"socket2",
|
3046
|
+
"tokio-macros",
|
2242
3047
|
"windows-sys 0.52.0",
|
2243
3048
|
]
|
2244
3049
|
|
3050
|
+
[[package]]
|
3051
|
+
name = "tokio-macros"
|
3052
|
+
version = "2.4.0"
|
3053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3054
|
+
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
|
3055
|
+
dependencies = [
|
3056
|
+
"proc-macro2",
|
3057
|
+
"quote",
|
3058
|
+
"syn 2.0.85",
|
3059
|
+
]
|
3060
|
+
|
3061
|
+
[[package]]
|
3062
|
+
name = "tokio-rustls"
|
3063
|
+
version = "0.26.0"
|
3064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3065
|
+
checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
|
3066
|
+
dependencies = [
|
3067
|
+
"rustls",
|
3068
|
+
"rustls-pki-types",
|
3069
|
+
"tokio",
|
3070
|
+
]
|
3071
|
+
|
2245
3072
|
[[package]]
|
2246
3073
|
name = "tokio-util"
|
2247
3074
|
version = "0.7.12"
|
@@ -2255,12 +3082,76 @@ dependencies = [
|
|
2255
3082
|
"tokio",
|
2256
3083
|
]
|
2257
3084
|
|
3085
|
+
[[package]]
|
3086
|
+
name = "tower-service"
|
3087
|
+
version = "0.3.3"
|
3088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3089
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
3090
|
+
|
3091
|
+
[[package]]
|
3092
|
+
name = "tracing"
|
3093
|
+
version = "0.1.40"
|
3094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3095
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
3096
|
+
dependencies = [
|
3097
|
+
"pin-project-lite",
|
3098
|
+
"tracing-attributes",
|
3099
|
+
"tracing-core",
|
3100
|
+
]
|
3101
|
+
|
3102
|
+
[[package]]
|
3103
|
+
name = "tracing-attributes"
|
3104
|
+
version = "0.1.27"
|
3105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3106
|
+
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
3107
|
+
dependencies = [
|
3108
|
+
"proc-macro2",
|
3109
|
+
"quote",
|
3110
|
+
"syn 2.0.85",
|
3111
|
+
]
|
3112
|
+
|
3113
|
+
[[package]]
|
3114
|
+
name = "tracing-core"
|
3115
|
+
version = "0.1.32"
|
3116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3117
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
3118
|
+
dependencies = [
|
3119
|
+
"once_cell",
|
3120
|
+
]
|
3121
|
+
|
3122
|
+
[[package]]
|
3123
|
+
name = "try-lock"
|
3124
|
+
version = "0.2.5"
|
3125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3126
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
3127
|
+
|
3128
|
+
[[package]]
|
3129
|
+
name = "typenum"
|
3130
|
+
version = "1.17.0"
|
3131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3132
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
3133
|
+
|
3134
|
+
[[package]]
|
3135
|
+
name = "unicode-bidi"
|
3136
|
+
version = "0.3.17"
|
3137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3138
|
+
checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
|
3139
|
+
|
2258
3140
|
[[package]]
|
2259
3141
|
name = "unicode-ident"
|
2260
3142
|
version = "1.0.13"
|
2261
3143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2262
3144
|
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
|
2263
3145
|
|
3146
|
+
[[package]]
|
3147
|
+
name = "unicode-normalization"
|
3148
|
+
version = "0.1.24"
|
3149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3150
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
3151
|
+
dependencies = [
|
3152
|
+
"tinyvec",
|
3153
|
+
]
|
3154
|
+
|
2264
3155
|
[[package]]
|
2265
3156
|
name = "unicode-reverse"
|
2266
3157
|
version = "1.0.9"
|
@@ -2272,30 +3163,53 @@ dependencies = [
|
|
2272
3163
|
|
2273
3164
|
[[package]]
|
2274
3165
|
name = "unicode-segmentation"
|
2275
|
-
version = "1.
|
3166
|
+
version = "1.12.0"
|
2276
3167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2277
|
-
checksum = "
|
3168
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
2278
3169
|
|
2279
3170
|
[[package]]
|
2280
3171
|
name = "unicode-width"
|
2281
|
-
version = "0.1.
|
3172
|
+
version = "0.1.14"
|
3173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3174
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
3175
|
+
|
3176
|
+
[[package]]
|
3177
|
+
name = "unindent"
|
3178
|
+
version = "0.2.3"
|
3179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3180
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
3181
|
+
|
3182
|
+
[[package]]
|
3183
|
+
name = "untrusted"
|
3184
|
+
version = "0.9.0"
|
3185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3186
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
3187
|
+
|
3188
|
+
[[package]]
|
3189
|
+
name = "url"
|
3190
|
+
version = "2.5.2"
|
2282
3191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2283
|
-
checksum = "
|
3192
|
+
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
|
3193
|
+
dependencies = [
|
3194
|
+
"form_urlencoded",
|
3195
|
+
"idna",
|
3196
|
+
"percent-encoding",
|
3197
|
+
]
|
2284
3198
|
|
2285
3199
|
[[package]]
|
2286
3200
|
name = "uuid"
|
2287
|
-
version = "1.
|
3201
|
+
version = "1.11.0"
|
2288
3202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2289
|
-
checksum = "
|
3203
|
+
checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
|
2290
3204
|
dependencies = [
|
2291
3205
|
"getrandom",
|
2292
3206
|
]
|
2293
3207
|
|
2294
3208
|
[[package]]
|
2295
3209
|
name = "value-trait"
|
2296
|
-
version = "0.
|
3210
|
+
version = "0.10.1"
|
2297
3211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2298
|
-
checksum = "
|
3212
|
+
checksum = "9170e001f458781e92711d2ad666110f153e4e50bfd5cbd02db6547625714187"
|
2299
3213
|
dependencies = [
|
2300
3214
|
"float-cmp",
|
2301
3215
|
"halfbrown",
|
@@ -2309,6 +3223,25 @@ version = "0.9.5"
|
|
2309
3223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2310
3224
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
2311
3225
|
|
3226
|
+
[[package]]
|
3227
|
+
name = "walkdir"
|
3228
|
+
version = "2.5.0"
|
3229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3230
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
3231
|
+
dependencies = [
|
3232
|
+
"same-file",
|
3233
|
+
"winapi-util",
|
3234
|
+
]
|
3235
|
+
|
3236
|
+
[[package]]
|
3237
|
+
name = "want"
|
3238
|
+
version = "0.3.1"
|
3239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3240
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
3241
|
+
dependencies = [
|
3242
|
+
"try-lock",
|
3243
|
+
]
|
3244
|
+
|
2312
3245
|
[[package]]
|
2313
3246
|
name = "wasi"
|
2314
3247
|
version = "0.11.0+wasi-snapshot-preview1"
|
@@ -2317,9 +3250,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2317
3250
|
|
2318
3251
|
[[package]]
|
2319
3252
|
name = "wasm-bindgen"
|
2320
|
-
version = "0.2.
|
3253
|
+
version = "0.2.95"
|
2321
3254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2322
|
-
checksum = "
|
3255
|
+
checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
|
2323
3256
|
dependencies = [
|
2324
3257
|
"cfg-if",
|
2325
3258
|
"once_cell",
|
@@ -2328,24 +3261,36 @@ dependencies = [
|
|
2328
3261
|
|
2329
3262
|
[[package]]
|
2330
3263
|
name = "wasm-bindgen-backend"
|
2331
|
-
version = "0.2.
|
3264
|
+
version = "0.2.95"
|
2332
3265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2333
|
-
checksum = "
|
3266
|
+
checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
|
2334
3267
|
dependencies = [
|
2335
3268
|
"bumpalo",
|
2336
3269
|
"log",
|
2337
3270
|
"once_cell",
|
2338
3271
|
"proc-macro2",
|
2339
3272
|
"quote",
|
2340
|
-
"syn 2.0.
|
3273
|
+
"syn 2.0.85",
|
2341
3274
|
"wasm-bindgen-shared",
|
2342
3275
|
]
|
2343
3276
|
|
3277
|
+
[[package]]
|
3278
|
+
name = "wasm-bindgen-futures"
|
3279
|
+
version = "0.4.45"
|
3280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3281
|
+
checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
|
3282
|
+
dependencies = [
|
3283
|
+
"cfg-if",
|
3284
|
+
"js-sys",
|
3285
|
+
"wasm-bindgen",
|
3286
|
+
"web-sys",
|
3287
|
+
]
|
3288
|
+
|
2344
3289
|
[[package]]
|
2345
3290
|
name = "wasm-bindgen-macro"
|
2346
|
-
version = "0.2.
|
3291
|
+
version = "0.2.95"
|
2347
3292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2348
|
-
checksum = "
|
3293
|
+
checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
|
2349
3294
|
dependencies = [
|
2350
3295
|
"quote",
|
2351
3296
|
"wasm-bindgen-macro-support",
|
@@ -2353,22 +3298,45 @@ dependencies = [
|
|
2353
3298
|
|
2354
3299
|
[[package]]
|
2355
3300
|
name = "wasm-bindgen-macro-support"
|
2356
|
-
version = "0.2.
|
3301
|
+
version = "0.2.95"
|
2357
3302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2358
|
-
checksum = "
|
3303
|
+
checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
|
2359
3304
|
dependencies = [
|
2360
3305
|
"proc-macro2",
|
2361
3306
|
"quote",
|
2362
|
-
"syn 2.0.
|
3307
|
+
"syn 2.0.85",
|
2363
3308
|
"wasm-bindgen-backend",
|
2364
3309
|
"wasm-bindgen-shared",
|
2365
3310
|
]
|
2366
3311
|
|
2367
3312
|
[[package]]
|
2368
3313
|
name = "wasm-bindgen-shared"
|
2369
|
-
version = "0.2.
|
3314
|
+
version = "0.2.95"
|
3315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3316
|
+
checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
|
3317
|
+
|
3318
|
+
[[package]]
|
3319
|
+
name = "wasm-streams"
|
3320
|
+
version = "0.4.2"
|
3321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3322
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
3323
|
+
dependencies = [
|
3324
|
+
"futures-util",
|
3325
|
+
"js-sys",
|
3326
|
+
"wasm-bindgen",
|
3327
|
+
"wasm-bindgen-futures",
|
3328
|
+
"web-sys",
|
3329
|
+
]
|
3330
|
+
|
3331
|
+
[[package]]
|
3332
|
+
name = "web-sys"
|
3333
|
+
version = "0.3.72"
|
2370
3334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2371
|
-
checksum = "
|
3335
|
+
checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
|
3336
|
+
dependencies = [
|
3337
|
+
"js-sys",
|
3338
|
+
"wasm-bindgen",
|
3339
|
+
]
|
2372
3340
|
|
2373
3341
|
[[package]]
|
2374
3342
|
name = "winapi"
|
@@ -2386,6 +3354,15 @@ version = "0.4.0"
|
|
2386
3354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2387
3355
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2388
3356
|
|
3357
|
+
[[package]]
|
3358
|
+
name = "winapi-util"
|
3359
|
+
version = "0.1.9"
|
3360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3361
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
3362
|
+
dependencies = [
|
3363
|
+
"windows-sys 0.59.0",
|
3364
|
+
]
|
3365
|
+
|
2389
3366
|
[[package]]
|
2390
3367
|
name = "winapi-x86_64-pc-windows-gnu"
|
2391
3368
|
version = "0.4.0"
|
@@ -2419,7 +3396,7 @@ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
|
|
2419
3396
|
dependencies = [
|
2420
3397
|
"windows-implement",
|
2421
3398
|
"windows-interface",
|
2422
|
-
"windows-result",
|
3399
|
+
"windows-result 0.1.2",
|
2423
3400
|
"windows-targets",
|
2424
3401
|
]
|
2425
3402
|
|
@@ -2431,7 +3408,7 @@ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
|
|
2431
3408
|
dependencies = [
|
2432
3409
|
"proc-macro2",
|
2433
3410
|
"quote",
|
2434
|
-
"syn 2.0.
|
3411
|
+
"syn 2.0.85",
|
2435
3412
|
]
|
2436
3413
|
|
2437
3414
|
[[package]]
|
@@ -2442,7 +3419,18 @@ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
|
|
2442
3419
|
dependencies = [
|
2443
3420
|
"proc-macro2",
|
2444
3421
|
"quote",
|
2445
|
-
"syn 2.0.
|
3422
|
+
"syn 2.0.85",
|
3423
|
+
]
|
3424
|
+
|
3425
|
+
[[package]]
|
3426
|
+
name = "windows-registry"
|
3427
|
+
version = "0.2.0"
|
3428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3429
|
+
checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
|
3430
|
+
dependencies = [
|
3431
|
+
"windows-result 0.2.0",
|
3432
|
+
"windows-strings",
|
3433
|
+
"windows-targets",
|
2446
3434
|
]
|
2447
3435
|
|
2448
3436
|
[[package]]
|
@@ -2454,6 +3442,25 @@ dependencies = [
|
|
2454
3442
|
"windows-targets",
|
2455
3443
|
]
|
2456
3444
|
|
3445
|
+
[[package]]
|
3446
|
+
name = "windows-result"
|
3447
|
+
version = "0.2.0"
|
3448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3449
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
3450
|
+
dependencies = [
|
3451
|
+
"windows-targets",
|
3452
|
+
]
|
3453
|
+
|
3454
|
+
[[package]]
|
3455
|
+
name = "windows-strings"
|
3456
|
+
version = "0.1.0"
|
3457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3458
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
3459
|
+
dependencies = [
|
3460
|
+
"windows-result 0.2.0",
|
3461
|
+
"windows-targets",
|
3462
|
+
]
|
3463
|
+
|
2457
3464
|
[[package]]
|
2458
3465
|
name = "windows-sys"
|
2459
3466
|
version = "0.52.0"
|
@@ -2560,9 +3567,15 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
2560
3567
|
dependencies = [
|
2561
3568
|
"proc-macro2",
|
2562
3569
|
"quote",
|
2563
|
-
"syn 2.0.
|
3570
|
+
"syn 2.0.85",
|
2564
3571
|
]
|
2565
3572
|
|
3573
|
+
[[package]]
|
3574
|
+
name = "zeroize"
|
3575
|
+
version = "1.8.1"
|
3576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3577
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
3578
|
+
|
2566
3579
|
[[package]]
|
2567
3580
|
name = "zstd"
|
2568
3581
|
version = "0.13.2"
|