xml2arrow 0.14.0__tar.gz → 0.16.0__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.
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/Cargo.lock +84 -371
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/Cargo.toml +4 -5
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/PKG-INFO +171 -118
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/README.md +170 -117
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/python/xml2arrow/_xml2arrow.pyi +14 -5
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/python/xml2arrow/exceptions.py +2 -6
- xml2arrow-0.16.0/src/file_like.rs +83 -0
- xml2arrow-0.16.0/src/lib.rs +150 -0
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/tests/conftest.py +3 -2
- xml2arrow-0.16.0/tests/test_data/bookstore.xml +53 -0
- xml2arrow-0.16.0/tests/test_data/bookstore.yaml +73 -0
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/tests/test_data/stations.yaml +2 -2
- xml2arrow-0.16.0/tests/test_xml2arrow.py +1129 -0
- xml2arrow-0.14.0/src/lib.rs +0 -128
- xml2arrow-0.14.0/tests/test_xml2arrow.py +0 -393
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/.github/workflows/CI.yml +0 -0
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/.gitignore +0 -0
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/LICENSE +0 -0
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/pyproject.toml +0 -0
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/python/xml2arrow/__init__.py +0 -0
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/python/xml2arrow/py.typed +0 -0
- {xml2arrow-0.14.0 → xml2arrow-0.16.0}/tests/test_data/stations.xml +0 -0
|
@@ -4,11 +4,10 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "_xml2arrow"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.16.0"
|
|
8
8
|
dependencies = [
|
|
9
9
|
"arrow",
|
|
10
10
|
"pyo3",
|
|
11
|
-
"pyo3-file",
|
|
12
11
|
"xml2arrow",
|
|
13
12
|
]
|
|
14
13
|
|
|
@@ -52,9 +51,9 @@ dependencies = [
|
|
|
52
51
|
|
|
53
52
|
[[package]]
|
|
54
53
|
name = "arrow"
|
|
55
|
-
version = "
|
|
54
|
+
version = "58.1.0"
|
|
56
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
-
checksum = "
|
|
56
|
+
checksum = "d441fdda254b65f3e9025910eb2c2066b6295d9c8ed409522b8d2ace1ff8574c"
|
|
58
57
|
dependencies = [
|
|
59
58
|
"arrow-arith",
|
|
60
59
|
"arrow-array",
|
|
@@ -74,9 +73,9 @@ dependencies = [
|
|
|
74
73
|
|
|
75
74
|
[[package]]
|
|
76
75
|
name = "arrow-arith"
|
|
77
|
-
version = "
|
|
76
|
+
version = "58.1.0"
|
|
78
77
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
-
checksum = "
|
|
78
|
+
checksum = "ced5406f8b720cc0bc3aa9cf5758f93e8593cda5490677aa194e4b4b383f9a59"
|
|
80
79
|
dependencies = [
|
|
81
80
|
"arrow-array",
|
|
82
81
|
"arrow-buffer",
|
|
@@ -88,9 +87,9 @@ dependencies = [
|
|
|
88
87
|
|
|
89
88
|
[[package]]
|
|
90
89
|
name = "arrow-array"
|
|
91
|
-
version = "
|
|
90
|
+
version = "58.1.0"
|
|
92
91
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
-
checksum = "
|
|
92
|
+
checksum = "772bd34cacdda8baec9418d80d23d0fb4d50ef0735685bd45158b83dfeb6e62d"
|
|
94
93
|
dependencies = [
|
|
95
94
|
"ahash",
|
|
96
95
|
"arrow-buffer",
|
|
@@ -98,7 +97,7 @@ dependencies = [
|
|
|
98
97
|
"arrow-schema",
|
|
99
98
|
"chrono",
|
|
100
99
|
"half",
|
|
101
|
-
"hashbrown",
|
|
100
|
+
"hashbrown 0.16.0",
|
|
102
101
|
"num-complex",
|
|
103
102
|
"num-integer",
|
|
104
103
|
"num-traits",
|
|
@@ -106,9 +105,9 @@ dependencies = [
|
|
|
106
105
|
|
|
107
106
|
[[package]]
|
|
108
107
|
name = "arrow-buffer"
|
|
109
|
-
version = "
|
|
108
|
+
version = "58.1.0"
|
|
110
109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
-
checksum = "
|
|
110
|
+
checksum = "898f4cf1e9598fdb77f356fdf2134feedfd0ee8d5a4e0a5f573e7d0aec16baa4"
|
|
112
111
|
dependencies = [
|
|
113
112
|
"bytes",
|
|
114
113
|
"half",
|
|
@@ -118,9 +117,9 @@ dependencies = [
|
|
|
118
117
|
|
|
119
118
|
[[package]]
|
|
120
119
|
name = "arrow-cast"
|
|
121
|
-
version = "
|
|
120
|
+
version = "58.1.0"
|
|
122
121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
-
checksum = "
|
|
122
|
+
checksum = "b0127816c96533d20fc938729f48c52d3e48f99717e7a0b5ade77d742510736d"
|
|
124
123
|
dependencies = [
|
|
125
124
|
"arrow-array",
|
|
126
125
|
"arrow-buffer",
|
|
@@ -139,9 +138,9 @@ dependencies = [
|
|
|
139
138
|
|
|
140
139
|
[[package]]
|
|
141
140
|
name = "arrow-csv"
|
|
142
|
-
version = "
|
|
141
|
+
version = "58.1.0"
|
|
143
142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
-
checksum = "
|
|
143
|
+
checksum = "ca025bd0f38eeecb57c2153c0123b960494138e6a957bbda10da2b25415209fe"
|
|
145
144
|
dependencies = [
|
|
146
145
|
"arrow-array",
|
|
147
146
|
"arrow-cast",
|
|
@@ -154,9 +153,9 @@ dependencies = [
|
|
|
154
153
|
|
|
155
154
|
[[package]]
|
|
156
155
|
name = "arrow-data"
|
|
157
|
-
version = "
|
|
156
|
+
version = "58.1.0"
|
|
158
157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
-
checksum = "
|
|
158
|
+
checksum = "42d10beeab2b1c3bb0b53a00f7c944a178b622173a5c7bcabc3cb45d90238df4"
|
|
160
159
|
dependencies = [
|
|
161
160
|
"arrow-buffer",
|
|
162
161
|
"arrow-schema",
|
|
@@ -167,9 +166,9 @@ dependencies = [
|
|
|
167
166
|
|
|
168
167
|
[[package]]
|
|
169
168
|
name = "arrow-ipc"
|
|
170
|
-
version = "
|
|
169
|
+
version = "58.1.0"
|
|
171
170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
-
checksum = "
|
|
171
|
+
checksum = "609a441080e338147a84e8e6904b6da482cefb957c5cdc0f3398872f69a315d0"
|
|
173
172
|
dependencies = [
|
|
174
173
|
"arrow-array",
|
|
175
174
|
"arrow-buffer",
|
|
@@ -181,9 +180,9 @@ dependencies = [
|
|
|
181
180
|
|
|
182
181
|
[[package]]
|
|
183
182
|
name = "arrow-json"
|
|
184
|
-
version = "
|
|
183
|
+
version = "58.1.0"
|
|
185
184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
-
checksum = "
|
|
185
|
+
checksum = "6ead0914e4861a531be48fe05858265cf854a4880b9ed12618b1d08cba9bebc8"
|
|
187
186
|
dependencies = [
|
|
188
187
|
"arrow-array",
|
|
189
188
|
"arrow-buffer",
|
|
@@ -205,9 +204,9 @@ dependencies = [
|
|
|
205
204
|
|
|
206
205
|
[[package]]
|
|
207
206
|
name = "arrow-ord"
|
|
208
|
-
version = "
|
|
207
|
+
version = "58.1.0"
|
|
209
208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
-
checksum = "
|
|
209
|
+
checksum = "763a7ba279b20b52dad300e68cfc37c17efa65e68623169076855b3a9e941ca5"
|
|
211
210
|
dependencies = [
|
|
212
211
|
"arrow-array",
|
|
213
212
|
"arrow-buffer",
|
|
@@ -218,9 +217,9 @@ dependencies = [
|
|
|
218
217
|
|
|
219
218
|
[[package]]
|
|
220
219
|
name = "arrow-pyarrow"
|
|
221
|
-
version = "
|
|
220
|
+
version = "58.1.0"
|
|
222
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
-
checksum = "
|
|
222
|
+
checksum = "e63351dc11981a316c828a6032a5021345bba882f68bc4a36c36825a50725089"
|
|
224
223
|
dependencies = [
|
|
225
224
|
"arrow-array",
|
|
226
225
|
"arrow-data",
|
|
@@ -230,9 +229,9 @@ dependencies = [
|
|
|
230
229
|
|
|
231
230
|
[[package]]
|
|
232
231
|
name = "arrow-row"
|
|
233
|
-
version = "
|
|
232
|
+
version = "58.1.0"
|
|
234
233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
-
checksum = "
|
|
234
|
+
checksum = "e14fe367802f16d7668163ff647830258e6e0aeea9a4d79aaedf273af3bdcd3e"
|
|
236
235
|
dependencies = [
|
|
237
236
|
"arrow-array",
|
|
238
237
|
"arrow-buffer",
|
|
@@ -243,18 +242,18 @@ dependencies = [
|
|
|
243
242
|
|
|
244
243
|
[[package]]
|
|
245
244
|
name = "arrow-schema"
|
|
246
|
-
version = "
|
|
245
|
+
version = "58.1.0"
|
|
247
246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
-
checksum = "
|
|
247
|
+
checksum = "c30a1365d7a7dc50cc847e54154e6af49e4c4b0fddc9f607b687f29212082743"
|
|
249
248
|
dependencies = [
|
|
250
249
|
"bitflags",
|
|
251
250
|
]
|
|
252
251
|
|
|
253
252
|
[[package]]
|
|
254
253
|
name = "arrow-select"
|
|
255
|
-
version = "
|
|
254
|
+
version = "58.1.0"
|
|
256
255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
-
checksum = "
|
|
256
|
+
checksum = "78694888660a9e8ac949853db393af2a8b8fc82c19ce333132dfa2e72cc1a7fe"
|
|
258
257
|
dependencies = [
|
|
259
258
|
"ahash",
|
|
260
259
|
"arrow-array",
|
|
@@ -266,9 +265,9 @@ dependencies = [
|
|
|
266
265
|
|
|
267
266
|
[[package]]
|
|
268
267
|
name = "arrow-string"
|
|
269
|
-
version = "
|
|
268
|
+
version = "58.1.0"
|
|
270
269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
-
checksum = "
|
|
270
|
+
checksum = "61e04a01f8bb73ce54437514c5fd3ee2aa3e8abe4c777ee5cc55853b1652f79e"
|
|
272
271
|
dependencies = [
|
|
273
272
|
"arrow-array",
|
|
274
273
|
"arrow-buffer",
|
|
@@ -314,12 +313,6 @@ version = "3.16.0"
|
|
|
314
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
314
|
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
316
315
|
|
|
317
|
-
[[package]]
|
|
318
|
-
name = "bytecount"
|
|
319
|
-
version = "0.6.8"
|
|
320
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
-
checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
|
|
322
|
-
|
|
323
316
|
[[package]]
|
|
324
317
|
name = "byteorder"
|
|
325
318
|
version = "1.5.0"
|
|
@@ -332,37 +325,6 @@ version = "1.9.0"
|
|
|
332
325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
326
|
checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
|
|
334
327
|
|
|
335
|
-
[[package]]
|
|
336
|
-
name = "camino"
|
|
337
|
-
version = "1.1.9"
|
|
338
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
-
checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
|
|
340
|
-
dependencies = [
|
|
341
|
-
"serde",
|
|
342
|
-
]
|
|
343
|
-
|
|
344
|
-
[[package]]
|
|
345
|
-
name = "cargo-platform"
|
|
346
|
-
version = "0.1.9"
|
|
347
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
-
checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
|
|
349
|
-
dependencies = [
|
|
350
|
-
"serde",
|
|
351
|
-
]
|
|
352
|
-
|
|
353
|
-
[[package]]
|
|
354
|
-
name = "cargo_metadata"
|
|
355
|
-
version = "0.14.2"
|
|
356
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
-
checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
|
|
358
|
-
dependencies = [
|
|
359
|
-
"camino",
|
|
360
|
-
"cargo-platform",
|
|
361
|
-
"semver",
|
|
362
|
-
"serde",
|
|
363
|
-
"serde_json",
|
|
364
|
-
]
|
|
365
|
-
|
|
366
328
|
[[package]]
|
|
367
329
|
name = "cc"
|
|
368
330
|
version = "1.2.6"
|
|
@@ -445,21 +407,22 @@ dependencies = [
|
|
|
445
407
|
|
|
446
408
|
[[package]]
|
|
447
409
|
name = "derive_more"
|
|
448
|
-
version = "2.
|
|
410
|
+
version = "2.1.1"
|
|
449
411
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
-
checksum = "
|
|
412
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
451
413
|
dependencies = [
|
|
452
414
|
"derive_more-impl",
|
|
453
415
|
]
|
|
454
416
|
|
|
455
417
|
[[package]]
|
|
456
418
|
name = "derive_more-impl"
|
|
457
|
-
version = "2.
|
|
419
|
+
version = "2.1.1"
|
|
458
420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
-
checksum = "
|
|
421
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
460
422
|
dependencies = [
|
|
461
423
|
"proc-macro2",
|
|
462
424
|
"quote",
|
|
425
|
+
"rustc_version",
|
|
463
426
|
"syn",
|
|
464
427
|
]
|
|
465
428
|
|
|
@@ -470,29 +433,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
470
433
|
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
471
434
|
|
|
472
435
|
[[package]]
|
|
473
|
-
name = "
|
|
474
|
-
version = "0.3
|
|
475
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
-
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
|
477
|
-
dependencies = [
|
|
478
|
-
"libc",
|
|
479
|
-
"windows-sys",
|
|
480
|
-
]
|
|
481
|
-
|
|
482
|
-
[[package]]
|
|
483
|
-
name = "error-chain"
|
|
484
|
-
version = "0.12.4"
|
|
485
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
-
checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
|
|
487
|
-
dependencies = [
|
|
488
|
-
"version_check",
|
|
489
|
-
]
|
|
490
|
-
|
|
491
|
-
[[package]]
|
|
492
|
-
name = "fastrand"
|
|
493
|
-
version = "2.3.0"
|
|
436
|
+
name = "fast-float2"
|
|
437
|
+
version = "0.2.3"
|
|
494
438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
-
checksum = "
|
|
439
|
+
checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
|
|
496
440
|
|
|
497
441
|
[[package]]
|
|
498
442
|
name = "flatbuffers"
|
|
@@ -524,12 +468,6 @@ dependencies = [
|
|
|
524
468
|
"wasi",
|
|
525
469
|
]
|
|
526
470
|
|
|
527
|
-
[[package]]
|
|
528
|
-
name = "glob"
|
|
529
|
-
version = "0.3.2"
|
|
530
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
-
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
532
|
-
|
|
533
471
|
[[package]]
|
|
534
472
|
name = "half"
|
|
535
473
|
version = "2.4.1"
|
|
@@ -547,6 +485,12 @@ version = "0.16.0"
|
|
|
547
485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
486
|
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
549
487
|
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "hashbrown"
|
|
490
|
+
version = "0.17.0"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
493
|
+
|
|
550
494
|
[[package]]
|
|
551
495
|
name = "heck"
|
|
552
496
|
version = "0.5.0"
|
|
@@ -578,20 +522,14 @@ dependencies = [
|
|
|
578
522
|
|
|
579
523
|
[[package]]
|
|
580
524
|
name = "indexmap"
|
|
581
|
-
version = "2.
|
|
525
|
+
version = "2.14.0"
|
|
582
526
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
-
checksum = "
|
|
527
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
584
528
|
dependencies = [
|
|
585
529
|
"equivalent",
|
|
586
|
-
"hashbrown",
|
|
530
|
+
"hashbrown 0.17.0",
|
|
587
531
|
]
|
|
588
532
|
|
|
589
|
-
[[package]]
|
|
590
|
-
name = "indoc"
|
|
591
|
-
version = "2.0.5"
|
|
592
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
-
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
594
|
-
|
|
595
533
|
[[package]]
|
|
596
534
|
name = "itoa"
|
|
597
535
|
version = "1.0.14"
|
|
@@ -678,20 +616,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
678
616
|
checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
|
|
679
617
|
|
|
680
618
|
[[package]]
|
|
681
|
-
name = "
|
|
682
|
-
version = "0.
|
|
683
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
-
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
685
|
-
|
|
686
|
-
[[package]]
|
|
687
|
-
name = "lock_api"
|
|
688
|
-
version = "0.4.12"
|
|
619
|
+
name = "libyaml-rs"
|
|
620
|
+
version = "0.3.0"
|
|
689
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
-
checksum = "
|
|
691
|
-
dependencies = [
|
|
692
|
-
"autocfg",
|
|
693
|
-
"scopeguard",
|
|
694
|
-
]
|
|
622
|
+
checksum = "2e126dda6f34391ab7b444f9922055facc83c07a910da3eb16f1e4d9c45dc777"
|
|
695
623
|
|
|
696
624
|
[[package]]
|
|
697
625
|
name = "log"
|
|
@@ -705,21 +633,6 @@ version = "2.7.4"
|
|
|
705
633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
634
|
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
707
635
|
|
|
708
|
-
[[package]]
|
|
709
|
-
name = "memoffset"
|
|
710
|
-
version = "0.9.1"
|
|
711
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
-
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
713
|
-
dependencies = [
|
|
714
|
-
"autocfg",
|
|
715
|
-
]
|
|
716
|
-
|
|
717
|
-
[[package]]
|
|
718
|
-
name = "new_debug_unreachable"
|
|
719
|
-
version = "1.0.6"
|
|
720
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
-
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
722
|
-
|
|
723
636
|
[[package]]
|
|
724
637
|
name = "num-bigint"
|
|
725
638
|
version = "0.4.6"
|
|
@@ -764,50 +677,12 @@ version = "1.21.3"
|
|
|
764
677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
678
|
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
766
679
|
|
|
767
|
-
[[package]]
|
|
768
|
-
name = "parking_lot"
|
|
769
|
-
version = "0.12.3"
|
|
770
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
-
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
772
|
-
dependencies = [
|
|
773
|
-
"lock_api",
|
|
774
|
-
"parking_lot_core",
|
|
775
|
-
]
|
|
776
|
-
|
|
777
|
-
[[package]]
|
|
778
|
-
name = "parking_lot_core"
|
|
779
|
-
version = "0.9.10"
|
|
780
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
-
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
782
|
-
dependencies = [
|
|
783
|
-
"cfg-if",
|
|
784
|
-
"libc",
|
|
785
|
-
"redox_syscall",
|
|
786
|
-
"smallvec",
|
|
787
|
-
"windows-targets",
|
|
788
|
-
]
|
|
789
|
-
|
|
790
|
-
[[package]]
|
|
791
|
-
name = "phf_shared"
|
|
792
|
-
version = "0.13.1"
|
|
793
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
-
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
795
|
-
dependencies = [
|
|
796
|
-
"siphasher",
|
|
797
|
-
]
|
|
798
|
-
|
|
799
680
|
[[package]]
|
|
800
681
|
name = "portable-atomic"
|
|
801
682
|
version = "1.10.0"
|
|
802
683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
684
|
checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
|
|
804
685
|
|
|
805
|
-
[[package]]
|
|
806
|
-
name = "precomputed-hash"
|
|
807
|
-
version = "0.1.1"
|
|
808
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
-
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
810
|
-
|
|
811
686
|
[[package]]
|
|
812
687
|
name = "proc-macro2"
|
|
813
688
|
version = "1.0.92"
|
|
@@ -817,68 +692,44 @@ dependencies = [
|
|
|
817
692
|
"unicode-ident",
|
|
818
693
|
]
|
|
819
694
|
|
|
820
|
-
[[package]]
|
|
821
|
-
name = "pulldown-cmark"
|
|
822
|
-
version = "0.9.6"
|
|
823
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
-
checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
|
|
825
|
-
dependencies = [
|
|
826
|
-
"bitflags",
|
|
827
|
-
"memchr",
|
|
828
|
-
"unicase",
|
|
829
|
-
]
|
|
830
|
-
|
|
831
695
|
[[package]]
|
|
832
696
|
name = "pyo3"
|
|
833
|
-
version = "0.
|
|
697
|
+
version = "0.28.3"
|
|
834
698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
-
checksum = "
|
|
699
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
836
700
|
dependencies = [
|
|
837
|
-
"indoc",
|
|
838
701
|
"libc",
|
|
839
|
-
"memoffset",
|
|
840
702
|
"once_cell",
|
|
841
703
|
"portable-atomic",
|
|
842
704
|
"pyo3-build-config",
|
|
843
705
|
"pyo3-ffi",
|
|
844
706
|
"pyo3-macros",
|
|
845
|
-
"unindent",
|
|
846
707
|
]
|
|
847
708
|
|
|
848
709
|
[[package]]
|
|
849
710
|
name = "pyo3-build-config"
|
|
850
|
-
version = "0.
|
|
711
|
+
version = "0.28.3"
|
|
851
712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
-
checksum = "
|
|
713
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
853
714
|
dependencies = [
|
|
854
715
|
"target-lexicon",
|
|
855
716
|
]
|
|
856
717
|
|
|
857
718
|
[[package]]
|
|
858
719
|
name = "pyo3-ffi"
|
|
859
|
-
version = "0.
|
|
720
|
+
version = "0.28.3"
|
|
860
721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
-
checksum = "
|
|
722
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
862
723
|
dependencies = [
|
|
863
724
|
"libc",
|
|
864
725
|
"pyo3-build-config",
|
|
865
726
|
]
|
|
866
727
|
|
|
867
|
-
[[package]]
|
|
868
|
-
name = "pyo3-file"
|
|
869
|
-
version = "0.14.0"
|
|
870
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
-
checksum = "3b34d53fe45eb4fc354b950782dae7168f2f4919bea77868870dc1bb3bc671f0"
|
|
872
|
-
dependencies = [
|
|
873
|
-
"pyo3",
|
|
874
|
-
"skeptic",
|
|
875
|
-
]
|
|
876
|
-
|
|
877
728
|
[[package]]
|
|
878
729
|
name = "pyo3-macros"
|
|
879
|
-
version = "0.
|
|
730
|
+
version = "0.28.3"
|
|
880
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
-
checksum = "
|
|
732
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
882
733
|
dependencies = [
|
|
883
734
|
"proc-macro2",
|
|
884
735
|
"pyo3-macros-backend",
|
|
@@ -888,9 +739,9 @@ dependencies = [
|
|
|
888
739
|
|
|
889
740
|
[[package]]
|
|
890
741
|
name = "pyo3-macros-backend"
|
|
891
|
-
version = "0.
|
|
742
|
+
version = "0.28.3"
|
|
892
743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
-
checksum = "
|
|
744
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
894
745
|
dependencies = [
|
|
895
746
|
"heck",
|
|
896
747
|
"proc-macro2",
|
|
@@ -901,9 +752,9 @@ dependencies = [
|
|
|
901
752
|
|
|
902
753
|
[[package]]
|
|
903
754
|
name = "quick-xml"
|
|
904
|
-
version = "0.
|
|
755
|
+
version = "0.39.2"
|
|
905
756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
906
|
-
checksum = "
|
|
757
|
+
checksum = "958f21e8e7ceb5a1aa7fa87fab28e7c75976e0bfe7e23ff069e0a260f894067d"
|
|
907
758
|
dependencies = [
|
|
908
759
|
"memchr",
|
|
909
760
|
]
|
|
@@ -917,15 +768,6 @@ dependencies = [
|
|
|
917
768
|
"proc-macro2",
|
|
918
769
|
]
|
|
919
770
|
|
|
920
|
-
[[package]]
|
|
921
|
-
name = "redox_syscall"
|
|
922
|
-
version = "0.5.8"
|
|
923
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
-
checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
|
|
925
|
-
dependencies = [
|
|
926
|
-
"bitflags",
|
|
927
|
-
]
|
|
928
|
-
|
|
929
771
|
[[package]]
|
|
930
772
|
name = "regex"
|
|
931
773
|
version = "1.11.1"
|
|
@@ -964,48 +806,17 @@ dependencies = [
|
|
|
964
806
|
"semver",
|
|
965
807
|
]
|
|
966
808
|
|
|
967
|
-
[[package]]
|
|
968
|
-
name = "rustix"
|
|
969
|
-
version = "0.38.42"
|
|
970
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
-
checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
|
|
972
|
-
dependencies = [
|
|
973
|
-
"bitflags",
|
|
974
|
-
"errno",
|
|
975
|
-
"libc",
|
|
976
|
-
"linux-raw-sys",
|
|
977
|
-
"windows-sys",
|
|
978
|
-
]
|
|
979
|
-
|
|
980
809
|
[[package]]
|
|
981
810
|
name = "ryu"
|
|
982
811
|
version = "1.0.18"
|
|
983
812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
813
|
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
985
814
|
|
|
986
|
-
[[package]]
|
|
987
|
-
name = "same-file"
|
|
988
|
-
version = "1.0.6"
|
|
989
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
-
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
991
|
-
dependencies = [
|
|
992
|
-
"winapi-util",
|
|
993
|
-
]
|
|
994
|
-
|
|
995
|
-
[[package]]
|
|
996
|
-
name = "scopeguard"
|
|
997
|
-
version = "1.2.0"
|
|
998
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
-
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1000
|
-
|
|
1001
815
|
[[package]]
|
|
1002
816
|
name = "semver"
|
|
1003
817
|
version = "1.0.24"
|
|
1004
818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
819
|
checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba"
|
|
1006
|
-
dependencies = [
|
|
1007
|
-
"serde",
|
|
1008
|
-
]
|
|
1009
820
|
|
|
1010
821
|
[[package]]
|
|
1011
822
|
name = "serde"
|
|
@@ -1049,19 +860,6 @@ dependencies = [
|
|
|
1049
860
|
"serde",
|
|
1050
861
|
]
|
|
1051
862
|
|
|
1052
|
-
[[package]]
|
|
1053
|
-
name = "serde_yaml"
|
|
1054
|
-
version = "0.9.34+deprecated"
|
|
1055
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
-
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
1057
|
-
dependencies = [
|
|
1058
|
-
"indexmap",
|
|
1059
|
-
"itoa",
|
|
1060
|
-
"ryu",
|
|
1061
|
-
"serde",
|
|
1062
|
-
"unsafe-libyaml",
|
|
1063
|
-
]
|
|
1064
|
-
|
|
1065
863
|
[[package]]
|
|
1066
864
|
name = "shlex"
|
|
1067
865
|
version = "1.3.0"
|
|
@@ -1074,46 +872,6 @@ version = "0.1.5"
|
|
|
1074
872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
873
|
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
1076
874
|
|
|
1077
|
-
[[package]]
|
|
1078
|
-
name = "siphasher"
|
|
1079
|
-
version = "1.0.1"
|
|
1080
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
-
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
1082
|
-
|
|
1083
|
-
[[package]]
|
|
1084
|
-
name = "skeptic"
|
|
1085
|
-
version = "0.13.7"
|
|
1086
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
-
checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
|
|
1088
|
-
dependencies = [
|
|
1089
|
-
"bytecount",
|
|
1090
|
-
"cargo_metadata",
|
|
1091
|
-
"error-chain",
|
|
1092
|
-
"glob",
|
|
1093
|
-
"pulldown-cmark",
|
|
1094
|
-
"tempfile",
|
|
1095
|
-
"walkdir",
|
|
1096
|
-
]
|
|
1097
|
-
|
|
1098
|
-
[[package]]
|
|
1099
|
-
name = "smallvec"
|
|
1100
|
-
version = "1.13.2"
|
|
1101
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
-
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
1103
|
-
|
|
1104
|
-
[[package]]
|
|
1105
|
-
name = "string_cache"
|
|
1106
|
-
version = "0.9.0"
|
|
1107
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
-
checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
|
|
1109
|
-
dependencies = [
|
|
1110
|
-
"new_debug_unreachable",
|
|
1111
|
-
"parking_lot",
|
|
1112
|
-
"phf_shared",
|
|
1113
|
-
"precomputed-hash",
|
|
1114
|
-
"serde",
|
|
1115
|
-
]
|
|
1116
|
-
|
|
1117
875
|
[[package]]
|
|
1118
876
|
name = "syn"
|
|
1119
877
|
version = "2.0.93"
|
|
@@ -1127,22 +885,9 @@ dependencies = [
|
|
|
1127
885
|
|
|
1128
886
|
[[package]]
|
|
1129
887
|
name = "target-lexicon"
|
|
1130
|
-
version = "0.13.
|
|
888
|
+
version = "0.13.5"
|
|
1131
889
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
-
checksum = "
|
|
1133
|
-
|
|
1134
|
-
[[package]]
|
|
1135
|
-
name = "tempfile"
|
|
1136
|
-
version = "3.14.0"
|
|
1137
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
-
checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
|
|
1139
|
-
dependencies = [
|
|
1140
|
-
"cfg-if",
|
|
1141
|
-
"fastrand",
|
|
1142
|
-
"once_cell",
|
|
1143
|
-
"rustix",
|
|
1144
|
-
"windows-sys",
|
|
1145
|
-
]
|
|
890
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1146
891
|
|
|
1147
892
|
[[package]]
|
|
1148
893
|
name = "tiny-keccak"
|
|
@@ -1153,46 +898,18 @@ dependencies = [
|
|
|
1153
898
|
"crunchy",
|
|
1154
899
|
]
|
|
1155
900
|
|
|
1156
|
-
[[package]]
|
|
1157
|
-
name = "unicase"
|
|
1158
|
-
version = "2.8.1"
|
|
1159
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
-
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
1161
|
-
|
|
1162
901
|
[[package]]
|
|
1163
902
|
name = "unicode-ident"
|
|
1164
903
|
version = "1.0.14"
|
|
1165
904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
905
|
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
|
|
1167
906
|
|
|
1168
|
-
[[package]]
|
|
1169
|
-
name = "unindent"
|
|
1170
|
-
version = "0.2.3"
|
|
1171
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
-
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
1173
|
-
|
|
1174
|
-
[[package]]
|
|
1175
|
-
name = "unsafe-libyaml"
|
|
1176
|
-
version = "0.2.11"
|
|
1177
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
-
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
1179
|
-
|
|
1180
907
|
[[package]]
|
|
1181
908
|
name = "version_check"
|
|
1182
909
|
version = "0.9.5"
|
|
1183
910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
911
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1185
912
|
|
|
1186
|
-
[[package]]
|
|
1187
|
-
name = "walkdir"
|
|
1188
|
-
version = "2.5.0"
|
|
1189
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
-
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1191
|
-
dependencies = [
|
|
1192
|
-
"same-file",
|
|
1193
|
-
"winapi-util",
|
|
1194
|
-
]
|
|
1195
|
-
|
|
1196
913
|
[[package]]
|
|
1197
914
|
name = "wasi"
|
|
1198
915
|
version = "0.11.0+wasi-snapshot-preview1"
|
|
@@ -1253,15 +970,6 @@ version = "0.2.99"
|
|
|
1253
970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
971
|
checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
|
|
1255
972
|
|
|
1256
|
-
[[package]]
|
|
1257
|
-
name = "winapi-util"
|
|
1258
|
-
version = "0.1.9"
|
|
1259
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
-
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
1261
|
-
dependencies = [
|
|
1262
|
-
"windows-sys",
|
|
1263
|
-
]
|
|
1264
|
-
|
|
1265
973
|
[[package]]
|
|
1266
974
|
name = "windows-core"
|
|
1267
975
|
version = "0.52.0"
|
|
@@ -1277,15 +985,6 @@ version = "0.1.1"
|
|
|
1277
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
986
|
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
|
1279
987
|
|
|
1280
|
-
[[package]]
|
|
1281
|
-
name = "windows-sys"
|
|
1282
|
-
version = "0.59.0"
|
|
1283
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
-
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1285
|
-
dependencies = [
|
|
1286
|
-
"windows-targets",
|
|
1287
|
-
]
|
|
1288
|
-
|
|
1289
988
|
[[package]]
|
|
1290
989
|
name = "windows-targets"
|
|
1291
990
|
version = "0.52.6"
|
|
@@ -1352,19 +1051,33 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
1352
1051
|
|
|
1353
1052
|
[[package]]
|
|
1354
1053
|
name = "xml2arrow"
|
|
1355
|
-
version = "0.
|
|
1054
|
+
version = "0.16.0"
|
|
1356
1055
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
-
checksum = "
|
|
1056
|
+
checksum = "dbf8199409730f9f76a71d4ee945b2e5eead8f1aece63e4aa907313083e4f1e2"
|
|
1358
1057
|
dependencies = [
|
|
1359
1058
|
"arrow",
|
|
1059
|
+
"atoi",
|
|
1360
1060
|
"derive_more",
|
|
1061
|
+
"fast-float2",
|
|
1361
1062
|
"fxhash",
|
|
1362
1063
|
"indexmap",
|
|
1363
1064
|
"pyo3",
|
|
1364
1065
|
"quick-xml",
|
|
1365
1066
|
"serde",
|
|
1366
|
-
"
|
|
1367
|
-
|
|
1067
|
+
"yaml_serde",
|
|
1068
|
+
]
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "yaml_serde"
|
|
1072
|
+
version = "0.10.4"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "08c7c1b1a6a7c8a6b2741a6c21a4f8918e51899b111cfa08d1288202656e3975"
|
|
1075
|
+
dependencies = [
|
|
1076
|
+
"indexmap",
|
|
1077
|
+
"itoa",
|
|
1078
|
+
"libyaml-rs",
|
|
1079
|
+
"ryu",
|
|
1080
|
+
"serde",
|
|
1368
1081
|
]
|
|
1369
1082
|
|
|
1370
1083
|
[[package]]
|