ptars 0.0.2rc2__tar.gz → 0.0.3__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.3}/Cargo.lock +198 -295
- {ptars-0.0.2rc2 → ptars-0.0.3}/Cargo.toml +7 -7
- {ptars-0.0.2rc2 → ptars-0.0.3}/DEVELOPMENT.md +9 -4
- {ptars-0.0.2rc2 → ptars-0.0.3}/PKG-INFO +17 -7
- {ptars-0.0.2rc2 → ptars-0.0.3}/README.md +12 -6
- ptars-0.0.3/notebooks/README.md +10 -0
- ptars-0.0.3/notebooks/demonstrator.ipynb +176 -0
- ptars-0.0.3/notebooks/demonstrator.proto +9 -0
- ptars-0.0.3/notebooks/requirements.txt +5 -0
- ptars-0.0.3/poetry.lock +2303 -0
- {ptars-0.0.2rc2 → ptars-0.0.3}/pyproject.toml +10 -5
- {ptars-0.0.2rc2 → ptars-0.0.3}/src/lib.rs +183 -22
- ptars-0.0.2rc2/poetry.lock +0 -2192
- {ptars-0.0.2rc2 → ptars-0.0.3}/LICENSE +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.3}/Makefile +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.3}/protos/ptars_protos/bench.proto +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.3}/protos/ptars_protos/imported.proto +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.3}/protos/ptars_protos/importer.proto +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.3}/protos/ptars_protos/simple.proto +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.3}/python/__init__.py +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.3}/python/ptars/__init__.py +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.3}/python/ptars/internal.py +0 -0
- {ptars-0.0.2rc2 → ptars-0.0.3}/scripts/protoc.py +0 -0
@@ -42,9 +42,9 @@ dependencies = [
|
|
42
42
|
|
43
43
|
[[package]]
|
44
44
|
name = "arrow"
|
45
|
-
version = "
|
45
|
+
version = "53.1.0"
|
46
46
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
47
|
-
checksum = "
|
47
|
+
checksum = "a9ba0d7248932f4e2a12fb37f0a2e3ec82b3bdedbac2a1dce186e036843b8f8c"
|
48
48
|
dependencies = [
|
49
49
|
"arrow-arith",
|
50
50
|
"arrow-array",
|
@@ -64,9 +64,9 @@ dependencies = [
|
|
64
64
|
|
65
65
|
[[package]]
|
66
66
|
name = "arrow-arith"
|
67
|
-
version = "
|
67
|
+
version = "53.1.0"
|
68
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
69
|
-
checksum = "
|
69
|
+
checksum = "d60afcdc004841a5c8d8da4f4fa22d64eb19c0c01ef4bcedd77f175a7cf6e38f"
|
70
70
|
dependencies = [
|
71
71
|
"arrow-array",
|
72
72
|
"arrow-buffer",
|
@@ -79,9 +79,9 @@ dependencies = [
|
|
79
79
|
|
80
80
|
[[package]]
|
81
81
|
name = "arrow-array"
|
82
|
-
version = "
|
82
|
+
version = "53.1.0"
|
83
83
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
84
|
-
checksum = "
|
84
|
+
checksum = "7f16835e8599dbbb1659fd869d865254c4cf32c6c2bb60b6942ac9fc36bfa5da"
|
85
85
|
dependencies = [
|
86
86
|
"ahash",
|
87
87
|
"arrow-buffer",
|
@@ -89,15 +89,15 @@ dependencies = [
|
|
89
89
|
"arrow-schema",
|
90
90
|
"chrono",
|
91
91
|
"half",
|
92
|
-
"hashbrown",
|
92
|
+
"hashbrown 0.14.5",
|
93
93
|
"num",
|
94
94
|
]
|
95
95
|
|
96
96
|
[[package]]
|
97
97
|
name = "arrow-buffer"
|
98
|
-
version = "
|
98
|
+
version = "53.1.0"
|
99
99
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
100
|
-
checksum = "
|
100
|
+
checksum = "1a1f34f0faae77da6b142db61deba2cb6d60167592b178be317b341440acba80"
|
101
101
|
dependencies = [
|
102
102
|
"bytes",
|
103
103
|
"half",
|
@@ -106,9 +106,9 @@ dependencies = [
|
|
106
106
|
|
107
107
|
[[package]]
|
108
108
|
name = "arrow-cast"
|
109
|
-
version = "
|
109
|
+
version = "53.1.0"
|
110
110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
111
|
-
checksum = "
|
111
|
+
checksum = "450e4abb5775bca0740bec0bcf1b1a5ae07eff43bd625661c4436d8e8e4540c4"
|
112
112
|
dependencies = [
|
113
113
|
"arrow-array",
|
114
114
|
"arrow-buffer",
|
@@ -126,9 +126,9 @@ dependencies = [
|
|
126
126
|
|
127
127
|
[[package]]
|
128
128
|
name = "arrow-csv"
|
129
|
-
version = "
|
129
|
+
version = "53.1.0"
|
130
130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
131
|
-
checksum = "
|
131
|
+
checksum = "d3a4e4d63830a341713e35d9a42452fbc6241d5f42fa5cf6a4681b8ad91370c4"
|
132
132
|
dependencies = [
|
133
133
|
"arrow-array",
|
134
134
|
"arrow-buffer",
|
@@ -145,9 +145,9 @@ dependencies = [
|
|
145
145
|
|
146
146
|
[[package]]
|
147
147
|
name = "arrow-data"
|
148
|
-
version = "
|
148
|
+
version = "53.1.0"
|
149
149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
150
|
-
checksum = "
|
150
|
+
checksum = "2b1e618bbf714c7a9e8d97203c806734f012ff71ae3adc8ad1b075689f540634"
|
151
151
|
dependencies = [
|
152
152
|
"arrow-buffer",
|
153
153
|
"arrow-schema",
|
@@ -157,9 +157,9 @@ dependencies = [
|
|
157
157
|
|
158
158
|
[[package]]
|
159
159
|
name = "arrow-ipc"
|
160
|
-
version = "
|
160
|
+
version = "53.1.0"
|
161
161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
162
|
-
checksum = "
|
162
|
+
checksum = "f98e983549259a2b97049af7edfb8f28b8911682040e99a94e4ceb1196bd65c2"
|
163
163
|
dependencies = [
|
164
164
|
"arrow-array",
|
165
165
|
"arrow-buffer",
|
@@ -171,9 +171,9 @@ dependencies = [
|
|
171
171
|
|
172
172
|
[[package]]
|
173
173
|
name = "arrow-json"
|
174
|
-
version = "
|
174
|
+
version = "53.1.0"
|
175
175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
176
|
-
checksum = "
|
176
|
+
checksum = "b198b9c6fcf086501730efbbcb483317b39330a116125af7bb06467d04b352a3"
|
177
177
|
dependencies = [
|
178
178
|
"arrow-array",
|
179
179
|
"arrow-buffer",
|
@@ -191,9 +191,9 @@ dependencies = [
|
|
191
191
|
|
192
192
|
[[package]]
|
193
193
|
name = "arrow-ord"
|
194
|
-
version = "
|
194
|
+
version = "53.1.0"
|
195
195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
196
|
-
checksum = "
|
196
|
+
checksum = "2427f37b4459a4b9e533045abe87a5183a5e0995a3fc2c2fd45027ae2cc4ef3f"
|
197
197
|
dependencies = [
|
198
198
|
"arrow-array",
|
199
199
|
"arrow-buffer",
|
@@ -206,9 +206,9 @@ dependencies = [
|
|
206
206
|
|
207
207
|
[[package]]
|
208
208
|
name = "arrow-row"
|
209
|
-
version = "
|
209
|
+
version = "53.1.0"
|
210
210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
211
|
-
checksum = "
|
211
|
+
checksum = "15959657d92e2261a7a323517640af87f5afd9fd8a6492e424ebee2203c567f6"
|
212
212
|
dependencies = [
|
213
213
|
"ahash",
|
214
214
|
"arrow-array",
|
@@ -216,23 +216,22 @@ dependencies = [
|
|
216
216
|
"arrow-data",
|
217
217
|
"arrow-schema",
|
218
218
|
"half",
|
219
|
-
"hashbrown",
|
220
219
|
]
|
221
220
|
|
222
221
|
[[package]]
|
223
222
|
name = "arrow-schema"
|
224
|
-
version = "
|
223
|
+
version = "53.1.0"
|
225
224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
226
|
-
checksum = "
|
225
|
+
checksum = "fbf0388a18fd7f7f3fe3de01852d30f54ed5182f9004db700fbe3ba843ed2794"
|
227
226
|
dependencies = [
|
228
|
-
"bitflags 2.
|
227
|
+
"bitflags 2.6.0",
|
229
228
|
]
|
230
229
|
|
231
230
|
[[package]]
|
232
231
|
name = "arrow-select"
|
233
|
-
version = "
|
232
|
+
version = "53.1.0"
|
234
233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
235
|
-
checksum = "
|
234
|
+
checksum = "b83e5723d307a38bf00ecd2972cd078d1339c7fd3eb044f609958a9a24463f3a"
|
236
235
|
dependencies = [
|
237
236
|
"ahash",
|
238
237
|
"arrow-array",
|
@@ -244,9 +243,9 @@ dependencies = [
|
|
244
243
|
|
245
244
|
[[package]]
|
246
245
|
name = "arrow-string"
|
247
|
-
version = "
|
246
|
+
version = "53.1.0"
|
248
247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
249
|
-
checksum = "
|
248
|
+
checksum = "7ab3db7c09dd826e74079661d84ed01ed06547cf75d52c2818ef776d0d852305"
|
250
249
|
dependencies = [
|
251
250
|
"arrow-array",
|
252
251
|
"arrow-buffer",
|
@@ -270,15 +269,15 @@ dependencies = [
|
|
270
269
|
|
271
270
|
[[package]]
|
272
271
|
name = "autocfg"
|
273
|
-
version = "1.
|
272
|
+
version = "1.4.0"
|
274
273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
275
|
-
checksum = "
|
274
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
276
275
|
|
277
276
|
[[package]]
|
278
277
|
name = "base64"
|
279
|
-
version = "0.22.
|
278
|
+
version = "0.22.1"
|
280
279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
281
|
-
checksum = "
|
280
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
282
281
|
|
283
282
|
[[package]]
|
284
283
|
name = "bitflags"
|
@@ -288,9 +287,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
288
287
|
|
289
288
|
[[package]]
|
290
289
|
name = "bitflags"
|
291
|
-
version = "2.
|
290
|
+
version = "2.6.0"
|
292
291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
293
|
-
checksum = "
|
292
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
294
293
|
|
295
294
|
[[package]]
|
296
295
|
name = "bumpalo"
|
@@ -300,15 +299,18 @@ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
300
299
|
|
301
300
|
[[package]]
|
302
301
|
name = "bytes"
|
303
|
-
version = "1.
|
302
|
+
version = "1.7.2"
|
304
303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
305
|
-
checksum = "
|
304
|
+
checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3"
|
306
305
|
|
307
306
|
[[package]]
|
308
307
|
name = "cc"
|
309
|
-
version = "1.
|
308
|
+
version = "1.1.28"
|
310
309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
311
|
-
checksum = "
|
310
|
+
checksum = "2e80e3b6a3ab07840e1cae9b0666a63970dc28e8ed5ffbcdacbfc760c281bfc1"
|
311
|
+
dependencies = [
|
312
|
+
"shlex",
|
313
|
+
]
|
312
314
|
|
313
315
|
[[package]]
|
314
316
|
name = "cfg-if"
|
@@ -327,7 +329,7 @@ dependencies = [
|
|
327
329
|
"js-sys",
|
328
330
|
"num-traits",
|
329
331
|
"wasm-bindgen",
|
330
|
-
"windows-targets
|
332
|
+
"windows-targets",
|
331
333
|
]
|
332
334
|
|
333
335
|
[[package]]
|
@@ -352,9 +354,9 @@ dependencies = [
|
|
352
354
|
|
353
355
|
[[package]]
|
354
356
|
name = "core-foundation-sys"
|
355
|
-
version = "0.8.
|
357
|
+
version = "0.8.7"
|
356
358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
357
|
-
checksum = "
|
359
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
358
360
|
|
359
361
|
[[package]]
|
360
362
|
name = "crunchy"
|
@@ -391,9 +393,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
391
393
|
|
392
394
|
[[package]]
|
393
395
|
name = "flatbuffers"
|
394
|
-
version = "
|
396
|
+
version = "24.3.25"
|
395
397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
396
|
-
checksum = "
|
398
|
+
checksum = "8add37afff2d4ffa83bc748a70b4b1370984f6980768554182424ef71447c35f"
|
397
399
|
dependencies = [
|
398
400
|
"bitflags 1.3.2",
|
399
401
|
"rustc_version",
|
@@ -401,9 +403,9 @@ dependencies = [
|
|
401
403
|
|
402
404
|
[[package]]
|
403
405
|
name = "getrandom"
|
404
|
-
version = "0.2.
|
406
|
+
version = "0.2.15"
|
405
407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
406
|
-
checksum = "
|
408
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
407
409
|
dependencies = [
|
408
410
|
"cfg-if",
|
409
411
|
"libc",
|
@@ -423,21 +425,27 @@ dependencies = [
|
|
423
425
|
|
424
426
|
[[package]]
|
425
427
|
name = "hashbrown"
|
426
|
-
version = "0.14.
|
428
|
+
version = "0.14.5"
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
430
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
431
|
+
|
432
|
+
[[package]]
|
433
|
+
name = "hashbrown"
|
434
|
+
version = "0.15.0"
|
427
435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
428
|
-
checksum = "
|
436
|
+
checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
|
429
437
|
|
430
438
|
[[package]]
|
431
439
|
name = "heck"
|
432
|
-
version = "0.
|
440
|
+
version = "0.5.0"
|
433
441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
434
|
-
checksum = "
|
442
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
435
443
|
|
436
444
|
[[package]]
|
437
445
|
name = "iana-time-zone"
|
438
|
-
version = "0.1.
|
446
|
+
version = "0.1.61"
|
439
447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
440
|
-
checksum = "
|
448
|
+
checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
|
441
449
|
dependencies = [
|
442
450
|
"android_system_properties",
|
443
451
|
"core-foundation-sys",
|
@@ -458,12 +466,12 @@ dependencies = [
|
|
458
466
|
|
459
467
|
[[package]]
|
460
468
|
name = "indexmap"
|
461
|
-
version = "2.
|
469
|
+
version = "2.6.0"
|
462
470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
463
|
-
checksum = "
|
471
|
+
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
|
464
472
|
dependencies = [
|
465
473
|
"equivalent",
|
466
|
-
"hashbrown",
|
474
|
+
"hashbrown 0.15.0",
|
467
475
|
]
|
468
476
|
|
469
477
|
[[package]]
|
@@ -480,24 +488,24 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
480
488
|
|
481
489
|
[[package]]
|
482
490
|
name = "js-sys"
|
483
|
-
version = "0.3.
|
491
|
+
version = "0.3.70"
|
484
492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
485
|
-
checksum = "
|
493
|
+
checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a"
|
486
494
|
dependencies = [
|
487
495
|
"wasm-bindgen",
|
488
496
|
]
|
489
497
|
|
490
498
|
[[package]]
|
491
499
|
name = "lazy_static"
|
492
|
-
version = "1.
|
500
|
+
version = "1.5.0"
|
493
501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
494
|
-
checksum = "
|
502
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
495
503
|
|
496
504
|
[[package]]
|
497
505
|
name = "lexical-core"
|
498
|
-
version = "0.
|
506
|
+
version = "1.0.2"
|
499
507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
500
|
-
checksum = "
|
508
|
+
checksum = "0431c65b318a590c1de6b8fd6e72798c92291d27762d94c9e6c37ed7a73d8458"
|
501
509
|
dependencies = [
|
502
510
|
"lexical-parse-float",
|
503
511
|
"lexical-parse-integer",
|
@@ -508,9 +516,9 @@ dependencies = [
|
|
508
516
|
|
509
517
|
[[package]]
|
510
518
|
name = "lexical-parse-float"
|
511
|
-
version = "0.
|
519
|
+
version = "1.0.2"
|
512
520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
513
|
-
checksum = "
|
521
|
+
checksum = "eb17a4bdb9b418051aa59d41d65b1c9be5affab314a872e5ad7f06231fb3b4e0"
|
514
522
|
dependencies = [
|
515
523
|
"lexical-parse-integer",
|
516
524
|
"lexical-util",
|
@@ -519,9 +527,9 @@ dependencies = [
|
|
519
527
|
|
520
528
|
[[package]]
|
521
529
|
name = "lexical-parse-integer"
|
522
|
-
version = "0.
|
530
|
+
version = "1.0.2"
|
523
531
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
524
|
-
checksum = "
|
532
|
+
checksum = "5df98f4a4ab53bf8b175b363a34c7af608fe31f93cc1fb1bf07130622ca4ef61"
|
525
533
|
dependencies = [
|
526
534
|
"lexical-util",
|
527
535
|
"static_assertions",
|
@@ -529,18 +537,18 @@ dependencies = [
|
|
529
537
|
|
530
538
|
[[package]]
|
531
539
|
name = "lexical-util"
|
532
|
-
version = "0.
|
540
|
+
version = "1.0.3"
|
533
541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
534
|
-
checksum = "
|
542
|
+
checksum = "85314db53332e5c192b6bca611fb10c114a80d1b831ddac0af1e9be1b9232ca0"
|
535
543
|
dependencies = [
|
536
544
|
"static_assertions",
|
537
545
|
]
|
538
546
|
|
539
547
|
[[package]]
|
540
548
|
name = "lexical-write-float"
|
541
|
-
version = "0.
|
549
|
+
version = "1.0.2"
|
542
550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
543
|
-
checksum = "
|
551
|
+
checksum = "6e7c3ad4e37db81c1cbe7cf34610340adc09c322871972f74877a712abc6c809"
|
544
552
|
dependencies = [
|
545
553
|
"lexical-util",
|
546
554
|
"lexical-write-integer",
|
@@ -549,9 +557,9 @@ dependencies = [
|
|
549
557
|
|
550
558
|
[[package]]
|
551
559
|
name = "lexical-write-integer"
|
552
|
-
version = "0.
|
560
|
+
version = "1.0.2"
|
553
561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
554
|
-
checksum = "
|
562
|
+
checksum = "eb89e9f6958b83258afa3deed90b5de9ef68eef090ad5086c791cd2345610162"
|
555
563
|
dependencies = [
|
556
564
|
"lexical-util",
|
557
565
|
"static_assertions",
|
@@ -559,9 +567,9 @@ dependencies = [
|
|
559
567
|
|
560
568
|
[[package]]
|
561
569
|
name = "libc"
|
562
|
-
version = "0.2.
|
570
|
+
version = "0.2.159"
|
563
571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
564
|
-
checksum = "
|
572
|
+
checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5"
|
565
573
|
|
566
574
|
[[package]]
|
567
575
|
name = "libm"
|
@@ -569,27 +577,17 @@ version = "0.2.8"
|
|
569
577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
570
578
|
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
571
579
|
|
572
|
-
[[package]]
|
573
|
-
name = "lock_api"
|
574
|
-
version = "0.4.11"
|
575
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
576
|
-
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
577
|
-
dependencies = [
|
578
|
-
"autocfg",
|
579
|
-
"scopeguard",
|
580
|
-
]
|
581
|
-
|
582
580
|
[[package]]
|
583
581
|
name = "log"
|
584
|
-
version = "0.4.
|
582
|
+
version = "0.4.22"
|
585
583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
586
|
-
checksum = "
|
584
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
587
585
|
|
588
586
|
[[package]]
|
589
587
|
name = "memchr"
|
590
|
-
version = "2.7.
|
588
|
+
version = "2.7.4"
|
591
589
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
592
|
-
checksum = "
|
590
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
593
591
|
|
594
592
|
[[package]]
|
595
593
|
name = "memoffset"
|
@@ -602,9 +600,9 @@ dependencies = [
|
|
602
600
|
|
603
601
|
[[package]]
|
604
602
|
name = "num"
|
605
|
-
version = "0.4.
|
603
|
+
version = "0.4.3"
|
606
604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
607
|
-
checksum = "
|
605
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
608
606
|
dependencies = [
|
609
607
|
"num-bigint",
|
610
608
|
"num-complex",
|
@@ -616,20 +614,19 @@ dependencies = [
|
|
616
614
|
|
617
615
|
[[package]]
|
618
616
|
name = "num-bigint"
|
619
|
-
version = "0.4.
|
617
|
+
version = "0.4.6"
|
620
618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
621
|
-
checksum = "
|
619
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
622
620
|
dependencies = [
|
623
|
-
"autocfg",
|
624
621
|
"num-integer",
|
625
622
|
"num-traits",
|
626
623
|
]
|
627
624
|
|
628
625
|
[[package]]
|
629
626
|
name = "num-complex"
|
630
|
-
version = "0.4.
|
627
|
+
version = "0.4.6"
|
631
628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
632
|
-
checksum = "
|
629
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
633
630
|
dependencies = [
|
634
631
|
"num-traits",
|
635
632
|
]
|
@@ -645,9 +642,9 @@ dependencies = [
|
|
645
642
|
|
646
643
|
[[package]]
|
647
644
|
name = "num-iter"
|
648
|
-
version = "0.1.
|
645
|
+
version = "0.1.45"
|
649
646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
650
|
-
checksum = "
|
647
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
651
648
|
dependencies = [
|
652
649
|
"autocfg",
|
653
650
|
"num-integer",
|
@@ -656,11 +653,10 @@ dependencies = [
|
|
656
653
|
|
657
654
|
[[package]]
|
658
655
|
name = "num-rational"
|
659
|
-
version = "0.4.
|
656
|
+
version = "0.4.2"
|
660
657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
661
|
-
checksum = "
|
658
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
662
659
|
dependencies = [
|
663
|
-
"autocfg",
|
664
660
|
"num-bigint",
|
665
661
|
"num-integer",
|
666
662
|
"num-traits",
|
@@ -668,9 +664,9 @@ dependencies = [
|
|
668
664
|
|
669
665
|
[[package]]
|
670
666
|
name = "num-traits"
|
671
|
-
version = "0.2.
|
667
|
+
version = "0.2.19"
|
672
668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
673
|
-
checksum = "
|
669
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
674
670
|
dependencies = [
|
675
671
|
"autocfg",
|
676
672
|
"libm",
|
@@ -678,53 +674,30 @@ dependencies = [
|
|
678
674
|
|
679
675
|
[[package]]
|
680
676
|
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"
|
677
|
+
version = "1.20.2"
|
698
678
|
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
|
-
]
|
679
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
707
680
|
|
708
681
|
[[package]]
|
709
682
|
name = "portable-atomic"
|
710
|
-
version = "1.
|
683
|
+
version = "1.9.0"
|
711
684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
712
|
-
checksum = "
|
685
|
+
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
|
713
686
|
|
714
687
|
[[package]]
|
715
688
|
name = "proc-macro2"
|
716
|
-
version = "1.0.
|
689
|
+
version = "1.0.87"
|
717
690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
718
|
-
checksum = "
|
691
|
+
checksum = "b3e4daa0dcf6feba26f985457cdf104d4b4256fc5a09547140f3631bb076b19a"
|
719
692
|
dependencies = [
|
720
693
|
"unicode-ident",
|
721
694
|
]
|
722
695
|
|
723
696
|
[[package]]
|
724
697
|
name = "protobuf"
|
725
|
-
version = "3.
|
698
|
+
version = "3.6.0"
|
726
699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
727
|
-
checksum = "
|
700
|
+
checksum = "3018844a02746180074f621e847703737d27d89d7f0721a7a4da317f88b16385"
|
728
701
|
dependencies = [
|
729
702
|
"once_cell",
|
730
703
|
"protobuf-support",
|
@@ -733,16 +706,16 @@ dependencies = [
|
|
733
706
|
|
734
707
|
[[package]]
|
735
708
|
name = "protobuf-support"
|
736
|
-
version = "3.
|
709
|
+
version = "3.6.0"
|
737
710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
738
|
-
checksum = "
|
711
|
+
checksum = "faf96d872914fcda2b66d66ea3fff2be7c66865d31c7bb2790cff32c0e714880"
|
739
712
|
dependencies = [
|
740
713
|
"thiserror",
|
741
714
|
]
|
742
715
|
|
743
716
|
[[package]]
|
744
717
|
name = "ptarslib"
|
745
|
-
version = "0.0.
|
718
|
+
version = "0.0.3"
|
746
719
|
dependencies = [
|
747
720
|
"arrow",
|
748
721
|
"arrow-array",
|
@@ -754,15 +727,15 @@ dependencies = [
|
|
754
727
|
|
755
728
|
[[package]]
|
756
729
|
name = "pyo3"
|
757
|
-
version = "0.
|
730
|
+
version = "0.22.3"
|
758
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
759
|
-
checksum = "
|
732
|
+
checksum = "15ee168e30649f7f234c3d49ef5a7a6cbf5134289bc46c29ff3155fa3221c225"
|
760
733
|
dependencies = [
|
761
734
|
"cfg-if",
|
762
735
|
"indoc",
|
763
736
|
"libc",
|
764
737
|
"memoffset",
|
765
|
-
"
|
738
|
+
"once_cell",
|
766
739
|
"portable-atomic",
|
767
740
|
"pyo3-build-config",
|
768
741
|
"pyo3-ffi",
|
@@ -772,9 +745,9 @@ dependencies = [
|
|
772
745
|
|
773
746
|
[[package]]
|
774
747
|
name = "pyo3-build-config"
|
775
|
-
version = "0.
|
748
|
+
version = "0.22.3"
|
776
749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
777
|
-
checksum = "
|
750
|
+
checksum = "e61cef80755fe9e46bb8a0b8f20752ca7676dcc07a5277d8b7768c6172e529b3"
|
778
751
|
dependencies = [
|
779
752
|
"once_cell",
|
780
753
|
"target-lexicon",
|
@@ -782,9 +755,9 @@ dependencies = [
|
|
782
755
|
|
783
756
|
[[package]]
|
784
757
|
name = "pyo3-ffi"
|
785
|
-
version = "0.
|
758
|
+
version = "0.22.3"
|
786
759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
787
|
-
checksum = "
|
760
|
+
checksum = "67ce096073ec5405f5ee2b8b31f03a68e02aa10d5d4f565eca04acc41931fa1c"
|
788
761
|
dependencies = [
|
789
762
|
"libc",
|
790
763
|
"pyo3-build-config",
|
@@ -792,9 +765,9 @@ dependencies = [
|
|
792
765
|
|
793
766
|
[[package]]
|
794
767
|
name = "pyo3-macros"
|
795
|
-
version = "0.
|
768
|
+
version = "0.22.3"
|
796
769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
797
|
-
checksum = "
|
770
|
+
checksum = "2440c6d12bc8f3ae39f1e775266fa5122fd0c8891ce7520fa6048e683ad3de28"
|
798
771
|
dependencies = [
|
799
772
|
"proc-macro2",
|
800
773
|
"pyo3-macros-backend",
|
@@ -804,9 +777,9 @@ dependencies = [
|
|
804
777
|
|
805
778
|
[[package]]
|
806
779
|
name = "pyo3-macros-backend"
|
807
|
-
version = "0.
|
780
|
+
version = "0.22.3"
|
808
781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
809
|
-
checksum = "
|
782
|
+
checksum = "1be962f0e06da8f8465729ea2cb71a416d2257dff56cbe40a70d3e62a93ae5d1"
|
810
783
|
dependencies = [
|
811
784
|
"heck",
|
812
785
|
"proc-macro2",
|
@@ -817,27 +790,18 @@ dependencies = [
|
|
817
790
|
|
818
791
|
[[package]]
|
819
792
|
name = "quote"
|
820
|
-
version = "1.0.
|
793
|
+
version = "1.0.37"
|
821
794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
822
|
-
checksum = "
|
795
|
+
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
|
823
796
|
dependencies = [
|
824
797
|
"proc-macro2",
|
825
798
|
]
|
826
799
|
|
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
800
|
[[package]]
|
837
801
|
name = "regex"
|
838
|
-
version = "1.
|
802
|
+
version = "1.11.0"
|
839
803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
840
|
-
checksum = "
|
804
|
+
checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8"
|
841
805
|
dependencies = [
|
842
806
|
"aho-corasick",
|
843
807
|
"memchr",
|
@@ -847,9 +811,9 @@ dependencies = [
|
|
847
811
|
|
848
812
|
[[package]]
|
849
813
|
name = "regex-automata"
|
850
|
-
version = "0.4.
|
814
|
+
version = "0.4.8"
|
851
815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
852
|
-
checksum = "
|
816
|
+
checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
|
853
817
|
dependencies = [
|
854
818
|
"aho-corasick",
|
855
819
|
"memchr",
|
@@ -858,51 +822,45 @@ dependencies = [
|
|
858
822
|
|
859
823
|
[[package]]
|
860
824
|
name = "regex-syntax"
|
861
|
-
version = "0.8.
|
825
|
+
version = "0.8.5"
|
862
826
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
863
|
-
checksum = "
|
827
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
864
828
|
|
865
829
|
[[package]]
|
866
830
|
name = "rustc_version"
|
867
|
-
version = "0.4.
|
831
|
+
version = "0.4.1"
|
868
832
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
869
|
-
checksum = "
|
833
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
870
834
|
dependencies = [
|
871
835
|
"semver",
|
872
836
|
]
|
873
837
|
|
874
838
|
[[package]]
|
875
839
|
name = "ryu"
|
876
|
-
version = "1.0.
|
877
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
878
|
-
checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
|
879
|
-
|
880
|
-
[[package]]
|
881
|
-
name = "scopeguard"
|
882
|
-
version = "1.2.0"
|
840
|
+
version = "1.0.18"
|
883
841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
884
|
-
checksum = "
|
842
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
885
843
|
|
886
844
|
[[package]]
|
887
845
|
name = "semver"
|
888
|
-
version = "1.0.
|
846
|
+
version = "1.0.23"
|
889
847
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
890
|
-
checksum = "
|
848
|
+
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
|
891
849
|
|
892
850
|
[[package]]
|
893
851
|
name = "serde"
|
894
|
-
version = "1.0.
|
852
|
+
version = "1.0.210"
|
895
853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
896
|
-
checksum = "
|
854
|
+
checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
|
897
855
|
dependencies = [
|
898
856
|
"serde_derive",
|
899
857
|
]
|
900
858
|
|
901
859
|
[[package]]
|
902
860
|
name = "serde_derive"
|
903
|
-
version = "1.0.
|
861
|
+
version = "1.0.210"
|
904
862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
905
|
-
checksum = "
|
863
|
+
checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
|
906
864
|
dependencies = [
|
907
865
|
"proc-macro2",
|
908
866
|
"quote",
|
@@ -911,20 +869,21 @@ dependencies = [
|
|
911
869
|
|
912
870
|
[[package]]
|
913
871
|
name = "serde_json"
|
914
|
-
version = "1.0.
|
872
|
+
version = "1.0.128"
|
915
873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
916
|
-
checksum = "
|
874
|
+
checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
|
917
875
|
dependencies = [
|
918
876
|
"itoa",
|
877
|
+
"memchr",
|
919
878
|
"ryu",
|
920
879
|
"serde",
|
921
880
|
]
|
922
881
|
|
923
882
|
[[package]]
|
924
|
-
name = "
|
925
|
-
version = "1.
|
883
|
+
name = "shlex"
|
884
|
+
version = "1.3.0"
|
926
885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
927
|
-
checksum = "
|
886
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
928
887
|
|
929
888
|
[[package]]
|
930
889
|
name = "static_assertions"
|
@@ -934,9 +893,9 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
934
893
|
|
935
894
|
[[package]]
|
936
895
|
name = "syn"
|
937
|
-
version = "2.0.
|
896
|
+
version = "2.0.79"
|
938
897
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
939
|
-
checksum = "
|
898
|
+
checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590"
|
940
899
|
dependencies = [
|
941
900
|
"proc-macro2",
|
942
901
|
"quote",
|
@@ -945,24 +904,24 @@ dependencies = [
|
|
945
904
|
|
946
905
|
[[package]]
|
947
906
|
name = "target-lexicon"
|
948
|
-
version = "0.12.
|
907
|
+
version = "0.12.16"
|
949
908
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
950
|
-
checksum = "
|
909
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
951
910
|
|
952
911
|
[[package]]
|
953
912
|
name = "thiserror"
|
954
|
-
version = "1.0.
|
913
|
+
version = "1.0.64"
|
955
914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
956
|
-
checksum = "
|
915
|
+
checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
|
957
916
|
dependencies = [
|
958
917
|
"thiserror-impl",
|
959
918
|
]
|
960
919
|
|
961
920
|
[[package]]
|
962
921
|
name = "thiserror-impl"
|
963
|
-
version = "1.0.
|
922
|
+
version = "1.0.64"
|
964
923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
965
|
-
checksum = "
|
924
|
+
checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
|
966
925
|
dependencies = [
|
967
926
|
"proc-macro2",
|
968
927
|
"quote",
|
@@ -980,9 +939,9 @@ dependencies = [
|
|
980
939
|
|
981
940
|
[[package]]
|
982
941
|
name = "unicode-ident"
|
983
|
-
version = "1.0.
|
942
|
+
version = "1.0.13"
|
984
943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
985
|
-
checksum = "
|
944
|
+
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
|
986
945
|
|
987
946
|
[[package]]
|
988
947
|
name = "unindent"
|
@@ -992,9 +951,9 @@ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
992
951
|
|
993
952
|
[[package]]
|
994
953
|
name = "version_check"
|
995
|
-
version = "0.9.
|
954
|
+
version = "0.9.5"
|
996
955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
997
|
-
checksum = "
|
956
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
998
957
|
|
999
958
|
[[package]]
|
1000
959
|
name = "wasi"
|
@@ -1004,19 +963,20 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1004
963
|
|
1005
964
|
[[package]]
|
1006
965
|
name = "wasm-bindgen"
|
1007
|
-
version = "0.2.
|
966
|
+
version = "0.2.93"
|
1008
967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1009
|
-
checksum = "
|
968
|
+
checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
|
1010
969
|
dependencies = [
|
1011
970
|
"cfg-if",
|
971
|
+
"once_cell",
|
1012
972
|
"wasm-bindgen-macro",
|
1013
973
|
]
|
1014
974
|
|
1015
975
|
[[package]]
|
1016
976
|
name = "wasm-bindgen-backend"
|
1017
|
-
version = "0.2.
|
977
|
+
version = "0.2.93"
|
1018
978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1019
|
-
checksum = "
|
979
|
+
checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
|
1020
980
|
dependencies = [
|
1021
981
|
"bumpalo",
|
1022
982
|
"log",
|
@@ -1029,9 +989,9 @@ dependencies = [
|
|
1029
989
|
|
1030
990
|
[[package]]
|
1031
991
|
name = "wasm-bindgen-macro"
|
1032
|
-
version = "0.2.
|
992
|
+
version = "0.2.93"
|
1033
993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1034
|
-
checksum = "
|
994
|
+
checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
|
1035
995
|
dependencies = [
|
1036
996
|
"quote",
|
1037
997
|
"wasm-bindgen-macro-support",
|
@@ -1039,9 +999,9 @@ dependencies = [
|
|
1039
999
|
|
1040
1000
|
[[package]]
|
1041
1001
|
name = "wasm-bindgen-macro-support"
|
1042
|
-
version = "0.2.
|
1002
|
+
version = "0.2.93"
|
1043
1003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1044
|
-
checksum = "
|
1004
|
+
checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
|
1045
1005
|
dependencies = [
|
1046
1006
|
"proc-macro2",
|
1047
1007
|
"quote",
|
@@ -1052,9 +1012,9 @@ dependencies = [
|
|
1052
1012
|
|
1053
1013
|
[[package]]
|
1054
1014
|
name = "wasm-bindgen-shared"
|
1055
|
-
version = "0.2.
|
1015
|
+
version = "0.2.93"
|
1056
1016
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1057
|
-
checksum = "
|
1017
|
+
checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
|
1058
1018
|
|
1059
1019
|
[[package]]
|
1060
1020
|
name = "windows-core"
|
@@ -1062,144 +1022,87 @@ version = "0.52.0"
|
|
1062
1022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1063
1023
|
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
1064
1024
|
dependencies = [
|
1065
|
-
"windows-targets
|
1025
|
+
"windows-targets",
|
1066
1026
|
]
|
1067
1027
|
|
1068
1028
|
[[package]]
|
1069
1029
|
name = "windows-targets"
|
1070
|
-
version = "0.
|
1030
|
+
version = "0.52.6"
|
1071
1031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1072
|
-
checksum = "
|
1032
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
1073
1033
|
dependencies = [
|
1074
|
-
"windows_aarch64_gnullvm
|
1075
|
-
"windows_aarch64_msvc
|
1076
|
-
"windows_i686_gnu
|
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",
|
1081
|
-
]
|
1082
|
-
|
1083
|
-
[[package]]
|
1084
|
-
name = "windows-targets"
|
1085
|
-
version = "0.52.5"
|
1086
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1087
|
-
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
1088
|
-
dependencies = [
|
1089
|
-
"windows_aarch64_gnullvm 0.52.5",
|
1090
|
-
"windows_aarch64_msvc 0.52.5",
|
1091
|
-
"windows_i686_gnu 0.52.5",
|
1034
|
+
"windows_aarch64_gnullvm",
|
1035
|
+
"windows_aarch64_msvc",
|
1036
|
+
"windows_i686_gnu",
|
1092
1037
|
"windows_i686_gnullvm",
|
1093
|
-
"windows_i686_msvc
|
1094
|
-
"windows_x86_64_gnu
|
1095
|
-
"windows_x86_64_gnullvm
|
1096
|
-
"windows_x86_64_msvc
|
1038
|
+
"windows_i686_msvc",
|
1039
|
+
"windows_x86_64_gnu",
|
1040
|
+
"windows_x86_64_gnullvm",
|
1041
|
+
"windows_x86_64_msvc",
|
1097
1042
|
]
|
1098
1043
|
|
1099
1044
|
[[package]]
|
1100
1045
|
name = "windows_aarch64_gnullvm"
|
1101
|
-
version = "0.
|
1046
|
+
version = "0.52.6"
|
1102
1047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1103
|
-
checksum = "
|
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"
|
1048
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
1110
1049
|
|
1111
1050
|
[[package]]
|
1112
1051
|
name = "windows_aarch64_msvc"
|
1113
|
-
version = "0.
|
1052
|
+
version = "0.52.6"
|
1114
1053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1115
|
-
checksum = "
|
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"
|
1054
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
1128
1055
|
|
1129
1056
|
[[package]]
|
1130
1057
|
name = "windows_i686_gnu"
|
1131
|
-
version = "0.52.
|
1058
|
+
version = "0.52.6"
|
1132
1059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1133
|
-
checksum = "
|
1060
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
1134
1061
|
|
1135
1062
|
[[package]]
|
1136
1063
|
name = "windows_i686_gnullvm"
|
1137
|
-
version = "0.52.
|
1064
|
+
version = "0.52.6"
|
1138
1065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1139
|
-
checksum = "
|
1066
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
1140
1067
|
|
1141
1068
|
[[package]]
|
1142
1069
|
name = "windows_i686_msvc"
|
1143
|
-
version = "0.
|
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"
|
1070
|
+
version = "0.52.6"
|
1156
1071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1157
|
-
checksum = "
|
1072
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1158
1073
|
|
1159
1074
|
[[package]]
|
1160
1075
|
name = "windows_x86_64_gnu"
|
1161
|
-
version = "0.52.
|
1076
|
+
version = "0.52.6"
|
1162
1077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1163
|
-
checksum = "
|
1078
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1164
1079
|
|
1165
1080
|
[[package]]
|
1166
1081
|
name = "windows_x86_64_gnullvm"
|
1167
|
-
version = "0.
|
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"
|
1174
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1175
|
-
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
1176
|
-
|
1177
|
-
[[package]]
|
1178
|
-
name = "windows_x86_64_msvc"
|
1179
|
-
version = "0.48.5"
|
1082
|
+
version = "0.52.6"
|
1180
1083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1181
|
-
checksum = "
|
1084
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
1182
1085
|
|
1183
1086
|
[[package]]
|
1184
1087
|
name = "windows_x86_64_msvc"
|
1185
|
-
version = "0.52.
|
1088
|
+
version = "0.52.6"
|
1186
1089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1187
|
-
checksum = "
|
1090
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
1188
1091
|
|
1189
1092
|
[[package]]
|
1190
1093
|
name = "zerocopy"
|
1191
|
-
version = "0.7.
|
1094
|
+
version = "0.7.35"
|
1192
1095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1193
|
-
checksum = "
|
1096
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
1194
1097
|
dependencies = [
|
1195
1098
|
"zerocopy-derive",
|
1196
1099
|
]
|
1197
1100
|
|
1198
1101
|
[[package]]
|
1199
1102
|
name = "zerocopy-derive"
|
1200
|
-
version = "0.7.
|
1103
|
+
version = "0.7.35"
|
1201
1104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1202
|
-
checksum = "
|
1105
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
1203
1106
|
dependencies = [
|
1204
1107
|
"proc-macro2",
|
1205
1108
|
"quote",
|