polars-df 0.13.0-arm64-darwin → 0.15.0-arm64-darwin
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +30 -0
- data/Cargo.lock +1368 -319
- data/LICENSE-THIRD-PARTY.txt +24439 -12853
- data/LICENSE.txt +1 -0
- data/README.md +1 -2
- data/lib/polars/3.1/polars.bundle +0 -0
- data/lib/polars/3.2/polars.bundle +0 -0
- data/lib/polars/3.3/polars.bundle +0 -0
- data/lib/polars/batched_csv_reader.rb +0 -2
- data/lib/polars/binary_expr.rb +133 -9
- data/lib/polars/binary_name_space.rb +101 -6
- data/lib/polars/config.rb +4 -0
- data/lib/polars/data_frame.rb +285 -62
- 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 +109 -8
- 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 -12
- 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 +470 -40
- 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 +4 -3
- data/lib/polars/functions.rb +0 -57
data/Cargo.lock
CHANGED
@@ -4,18 +4,18 @@ version = 3
|
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "addr2line"
|
7
|
-
version = "0.
|
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
|
]
|
13
13
|
|
14
14
|
[[package]]
|
15
|
-
name = "
|
16
|
-
version = "
|
15
|
+
name = "adler2"
|
16
|
+
version = "2.0.0"
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
-
checksum = "
|
18
|
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
19
19
|
|
20
20
|
[[package]]
|
21
21
|
name = "adler32"
|
@@ -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"
|
@@ -166,17 +184,17 @@ dependencies = [
|
|
166
184
|
|
167
185
|
[[package]]
|
168
186
|
name = "backtrace"
|
169
|
-
version = "0.3.
|
187
|
+
version = "0.3.74"
|
170
188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
171
|
-
checksum = "
|
189
|
+
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
172
190
|
dependencies = [
|
173
191
|
"addr2line",
|
174
|
-
"cc",
|
175
192
|
"cfg-if",
|
176
193
|
"libc",
|
177
194
|
"miniz_oxide",
|
178
195
|
"object",
|
179
196
|
"rustc-demangle",
|
197
|
+
"windows-targets",
|
180
198
|
]
|
181
199
|
|
182
200
|
[[package]]
|
@@ -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,15 +309,24 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
269
309
|
|
270
310
|
[[package]]
|
271
311
|
name = "bytes"
|
272
|
-
version = "1.
|
312
|
+
version = "1.8.0"
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
314
|
+
checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
|
315
|
+
|
316
|
+
[[package]]
|
317
|
+
name = "castaway"
|
318
|
+
version = "0.2.3"
|
273
319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
274
|
-
checksum = "
|
320
|
+
checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
|
321
|
+
dependencies = [
|
322
|
+
"rustversion",
|
323
|
+
]
|
275
324
|
|
276
325
|
[[package]]
|
277
326
|
name = "cc"
|
278
|
-
version = "1.1.
|
327
|
+
version = "1.1.31"
|
279
328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
280
|
-
checksum = "
|
329
|
+
checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f"
|
281
330
|
dependencies = [
|
282
331
|
"jobserver",
|
283
332
|
"libc",
|
@@ -299,6 +348,12 @@ version = "1.0.0"
|
|
299
348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
300
349
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
301
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
|
+
|
302
357
|
[[package]]
|
303
358
|
name = "chrono"
|
304
359
|
version = "0.4.38"
|
@@ -336,6 +391,33 @@ dependencies = [
|
|
336
391
|
"phf_codegen",
|
337
392
|
]
|
338
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
|
+
|
339
421
|
[[package]]
|
340
422
|
name = "clang-sys"
|
341
423
|
version = "1.8.1"
|
@@ -359,6 +441,37 @@ dependencies = [
|
|
359
441
|
"unicode-width",
|
360
442
|
]
|
361
443
|
|
444
|
+
[[package]]
|
445
|
+
name = "compact_str"
|
446
|
+
version = "0.8.0"
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
448
|
+
checksum = "6050c3a16ddab2e412160b31f2c871015704239bca62f72f6e5f0be631d3f644"
|
449
|
+
dependencies = [
|
450
|
+
"castaway",
|
451
|
+
"cfg-if",
|
452
|
+
"itoa",
|
453
|
+
"rustversion",
|
454
|
+
"ryu",
|
455
|
+
"serde",
|
456
|
+
"static_assertions",
|
457
|
+
]
|
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
|
+
|
362
475
|
[[package]]
|
363
476
|
name = "core-foundation-sys"
|
364
477
|
version = "0.8.7"
|
@@ -454,6 +567,38 @@ dependencies = [
|
|
454
567
|
"winapi",
|
455
568
|
]
|
456
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
|
+
|
457
602
|
[[package]]
|
458
603
|
name = "dyn-clone"
|
459
604
|
version = "1.0.17"
|
@@ -478,7 +623,7 @@ dependencies = [
|
|
478
623
|
"once_cell",
|
479
624
|
"proc-macro2",
|
480
625
|
"quote",
|
481
|
-
"syn 2.0.
|
626
|
+
"syn 2.0.85",
|
482
627
|
]
|
483
628
|
|
484
629
|
[[package]]
|
@@ -487,6 +632,16 @@ version = "1.0.1"
|
|
487
632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
488
633
|
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
489
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
|
+
|
490
645
|
[[package]]
|
491
646
|
name = "ethnum"
|
492
647
|
version = "1.5.0"
|
@@ -507,9 +662,9 @@ checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
|
|
507
662
|
|
508
663
|
[[package]]
|
509
664
|
name = "flate2"
|
510
|
-
version = "1.0.
|
665
|
+
version = "1.0.34"
|
511
666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
512
|
-
checksum = "
|
667
|
+
checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
|
513
668
|
dependencies = [
|
514
669
|
"crc32fast",
|
515
670
|
"miniz_oxide",
|
@@ -517,18 +672,49 @@ dependencies = [
|
|
517
672
|
|
518
673
|
[[package]]
|
519
674
|
name = "float-cmp"
|
520
|
-
version = "0.
|
675
|
+
version = "0.10.0"
|
521
676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
522
|
-
checksum = "
|
677
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
523
678
|
dependencies = [
|
524
679
|
"num-traits",
|
525
680
|
]
|
526
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
|
+
|
527
713
|
[[package]]
|
528
714
|
name = "futures"
|
529
|
-
version = "0.3.
|
715
|
+
version = "0.3.31"
|
530
716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
531
|
-
checksum = "
|
717
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
532
718
|
dependencies = [
|
533
719
|
"futures-channel",
|
534
720
|
"futures-core",
|
@@ -541,9 +727,9 @@ dependencies = [
|
|
541
727
|
|
542
728
|
[[package]]
|
543
729
|
name = "futures-channel"
|
544
|
-
version = "0.3.
|
730
|
+
version = "0.3.31"
|
545
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
546
|
-
checksum = "
|
732
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
547
733
|
dependencies = [
|
548
734
|
"futures-core",
|
549
735
|
"futures-sink",
|
@@ -551,15 +737,15 @@ dependencies = [
|
|
551
737
|
|
552
738
|
[[package]]
|
553
739
|
name = "futures-core"
|
554
|
-
version = "0.3.
|
740
|
+
version = "0.3.31"
|
555
741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
556
|
-
checksum = "
|
742
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
557
743
|
|
558
744
|
[[package]]
|
559
745
|
name = "futures-executor"
|
560
|
-
version = "0.3.
|
746
|
+
version = "0.3.31"
|
561
747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
562
|
-
checksum = "
|
748
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
563
749
|
dependencies = [
|
564
750
|
"futures-core",
|
565
751
|
"futures-task",
|
@@ -568,38 +754,38 @@ dependencies = [
|
|
568
754
|
|
569
755
|
[[package]]
|
570
756
|
name = "futures-io"
|
571
|
-
version = "0.3.
|
757
|
+
version = "0.3.31"
|
572
758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
573
|
-
checksum = "
|
759
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
574
760
|
|
575
761
|
[[package]]
|
576
762
|
name = "futures-macro"
|
577
|
-
version = "0.3.
|
763
|
+
version = "0.3.31"
|
578
764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
579
|
-
checksum = "
|
765
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
580
766
|
dependencies = [
|
581
767
|
"proc-macro2",
|
582
768
|
"quote",
|
583
|
-
"syn 2.0.
|
769
|
+
"syn 2.0.85",
|
584
770
|
]
|
585
771
|
|
586
772
|
[[package]]
|
587
773
|
name = "futures-sink"
|
588
|
-
version = "0.3.
|
774
|
+
version = "0.3.31"
|
589
775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
590
|
-
checksum = "
|
776
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
591
777
|
|
592
778
|
[[package]]
|
593
779
|
name = "futures-task"
|
594
|
-
version = "0.3.
|
780
|
+
version = "0.3.31"
|
595
781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
596
|
-
checksum = "
|
782
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
597
783
|
|
598
784
|
[[package]]
|
599
785
|
name = "futures-util"
|
600
|
-
version = "0.3.
|
786
|
+
version = "0.3.31"
|
601
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
602
|
-
checksum = "
|
788
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
603
789
|
dependencies = [
|
604
790
|
"futures-channel",
|
605
791
|
"futures-core",
|
@@ -613,6 +799,16 @@ dependencies = [
|
|
613
799
|
"slab",
|
614
800
|
]
|
615
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
|
+
|
616
812
|
[[package]]
|
617
813
|
name = "getrandom"
|
618
814
|
version = "0.2.15"
|
@@ -628,9 +824,9 @@ dependencies = [
|
|
628
824
|
|
629
825
|
[[package]]
|
630
826
|
name = "gimli"
|
631
|
-
version = "0.
|
827
|
+
version = "0.31.1"
|
632
828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
633
|
-
checksum = "
|
829
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
634
830
|
|
635
831
|
[[package]]
|
636
832
|
name = "glob"
|
@@ -638,13 +834,42 @@ version = "0.3.1"
|
|
638
834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
639
835
|
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
640
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
|
+
|
641
866
|
[[package]]
|
642
867
|
name = "halfbrown"
|
643
868
|
version = "0.2.5"
|
644
869
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
645
870
|
checksum = "8588661a8607108a5ca69cab034063441a0413a0b041c13618a7dd348021ef6f"
|
646
871
|
dependencies = [
|
647
|
-
"hashbrown",
|
872
|
+
"hashbrown 0.14.5",
|
648
873
|
"serde",
|
649
874
|
]
|
650
875
|
|
@@ -660,6 +885,25 @@ dependencies = [
|
|
660
885
|
"serde",
|
661
886
|
]
|
662
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
|
+
|
663
907
|
[[package]]
|
664
908
|
name = "heck"
|
665
909
|
version = "0.5.0"
|
@@ -684,14 +928,117 @@ version = "0.5.9"
|
|
684
928
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
685
929
|
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
686
930
|
dependencies = [
|
687
|
-
"windows-sys",
|
931
|
+
"windows-sys 0.52.0",
|
932
|
+
]
|
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",
|
688
1035
|
]
|
689
1036
|
|
690
1037
|
[[package]]
|
691
1038
|
name = "iana-time-zone"
|
692
|
-
version = "0.1.
|
1039
|
+
version = "0.1.61"
|
693
1040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
694
|
-
checksum = "
|
1041
|
+
checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
|
695
1042
|
dependencies = [
|
696
1043
|
"android_system_properties",
|
697
1044
|
"core-foundation-sys",
|
@@ -710,17 +1057,39 @@ dependencies = [
|
|
710
1057
|
"cc",
|
711
1058
|
]
|
712
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
|
+
|
713
1070
|
[[package]]
|
714
1071
|
name = "indexmap"
|
715
|
-
version = "2.
|
1072
|
+
version = "2.6.0"
|
716
1073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
717
|
-
checksum = "
|
1074
|
+
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
|
718
1075
|
dependencies = [
|
719
1076
|
"equivalent",
|
720
|
-
"hashbrown",
|
1077
|
+
"hashbrown 0.15.0",
|
721
1078
|
"serde",
|
722
1079
|
]
|
723
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
|
+
|
724
1093
|
[[package]]
|
725
1094
|
name = "itertools"
|
726
1095
|
version = "0.12.1"
|
@@ -730,6 +1099,15 @@ dependencies = [
|
|
730
1099
|
"either",
|
731
1100
|
]
|
732
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
|
+
|
733
1111
|
[[package]]
|
734
1112
|
name = "itoa"
|
735
1113
|
version = "1.0.11"
|
@@ -773,9 +1151,9 @@ dependencies = [
|
|
773
1151
|
|
774
1152
|
[[package]]
|
775
1153
|
name = "js-sys"
|
776
|
-
version = "0.3.
|
1154
|
+
version = "0.3.72"
|
777
1155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
778
|
-
checksum = "
|
1156
|
+
checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
|
779
1157
|
dependencies = [
|
780
1158
|
"wasm-bindgen",
|
781
1159
|
]
|
@@ -804,80 +1182,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
1182
|
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
805
1183
|
|
806
1184
|
[[package]]
|
807
|
-
name = "
|
808
|
-
version = "0.
|
1185
|
+
name = "libc"
|
1186
|
+
version = "0.2.161"
|
809
1187
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
810
|
-
checksum = "
|
811
|
-
dependencies = [
|
812
|
-
"lexical-parse-float",
|
813
|
-
"lexical-parse-integer",
|
814
|
-
"lexical-util",
|
815
|
-
"lexical-write-float",
|
816
|
-
"lexical-write-integer",
|
817
|
-
]
|
1188
|
+
checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
|
818
1189
|
|
819
1190
|
[[package]]
|
820
|
-
name = "
|
821
|
-
version = "
|
1191
|
+
name = "libflate"
|
1192
|
+
version = "1.4.0"
|
822
1193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
823
|
-
checksum = "
|
824
|
-
dependencies = [
|
825
|
-
"lexical-parse-integer",
|
826
|
-
"lexical-util",
|
827
|
-
"static_assertions",
|
828
|
-
]
|
829
|
-
|
830
|
-
[[package]]
|
831
|
-
name = "lexical-parse-integer"
|
832
|
-
version = "0.8.6"
|
833
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
834
|
-
checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
|
835
|
-
dependencies = [
|
836
|
-
"lexical-util",
|
837
|
-
"static_assertions",
|
838
|
-
]
|
839
|
-
|
840
|
-
[[package]]
|
841
|
-
name = "lexical-util"
|
842
|
-
version = "0.8.5"
|
843
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
844
|
-
checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
|
845
|
-
dependencies = [
|
846
|
-
"static_assertions",
|
847
|
-
]
|
848
|
-
|
849
|
-
[[package]]
|
850
|
-
name = "lexical-write-float"
|
851
|
-
version = "0.8.5"
|
852
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
853
|
-
checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
|
854
|
-
dependencies = [
|
855
|
-
"lexical-util",
|
856
|
-
"lexical-write-integer",
|
857
|
-
"static_assertions",
|
858
|
-
]
|
859
|
-
|
860
|
-
[[package]]
|
861
|
-
name = "lexical-write-integer"
|
862
|
-
version = "0.8.5"
|
863
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
864
|
-
checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
|
865
|
-
dependencies = [
|
866
|
-
"lexical-util",
|
867
|
-
"static_assertions",
|
868
|
-
]
|
869
|
-
|
870
|
-
[[package]]
|
871
|
-
name = "libc"
|
872
|
-
version = "0.2.155"
|
873
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
874
|
-
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
875
|
-
|
876
|
-
[[package]]
|
877
|
-
name = "libflate"
|
878
|
-
version = "1.4.0"
|
879
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
880
|
-
checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18"
|
1194
|
+
checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18"
|
881
1195
|
dependencies = [
|
882
1196
|
"adler32",
|
883
1197
|
"crc32fast",
|
@@ -905,9 +1219,9 @@ dependencies = [
|
|
905
1219
|
|
906
1220
|
[[package]]
|
907
1221
|
name = "libm"
|
908
|
-
version = "0.2.
|
1222
|
+
version = "0.2.11"
|
909
1223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
910
|
-
checksum = "
|
1224
|
+
checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
|
911
1225
|
|
912
1226
|
[[package]]
|
913
1227
|
name = "libmimalloc-sys"
|
@@ -919,6 +1233,12 @@ dependencies = [
|
|
919
1233
|
"libc",
|
920
1234
|
]
|
921
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
|
+
|
922
1242
|
[[package]]
|
923
1243
|
name = "lock_api"
|
924
1244
|
version = "0.4.12"
|
@@ -937,19 +1257,18 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
937
1257
|
|
938
1258
|
[[package]]
|
939
1259
|
name = "lz4"
|
940
|
-
version = "1.
|
1260
|
+
version = "1.28.0"
|
941
1261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
942
|
-
checksum = "
|
1262
|
+
checksum = "4d1febb2b4a79ddd1980eede06a8f7902197960aa0383ffcfdd62fe723036725"
|
943
1263
|
dependencies = [
|
944
|
-
"libc",
|
945
1264
|
"lz4-sys",
|
946
1265
|
]
|
947
1266
|
|
948
1267
|
[[package]]
|
949
1268
|
name = "lz4-sys"
|
950
|
-
version = "1.10.0"
|
1269
|
+
version = "1.11.1+lz4-1.10.0"
|
951
1270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
952
|
-
checksum = "
|
1271
|
+
checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
|
953
1272
|
dependencies = [
|
954
1273
|
"cc",
|
955
1274
|
"libc",
|
@@ -975,7 +1294,17 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
975
1294
|
dependencies = [
|
976
1295
|
"proc-macro2",
|
977
1296
|
"quote",
|
978
|
-
"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",
|
979
1308
|
]
|
980
1309
|
|
981
1310
|
[[package]]
|
@@ -993,6 +1322,15 @@ dependencies = [
|
|
993
1322
|
"libc",
|
994
1323
|
]
|
995
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
|
+
|
996
1334
|
[[package]]
|
997
1335
|
name = "mimalloc"
|
998
1336
|
version = "0.1.43"
|
@@ -1002,6 +1340,12 @@ dependencies = [
|
|
1002
1340
|
"libmimalloc-sys",
|
1003
1341
|
]
|
1004
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
|
+
|
1005
1349
|
[[package]]
|
1006
1350
|
name = "minimal-lexical"
|
1007
1351
|
version = "0.2.1"
|
@@ -1010,11 +1354,11 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1010
1354
|
|
1011
1355
|
[[package]]
|
1012
1356
|
name = "miniz_oxide"
|
1013
|
-
version = "0.
|
1357
|
+
version = "0.8.0"
|
1014
1358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1015
|
-
checksum = "
|
1359
|
+
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
|
1016
1360
|
dependencies = [
|
1017
|
-
"
|
1361
|
+
"adler2",
|
1018
1362
|
]
|
1019
1363
|
|
1020
1364
|
[[package]]
|
@@ -1026,7 +1370,7 @@ dependencies = [
|
|
1026
1370
|
"hermit-abi",
|
1027
1371
|
"libc",
|
1028
1372
|
"wasi",
|
1029
|
-
"windows-sys",
|
1373
|
+
"windows-sys 0.52.0",
|
1030
1374
|
]
|
1031
1375
|
|
1032
1376
|
[[package]]
|
@@ -1091,18 +1435,55 @@ dependencies = [
|
|
1091
1435
|
|
1092
1436
|
[[package]]
|
1093
1437
|
name = "object"
|
1094
|
-
version = "0.36.
|
1438
|
+
version = "0.36.5"
|
1095
1439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1096
|
-
checksum = "
|
1440
|
+
checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
|
1097
1441
|
dependencies = [
|
1098
1442
|
"memchr",
|
1099
1443
|
]
|
1100
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
|
+
|
1101
1476
|
[[package]]
|
1102
1477
|
name = "once_cell"
|
1103
|
-
version = "1.
|
1478
|
+
version = "1.20.2"
|
1104
1479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1105
|
-
checksum = "
|
1480
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
1481
|
+
|
1482
|
+
[[package]]
|
1483
|
+
name = "openssl-probe"
|
1484
|
+
version = "0.1.5"
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1486
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
1106
1487
|
|
1107
1488
|
[[package]]
|
1108
1489
|
name = "parking_lot"
|
@@ -1127,16 +1508,6 @@ dependencies = [
|
|
1127
1508
|
"windows-targets",
|
1128
1509
|
]
|
1129
1510
|
|
1130
|
-
[[package]]
|
1131
|
-
name = "parquet-format-safe"
|
1132
|
-
version = "0.2.4"
|
1133
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1134
|
-
checksum = "1131c54b167dd4e4799ce762e1ab01549ebb94d5bdd13e6ec1b467491c378e1f"
|
1135
|
-
dependencies = [
|
1136
|
-
"async-trait",
|
1137
|
-
"futures",
|
1138
|
-
]
|
1139
|
-
|
1140
1511
|
[[package]]
|
1141
1512
|
name = "parse-zoneinfo"
|
1142
1513
|
version = "0.3.1"
|
@@ -1192,9 +1563,9 @@ dependencies = [
|
|
1192
1563
|
|
1193
1564
|
[[package]]
|
1194
1565
|
name = "pin-project-lite"
|
1195
|
-
version = "0.2.
|
1566
|
+
version = "0.2.15"
|
1196
1567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1197
|
-
checksum = "
|
1568
|
+
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
|
1198
1569
|
|
1199
1570
|
[[package]]
|
1200
1571
|
name = "pin-utils"
|
@@ -1204,9 +1575,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1204
1575
|
|
1205
1576
|
[[package]]
|
1206
1577
|
name = "pkg-config"
|
1207
|
-
version = "0.3.
|
1578
|
+
version = "0.3.31"
|
1208
1579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1209
|
-
checksum = "
|
1580
|
+
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
1210
1581
|
|
1211
1582
|
[[package]]
|
1212
1583
|
name = "planus"
|
@@ -1219,27 +1590,30 @@ dependencies = [
|
|
1219
1590
|
|
1220
1591
|
[[package]]
|
1221
1592
|
name = "polars"
|
1222
|
-
version = "0.
|
1593
|
+
version = "0.15.0"
|
1223
1594
|
dependencies = [
|
1224
1595
|
"ahash",
|
1596
|
+
"bytes",
|
1225
1597
|
"chrono",
|
1226
1598
|
"either",
|
1227
1599
|
"jemallocator",
|
1228
1600
|
"magnus",
|
1229
1601
|
"mimalloc",
|
1230
|
-
"polars 0.
|
1602
|
+
"polars 0.44.2",
|
1603
|
+
"polars-arrow",
|
1231
1604
|
"polars-core",
|
1232
1605
|
"polars-parquet",
|
1606
|
+
"polars-plan",
|
1233
1607
|
"polars-utils",
|
1608
|
+
"regex",
|
1234
1609
|
"serde_json",
|
1235
|
-
"smartstring",
|
1236
1610
|
]
|
1237
1611
|
|
1238
1612
|
[[package]]
|
1239
1613
|
name = "polars"
|
1240
|
-
version = "0.
|
1614
|
+
version = "0.44.2"
|
1241
1615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1242
|
-
checksum = "
|
1616
|
+
checksum = "f65c6aa86d991a64c95416a61202f7952da2f8cccefa448f9a23c1b8f2301ecc"
|
1243
1617
|
dependencies = [
|
1244
1618
|
"getrandom",
|
1245
1619
|
"polars-arrow",
|
@@ -1258,9 +1632,9 @@ dependencies = [
|
|
1258
1632
|
|
1259
1633
|
[[package]]
|
1260
1634
|
name = "polars-arrow"
|
1261
|
-
version = "0.
|
1635
|
+
version = "0.44.2"
|
1262
1636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1263
|
-
checksum = "
|
1637
|
+
checksum = "87dbb24d29ddea5abb73d7954df8b8d3d4bb7f02a3e5c96d1519cdad9e816a3d"
|
1264
1638
|
dependencies = [
|
1265
1639
|
"ahash",
|
1266
1640
|
"atoi",
|
@@ -1273,9 +1647,8 @@ dependencies = [
|
|
1273
1647
|
"either",
|
1274
1648
|
"ethnum",
|
1275
1649
|
"fast-float",
|
1276
|
-
"futures",
|
1277
1650
|
"getrandom",
|
1278
|
-
"hashbrown",
|
1651
|
+
"hashbrown 0.15.0",
|
1279
1652
|
"itoa",
|
1280
1653
|
"itoap",
|
1281
1654
|
"lz4",
|
@@ -1284,12 +1657,14 @@ dependencies = [
|
|
1284
1657
|
"parking_lot",
|
1285
1658
|
"polars-arrow-format",
|
1286
1659
|
"polars-error",
|
1660
|
+
"polars-schema",
|
1287
1661
|
"polars-utils",
|
1288
1662
|
"ryu",
|
1289
1663
|
"serde",
|
1290
1664
|
"simdutf8",
|
1291
1665
|
"streaming-iterator",
|
1292
1666
|
"strength_reduce",
|
1667
|
+
"strum_macros",
|
1293
1668
|
"version_check",
|
1294
1669
|
"zstd",
|
1295
1670
|
]
|
@@ -1306,9 +1681,9 @@ dependencies = [
|
|
1306
1681
|
|
1307
1682
|
[[package]]
|
1308
1683
|
name = "polars-compute"
|
1309
|
-
version = "0.
|
1684
|
+
version = "0.44.2"
|
1310
1685
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1311
|
-
checksum = "
|
1686
|
+
checksum = "cbdb1071147452a4c4b25560f23d2fbaffef255b04757291131b22fc2c0d35b2"
|
1312
1687
|
dependencies = [
|
1313
1688
|
"bytemuck",
|
1314
1689
|
"either",
|
@@ -1322,9 +1697,9 @@ dependencies = [
|
|
1322
1697
|
|
1323
1698
|
[[package]]
|
1324
1699
|
name = "polars-core"
|
1325
|
-
version = "0.
|
1700
|
+
version = "0.44.2"
|
1326
1701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1327
|
-
checksum = "
|
1702
|
+
checksum = "dd5df9b55e614088a3270b06f8649dce76537c268d6b1ca4d9c37008b2be5949"
|
1328
1703
|
dependencies = [
|
1329
1704
|
"ahash",
|
1330
1705
|
"bitflags",
|
@@ -1333,7 +1708,8 @@ dependencies = [
|
|
1333
1708
|
"chrono-tz",
|
1334
1709
|
"comfy-table",
|
1335
1710
|
"either",
|
1336
|
-
"hashbrown",
|
1711
|
+
"hashbrown 0.14.5",
|
1712
|
+
"hashbrown 0.15.0",
|
1337
1713
|
"indexmap",
|
1338
1714
|
"num-traits",
|
1339
1715
|
"once_cell",
|
@@ -1341,6 +1717,7 @@ dependencies = [
|
|
1341
1717
|
"polars-compute",
|
1342
1718
|
"polars-error",
|
1343
1719
|
"polars-row",
|
1720
|
+
"polars-schema",
|
1344
1721
|
"polars-utils",
|
1345
1722
|
"rand",
|
1346
1723
|
"rand_distr",
|
@@ -1348,7 +1725,7 @@ dependencies = [
|
|
1348
1725
|
"regex",
|
1349
1726
|
"serde",
|
1350
1727
|
"serde_json",
|
1351
|
-
"
|
1728
|
+
"strum_macros",
|
1352
1729
|
"thiserror",
|
1353
1730
|
"version_check",
|
1354
1731
|
"xxhash-rust",
|
@@ -1356,11 +1733,12 @@ dependencies = [
|
|
1356
1733
|
|
1357
1734
|
[[package]]
|
1358
1735
|
name = "polars-error"
|
1359
|
-
version = "0.
|
1736
|
+
version = "0.44.2"
|
1360
1737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1361
|
-
checksum = "
|
1738
|
+
checksum = "4643898a644f30c83737db85f942f8c8956b0c11190b39afec745218eae1746b"
|
1362
1739
|
dependencies = [
|
1363
1740
|
"avro-schema",
|
1741
|
+
"object_store",
|
1364
1742
|
"polars-arrow-format",
|
1365
1743
|
"regex",
|
1366
1744
|
"simdutf8",
|
@@ -1369,44 +1747,52 @@ dependencies = [
|
|
1369
1747
|
|
1370
1748
|
[[package]]
|
1371
1749
|
name = "polars-expr"
|
1372
|
-
version = "0.
|
1750
|
+
version = "0.44.2"
|
1373
1751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1374
|
-
checksum = "
|
1752
|
+
checksum = "ea1b431ed816cba1120cff200f06b962748001bbb2e615ce53cfbbdf701cc136"
|
1375
1753
|
dependencies = [
|
1376
1754
|
"ahash",
|
1377
1755
|
"bitflags",
|
1756
|
+
"hashbrown 0.15.0",
|
1757
|
+
"num-traits",
|
1378
1758
|
"once_cell",
|
1379
1759
|
"polars-arrow",
|
1760
|
+
"polars-compute",
|
1380
1761
|
"polars-core",
|
1381
1762
|
"polars-io",
|
1382
1763
|
"polars-ops",
|
1383
1764
|
"polars-plan",
|
1765
|
+
"polars-row",
|
1384
1766
|
"polars-time",
|
1385
1767
|
"polars-utils",
|
1768
|
+
"rand",
|
1386
1769
|
"rayon",
|
1387
|
-
"smartstring",
|
1388
1770
|
]
|
1389
1771
|
|
1390
1772
|
[[package]]
|
1391
1773
|
name = "polars-io"
|
1392
|
-
version = "0.
|
1774
|
+
version = "0.44.2"
|
1393
1775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1394
|
-
checksum = "
|
1776
|
+
checksum = "b2fab2c016635cb416b49461fd6419b0208c6c13a4fd065bd65e4a87dbb66314"
|
1395
1777
|
dependencies = [
|
1396
1778
|
"ahash",
|
1397
1779
|
"async-trait",
|
1398
1780
|
"atoi_simd",
|
1781
|
+
"blake3",
|
1399
1782
|
"bytes",
|
1400
1783
|
"chrono",
|
1401
1784
|
"chrono-tz",
|
1402
1785
|
"fast-float",
|
1786
|
+
"fs4",
|
1403
1787
|
"futures",
|
1404
1788
|
"glob",
|
1789
|
+
"hashbrown 0.15.0",
|
1405
1790
|
"home",
|
1406
1791
|
"itoa",
|
1407
1792
|
"memchr",
|
1408
1793
|
"memmap2",
|
1409
1794
|
"num-traits",
|
1795
|
+
"object_store",
|
1410
1796
|
"once_cell",
|
1411
1797
|
"percent-encoding",
|
1412
1798
|
"polars-arrow",
|
@@ -1414,31 +1800,34 @@ dependencies = [
|
|
1414
1800
|
"polars-error",
|
1415
1801
|
"polars-json",
|
1416
1802
|
"polars-parquet",
|
1803
|
+
"polars-schema",
|
1417
1804
|
"polars-time",
|
1418
1805
|
"polars-utils",
|
1806
|
+
"pyo3",
|
1419
1807
|
"rayon",
|
1420
1808
|
"regex",
|
1809
|
+
"reqwest",
|
1421
1810
|
"ryu",
|
1422
1811
|
"serde",
|
1423
1812
|
"serde_json",
|
1424
1813
|
"simd-json",
|
1425
1814
|
"simdutf8",
|
1426
|
-
"smartstring",
|
1427
1815
|
"tokio",
|
1428
1816
|
"tokio-util",
|
1817
|
+
"url",
|
1429
1818
|
]
|
1430
1819
|
|
1431
1820
|
[[package]]
|
1432
1821
|
name = "polars-json"
|
1433
|
-
version = "0.
|
1822
|
+
version = "0.44.2"
|
1434
1823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1435
|
-
checksum = "
|
1824
|
+
checksum = "d5c8c057ef04feaf34b6ce52096bdea3a766fa4725f50442078c8a4ee86397bf"
|
1436
1825
|
dependencies = [
|
1437
1826
|
"ahash",
|
1438
1827
|
"chrono",
|
1439
1828
|
"chrono-tz",
|
1440
1829
|
"fallible-streaming-iterator",
|
1441
|
-
"hashbrown",
|
1830
|
+
"hashbrown 0.15.0",
|
1442
1831
|
"indexmap",
|
1443
1832
|
"itoa",
|
1444
1833
|
"num-traits",
|
@@ -1452,12 +1841,13 @@ dependencies = [
|
|
1452
1841
|
|
1453
1842
|
[[package]]
|
1454
1843
|
name = "polars-lazy"
|
1455
|
-
version = "0.
|
1844
|
+
version = "0.44.2"
|
1456
1845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1457
|
-
checksum = "
|
1846
|
+
checksum = "4a8ca74f42e7b47cad241b36b98d991cc7fbb51b8d0695a055eb937588d1f310"
|
1458
1847
|
dependencies = [
|
1459
1848
|
"ahash",
|
1460
1849
|
"bitflags",
|
1850
|
+
"futures",
|
1461
1851
|
"memchr",
|
1462
1852
|
"once_cell",
|
1463
1853
|
"polars-arrow",
|
@@ -1469,19 +1859,21 @@ dependencies = [
|
|
1469
1859
|
"polars-ops",
|
1470
1860
|
"polars-pipe",
|
1471
1861
|
"polars-plan",
|
1862
|
+
"polars-stream",
|
1472
1863
|
"polars-time",
|
1473
1864
|
"polars-utils",
|
1474
1865
|
"rayon",
|
1475
|
-
"
|
1866
|
+
"tokio",
|
1476
1867
|
"version_check",
|
1477
1868
|
]
|
1478
1869
|
|
1479
1870
|
[[package]]
|
1480
1871
|
name = "polars-mem-engine"
|
1481
|
-
version = "0.
|
1872
|
+
version = "0.44.2"
|
1482
1873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1483
|
-
checksum = "
|
1874
|
+
checksum = "7a32614e5b52c9b83856d80c7e2880b79d83055bfd59969bd1d0b148f9cfdc7a"
|
1484
1875
|
dependencies = [
|
1876
|
+
"futures",
|
1485
1877
|
"memmap2",
|
1486
1878
|
"polars-arrow",
|
1487
1879
|
"polars-core",
|
@@ -1493,14 +1885,16 @@ dependencies = [
|
|
1493
1885
|
"polars-plan",
|
1494
1886
|
"polars-time",
|
1495
1887
|
"polars-utils",
|
1888
|
+
"pyo3",
|
1496
1889
|
"rayon",
|
1890
|
+
"tokio",
|
1497
1891
|
]
|
1498
1892
|
|
1499
1893
|
[[package]]
|
1500
1894
|
name = "polars-ops"
|
1501
|
-
version = "0.
|
1895
|
+
version = "0.44.2"
|
1502
1896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1503
|
-
checksum = "
|
1897
|
+
checksum = "035c800fbe5bbd820afeb8313713ed345853bb014e0f821a4025d40cf0d60e1a"
|
1504
1898
|
dependencies = [
|
1505
1899
|
"ahash",
|
1506
1900
|
"aho-corasick",
|
@@ -1510,7 +1904,7 @@ dependencies = [
|
|
1510
1904
|
"chrono",
|
1511
1905
|
"chrono-tz",
|
1512
1906
|
"either",
|
1513
|
-
"hashbrown",
|
1907
|
+
"hashbrown 0.15.0",
|
1514
1908
|
"hex",
|
1515
1909
|
"indexmap",
|
1516
1910
|
"jsonpath_lib_polars_vendor",
|
@@ -1521,23 +1915,25 @@ dependencies = [
|
|
1521
1915
|
"polars-core",
|
1522
1916
|
"polars-error",
|
1523
1917
|
"polars-json",
|
1918
|
+
"polars-schema",
|
1524
1919
|
"polars-utils",
|
1525
1920
|
"rand",
|
1526
1921
|
"rand_distr",
|
1527
1922
|
"rayon",
|
1528
1923
|
"regex",
|
1924
|
+
"regex-syntax",
|
1529
1925
|
"serde",
|
1530
1926
|
"serde_json",
|
1531
|
-
"
|
1927
|
+
"strum_macros",
|
1532
1928
|
"unicode-reverse",
|
1533
1929
|
"version_check",
|
1534
1930
|
]
|
1535
1931
|
|
1536
1932
|
[[package]]
|
1537
1933
|
name = "polars-parquet"
|
1538
|
-
version = "0.
|
1934
|
+
version = "0.44.2"
|
1539
1935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1540
|
-
checksum = "
|
1936
|
+
checksum = "91dcf1d9f048079376949eaf2e24e240b313ff4a102fb83b57c9a5f807cdca52"
|
1541
1937
|
dependencies = [
|
1542
1938
|
"ahash",
|
1543
1939
|
"async-stream",
|
@@ -1547,12 +1943,13 @@ dependencies = [
|
|
1547
1943
|
"ethnum",
|
1548
1944
|
"flate2",
|
1549
1945
|
"futures",
|
1946
|
+
"hashbrown 0.15.0",
|
1550
1947
|
"lz4",
|
1551
1948
|
"num-traits",
|
1552
|
-
"parquet-format-safe",
|
1553
1949
|
"polars-arrow",
|
1554
1950
|
"polars-compute",
|
1555
1951
|
"polars-error",
|
1952
|
+
"polars-parquet-format",
|
1556
1953
|
"polars-utils",
|
1557
1954
|
"serde",
|
1558
1955
|
"simdutf8",
|
@@ -1561,16 +1958,27 @@ dependencies = [
|
|
1561
1958
|
"zstd",
|
1562
1959
|
]
|
1563
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
|
+
|
1564
1971
|
[[package]]
|
1565
1972
|
name = "polars-pipe"
|
1566
|
-
version = "0.
|
1973
|
+
version = "0.44.2"
|
1567
1974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1568
|
-
checksum = "
|
1975
|
+
checksum = "05936f2b3981eecb2fe74d8ef092bb75a93d2a056b3e4f339f4ac20c71c9e331"
|
1569
1976
|
dependencies = [
|
1570
1977
|
"crossbeam-channel",
|
1571
1978
|
"crossbeam-queue",
|
1572
1979
|
"enum_dispatch",
|
1573
|
-
"
|
1980
|
+
"futures",
|
1981
|
+
"hashbrown 0.15.0",
|
1574
1982
|
"num-traits",
|
1575
1983
|
"polars-arrow",
|
1576
1984
|
"polars-compute",
|
@@ -1582,25 +1990,29 @@ dependencies = [
|
|
1582
1990
|
"polars-row",
|
1583
1991
|
"polars-utils",
|
1584
1992
|
"rayon",
|
1585
|
-
"
|
1993
|
+
"tokio",
|
1586
1994
|
"uuid",
|
1587
1995
|
"version_check",
|
1588
1996
|
]
|
1589
1997
|
|
1590
1998
|
[[package]]
|
1591
1999
|
name = "polars-plan"
|
1592
|
-
version = "0.
|
2000
|
+
version = "0.44.2"
|
1593
2001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1594
|
-
checksum = "
|
2002
|
+
checksum = "23de436f33f4d1134c58f24e7059a221b957ec20730807e0ef0c80c8e4b3d06a"
|
1595
2003
|
dependencies = [
|
1596
2004
|
"ahash",
|
1597
2005
|
"bitflags",
|
1598
2006
|
"bytemuck",
|
2007
|
+
"bytes",
|
1599
2008
|
"chrono",
|
1600
2009
|
"chrono-tz",
|
2010
|
+
"ciborium",
|
1601
2011
|
"either",
|
1602
|
-
"
|
2012
|
+
"futures",
|
2013
|
+
"hashbrown 0.15.0",
|
1603
2014
|
"memmap2",
|
2015
|
+
"num-traits",
|
1604
2016
|
"once_cell",
|
1605
2017
|
"percent-encoding",
|
1606
2018
|
"polars-arrow",
|
@@ -1611,20 +2023,20 @@ dependencies = [
|
|
1611
2023
|
"polars-parquet",
|
1612
2024
|
"polars-time",
|
1613
2025
|
"polars-utils",
|
2026
|
+
"pyo3",
|
1614
2027
|
"rayon",
|
1615
2028
|
"recursive",
|
1616
2029
|
"regex",
|
1617
2030
|
"serde",
|
1618
|
-
"smartstring",
|
1619
2031
|
"strum_macros",
|
1620
2032
|
"version_check",
|
1621
2033
|
]
|
1622
2034
|
|
1623
2035
|
[[package]]
|
1624
2036
|
name = "polars-row"
|
1625
|
-
version = "0.
|
2037
|
+
version = "0.44.2"
|
1626
2038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1627
|
-
checksum = "
|
2039
|
+
checksum = "3823d3de3e614509bba6929798f1f3d5ae05c1cdfc4eb7029d2ec6ad77201da2"
|
1628
2040
|
dependencies = [
|
1629
2041
|
"bytemuck",
|
1630
2042
|
"polars-arrow",
|
@@ -1632,11 +2044,24 @@ dependencies = [
|
|
1632
2044
|
"polars-utils",
|
1633
2045
|
]
|
1634
2046
|
|
2047
|
+
[[package]]
|
2048
|
+
name = "polars-schema"
|
2049
|
+
version = "0.44.2"
|
2050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2051
|
+
checksum = "d88667f770291cefa2e8cd366a54f29dc6fe362e9a263914c903db411a58ac1d"
|
2052
|
+
dependencies = [
|
2053
|
+
"indexmap",
|
2054
|
+
"polars-error",
|
2055
|
+
"polars-utils",
|
2056
|
+
"serde",
|
2057
|
+
"version_check",
|
2058
|
+
]
|
2059
|
+
|
1635
2060
|
[[package]]
|
1636
2061
|
name = "polars-sql"
|
1637
|
-
version = "0.
|
2062
|
+
version = "0.44.2"
|
1638
2063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1639
|
-
checksum = "
|
2064
|
+
checksum = "69451f08363bb497407f6ebebe00bc01972a51716d20d115b75f9b5326f1f3c8"
|
1640
2065
|
dependencies = [
|
1641
2066
|
"hex",
|
1642
2067
|
"once_cell",
|
@@ -1647,17 +2072,47 @@ dependencies = [
|
|
1647
2072
|
"polars-ops",
|
1648
2073
|
"polars-plan",
|
1649
2074
|
"polars-time",
|
2075
|
+
"polars-utils",
|
1650
2076
|
"rand",
|
1651
2077
|
"serde",
|
1652
2078
|
"serde_json",
|
1653
2079
|
"sqlparser",
|
1654
2080
|
]
|
1655
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
|
+
|
1656
2111
|
[[package]]
|
1657
2112
|
name = "polars-time"
|
1658
|
-
version = "0.
|
2113
|
+
version = "0.44.2"
|
1659
2114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1660
|
-
checksum = "
|
2115
|
+
checksum = "90f36e4d6b19f2c406faea585b9a1814f422fc5b310f65ccf8a55216df0754ef"
|
1661
2116
|
dependencies = [
|
1662
2117
|
"atoi",
|
1663
2118
|
"bytemuck",
|
@@ -1672,32 +2127,41 @@ dependencies = [
|
|
1672
2127
|
"polars-utils",
|
1673
2128
|
"regex",
|
1674
2129
|
"serde",
|
1675
|
-
"
|
2130
|
+
"strum_macros",
|
1676
2131
|
]
|
1677
2132
|
|
1678
2133
|
[[package]]
|
1679
2134
|
name = "polars-utils"
|
1680
|
-
version = "0.
|
2135
|
+
version = "0.44.2"
|
1681
2136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1682
|
-
checksum = "
|
2137
|
+
checksum = "96186b70bda00c90b5027bf2f69193c5c40571e80d3e8ec505c22cdc8e3e39aa"
|
1683
2138
|
dependencies = [
|
1684
2139
|
"ahash",
|
1685
2140
|
"bytemuck",
|
1686
2141
|
"bytes",
|
1687
|
-
"
|
2142
|
+
"compact_str",
|
2143
|
+
"hashbrown 0.15.0",
|
1688
2144
|
"indexmap",
|
2145
|
+
"libc",
|
1689
2146
|
"memmap2",
|
1690
2147
|
"num-traits",
|
1691
2148
|
"once_cell",
|
1692
2149
|
"polars-error",
|
2150
|
+
"pyo3",
|
1693
2151
|
"raw-cpuid",
|
1694
2152
|
"rayon",
|
1695
|
-
"
|
2153
|
+
"serde",
|
1696
2154
|
"stacker",
|
1697
2155
|
"sysinfo",
|
1698
2156
|
"version_check",
|
1699
2157
|
]
|
1700
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
|
+
|
1701
2165
|
[[package]]
|
1702
2166
|
name = "ppv-lite86"
|
1703
2167
|
version = "0.2.20"
|
@@ -1709,27 +2173,149 @@ dependencies = [
|
|
1709
2173
|
|
1710
2174
|
[[package]]
|
1711
2175
|
name = "proc-macro2"
|
1712
|
-
version = "1.0.
|
2176
|
+
version = "1.0.89"
|
1713
2177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1714
|
-
checksum = "
|
2178
|
+
checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
|
1715
2179
|
dependencies = [
|
1716
2180
|
"unicode-ident",
|
1717
2181
|
]
|
1718
2182
|
|
1719
2183
|
[[package]]
|
1720
2184
|
name = "psm"
|
1721
|
-
version = "0.1.
|
2185
|
+
version = "0.1.23"
|
1722
2186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1723
|
-
checksum = "
|
2187
|
+
checksum = "aa37f80ca58604976033fae9515a8a2989fc13797d953f7c04fb8fa36a11f205"
|
1724
2188
|
dependencies = [
|
1725
2189
|
"cc",
|
1726
2190
|
]
|
1727
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
|
+
|
1728
2314
|
[[package]]
|
1729
2315
|
name = "quote"
|
1730
|
-
version = "1.0.
|
2316
|
+
version = "1.0.37"
|
1731
2317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1732
|
-
checksum = "
|
2318
|
+
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
|
1733
2319
|
dependencies = [
|
1734
2320
|
"proc-macro2",
|
1735
2321
|
]
|
@@ -1776,9 +2362,9 @@ dependencies = [
|
|
1776
2362
|
|
1777
2363
|
[[package]]
|
1778
2364
|
name = "raw-cpuid"
|
1779
|
-
version = "11.
|
2365
|
+
version = "11.2.0"
|
1780
2366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1781
|
-
checksum = "
|
2367
|
+
checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0"
|
1782
2368
|
dependencies = [
|
1783
2369
|
"bitflags",
|
1784
2370
|
]
|
@@ -1805,18 +2391,18 @@ dependencies = [
|
|
1805
2391
|
|
1806
2392
|
[[package]]
|
1807
2393
|
name = "rb-sys"
|
1808
|
-
version = "0.9.
|
2394
|
+
version = "0.9.102"
|
1809
2395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1810
|
-
checksum = "
|
2396
|
+
checksum = "df4dec4b1d304c3b308a2cd86b1216ea45dd4361f4e9fa056f108332d0a450c1"
|
1811
2397
|
dependencies = [
|
1812
2398
|
"rb-sys-build",
|
1813
2399
|
]
|
1814
2400
|
|
1815
2401
|
[[package]]
|
1816
2402
|
name = "rb-sys-build"
|
1817
|
-
version = "0.9.
|
2403
|
+
version = "0.9.102"
|
1818
2404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1819
|
-
checksum = "
|
2405
|
+
checksum = "1d71de3e29d174b8fb17b5d4470f27d7aa2605f8a9d05fda0d3aeff30e05a570"
|
1820
2406
|
dependencies = [
|
1821
2407
|
"bindgen",
|
1822
2408
|
"lazy_static",
|
@@ -1824,7 +2410,7 @@ dependencies = [
|
|
1824
2410
|
"quote",
|
1825
2411
|
"regex",
|
1826
2412
|
"shell-words",
|
1827
|
-
"syn 2.0.
|
2413
|
+
"syn 2.0.85",
|
1828
2414
|
]
|
1829
2415
|
|
1830
2416
|
[[package]]
|
@@ -1850,14 +2436,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
2436
|
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
1851
2437
|
dependencies = [
|
1852
2438
|
"quote",
|
1853
|
-
"syn 2.0.
|
2439
|
+
"syn 2.0.85",
|
1854
2440
|
]
|
1855
2441
|
|
1856
2442
|
[[package]]
|
1857
2443
|
name = "redox_syscall"
|
1858
|
-
version = "0.5.
|
2444
|
+
version = "0.5.7"
|
1859
2445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1860
|
-
checksum = "
|
2446
|
+
checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
|
1861
2447
|
dependencies = [
|
1862
2448
|
"bitflags",
|
1863
2449
|
]
|
@@ -1879,14 +2465,14 @@ checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6"
|
|
1879
2465
|
dependencies = [
|
1880
2466
|
"proc-macro2",
|
1881
2467
|
"quote",
|
1882
|
-
"syn 2.0.
|
2468
|
+
"syn 2.0.85",
|
1883
2469
|
]
|
1884
2470
|
|
1885
2471
|
[[package]]
|
1886
2472
|
name = "regex"
|
1887
|
-
version = "1.
|
2473
|
+
version = "1.11.1"
|
1888
2474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1889
|
-
checksum = "
|
2475
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
1890
2476
|
dependencies = [
|
1891
2477
|
"aho-corasick",
|
1892
2478
|
"memchr",
|
@@ -1896,9 +2482,9 @@ dependencies = [
|
|
1896
2482
|
|
1897
2483
|
[[package]]
|
1898
2484
|
name = "regex-automata"
|
1899
|
-
version = "0.4.
|
2485
|
+
version = "0.4.8"
|
1900
2486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1901
|
-
checksum = "
|
2487
|
+
checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
|
1902
2488
|
dependencies = [
|
1903
2489
|
"aho-corasick",
|
1904
2490
|
"memchr",
|
@@ -1907,19 +2493,79 @@ dependencies = [
|
|
1907
2493
|
|
1908
2494
|
[[package]]
|
1909
2495
|
name = "regex-syntax"
|
1910
|
-
version = "0.8.
|
2496
|
+
version = "0.8.5"
|
1911
2497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1912
|
-
checksum = "
|
2498
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
1913
2499
|
|
1914
2500
|
[[package]]
|
1915
|
-
name = "
|
1916
|
-
version = "
|
2501
|
+
name = "reqwest"
|
2502
|
+
version = "0.12.9"
|
1917
2503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1918
|
-
checksum = "
|
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
|
+
]
|
1919
2544
|
|
1920
2545
|
[[package]]
|
1921
|
-
name = "
|
1922
|
-
version = "0.
|
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
|
+
]
|
2559
|
+
|
2560
|
+
[[package]]
|
2561
|
+
name = "rle-decode-fast"
|
2562
|
+
version = "1.0.3"
|
2563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2564
|
+
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
2565
|
+
|
2566
|
+
[[package]]
|
2567
|
+
name = "rustc-demangle"
|
2568
|
+
version = "0.1.24"
|
1923
2569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1924
2570
|
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
1925
2571
|
|
@@ -1929,11 +2575,83 @@ version = "1.1.0"
|
|
1929
2575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1930
2576
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1931
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
|
+
|
1932
2650
|
[[package]]
|
1933
2651
|
name = "rustversion"
|
1934
|
-
version = "1.0.
|
2652
|
+
version = "1.0.18"
|
1935
2653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1936
|
-
checksum = "
|
2654
|
+
checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248"
|
1937
2655
|
|
1938
2656
|
[[package]]
|
1939
2657
|
name = "ryu"
|
@@ -1941,12 +2659,53 @@ version = "1.0.18"
|
|
1941
2659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1942
2660
|
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
1943
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
|
+
|
1944
2680
|
[[package]]
|
1945
2681
|
name = "scopeguard"
|
1946
2682
|
version = "1.2.0"
|
1947
2683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1948
2684
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1949
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
|
+
|
1950
2709
|
[[package]]
|
1951
2710
|
name = "seq-macro"
|
1952
2711
|
version = "0.3.5"
|
@@ -1955,29 +2714,29 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
|
1955
2714
|
|
1956
2715
|
[[package]]
|
1957
2716
|
name = "serde"
|
1958
|
-
version = "1.0.
|
2717
|
+
version = "1.0.214"
|
1959
2718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1960
|
-
checksum = "
|
2719
|
+
checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5"
|
1961
2720
|
dependencies = [
|
1962
2721
|
"serde_derive",
|
1963
2722
|
]
|
1964
2723
|
|
1965
2724
|
[[package]]
|
1966
2725
|
name = "serde_derive"
|
1967
|
-
version = "1.0.
|
2726
|
+
version = "1.0.214"
|
1968
2727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1969
|
-
checksum = "
|
2728
|
+
checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766"
|
1970
2729
|
dependencies = [
|
1971
2730
|
"proc-macro2",
|
1972
2731
|
"quote",
|
1973
|
-
"syn 2.0.
|
2732
|
+
"syn 2.0.85",
|
1974
2733
|
]
|
1975
2734
|
|
1976
2735
|
[[package]]
|
1977
2736
|
name = "serde_json"
|
1978
|
-
version = "1.0.
|
2737
|
+
version = "1.0.132"
|
1979
2738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1980
|
-
checksum = "
|
2739
|
+
checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03"
|
1981
2740
|
dependencies = [
|
1982
2741
|
"indexmap",
|
1983
2742
|
"itoa",
|
@@ -1986,6 +2745,18 @@ dependencies = [
|
|
1986
2745
|
"serde",
|
1987
2746
|
]
|
1988
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
|
+
|
1989
2760
|
[[package]]
|
1990
2761
|
name = "shell-words"
|
1991
2762
|
version = "1.1.0"
|
@@ -2000,14 +2771,13 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2000
2771
|
|
2001
2772
|
[[package]]
|
2002
2773
|
name = "simd-json"
|
2003
|
-
version = "0.
|
2774
|
+
version = "0.14.2"
|
2004
2775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2005
|
-
checksum = "
|
2776
|
+
checksum = "b1df0290e9bfe79ddd5ff8798ca887cd107b75353d2957efe9777296e17f26b5"
|
2006
2777
|
dependencies = [
|
2007
2778
|
"ahash",
|
2008
2779
|
"getrandom",
|
2009
2780
|
"halfbrown",
|
2010
|
-
"lexical-core",
|
2011
2781
|
"once_cell",
|
2012
2782
|
"ref-cast",
|
2013
2783
|
"serde",
|
@@ -2018,9 +2788,9 @@ dependencies = [
|
|
2018
2788
|
|
2019
2789
|
[[package]]
|
2020
2790
|
name = "simdutf8"
|
2021
|
-
version = "0.1.
|
2791
|
+
version = "0.1.5"
|
2022
2792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023
|
-
checksum = "
|
2793
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
2024
2794
|
|
2025
2795
|
[[package]]
|
2026
2796
|
name = "siphasher"
|
@@ -2037,6 +2807,15 @@ dependencies = [
|
|
2037
2807
|
"autocfg",
|
2038
2808
|
]
|
2039
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
|
+
|
2040
2819
|
[[package]]
|
2041
2820
|
name = "smallvec"
|
2042
2821
|
version = "1.13.2"
|
@@ -2044,15 +2823,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
2823
|
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
2045
2824
|
|
2046
2825
|
[[package]]
|
2047
|
-
name = "
|
2048
|
-
version = "
|
2826
|
+
name = "snafu"
|
2827
|
+
version = "0.7.5"
|
2049
2828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2050
|
-
checksum = "
|
2829
|
+
checksum = "e4de37ad025c587a29e8f3f5605c00f70b98715ef90b9061a815b9e59e9042d6"
|
2051
2830
|
dependencies = [
|
2052
|
-
"
|
2053
|
-
"
|
2054
|
-
|
2055
|
-
|
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",
|
2056
2845
|
]
|
2057
2846
|
|
2058
2847
|
[[package]]
|
@@ -2068,9 +2857,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
2857
|
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
2069
2858
|
dependencies = [
|
2070
2859
|
"libc",
|
2071
|
-
"windows-sys",
|
2860
|
+
"windows-sys 0.52.0",
|
2072
2861
|
]
|
2073
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
|
+
|
2074
2869
|
[[package]]
|
2075
2870
|
name = "sqlparser"
|
2076
2871
|
version = "0.49.0"
|
@@ -2082,15 +2877,15 @@ dependencies = [
|
|
2082
2877
|
|
2083
2878
|
[[package]]
|
2084
2879
|
name = "stacker"
|
2085
|
-
version = "0.1.
|
2880
|
+
version = "0.1.17"
|
2086
2881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2087
|
-
checksum = "
|
2882
|
+
checksum = "799c883d55abdb5e98af1a7b3f23b9b6de8ecada0ecac058672d7635eb48ca7b"
|
2088
2883
|
dependencies = [
|
2089
2884
|
"cc",
|
2090
2885
|
"cfg-if",
|
2091
2886
|
"libc",
|
2092
2887
|
"psm",
|
2093
|
-
"
|
2888
|
+
"windows-sys 0.59.0",
|
2094
2889
|
]
|
2095
2890
|
|
2096
2891
|
[[package]]
|
@@ -2132,13 +2927,19 @@ version = "0.26.4"
|
|
2132
2927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2133
2928
|
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
2134
2929
|
dependencies = [
|
2135
|
-
"heck",
|
2930
|
+
"heck 0.5.0",
|
2136
2931
|
"proc-macro2",
|
2137
2932
|
"quote",
|
2138
2933
|
"rustversion",
|
2139
|
-
"syn 2.0.
|
2934
|
+
"syn 2.0.85",
|
2140
2935
|
]
|
2141
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
|
+
|
2142
2943
|
[[package]]
|
2143
2944
|
name = "syn"
|
2144
2945
|
version = "1.0.109"
|
@@ -2152,20 +2953,29 @@ dependencies = [
|
|
2152
2953
|
|
2153
2954
|
[[package]]
|
2154
2955
|
name = "syn"
|
2155
|
-
version = "2.0.
|
2956
|
+
version = "2.0.85"
|
2156
2957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2157
|
-
checksum = "
|
2958
|
+
checksum = "5023162dfcd14ef8f32034d8bcd4cc5ddc61ef7a247c024a33e24e1f24d21b56"
|
2158
2959
|
dependencies = [
|
2159
2960
|
"proc-macro2",
|
2160
2961
|
"quote",
|
2161
2962
|
"unicode-ident",
|
2162
2963
|
]
|
2163
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
|
+
|
2164
2974
|
[[package]]
|
2165
2975
|
name = "sysinfo"
|
2166
|
-
version = "0.31.
|
2976
|
+
version = "0.31.4"
|
2167
2977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2168
|
-
checksum = "
|
2978
|
+
checksum = "355dbe4f8799b304b05e1b0f05fc59b2a18d36645cf169607da45bde2f69a1be"
|
2169
2979
|
dependencies = [
|
2170
2980
|
"core-foundation-sys",
|
2171
2981
|
"libc",
|
@@ -2180,31 +2990,52 @@ version = "0.1.6"
|
|
2180
2990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2181
2991
|
checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
|
2182
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
|
+
|
2183
2999
|
[[package]]
|
2184
3000
|
name = "thiserror"
|
2185
|
-
version = "1.0.
|
3001
|
+
version = "1.0.65"
|
2186
3002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2187
|
-
checksum = "
|
3003
|
+
checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5"
|
2188
3004
|
dependencies = [
|
2189
3005
|
"thiserror-impl",
|
2190
3006
|
]
|
2191
3007
|
|
2192
3008
|
[[package]]
|
2193
3009
|
name = "thiserror-impl"
|
2194
|
-
version = "1.0.
|
3010
|
+
version = "1.0.65"
|
2195
3011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2196
|
-
checksum = "
|
3012
|
+
checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602"
|
2197
3013
|
dependencies = [
|
2198
3014
|
"proc-macro2",
|
2199
3015
|
"quote",
|
2200
|
-
"syn 2.0.
|
3016
|
+
"syn 2.0.85",
|
2201
3017
|
]
|
2202
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",
|
3026
|
+
]
|
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
|
+
|
2203
3034
|
[[package]]
|
2204
3035
|
name = "tokio"
|
2205
|
-
version = "1.
|
3036
|
+
version = "1.41.0"
|
2206
3037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2207
|
-
checksum = "
|
3038
|
+
checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb"
|
2208
3039
|
dependencies = [
|
2209
3040
|
"backtrace",
|
2210
3041
|
"bytes",
|
@@ -2212,14 +3043,37 @@ dependencies = [
|
|
2212
3043
|
"mio",
|
2213
3044
|
"pin-project-lite",
|
2214
3045
|
"socket2",
|
2215
|
-
"
|
3046
|
+
"tokio-macros",
|
3047
|
+
"windows-sys 0.52.0",
|
3048
|
+
]
|
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",
|
2216
3070
|
]
|
2217
3071
|
|
2218
3072
|
[[package]]
|
2219
3073
|
name = "tokio-util"
|
2220
|
-
version = "0.7.
|
3074
|
+
version = "0.7.12"
|
2221
3075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2222
|
-
checksum = "
|
3076
|
+
checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
|
2223
3077
|
dependencies = [
|
2224
3078
|
"bytes",
|
2225
3079
|
"futures-core",
|
@@ -2228,11 +3082,75 @@ dependencies = [
|
|
2228
3082
|
"tokio",
|
2229
3083
|
]
|
2230
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
|
+
|
2231
3140
|
[[package]]
|
2232
3141
|
name = "unicode-ident"
|
2233
|
-
version = "1.0.
|
3142
|
+
version = "1.0.13"
|
2234
3143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2235
|
-
checksum = "
|
3144
|
+
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
|
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
|
+
]
|
2236
3154
|
|
2237
3155
|
[[package]]
|
2238
3156
|
name = "unicode-reverse"
|
@@ -2245,30 +3163,53 @@ dependencies = [
|
|
2245
3163
|
|
2246
3164
|
[[package]]
|
2247
3165
|
name = "unicode-segmentation"
|
2248
|
-
version = "1.
|
3166
|
+
version = "1.12.0"
|
2249
3167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2250
|
-
checksum = "
|
3168
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
2251
3169
|
|
2252
3170
|
[[package]]
|
2253
3171
|
name = "unicode-width"
|
2254
|
-
version = "0.1.
|
3172
|
+
version = "0.1.14"
|
2255
3173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2256
|
-
checksum = "
|
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"
|
3191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3192
|
+
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
|
3193
|
+
dependencies = [
|
3194
|
+
"form_urlencoded",
|
3195
|
+
"idna",
|
3196
|
+
"percent-encoding",
|
3197
|
+
]
|
2257
3198
|
|
2258
3199
|
[[package]]
|
2259
3200
|
name = "uuid"
|
2260
|
-
version = "1.
|
3201
|
+
version = "1.11.0"
|
2261
3202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2262
|
-
checksum = "
|
3203
|
+
checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
|
2263
3204
|
dependencies = [
|
2264
3205
|
"getrandom",
|
2265
3206
|
]
|
2266
3207
|
|
2267
3208
|
[[package]]
|
2268
3209
|
name = "value-trait"
|
2269
|
-
version = "0.
|
3210
|
+
version = "0.10.1"
|
2270
3211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2271
|
-
checksum = "
|
3212
|
+
checksum = "9170e001f458781e92711d2ad666110f153e4e50bfd5cbd02db6547625714187"
|
2272
3213
|
dependencies = [
|
2273
3214
|
"float-cmp",
|
2274
3215
|
"halfbrown",
|
@@ -2282,6 +3223,25 @@ version = "0.9.5"
|
|
2282
3223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2283
3224
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
2284
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
|
+
|
2285
3245
|
[[package]]
|
2286
3246
|
name = "wasi"
|
2287
3247
|
version = "0.11.0+wasi-snapshot-preview1"
|
@@ -2290,9 +3250,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2290
3250
|
|
2291
3251
|
[[package]]
|
2292
3252
|
name = "wasm-bindgen"
|
2293
|
-
version = "0.2.
|
3253
|
+
version = "0.2.95"
|
2294
3254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2295
|
-
checksum = "
|
3255
|
+
checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
|
2296
3256
|
dependencies = [
|
2297
3257
|
"cfg-if",
|
2298
3258
|
"once_cell",
|
@@ -2301,24 +3261,36 @@ dependencies = [
|
|
2301
3261
|
|
2302
3262
|
[[package]]
|
2303
3263
|
name = "wasm-bindgen-backend"
|
2304
|
-
version = "0.2.
|
3264
|
+
version = "0.2.95"
|
2305
3265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2306
|
-
checksum = "
|
3266
|
+
checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
|
2307
3267
|
dependencies = [
|
2308
3268
|
"bumpalo",
|
2309
3269
|
"log",
|
2310
3270
|
"once_cell",
|
2311
3271
|
"proc-macro2",
|
2312
3272
|
"quote",
|
2313
|
-
"syn 2.0.
|
3273
|
+
"syn 2.0.85",
|
2314
3274
|
"wasm-bindgen-shared",
|
2315
3275
|
]
|
2316
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
|
+
|
2317
3289
|
[[package]]
|
2318
3290
|
name = "wasm-bindgen-macro"
|
2319
|
-
version = "0.2.
|
3291
|
+
version = "0.2.95"
|
2320
3292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2321
|
-
checksum = "
|
3293
|
+
checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
|
2322
3294
|
dependencies = [
|
2323
3295
|
"quote",
|
2324
3296
|
"wasm-bindgen-macro-support",
|
@@ -2326,22 +3298,45 @@ dependencies = [
|
|
2326
3298
|
|
2327
3299
|
[[package]]
|
2328
3300
|
name = "wasm-bindgen-macro-support"
|
2329
|
-
version = "0.2.
|
3301
|
+
version = "0.2.95"
|
2330
3302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2331
|
-
checksum = "
|
3303
|
+
checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
|
2332
3304
|
dependencies = [
|
2333
3305
|
"proc-macro2",
|
2334
3306
|
"quote",
|
2335
|
-
"syn 2.0.
|
3307
|
+
"syn 2.0.85",
|
2336
3308
|
"wasm-bindgen-backend",
|
2337
3309
|
"wasm-bindgen-shared",
|
2338
3310
|
]
|
2339
3311
|
|
2340
3312
|
[[package]]
|
2341
3313
|
name = "wasm-bindgen-shared"
|
2342
|
-
version = "0.2.
|
3314
|
+
version = "0.2.95"
|
2343
3315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2344
|
-
checksum = "
|
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"
|
3334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3335
|
+
checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
|
3336
|
+
dependencies = [
|
3337
|
+
"js-sys",
|
3338
|
+
"wasm-bindgen",
|
3339
|
+
]
|
2345
3340
|
|
2346
3341
|
[[package]]
|
2347
3342
|
name = "winapi"
|
@@ -2359,6 +3354,15 @@ version = "0.4.0"
|
|
2359
3354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2360
3355
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2361
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
|
+
|
2362
3366
|
[[package]]
|
2363
3367
|
name = "winapi-x86_64-pc-windows-gnu"
|
2364
3368
|
version = "0.4.0"
|
@@ -2392,7 +3396,7 @@ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
|
|
2392
3396
|
dependencies = [
|
2393
3397
|
"windows-implement",
|
2394
3398
|
"windows-interface",
|
2395
|
-
"windows-result",
|
3399
|
+
"windows-result 0.1.2",
|
2396
3400
|
"windows-targets",
|
2397
3401
|
]
|
2398
3402
|
|
@@ -2404,7 +3408,7 @@ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
|
|
2404
3408
|
dependencies = [
|
2405
3409
|
"proc-macro2",
|
2406
3410
|
"quote",
|
2407
|
-
"syn 2.0.
|
3411
|
+
"syn 2.0.85",
|
2408
3412
|
]
|
2409
3413
|
|
2410
3414
|
[[package]]
|
@@ -2415,7 +3419,18 @@ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
|
|
2415
3419
|
dependencies = [
|
2416
3420
|
"proc-macro2",
|
2417
3421
|
"quote",
|
2418
|
-
"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",
|
2419
3434
|
]
|
2420
3435
|
|
2421
3436
|
[[package]]
|
@@ -2427,6 +3442,25 @@ dependencies = [
|
|
2427
3442
|
"windows-targets",
|
2428
3443
|
]
|
2429
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
|
+
|
2430
3464
|
[[package]]
|
2431
3465
|
name = "windows-sys"
|
2432
3466
|
version = "0.52.0"
|
@@ -2436,6 +3470,15 @@ dependencies = [
|
|
2436
3470
|
"windows-targets",
|
2437
3471
|
]
|
2438
3472
|
|
3473
|
+
[[package]]
|
3474
|
+
name = "windows-sys"
|
3475
|
+
version = "0.59.0"
|
3476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3477
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
3478
|
+
dependencies = [
|
3479
|
+
"windows-targets",
|
3480
|
+
]
|
3481
|
+
|
2439
3482
|
[[package]]
|
2440
3483
|
name = "windows-targets"
|
2441
3484
|
version = "0.52.6"
|
@@ -2524,9 +3567,15 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
2524
3567
|
dependencies = [
|
2525
3568
|
"proc-macro2",
|
2526
3569
|
"quote",
|
2527
|
-
"syn 2.0.
|
3570
|
+
"syn 2.0.85",
|
2528
3571
|
]
|
2529
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
|
+
|
2530
3579
|
[[package]]
|
2531
3580
|
name = "zstd"
|
2532
3581
|
version = "0.13.2"
|