ptars 0.0.2rc2__tar.gz → 0.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ptars-0.0.2rc2 → ptars-0.0.4}/Cargo.lock +240 -352
- {ptars-0.0.2rc2 → ptars-0.0.4}/Cargo.toml +24 -25
- {ptars-0.0.2rc2 → ptars-0.0.4}/DEVELOPMENT.md +23 -12
- {ptars-0.0.2rc2 → ptars-0.0.4}/Makefile +2 -2
- ptars-0.0.2rc2/README.md → ptars-0.0.4/PKG-INFO +66 -6
- ptars-0.0.2rc2/PKG-INFO → ptars-0.0.4/README.md +42 -23
- ptars-0.0.4/notebooks/README.md +10 -0
- ptars-0.0.4/notebooks/demonstrator.ipynb +154 -0
- ptars-0.0.4/notebooks/demonstrator.proto +9 -0
- ptars-0.0.4/notebooks/requirements.txt +5 -0
- ptars-0.0.4/poetry.lock +1765 -0
- ptars-0.0.4/protos/ptars_protos/benchmark.proto +9 -0
- {ptars-0.0.2rc2 → ptars-0.0.4}/pyproject.toml +55 -54
- {ptars-0.0.2rc2 → ptars-0.0.4}/python/ptars/internal.py +0 -1
- {ptars-0.0.2rc2 → ptars-0.0.4}/src/lib.rs +202 -43
- ptars-0.0.2rc2/poetry.lock +0 -2192
- {ptars-0.0.2rc2 → ptars-0.0.4}/LICENSE +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.4}/protos/ptars_protos/bench.proto +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.4}/protos/ptars_protos/imported.proto +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.4}/protos/ptars_protos/importer.proto +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.4}/protos/ptars_protos/simple.proto +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.4}/python/__init__.py +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.4}/python/ptars/__init__.py +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.4}/scripts/protoc.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
2
2
|
# It is not intended for manual editing.
|
3
|
-
version =
|
3
|
+
version = 4
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "ahash"
|
@@ -42,9 +42,9 @@ dependencies = [
|
|
42
42
|
|
43
43
|
[[package]]
|
44
44
|
name = "arrow"
|
45
|
-
version = "
|
45
|
+
version = "55.0.0"
|
46
46
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
47
|
-
checksum = "
|
47
|
+
checksum = "3095aaf545942ff5abd46654534f15b03a90fba78299d661e045e5d587222f0d"
|
48
48
|
dependencies = [
|
49
49
|
"arrow-arith",
|
50
50
|
"arrow-array",
|
@@ -64,24 +64,23 @@ dependencies = [
|
|
64
64
|
|
65
65
|
[[package]]
|
66
66
|
name = "arrow-arith"
|
67
|
-
version = "
|
67
|
+
version = "55.0.0"
|
68
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
69
|
-
checksum = "
|
69
|
+
checksum = "00752064ff47cee746e816ddb8450520c3a52cbad1e256f6fa861a35f86c45e7"
|
70
70
|
dependencies = [
|
71
71
|
"arrow-array",
|
72
72
|
"arrow-buffer",
|
73
73
|
"arrow-data",
|
74
74
|
"arrow-schema",
|
75
75
|
"chrono",
|
76
|
-
"half",
|
77
76
|
"num",
|
78
77
|
]
|
79
78
|
|
80
79
|
[[package]]
|
81
80
|
name = "arrow-array"
|
82
|
-
version = "
|
81
|
+
version = "55.0.0"
|
83
82
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
84
|
-
checksum = "
|
83
|
+
checksum = "cebfe926794fbc1f49ddd0cdaf898956ca9f6e79541efce62dabccfd81380472"
|
85
84
|
dependencies = [
|
86
85
|
"ahash",
|
87
86
|
"arrow-buffer",
|
@@ -95,9 +94,9 @@ dependencies = [
|
|
95
94
|
|
96
95
|
[[package]]
|
97
96
|
name = "arrow-buffer"
|
98
|
-
version = "
|
97
|
+
version = "55.0.0"
|
99
98
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
100
|
-
checksum = "
|
99
|
+
checksum = "0303c7ec4cf1a2c60310fc4d6bbc3350cd051a17bf9e9c0a8e47b4db79277824"
|
101
100
|
dependencies = [
|
102
101
|
"bytes",
|
103
102
|
"half",
|
@@ -106,9 +105,9 @@ dependencies = [
|
|
106
105
|
|
107
106
|
[[package]]
|
108
107
|
name = "arrow-cast"
|
109
|
-
version = "
|
108
|
+
version = "55.0.0"
|
110
109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
111
|
-
checksum = "
|
110
|
+
checksum = "335f769c5a218ea823d3760a743feba1ef7857cba114c01399a891c2fff34285"
|
112
111
|
dependencies = [
|
113
112
|
"arrow-array",
|
114
113
|
"arrow-buffer",
|
@@ -126,28 +125,25 @@ dependencies = [
|
|
126
125
|
|
127
126
|
[[package]]
|
128
127
|
name = "arrow-csv"
|
129
|
-
version = "
|
128
|
+
version = "55.0.0"
|
130
129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
131
|
-
checksum = "
|
130
|
+
checksum = "510db7dfbb4d5761826516cc611d97b3a68835d0ece95b034a052601109c0b1b"
|
132
131
|
dependencies = [
|
133
132
|
"arrow-array",
|
134
|
-
"arrow-buffer",
|
135
133
|
"arrow-cast",
|
136
|
-
"arrow-data",
|
137
134
|
"arrow-schema",
|
138
135
|
"chrono",
|
139
136
|
"csv",
|
140
137
|
"csv-core",
|
141
138
|
"lazy_static",
|
142
|
-
"lexical-core",
|
143
139
|
"regex",
|
144
140
|
]
|
145
141
|
|
146
142
|
[[package]]
|
147
143
|
name = "arrow-data"
|
148
|
-
version = "
|
144
|
+
version = "55.0.0"
|
149
145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
150
|
-
checksum = "
|
146
|
+
checksum = "e8affacf3351a24039ea24adab06f316ded523b6f8c3dbe28fbac5f18743451b"
|
151
147
|
dependencies = [
|
152
148
|
"arrow-buffer",
|
153
149
|
"arrow-schema",
|
@@ -157,13 +153,12 @@ dependencies = [
|
|
157
153
|
|
158
154
|
[[package]]
|
159
155
|
name = "arrow-ipc"
|
160
|
-
version = "
|
156
|
+
version = "55.0.0"
|
161
157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
162
|
-
checksum = "
|
158
|
+
checksum = "69880a9e6934d9cba2b8630dd08a3463a91db8693b16b499d54026b6137af284"
|
163
159
|
dependencies = [
|
164
160
|
"arrow-array",
|
165
161
|
"arrow-buffer",
|
166
|
-
"arrow-cast",
|
167
162
|
"arrow-data",
|
168
163
|
"arrow-schema",
|
169
164
|
"flatbuffers",
|
@@ -171,9 +166,9 @@ dependencies = [
|
|
171
166
|
|
172
167
|
[[package]]
|
173
168
|
name = "arrow-json"
|
174
|
-
version = "
|
169
|
+
version = "55.0.0"
|
175
170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
176
|
-
checksum = "
|
171
|
+
checksum = "d8dafd17a05449e31e0114d740530e0ada7379d7cb9c338fd65b09a8130960b0"
|
177
172
|
dependencies = [
|
178
173
|
"arrow-array",
|
179
174
|
"arrow-buffer",
|
@@ -184,55 +179,53 @@ dependencies = [
|
|
184
179
|
"half",
|
185
180
|
"indexmap",
|
186
181
|
"lexical-core",
|
182
|
+
"memchr",
|
187
183
|
"num",
|
188
184
|
"serde",
|
189
185
|
"serde_json",
|
186
|
+
"simdutf8",
|
190
187
|
]
|
191
188
|
|
192
189
|
[[package]]
|
193
190
|
name = "arrow-ord"
|
194
|
-
version = "
|
191
|
+
version = "55.0.0"
|
195
192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
196
|
-
checksum = "
|
193
|
+
checksum = "895644523af4e17502d42c3cb6b27cb820f0cb77954c22d75c23a85247c849e1"
|
197
194
|
dependencies = [
|
198
195
|
"arrow-array",
|
199
196
|
"arrow-buffer",
|
200
197
|
"arrow-data",
|
201
198
|
"arrow-schema",
|
202
199
|
"arrow-select",
|
203
|
-
"half",
|
204
|
-
"num",
|
205
200
|
]
|
206
201
|
|
207
202
|
[[package]]
|
208
203
|
name = "arrow-row"
|
209
|
-
version = "
|
204
|
+
version = "55.0.0"
|
210
205
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
211
|
-
checksum = "
|
206
|
+
checksum = "9be8a2a4e5e7d9c822b2b8095ecd77010576d824f654d347817640acfc97d229"
|
212
207
|
dependencies = [
|
213
|
-
"ahash",
|
214
208
|
"arrow-array",
|
215
209
|
"arrow-buffer",
|
216
210
|
"arrow-data",
|
217
211
|
"arrow-schema",
|
218
212
|
"half",
|
219
|
-
"hashbrown",
|
220
213
|
]
|
221
214
|
|
222
215
|
[[package]]
|
223
216
|
name = "arrow-schema"
|
224
|
-
version = "
|
217
|
+
version = "55.0.0"
|
225
218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
226
|
-
checksum = "
|
219
|
+
checksum = "7450c76ab7c5a6805be3440dc2e2096010da58f7cab301fdc996a4ee3ee74e49"
|
227
220
|
dependencies = [
|
228
|
-
"bitflags
|
221
|
+
"bitflags",
|
229
222
|
]
|
230
223
|
|
231
224
|
[[package]]
|
232
225
|
name = "arrow-select"
|
233
|
-
version = "
|
226
|
+
version = "55.0.0"
|
234
227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
235
|
-
checksum = "
|
228
|
+
checksum = "aa5f5a93c75f46ef48e4001535e7b6c922eeb0aa20b73cf58d09e13d057490d8"
|
236
229
|
dependencies = [
|
237
230
|
"ahash",
|
238
231
|
"arrow-array",
|
@@ -244,9 +237,9 @@ dependencies = [
|
|
244
237
|
|
245
238
|
[[package]]
|
246
239
|
name = "arrow-string"
|
247
|
-
version = "
|
240
|
+
version = "55.0.0"
|
248
241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
249
|
-
checksum = "
|
242
|
+
checksum = "6e7005d858d84b56428ba2a98a107fe88c0132c61793cf6b8232a1f9bfc0452b"
|
250
243
|
dependencies = [
|
251
244
|
"arrow-array",
|
252
245
|
"arrow-buffer",
|
@@ -270,45 +263,42 @@ dependencies = [
|
|
270
263
|
|
271
264
|
[[package]]
|
272
265
|
name = "autocfg"
|
273
|
-
version = "1.
|
266
|
+
version = "1.4.0"
|
274
267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
275
|
-
checksum = "
|
268
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
276
269
|
|
277
270
|
[[package]]
|
278
271
|
name = "base64"
|
279
|
-
version = "0.22.
|
280
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
281
|
-
checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51"
|
282
|
-
|
283
|
-
[[package]]
|
284
|
-
name = "bitflags"
|
285
|
-
version = "1.3.2"
|
272
|
+
version = "0.22.1"
|
286
273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
287
|
-
checksum = "
|
274
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
288
275
|
|
289
276
|
[[package]]
|
290
277
|
name = "bitflags"
|
291
|
-
version = "2.
|
278
|
+
version = "2.9.0"
|
292
279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
293
|
-
checksum = "
|
280
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
294
281
|
|
295
282
|
[[package]]
|
296
283
|
name = "bumpalo"
|
297
|
-
version = "3.
|
284
|
+
version = "3.17.0"
|
298
285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
299
|
-
checksum = "
|
286
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
300
287
|
|
301
288
|
[[package]]
|
302
289
|
name = "bytes"
|
303
|
-
version = "1.
|
290
|
+
version = "1.10.1"
|
304
291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
305
|
-
checksum = "
|
292
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
306
293
|
|
307
294
|
[[package]]
|
308
295
|
name = "cc"
|
309
|
-
version = "1.
|
296
|
+
version = "1.2.19"
|
310
297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
311
|
-
checksum = "
|
298
|
+
checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
|
299
|
+
dependencies = [
|
300
|
+
"shlex",
|
301
|
+
]
|
312
302
|
|
313
303
|
[[package]]
|
314
304
|
name = "cfg-if"
|
@@ -318,16 +308,16 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
318
308
|
|
319
309
|
[[package]]
|
320
310
|
name = "chrono"
|
321
|
-
version = "0.4.
|
311
|
+
version = "0.4.40"
|
322
312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
323
|
-
checksum = "
|
313
|
+
checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
|
324
314
|
dependencies = [
|
325
315
|
"android-tzdata",
|
326
316
|
"iana-time-zone",
|
327
317
|
"js-sys",
|
328
318
|
"num-traits",
|
329
319
|
"wasm-bindgen",
|
330
|
-
"windows-
|
320
|
+
"windows-link",
|
331
321
|
]
|
332
322
|
|
333
323
|
[[package]]
|
@@ -352,21 +342,21 @@ dependencies = [
|
|
352
342
|
|
353
343
|
[[package]]
|
354
344
|
name = "core-foundation-sys"
|
355
|
-
version = "0.8.
|
345
|
+
version = "0.8.7"
|
356
346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
357
|
-
checksum = "
|
347
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
358
348
|
|
359
349
|
[[package]]
|
360
350
|
name = "crunchy"
|
361
|
-
version = "0.2.
|
351
|
+
version = "0.2.3"
|
362
352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
363
|
-
checksum = "
|
353
|
+
checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
|
364
354
|
|
365
355
|
[[package]]
|
366
356
|
name = "csv"
|
367
|
-
version = "1.3.
|
357
|
+
version = "1.3.1"
|
368
358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
369
|
-
checksum = "
|
359
|
+
checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf"
|
370
360
|
dependencies = [
|
371
361
|
"csv-core",
|
372
362
|
"itoa",
|
@@ -376,34 +366,34 @@ dependencies = [
|
|
376
366
|
|
377
367
|
[[package]]
|
378
368
|
name = "csv-core"
|
379
|
-
version = "0.1.
|
369
|
+
version = "0.1.12"
|
380
370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
381
|
-
checksum = "
|
371
|
+
checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d"
|
382
372
|
dependencies = [
|
383
373
|
"memchr",
|
384
374
|
]
|
385
375
|
|
386
376
|
[[package]]
|
387
377
|
name = "equivalent"
|
388
|
-
version = "1.0.
|
378
|
+
version = "1.0.2"
|
389
379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
390
|
-
checksum = "
|
380
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
391
381
|
|
392
382
|
[[package]]
|
393
383
|
name = "flatbuffers"
|
394
|
-
version = "
|
384
|
+
version = "25.2.10"
|
395
385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
396
|
-
checksum = "
|
386
|
+
checksum = "1045398c1bfd89168b5fd3f1fc11f6e70b34f6f66300c87d44d3de849463abf1"
|
397
387
|
dependencies = [
|
398
|
-
"bitflags
|
388
|
+
"bitflags",
|
399
389
|
"rustc_version",
|
400
390
|
]
|
401
391
|
|
402
392
|
[[package]]
|
403
393
|
name = "getrandom"
|
404
|
-
version = "0.2.
|
394
|
+
version = "0.2.15"
|
405
395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
406
|
-
checksum = "
|
396
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
407
397
|
dependencies = [
|
408
398
|
"cfg-if",
|
409
399
|
"libc",
|
@@ -412,9 +402,9 @@ dependencies = [
|
|
412
402
|
|
413
403
|
[[package]]
|
414
404
|
name = "half"
|
415
|
-
version = "2.
|
405
|
+
version = "2.6.0"
|
416
406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
417
|
-
checksum = "
|
407
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
418
408
|
dependencies = [
|
419
409
|
"cfg-if",
|
420
410
|
"crunchy",
|
@@ -423,26 +413,27 @@ dependencies = [
|
|
423
413
|
|
424
414
|
[[package]]
|
425
415
|
name = "hashbrown"
|
426
|
-
version = "0.
|
416
|
+
version = "0.15.2"
|
427
417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
428
|
-
checksum = "
|
418
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
429
419
|
|
430
420
|
[[package]]
|
431
421
|
name = "heck"
|
432
|
-
version = "0.
|
422
|
+
version = "0.5.0"
|
433
423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
434
|
-
checksum = "
|
424
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
435
425
|
|
436
426
|
[[package]]
|
437
427
|
name = "iana-time-zone"
|
438
|
-
version = "0.1.
|
428
|
+
version = "0.1.63"
|
439
429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
440
|
-
checksum = "
|
430
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
441
431
|
dependencies = [
|
442
432
|
"android_system_properties",
|
443
433
|
"core-foundation-sys",
|
444
434
|
"iana-time-zone-haiku",
|
445
435
|
"js-sys",
|
436
|
+
"log",
|
446
437
|
"wasm-bindgen",
|
447
438
|
"windows-core",
|
448
439
|
]
|
@@ -458,9 +449,9 @@ dependencies = [
|
|
458
449
|
|
459
450
|
[[package]]
|
460
451
|
name = "indexmap"
|
461
|
-
version = "2.
|
452
|
+
version = "2.9.0"
|
462
453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
463
|
-
checksum = "
|
454
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
464
455
|
dependencies = [
|
465
456
|
"equivalent",
|
466
457
|
"hashbrown",
|
@@ -468,36 +459,37 @@ dependencies = [
|
|
468
459
|
|
469
460
|
[[package]]
|
470
461
|
name = "indoc"
|
471
|
-
version = "2.0.
|
462
|
+
version = "2.0.6"
|
472
463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
473
|
-
checksum = "
|
464
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
474
465
|
|
475
466
|
[[package]]
|
476
467
|
name = "itoa"
|
477
|
-
version = "1.0.
|
468
|
+
version = "1.0.15"
|
478
469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
479
|
-
checksum = "
|
470
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
480
471
|
|
481
472
|
[[package]]
|
482
473
|
name = "js-sys"
|
483
|
-
version = "0.3.
|
474
|
+
version = "0.3.77"
|
484
475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
485
|
-
checksum = "
|
476
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
486
477
|
dependencies = [
|
478
|
+
"once_cell",
|
487
479
|
"wasm-bindgen",
|
488
480
|
]
|
489
481
|
|
490
482
|
[[package]]
|
491
483
|
name = "lazy_static"
|
492
|
-
version = "1.
|
484
|
+
version = "1.5.0"
|
493
485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
494
|
-
checksum = "
|
486
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
495
487
|
|
496
488
|
[[package]]
|
497
489
|
name = "lexical-core"
|
498
|
-
version = "0.
|
490
|
+
version = "1.0.5"
|
499
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
500
|
-
checksum = "
|
492
|
+
checksum = "b765c31809609075565a70b4b71402281283aeda7ecaf4818ac14a7b2ade8958"
|
501
493
|
dependencies = [
|
502
494
|
"lexical-parse-float",
|
503
495
|
"lexical-parse-integer",
|
@@ -508,9 +500,9 @@ dependencies = [
|
|
508
500
|
|
509
501
|
[[package]]
|
510
502
|
name = "lexical-parse-float"
|
511
|
-
version = "0.
|
503
|
+
version = "1.0.5"
|
512
504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
513
|
-
checksum = "
|
505
|
+
checksum = "de6f9cb01fb0b08060209a057c048fcbab8717b4c1ecd2eac66ebfe39a65b0f2"
|
514
506
|
dependencies = [
|
515
507
|
"lexical-parse-integer",
|
516
508
|
"lexical-util",
|
@@ -519,9 +511,9 @@ dependencies = [
|
|
519
511
|
|
520
512
|
[[package]]
|
521
513
|
name = "lexical-parse-integer"
|
522
|
-
version = "0.
|
514
|
+
version = "1.0.5"
|
523
515
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
524
|
-
checksum = "
|
516
|
+
checksum = "72207aae22fc0a121ba7b6d479e42cbfea549af1479c3f3a4f12c70dd66df12e"
|
525
517
|
dependencies = [
|
526
518
|
"lexical-util",
|
527
519
|
"static_assertions",
|
@@ -529,18 +521,18 @@ dependencies = [
|
|
529
521
|
|
530
522
|
[[package]]
|
531
523
|
name = "lexical-util"
|
532
|
-
version = "0.
|
524
|
+
version = "1.0.6"
|
533
525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
534
|
-
checksum = "
|
526
|
+
checksum = "5a82e24bf537fd24c177ffbbdc6ebcc8d54732c35b50a3f28cc3f4e4c949a0b3"
|
535
527
|
dependencies = [
|
536
528
|
"static_assertions",
|
537
529
|
]
|
538
530
|
|
539
531
|
[[package]]
|
540
532
|
name = "lexical-write-float"
|
541
|
-
version = "0.
|
533
|
+
version = "1.0.5"
|
542
534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
543
|
-
checksum = "
|
535
|
+
checksum = "c5afc668a27f460fb45a81a757b6bf2f43c2d7e30cb5a2dcd3abf294c78d62bd"
|
544
536
|
dependencies = [
|
545
537
|
"lexical-util",
|
546
538
|
"lexical-write-integer",
|
@@ -549,9 +541,9 @@ dependencies = [
|
|
549
541
|
|
550
542
|
[[package]]
|
551
543
|
name = "lexical-write-integer"
|
552
|
-
version = "0.
|
544
|
+
version = "1.0.5"
|
553
545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
554
|
-
checksum = "
|
546
|
+
checksum = "629ddff1a914a836fb245616a7888b62903aae58fa771e1d83943035efa0f978"
|
555
547
|
dependencies = [
|
556
548
|
"lexical-util",
|
557
549
|
"static_assertions",
|
@@ -559,37 +551,27 @@ dependencies = [
|
|
559
551
|
|
560
552
|
[[package]]
|
561
553
|
name = "libc"
|
562
|
-
version = "0.2.
|
554
|
+
version = "0.2.172"
|
563
555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
564
|
-
checksum = "
|
556
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
565
557
|
|
566
558
|
[[package]]
|
567
559
|
name = "libm"
|
568
|
-
version = "0.2.
|
569
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
570
|
-
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
571
|
-
|
572
|
-
[[package]]
|
573
|
-
name = "lock_api"
|
574
|
-
version = "0.4.11"
|
560
|
+
version = "0.2.13"
|
575
561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
576
|
-
checksum = "
|
577
|
-
dependencies = [
|
578
|
-
"autocfg",
|
579
|
-
"scopeguard",
|
580
|
-
]
|
562
|
+
checksum = "c9627da5196e5d8ed0b0495e61e518847578da83483c37288316d9b2e03a7f72"
|
581
563
|
|
582
564
|
[[package]]
|
583
565
|
name = "log"
|
584
|
-
version = "0.4.
|
566
|
+
version = "0.4.27"
|
585
567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
586
|
-
checksum = "
|
568
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
587
569
|
|
588
570
|
[[package]]
|
589
571
|
name = "memchr"
|
590
|
-
version = "2.7.
|
572
|
+
version = "2.7.4"
|
591
573
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
592
|
-
checksum = "
|
574
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
593
575
|
|
594
576
|
[[package]]
|
595
577
|
name = "memoffset"
|
@@ -602,9 +584,9 @@ dependencies = [
|
|
602
584
|
|
603
585
|
[[package]]
|
604
586
|
name = "num"
|
605
|
-
version = "0.4.
|
587
|
+
version = "0.4.3"
|
606
588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
607
|
-
checksum = "
|
589
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
608
590
|
dependencies = [
|
609
591
|
"num-bigint",
|
610
592
|
"num-complex",
|
@@ -616,20 +598,19 @@ dependencies = [
|
|
616
598
|
|
617
599
|
[[package]]
|
618
600
|
name = "num-bigint"
|
619
|
-
version = "0.4.
|
601
|
+
version = "0.4.6"
|
620
602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
621
|
-
checksum = "
|
603
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
622
604
|
dependencies = [
|
623
|
-
"autocfg",
|
624
605
|
"num-integer",
|
625
606
|
"num-traits",
|
626
607
|
]
|
627
608
|
|
628
609
|
[[package]]
|
629
610
|
name = "num-complex"
|
630
|
-
version = "0.4.
|
611
|
+
version = "0.4.6"
|
631
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
632
|
-
checksum = "
|
613
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
633
614
|
dependencies = [
|
634
615
|
"num-traits",
|
635
616
|
]
|
@@ -645,9 +626,9 @@ dependencies = [
|
|
645
626
|
|
646
627
|
[[package]]
|
647
628
|
name = "num-iter"
|
648
|
-
version = "0.1.
|
629
|
+
version = "0.1.45"
|
649
630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
650
|
-
checksum = "
|
631
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
651
632
|
dependencies = [
|
652
633
|
"autocfg",
|
653
634
|
"num-integer",
|
@@ -656,11 +637,10 @@ dependencies = [
|
|
656
637
|
|
657
638
|
[[package]]
|
658
639
|
name = "num-rational"
|
659
|
-
version = "0.4.
|
640
|
+
version = "0.4.2"
|
660
641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
661
|
-
checksum = "
|
642
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
662
643
|
dependencies = [
|
663
|
-
"autocfg",
|
664
644
|
"num-bigint",
|
665
645
|
"num-integer",
|
666
646
|
"num-traits",
|
@@ -668,9 +648,9 @@ dependencies = [
|
|
668
648
|
|
669
649
|
[[package]]
|
670
650
|
name = "num-traits"
|
671
|
-
version = "0.2.
|
651
|
+
version = "0.2.19"
|
672
652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
673
|
-
checksum = "
|
653
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
674
654
|
dependencies = [
|
675
655
|
"autocfg",
|
676
656
|
"libm",
|
@@ -678,53 +658,30 @@ dependencies = [
|
|
678
658
|
|
679
659
|
[[package]]
|
680
660
|
name = "once_cell"
|
681
|
-
version = "1.
|
682
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
683
|
-
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
684
|
-
|
685
|
-
[[package]]
|
686
|
-
name = "parking_lot"
|
687
|
-
version = "0.12.1"
|
688
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
689
|
-
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
690
|
-
dependencies = [
|
691
|
-
"lock_api",
|
692
|
-
"parking_lot_core",
|
693
|
-
]
|
694
|
-
|
695
|
-
[[package]]
|
696
|
-
name = "parking_lot_core"
|
697
|
-
version = "0.9.9"
|
661
|
+
version = "1.21.3"
|
698
662
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
699
|
-
checksum = "
|
700
|
-
dependencies = [
|
701
|
-
"cfg-if",
|
702
|
-
"libc",
|
703
|
-
"redox_syscall",
|
704
|
-
"smallvec",
|
705
|
-
"windows-targets 0.48.5",
|
706
|
-
]
|
663
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
707
664
|
|
708
665
|
[[package]]
|
709
666
|
name = "portable-atomic"
|
710
|
-
version = "1.
|
667
|
+
version = "1.11.0"
|
711
668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
712
|
-
checksum = "
|
669
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
713
670
|
|
714
671
|
[[package]]
|
715
672
|
name = "proc-macro2"
|
716
|
-
version = "1.0.
|
673
|
+
version = "1.0.95"
|
717
674
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
718
|
-
checksum = "
|
675
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
719
676
|
dependencies = [
|
720
677
|
"unicode-ident",
|
721
678
|
]
|
722
679
|
|
723
680
|
[[package]]
|
724
681
|
name = "protobuf"
|
725
|
-
version = "3.
|
682
|
+
version = "3.7.2"
|
726
683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
727
|
-
checksum = "
|
684
|
+
checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4"
|
728
685
|
dependencies = [
|
729
686
|
"once_cell",
|
730
687
|
"protobuf-support",
|
@@ -733,16 +690,16 @@ dependencies = [
|
|
733
690
|
|
734
691
|
[[package]]
|
735
692
|
name = "protobuf-support"
|
736
|
-
version = "3.
|
693
|
+
version = "3.7.2"
|
737
694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
738
|
-
checksum = "
|
695
|
+
checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6"
|
739
696
|
dependencies = [
|
740
697
|
"thiserror",
|
741
698
|
]
|
742
699
|
|
743
700
|
[[package]]
|
744
701
|
name = "ptarslib"
|
745
|
-
version = "0.0.
|
702
|
+
version = "0.0.4"
|
746
703
|
dependencies = [
|
747
704
|
"arrow",
|
748
705
|
"arrow-array",
|
@@ -754,15 +711,15 @@ dependencies = [
|
|
754
711
|
|
755
712
|
[[package]]
|
756
713
|
name = "pyo3"
|
757
|
-
version = "0.
|
714
|
+
version = "0.24.2"
|
758
715
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
759
|
-
checksum = "
|
716
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
760
717
|
dependencies = [
|
761
718
|
"cfg-if",
|
762
719
|
"indoc",
|
763
720
|
"libc",
|
764
721
|
"memoffset",
|
765
|
-
"
|
722
|
+
"once_cell",
|
766
723
|
"portable-atomic",
|
767
724
|
"pyo3-build-config",
|
768
725
|
"pyo3-ffi",
|
@@ -772,9 +729,9 @@ dependencies = [
|
|
772
729
|
|
773
730
|
[[package]]
|
774
731
|
name = "pyo3-build-config"
|
775
|
-
version = "0.
|
732
|
+
version = "0.24.2"
|
776
733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
777
|
-
checksum = "
|
734
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
778
735
|
dependencies = [
|
779
736
|
"once_cell",
|
780
737
|
"target-lexicon",
|
@@ -782,9 +739,9 @@ dependencies = [
|
|
782
739
|
|
783
740
|
[[package]]
|
784
741
|
name = "pyo3-ffi"
|
785
|
-
version = "0.
|
742
|
+
version = "0.24.2"
|
786
743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
787
|
-
checksum = "
|
744
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
788
745
|
dependencies = [
|
789
746
|
"libc",
|
790
747
|
"pyo3-build-config",
|
@@ -792,9 +749,9 @@ dependencies = [
|
|
792
749
|
|
793
750
|
[[package]]
|
794
751
|
name = "pyo3-macros"
|
795
|
-
version = "0.
|
752
|
+
version = "0.24.2"
|
796
753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
797
|
-
checksum = "
|
754
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
798
755
|
dependencies = [
|
799
756
|
"proc-macro2",
|
800
757
|
"pyo3-macros-backend",
|
@@ -804,9 +761,9 @@ dependencies = [
|
|
804
761
|
|
805
762
|
[[package]]
|
806
763
|
name = "pyo3-macros-backend"
|
807
|
-
version = "0.
|
764
|
+
version = "0.24.2"
|
808
765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
809
|
-
checksum = "
|
766
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
810
767
|
dependencies = [
|
811
768
|
"heck",
|
812
769
|
"proc-macro2",
|
@@ -817,27 +774,18 @@ dependencies = [
|
|
817
774
|
|
818
775
|
[[package]]
|
819
776
|
name = "quote"
|
820
|
-
version = "1.0.
|
777
|
+
version = "1.0.40"
|
821
778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
822
|
-
checksum = "
|
779
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
823
780
|
dependencies = [
|
824
781
|
"proc-macro2",
|
825
782
|
]
|
826
783
|
|
827
|
-
[[package]]
|
828
|
-
name = "redox_syscall"
|
829
|
-
version = "0.4.1"
|
830
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
831
|
-
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
832
|
-
dependencies = [
|
833
|
-
"bitflags 1.3.2",
|
834
|
-
]
|
835
|
-
|
836
784
|
[[package]]
|
837
785
|
name = "regex"
|
838
|
-
version = "1.
|
786
|
+
version = "1.11.1"
|
839
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
840
|
-
checksum = "
|
788
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
841
789
|
dependencies = [
|
842
790
|
"aho-corasick",
|
843
791
|
"memchr",
|
@@ -847,9 +795,9 @@ dependencies = [
|
|
847
795
|
|
848
796
|
[[package]]
|
849
797
|
name = "regex-automata"
|
850
|
-
version = "0.4.
|
798
|
+
version = "0.4.9"
|
851
799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
852
|
-
checksum = "
|
800
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
853
801
|
dependencies = [
|
854
802
|
"aho-corasick",
|
855
803
|
"memchr",
|
@@ -858,51 +806,51 @@ dependencies = [
|
|
858
806
|
|
859
807
|
[[package]]
|
860
808
|
name = "regex-syntax"
|
861
|
-
version = "0.8.
|
809
|
+
version = "0.8.5"
|
862
810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
863
|
-
checksum = "
|
811
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
864
812
|
|
865
813
|
[[package]]
|
866
814
|
name = "rustc_version"
|
867
|
-
version = "0.4.
|
815
|
+
version = "0.4.1"
|
868
816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
869
|
-
checksum = "
|
817
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
870
818
|
dependencies = [
|
871
819
|
"semver",
|
872
820
|
]
|
873
821
|
|
874
822
|
[[package]]
|
875
|
-
name = "
|
876
|
-
version = "1.0.
|
823
|
+
name = "rustversion"
|
824
|
+
version = "1.0.20"
|
877
825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
878
|
-
checksum = "
|
826
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
879
827
|
|
880
828
|
[[package]]
|
881
|
-
name = "
|
882
|
-
version = "1.
|
829
|
+
name = "ryu"
|
830
|
+
version = "1.0.20"
|
883
831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
884
|
-
checksum = "
|
832
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
885
833
|
|
886
834
|
[[package]]
|
887
835
|
name = "semver"
|
888
|
-
version = "1.0.
|
836
|
+
version = "1.0.26"
|
889
837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
890
|
-
checksum = "
|
838
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
891
839
|
|
892
840
|
[[package]]
|
893
841
|
name = "serde"
|
894
|
-
version = "1.0.
|
842
|
+
version = "1.0.219"
|
895
843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
896
|
-
checksum = "
|
844
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
897
845
|
dependencies = [
|
898
846
|
"serde_derive",
|
899
847
|
]
|
900
848
|
|
901
849
|
[[package]]
|
902
850
|
name = "serde_derive"
|
903
|
-
version = "1.0.
|
851
|
+
version = "1.0.219"
|
904
852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
905
|
-
checksum = "
|
853
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
906
854
|
dependencies = [
|
907
855
|
"proc-macro2",
|
908
856
|
"quote",
|
@@ -911,20 +859,27 @@ dependencies = [
|
|
911
859
|
|
912
860
|
[[package]]
|
913
861
|
name = "serde_json"
|
914
|
-
version = "1.0.
|
862
|
+
version = "1.0.140"
|
915
863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
916
|
-
checksum = "
|
864
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
917
865
|
dependencies = [
|
918
866
|
"itoa",
|
867
|
+
"memchr",
|
919
868
|
"ryu",
|
920
869
|
"serde",
|
921
870
|
]
|
922
871
|
|
923
872
|
[[package]]
|
924
|
-
name = "
|
925
|
-
version = "1.
|
873
|
+
name = "shlex"
|
874
|
+
version = "1.3.0"
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
876
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
877
|
+
|
878
|
+
[[package]]
|
879
|
+
name = "simdutf8"
|
880
|
+
version = "0.1.5"
|
926
881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
927
|
-
checksum = "
|
882
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
928
883
|
|
929
884
|
[[package]]
|
930
885
|
name = "static_assertions"
|
@@ -934,9 +889,9 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
934
889
|
|
935
890
|
[[package]]
|
936
891
|
name = "syn"
|
937
|
-
version = "2.0.
|
892
|
+
version = "2.0.100"
|
938
893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
939
|
-
checksum = "
|
894
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
940
895
|
dependencies = [
|
941
896
|
"proc-macro2",
|
942
897
|
"quote",
|
@@ -945,24 +900,24 @@ dependencies = [
|
|
945
900
|
|
946
901
|
[[package]]
|
947
902
|
name = "target-lexicon"
|
948
|
-
version = "0.
|
903
|
+
version = "0.13.2"
|
949
904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
950
|
-
checksum = "
|
905
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
951
906
|
|
952
907
|
[[package]]
|
953
908
|
name = "thiserror"
|
954
|
-
version = "1.0.
|
909
|
+
version = "1.0.69"
|
955
910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
956
|
-
checksum = "
|
911
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
957
912
|
dependencies = [
|
958
913
|
"thiserror-impl",
|
959
914
|
]
|
960
915
|
|
961
916
|
[[package]]
|
962
917
|
name = "thiserror-impl"
|
963
|
-
version = "1.0.
|
918
|
+
version = "1.0.69"
|
964
919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
965
|
-
checksum = "
|
920
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
966
921
|
dependencies = [
|
967
922
|
"proc-macro2",
|
968
923
|
"quote",
|
@@ -980,21 +935,21 @@ dependencies = [
|
|
980
935
|
|
981
936
|
[[package]]
|
982
937
|
name = "unicode-ident"
|
983
|
-
version = "1.0.
|
938
|
+
version = "1.0.18"
|
984
939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
985
|
-
checksum = "
|
940
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
986
941
|
|
987
942
|
[[package]]
|
988
943
|
name = "unindent"
|
989
|
-
version = "0.2.
|
944
|
+
version = "0.2.4"
|
990
945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
991
|
-
checksum = "
|
946
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
992
947
|
|
993
948
|
[[package]]
|
994
949
|
name = "version_check"
|
995
|
-
version = "0.9.
|
950
|
+
version = "0.9.5"
|
996
951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
997
|
-
checksum = "
|
952
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
998
953
|
|
999
954
|
[[package]]
|
1000
955
|
name = "wasi"
|
@@ -1004,23 +959,24 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1004
959
|
|
1005
960
|
[[package]]
|
1006
961
|
name = "wasm-bindgen"
|
1007
|
-
version = "0.2.
|
962
|
+
version = "0.2.100"
|
1008
963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1009
|
-
checksum = "
|
964
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
1010
965
|
dependencies = [
|
1011
966
|
"cfg-if",
|
967
|
+
"once_cell",
|
968
|
+
"rustversion",
|
1012
969
|
"wasm-bindgen-macro",
|
1013
970
|
]
|
1014
971
|
|
1015
972
|
[[package]]
|
1016
973
|
name = "wasm-bindgen-backend"
|
1017
|
-
version = "0.2.
|
974
|
+
version = "0.2.100"
|
1018
975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1019
|
-
checksum = "
|
976
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
1020
977
|
dependencies = [
|
1021
978
|
"bumpalo",
|
1022
979
|
"log",
|
1023
|
-
"once_cell",
|
1024
980
|
"proc-macro2",
|
1025
981
|
"quote",
|
1026
982
|
"syn",
|
@@ -1029,9 +985,9 @@ dependencies = [
|
|
1029
985
|
|
1030
986
|
[[package]]
|
1031
987
|
name = "wasm-bindgen-macro"
|
1032
|
-
version = "0.2.
|
988
|
+
version = "0.2.100"
|
1033
989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1034
|
-
checksum = "
|
990
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
1035
991
|
dependencies = [
|
1036
992
|
"quote",
|
1037
993
|
"wasm-bindgen-macro-support",
|
@@ -1039,9 +995,9 @@ dependencies = [
|
|
1039
995
|
|
1040
996
|
[[package]]
|
1041
997
|
name = "wasm-bindgen-macro-support"
|
1042
|
-
version = "0.2.
|
998
|
+
version = "0.2.100"
|
1043
999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1044
|
-
checksum = "
|
1000
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
1045
1001
|
dependencies = [
|
1046
1002
|
"proc-macro2",
|
1047
1003
|
"quote",
|
@@ -1052,154 +1008,86 @@ dependencies = [
|
|
1052
1008
|
|
1053
1009
|
[[package]]
|
1054
1010
|
name = "wasm-bindgen-shared"
|
1055
|
-
version = "0.2.
|
1011
|
+
version = "0.2.100"
|
1056
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1057
|
-
checksum = "
|
1013
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
1014
|
+
dependencies = [
|
1015
|
+
"unicode-ident",
|
1016
|
+
]
|
1058
1017
|
|
1059
1018
|
[[package]]
|
1060
1019
|
name = "windows-core"
|
1061
|
-
version = "0.
|
1020
|
+
version = "0.61.0"
|
1062
1021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1063
|
-
checksum = "
|
1022
|
+
checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
|
1064
1023
|
dependencies = [
|
1065
|
-
"windows-
|
1024
|
+
"windows-implement",
|
1025
|
+
"windows-interface",
|
1026
|
+
"windows-link",
|
1027
|
+
"windows-result",
|
1028
|
+
"windows-strings",
|
1066
1029
|
]
|
1067
1030
|
|
1068
1031
|
[[package]]
|
1069
|
-
name = "windows-
|
1070
|
-
version = "0.
|
1032
|
+
name = "windows-implement"
|
1033
|
+
version = "0.60.0"
|
1071
1034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1072
|
-
checksum = "
|
1035
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
1073
1036
|
dependencies = [
|
1074
|
-
"
|
1075
|
-
"
|
1076
|
-
"
|
1077
|
-
"windows_i686_msvc 0.48.5",
|
1078
|
-
"windows_x86_64_gnu 0.48.5",
|
1079
|
-
"windows_x86_64_gnullvm 0.48.5",
|
1080
|
-
"windows_x86_64_msvc 0.48.5",
|
1037
|
+
"proc-macro2",
|
1038
|
+
"quote",
|
1039
|
+
"syn",
|
1081
1040
|
]
|
1082
1041
|
|
1083
1042
|
[[package]]
|
1084
|
-
name = "windows-
|
1085
|
-
version = "0.
|
1043
|
+
name = "windows-interface"
|
1044
|
+
version = "0.59.1"
|
1086
1045
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1087
|
-
checksum = "
|
1046
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
1088
1047
|
dependencies = [
|
1089
|
-
"
|
1090
|
-
"
|
1091
|
-
"
|
1092
|
-
"windows_i686_gnullvm",
|
1093
|
-
"windows_i686_msvc 0.52.5",
|
1094
|
-
"windows_x86_64_gnu 0.52.5",
|
1095
|
-
"windows_x86_64_gnullvm 0.52.5",
|
1096
|
-
"windows_x86_64_msvc 0.52.5",
|
1048
|
+
"proc-macro2",
|
1049
|
+
"quote",
|
1050
|
+
"syn",
|
1097
1051
|
]
|
1098
1052
|
|
1099
1053
|
[[package]]
|
1100
|
-
name = "
|
1101
|
-
version = "0.
|
1102
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1103
|
-
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
1104
|
-
|
1105
|
-
[[package]]
|
1106
|
-
name = "windows_aarch64_gnullvm"
|
1107
|
-
version = "0.52.5"
|
1108
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1109
|
-
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
1110
|
-
|
1111
|
-
[[package]]
|
1112
|
-
name = "windows_aarch64_msvc"
|
1113
|
-
version = "0.48.5"
|
1114
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1115
|
-
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
1116
|
-
|
1117
|
-
[[package]]
|
1118
|
-
name = "windows_aarch64_msvc"
|
1119
|
-
version = "0.52.5"
|
1120
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1121
|
-
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
1122
|
-
|
1123
|
-
[[package]]
|
1124
|
-
name = "windows_i686_gnu"
|
1125
|
-
version = "0.48.5"
|
1126
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1127
|
-
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
1128
|
-
|
1129
|
-
[[package]]
|
1130
|
-
name = "windows_i686_gnu"
|
1131
|
-
version = "0.52.5"
|
1132
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1133
|
-
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
1134
|
-
|
1135
|
-
[[package]]
|
1136
|
-
name = "windows_i686_gnullvm"
|
1137
|
-
version = "0.52.5"
|
1138
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1139
|
-
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
1140
|
-
|
1141
|
-
[[package]]
|
1142
|
-
name = "windows_i686_msvc"
|
1143
|
-
version = "0.48.5"
|
1144
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1145
|
-
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
1146
|
-
|
1147
|
-
[[package]]
|
1148
|
-
name = "windows_i686_msvc"
|
1149
|
-
version = "0.52.5"
|
1150
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1151
|
-
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
1152
|
-
|
1153
|
-
[[package]]
|
1154
|
-
name = "windows_x86_64_gnu"
|
1155
|
-
version = "0.48.5"
|
1156
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1157
|
-
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
1158
|
-
|
1159
|
-
[[package]]
|
1160
|
-
name = "windows_x86_64_gnu"
|
1161
|
-
version = "0.52.5"
|
1162
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1163
|
-
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
1164
|
-
|
1165
|
-
[[package]]
|
1166
|
-
name = "windows_x86_64_gnullvm"
|
1167
|
-
version = "0.48.5"
|
1168
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1169
|
-
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
1170
|
-
|
1171
|
-
[[package]]
|
1172
|
-
name = "windows_x86_64_gnullvm"
|
1173
|
-
version = "0.52.5"
|
1054
|
+
name = "windows-link"
|
1055
|
+
version = "0.1.1"
|
1174
1056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1175
|
-
checksum = "
|
1057
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
1176
1058
|
|
1177
1059
|
[[package]]
|
1178
|
-
name = "
|
1179
|
-
version = "0.
|
1060
|
+
name = "windows-result"
|
1061
|
+
version = "0.3.2"
|
1180
1062
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1181
|
-
checksum = "
|
1063
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
1064
|
+
dependencies = [
|
1065
|
+
"windows-link",
|
1066
|
+
]
|
1182
1067
|
|
1183
1068
|
[[package]]
|
1184
|
-
name = "
|
1185
|
-
version = "0.
|
1069
|
+
name = "windows-strings"
|
1070
|
+
version = "0.4.0"
|
1186
1071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1187
|
-
checksum = "
|
1072
|
+
checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
|
1073
|
+
dependencies = [
|
1074
|
+
"windows-link",
|
1075
|
+
]
|
1188
1076
|
|
1189
1077
|
[[package]]
|
1190
1078
|
name = "zerocopy"
|
1191
|
-
version = "0.7.
|
1079
|
+
version = "0.7.35"
|
1192
1080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1193
|
-
checksum = "
|
1081
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
1194
1082
|
dependencies = [
|
1195
1083
|
"zerocopy-derive",
|
1196
1084
|
]
|
1197
1085
|
|
1198
1086
|
[[package]]
|
1199
1087
|
name = "zerocopy-derive"
|
1200
|
-
version = "0.7.
|
1088
|
+
version = "0.7.35"
|
1201
1089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1202
|
-
checksum = "
|
1090
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
1203
1091
|
dependencies = [
|
1204
1092
|
"proc-macro2",
|
1205
1093
|
"quote",
|