ptars 0.0.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.
- ptars-0.0.0/Cargo.lock +1133 -0
- ptars-0.0.0/Cargo.toml +6 -0
- ptars-0.0.0/PKG-INFO +205 -0
- ptars-0.0.0/README.md +176 -0
- ptars-0.0.0/ptars/Cargo.toml +24 -0
- ptars-0.0.0/ptars/README.md +79 -0
- ptars-0.0.0/ptars/src/arrow_to_proto.rs +2188 -0
- ptars-0.0.0/ptars/src/config.rs +124 -0
- ptars-0.0.0/ptars/src/converter.rs +5649 -0
- ptars-0.0.0/ptars/src/lib.rs +45 -0
- ptars-0.0.0/ptars/src/proto_to_arrow.rs +1638 -0
- ptars-0.0.0/ptars-python/Cargo.toml +29 -0
- ptars-0.0.0/ptars-python/src/lib.rs +292 -0
- ptars-0.0.0/pyproject.toml +100 -0
- ptars-0.0.0/python/ptars/__init__.py +20 -0
- ptars-0.0.0/python/ptars/config.py +70 -0
- ptars-0.0.0/python/ptars/internal.py +203 -0
ptars-0.0.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1133 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"const-random",
|
|
13
|
+
"getrandom 0.3.4",
|
|
14
|
+
"once_cell",
|
|
15
|
+
"version_check",
|
|
16
|
+
"zerocopy",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[[package]]
|
|
20
|
+
name = "aho-corasick"
|
|
21
|
+
version = "1.1.4"
|
|
22
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
23
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
24
|
+
dependencies = [
|
|
25
|
+
"memchr",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[[package]]
|
|
29
|
+
name = "android_system_properties"
|
|
30
|
+
version = "0.1.5"
|
|
31
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
32
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
33
|
+
dependencies = [
|
|
34
|
+
"libc",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[[package]]
|
|
38
|
+
name = "anyhow"
|
|
39
|
+
version = "1.0.100"
|
|
40
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
41
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "arrow"
|
|
45
|
+
version = "57.2.0"
|
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
+
checksum = "2a2b10dcb159faf30d3f81f6d56c1211a5bea2ca424eabe477648a44b993320e"
|
|
48
|
+
dependencies = [
|
|
49
|
+
"arrow-arith",
|
|
50
|
+
"arrow-array",
|
|
51
|
+
"arrow-buffer",
|
|
52
|
+
"arrow-cast",
|
|
53
|
+
"arrow-csv",
|
|
54
|
+
"arrow-data",
|
|
55
|
+
"arrow-ipc",
|
|
56
|
+
"arrow-json",
|
|
57
|
+
"arrow-ord",
|
|
58
|
+
"arrow-pyarrow",
|
|
59
|
+
"arrow-row",
|
|
60
|
+
"arrow-schema",
|
|
61
|
+
"arrow-select",
|
|
62
|
+
"arrow-string",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "arrow-arith"
|
|
67
|
+
version = "57.2.0"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "288015089e7931843c80ed4032c5274f02b37bcb720c4a42096d50b390e70372"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"arrow-array",
|
|
72
|
+
"arrow-buffer",
|
|
73
|
+
"arrow-data",
|
|
74
|
+
"arrow-schema",
|
|
75
|
+
"chrono",
|
|
76
|
+
"num-traits",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "arrow-array"
|
|
81
|
+
version = "57.2.0"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "65ca404ea6191e06bf30956394173337fa9c35f445bd447fe6c21ab944e1a23c"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"ahash",
|
|
86
|
+
"arrow-buffer",
|
|
87
|
+
"arrow-data",
|
|
88
|
+
"arrow-schema",
|
|
89
|
+
"chrono",
|
|
90
|
+
"half",
|
|
91
|
+
"hashbrown",
|
|
92
|
+
"num-complex",
|
|
93
|
+
"num-integer",
|
|
94
|
+
"num-traits",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "arrow-buffer"
|
|
99
|
+
version = "57.2.0"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "36356383099be0151dacc4245309895f16ba7917d79bdb71a7148659c9206c56"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"bytes",
|
|
104
|
+
"half",
|
|
105
|
+
"num-bigint",
|
|
106
|
+
"num-traits",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "arrow-cast"
|
|
111
|
+
version = "57.2.0"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "9c8e372ed52bd4ee88cc1e6c3859aa7ecea204158ac640b10e187936e7e87074"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"arrow-array",
|
|
116
|
+
"arrow-buffer",
|
|
117
|
+
"arrow-data",
|
|
118
|
+
"arrow-ord",
|
|
119
|
+
"arrow-schema",
|
|
120
|
+
"arrow-select",
|
|
121
|
+
"atoi",
|
|
122
|
+
"base64",
|
|
123
|
+
"chrono",
|
|
124
|
+
"half",
|
|
125
|
+
"lexical-core",
|
|
126
|
+
"num-traits",
|
|
127
|
+
"ryu",
|
|
128
|
+
]
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "arrow-csv"
|
|
132
|
+
version = "57.2.0"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "8e4100b729fe656f2e4fb32bc5884f14acf9118d4ad532b7b33c1132e4dce896"
|
|
135
|
+
dependencies = [
|
|
136
|
+
"arrow-array",
|
|
137
|
+
"arrow-cast",
|
|
138
|
+
"arrow-schema",
|
|
139
|
+
"chrono",
|
|
140
|
+
"csv",
|
|
141
|
+
"csv-core",
|
|
142
|
+
"regex",
|
|
143
|
+
]
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "arrow-data"
|
|
147
|
+
version = "57.2.0"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "bf87f4ff5fc13290aa47e499a8b669a82c5977c6a1fedce22c7f542c1fd5a597"
|
|
150
|
+
dependencies = [
|
|
151
|
+
"arrow-buffer",
|
|
152
|
+
"arrow-schema",
|
|
153
|
+
"half",
|
|
154
|
+
"num-integer",
|
|
155
|
+
"num-traits",
|
|
156
|
+
]
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "arrow-ipc"
|
|
160
|
+
version = "57.2.0"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "eb3ca63edd2073fcb42ba112f8ae165df1de935627ead6e203d07c99445f2081"
|
|
163
|
+
dependencies = [
|
|
164
|
+
"arrow-array",
|
|
165
|
+
"arrow-buffer",
|
|
166
|
+
"arrow-data",
|
|
167
|
+
"arrow-schema",
|
|
168
|
+
"arrow-select",
|
|
169
|
+
"flatbuffers",
|
|
170
|
+
]
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "arrow-json"
|
|
174
|
+
version = "57.2.0"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "a36b2332559d3310ebe3e173f75b29989b4412df4029a26a30cc3f7da0869297"
|
|
177
|
+
dependencies = [
|
|
178
|
+
"arrow-array",
|
|
179
|
+
"arrow-buffer",
|
|
180
|
+
"arrow-cast",
|
|
181
|
+
"arrow-data",
|
|
182
|
+
"arrow-schema",
|
|
183
|
+
"chrono",
|
|
184
|
+
"half",
|
|
185
|
+
"indexmap",
|
|
186
|
+
"itoa",
|
|
187
|
+
"lexical-core",
|
|
188
|
+
"memchr",
|
|
189
|
+
"num-traits",
|
|
190
|
+
"ryu",
|
|
191
|
+
"serde_core",
|
|
192
|
+
"serde_json",
|
|
193
|
+
"simdutf8",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "arrow-ord"
|
|
198
|
+
version = "57.2.0"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "13c4e0530272ca755d6814218dffd04425c5b7854b87fa741d5ff848bf50aa39"
|
|
201
|
+
dependencies = [
|
|
202
|
+
"arrow-array",
|
|
203
|
+
"arrow-buffer",
|
|
204
|
+
"arrow-data",
|
|
205
|
+
"arrow-schema",
|
|
206
|
+
"arrow-select",
|
|
207
|
+
]
|
|
208
|
+
|
|
209
|
+
[[package]]
|
|
210
|
+
name = "arrow-pyarrow"
|
|
211
|
+
version = "57.2.0"
|
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
+
checksum = "f45c7989cb70214b2f362eaa10266d15e1a433692f2ea1514018be3aace679f4"
|
|
214
|
+
dependencies = [
|
|
215
|
+
"arrow-array",
|
|
216
|
+
"arrow-data",
|
|
217
|
+
"arrow-schema",
|
|
218
|
+
"pyo3",
|
|
219
|
+
]
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "arrow-row"
|
|
223
|
+
version = "57.2.0"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "b07f52788744cc71c4628567ad834cadbaeb9f09026ff1d7a4120f69edf7abd3"
|
|
226
|
+
dependencies = [
|
|
227
|
+
"arrow-array",
|
|
228
|
+
"arrow-buffer",
|
|
229
|
+
"arrow-data",
|
|
230
|
+
"arrow-schema",
|
|
231
|
+
"half",
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "arrow-schema"
|
|
236
|
+
version = "57.2.0"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "6bb63203e8e0e54b288d0d8043ca8fa1013820822a27692ef1b78a977d879f2c"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"bitflags",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "arrow-select"
|
|
245
|
+
version = "57.2.0"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "c96d8a1c180b44ecf2e66c9a2f2bbcb8b1b6f14e165ce46ac8bde211a363411b"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"ahash",
|
|
250
|
+
"arrow-array",
|
|
251
|
+
"arrow-buffer",
|
|
252
|
+
"arrow-data",
|
|
253
|
+
"arrow-schema",
|
|
254
|
+
"num-traits",
|
|
255
|
+
]
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "arrow-string"
|
|
259
|
+
version = "57.2.0"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "a8ad6a81add9d3ea30bf8374ee8329992c7fd246ffd8b7e2f48a3cea5aa0cc9a"
|
|
262
|
+
dependencies = [
|
|
263
|
+
"arrow-array",
|
|
264
|
+
"arrow-buffer",
|
|
265
|
+
"arrow-data",
|
|
266
|
+
"arrow-schema",
|
|
267
|
+
"arrow-select",
|
|
268
|
+
"memchr",
|
|
269
|
+
"num-traits",
|
|
270
|
+
"regex",
|
|
271
|
+
"regex-syntax",
|
|
272
|
+
]
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "atoi"
|
|
276
|
+
version = "2.0.0"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"num-traits",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "autocfg"
|
|
285
|
+
version = "1.5.0"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "base64"
|
|
291
|
+
version = "0.22.1"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "bitflags"
|
|
297
|
+
version = "2.10.0"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "bumpalo"
|
|
303
|
+
version = "3.19.1"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "bytes"
|
|
309
|
+
version = "1.11.1"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "cc"
|
|
315
|
+
version = "1.2.55"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
|
|
318
|
+
dependencies = [
|
|
319
|
+
"find-msvc-tools",
|
|
320
|
+
"shlex",
|
|
321
|
+
]
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "cfg-if"
|
|
325
|
+
version = "1.0.4"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "chrono"
|
|
331
|
+
version = "0.4.43"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"iana-time-zone",
|
|
336
|
+
"js-sys",
|
|
337
|
+
"num-traits",
|
|
338
|
+
"wasm-bindgen",
|
|
339
|
+
"windows-link",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "const-random"
|
|
344
|
+
version = "0.1.18"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
347
|
+
dependencies = [
|
|
348
|
+
"const-random-macro",
|
|
349
|
+
]
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "const-random-macro"
|
|
353
|
+
version = "0.1.16"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"getrandom 0.2.17",
|
|
358
|
+
"once_cell",
|
|
359
|
+
"tiny-keccak",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "core-foundation-sys"
|
|
364
|
+
version = "0.8.7"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "crunchy"
|
|
370
|
+
version = "0.2.4"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "csv"
|
|
376
|
+
version = "1.4.0"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"csv-core",
|
|
381
|
+
"itoa",
|
|
382
|
+
"ryu",
|
|
383
|
+
"serde_core",
|
|
384
|
+
]
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "csv-core"
|
|
388
|
+
version = "0.1.13"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
391
|
+
dependencies = [
|
|
392
|
+
"memchr",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "either"
|
|
397
|
+
version = "1.15.0"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "equivalent"
|
|
403
|
+
version = "1.0.2"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "find-msvc-tools"
|
|
409
|
+
version = "0.1.9"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "flatbuffers"
|
|
415
|
+
version = "25.12.19"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
|
|
418
|
+
dependencies = [
|
|
419
|
+
"bitflags",
|
|
420
|
+
"rustc_version",
|
|
421
|
+
]
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "getrandom"
|
|
425
|
+
version = "0.2.17"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
428
|
+
dependencies = [
|
|
429
|
+
"cfg-if",
|
|
430
|
+
"libc",
|
|
431
|
+
"wasi",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "getrandom"
|
|
436
|
+
version = "0.3.4"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
439
|
+
dependencies = [
|
|
440
|
+
"cfg-if",
|
|
441
|
+
"libc",
|
|
442
|
+
"r-efi",
|
|
443
|
+
"wasip2",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "half"
|
|
448
|
+
version = "2.7.1"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"cfg-if",
|
|
453
|
+
"crunchy",
|
|
454
|
+
"num-traits",
|
|
455
|
+
"zerocopy",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "hashbrown"
|
|
460
|
+
version = "0.16.1"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "heck"
|
|
466
|
+
version = "0.5.0"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "iana-time-zone"
|
|
472
|
+
version = "0.1.65"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"android_system_properties",
|
|
477
|
+
"core-foundation-sys",
|
|
478
|
+
"iana-time-zone-haiku",
|
|
479
|
+
"js-sys",
|
|
480
|
+
"log",
|
|
481
|
+
"wasm-bindgen",
|
|
482
|
+
"windows-core",
|
|
483
|
+
]
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "iana-time-zone-haiku"
|
|
487
|
+
version = "0.1.2"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
490
|
+
dependencies = [
|
|
491
|
+
"cc",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "indexmap"
|
|
496
|
+
version = "2.13.0"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"equivalent",
|
|
501
|
+
"hashbrown",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "indoc"
|
|
506
|
+
version = "2.0.7"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"rustversion",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "itertools"
|
|
515
|
+
version = "0.14.0"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"either",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "itoa"
|
|
524
|
+
version = "1.0.17"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "js-sys"
|
|
530
|
+
version = "0.3.85"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
533
|
+
dependencies = [
|
|
534
|
+
"once_cell",
|
|
535
|
+
"wasm-bindgen",
|
|
536
|
+
]
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "lexical-core"
|
|
540
|
+
version = "1.0.6"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"lexical-parse-float",
|
|
545
|
+
"lexical-parse-integer",
|
|
546
|
+
"lexical-util",
|
|
547
|
+
"lexical-write-float",
|
|
548
|
+
"lexical-write-integer",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "lexical-parse-float"
|
|
553
|
+
version = "1.0.6"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"lexical-parse-integer",
|
|
558
|
+
"lexical-util",
|
|
559
|
+
]
|
|
560
|
+
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "lexical-parse-integer"
|
|
563
|
+
version = "1.0.6"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
|
|
566
|
+
dependencies = [
|
|
567
|
+
"lexical-util",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "lexical-util"
|
|
572
|
+
version = "1.0.7"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
575
|
+
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "lexical-write-float"
|
|
578
|
+
version = "1.0.6"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
|
|
581
|
+
dependencies = [
|
|
582
|
+
"lexical-util",
|
|
583
|
+
"lexical-write-integer",
|
|
584
|
+
]
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "lexical-write-integer"
|
|
588
|
+
version = "1.0.6"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
|
|
591
|
+
dependencies = [
|
|
592
|
+
"lexical-util",
|
|
593
|
+
]
|
|
594
|
+
|
|
595
|
+
[[package]]
|
|
596
|
+
name = "libc"
|
|
597
|
+
version = "0.2.180"
|
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "libm"
|
|
603
|
+
version = "0.2.16"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "log"
|
|
609
|
+
version = "0.4.29"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "memchr"
|
|
615
|
+
version = "2.7.6"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "memoffset"
|
|
621
|
+
version = "0.9.1"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"autocfg",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "num-bigint"
|
|
630
|
+
version = "0.4.6"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"num-integer",
|
|
635
|
+
"num-traits",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "num-complex"
|
|
640
|
+
version = "0.4.6"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
643
|
+
dependencies = [
|
|
644
|
+
"num-traits",
|
|
645
|
+
]
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "num-integer"
|
|
649
|
+
version = "0.1.46"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"num-traits",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "num-traits"
|
|
658
|
+
version = "0.2.19"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"autocfg",
|
|
663
|
+
"libm",
|
|
664
|
+
]
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "once_cell"
|
|
668
|
+
version = "1.21.3"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "portable-atomic"
|
|
674
|
+
version = "1.13.1"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "proc-macro2"
|
|
680
|
+
version = "1.0.106"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"unicode-ident",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "prost"
|
|
689
|
+
version = "0.14.3"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"bytes",
|
|
694
|
+
"prost-derive",
|
|
695
|
+
]
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "prost-derive"
|
|
699
|
+
version = "0.14.3"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
|
|
702
|
+
dependencies = [
|
|
703
|
+
"anyhow",
|
|
704
|
+
"itertools",
|
|
705
|
+
"proc-macro2",
|
|
706
|
+
"quote",
|
|
707
|
+
"syn",
|
|
708
|
+
]
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "prost-reflect"
|
|
712
|
+
version = "0.16.3"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "b89455ef41ed200cafc47c76c552ee7792370ac420497e551f16123a9135f76e"
|
|
715
|
+
dependencies = [
|
|
716
|
+
"prost",
|
|
717
|
+
"prost-types",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "prost-types"
|
|
722
|
+
version = "0.14.3"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"prost",
|
|
727
|
+
]
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "ptars"
|
|
731
|
+
version = "0.0.10-rc3"
|
|
732
|
+
dependencies = [
|
|
733
|
+
"arrow",
|
|
734
|
+
"arrow-array",
|
|
735
|
+
"arrow-schema",
|
|
736
|
+
"chrono",
|
|
737
|
+
"prost",
|
|
738
|
+
"prost-reflect",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "ptars-python"
|
|
743
|
+
version = "0.0.0"
|
|
744
|
+
dependencies = [
|
|
745
|
+
"arrow",
|
|
746
|
+
"arrow-array",
|
|
747
|
+
"arrow-schema",
|
|
748
|
+
"prost",
|
|
749
|
+
"prost-reflect",
|
|
750
|
+
"ptars",
|
|
751
|
+
"pyo3",
|
|
752
|
+
]
|
|
753
|
+
|
|
754
|
+
[[package]]
|
|
755
|
+
name = "pyo3"
|
|
756
|
+
version = "0.26.0"
|
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
+
checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
|
|
759
|
+
dependencies = [
|
|
760
|
+
"indoc",
|
|
761
|
+
"libc",
|
|
762
|
+
"memoffset",
|
|
763
|
+
"once_cell",
|
|
764
|
+
"portable-atomic",
|
|
765
|
+
"pyo3-build-config",
|
|
766
|
+
"pyo3-ffi",
|
|
767
|
+
"pyo3-macros",
|
|
768
|
+
"unindent",
|
|
769
|
+
]
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "pyo3-build-config"
|
|
773
|
+
version = "0.26.0"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
|
|
776
|
+
dependencies = [
|
|
777
|
+
"target-lexicon",
|
|
778
|
+
]
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "pyo3-ffi"
|
|
782
|
+
version = "0.26.0"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
|
|
785
|
+
dependencies = [
|
|
786
|
+
"libc",
|
|
787
|
+
"pyo3-build-config",
|
|
788
|
+
]
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "pyo3-macros"
|
|
792
|
+
version = "0.26.0"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
|
|
795
|
+
dependencies = [
|
|
796
|
+
"proc-macro2",
|
|
797
|
+
"pyo3-macros-backend",
|
|
798
|
+
"quote",
|
|
799
|
+
"syn",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "pyo3-macros-backend"
|
|
804
|
+
version = "0.26.0"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"heck",
|
|
809
|
+
"proc-macro2",
|
|
810
|
+
"pyo3-build-config",
|
|
811
|
+
"quote",
|
|
812
|
+
"syn",
|
|
813
|
+
]
|
|
814
|
+
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "quote"
|
|
817
|
+
version = "1.0.44"
|
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
820
|
+
dependencies = [
|
|
821
|
+
"proc-macro2",
|
|
822
|
+
]
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "r-efi"
|
|
826
|
+
version = "5.3.0"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "regex"
|
|
832
|
+
version = "1.12.3"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
835
|
+
dependencies = [
|
|
836
|
+
"aho-corasick",
|
|
837
|
+
"memchr",
|
|
838
|
+
"regex-automata",
|
|
839
|
+
"regex-syntax",
|
|
840
|
+
]
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "regex-automata"
|
|
844
|
+
version = "0.4.14"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
847
|
+
dependencies = [
|
|
848
|
+
"aho-corasick",
|
|
849
|
+
"memchr",
|
|
850
|
+
"regex-syntax",
|
|
851
|
+
]
|
|
852
|
+
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "regex-syntax"
|
|
855
|
+
version = "0.8.9"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "rustc_version"
|
|
861
|
+
version = "0.4.1"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
864
|
+
dependencies = [
|
|
865
|
+
"semver",
|
|
866
|
+
]
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "rustversion"
|
|
870
|
+
version = "1.0.22"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "ryu"
|
|
876
|
+
version = "1.0.22"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "semver"
|
|
882
|
+
version = "1.0.27"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "serde"
|
|
888
|
+
version = "1.0.228"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"serde_core",
|
|
893
|
+
]
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "serde_core"
|
|
897
|
+
version = "1.0.228"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
900
|
+
dependencies = [
|
|
901
|
+
"serde_derive",
|
|
902
|
+
]
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "serde_derive"
|
|
906
|
+
version = "1.0.228"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
909
|
+
dependencies = [
|
|
910
|
+
"proc-macro2",
|
|
911
|
+
"quote",
|
|
912
|
+
"syn",
|
|
913
|
+
]
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "serde_json"
|
|
917
|
+
version = "1.0.149"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
920
|
+
dependencies = [
|
|
921
|
+
"itoa",
|
|
922
|
+
"memchr",
|
|
923
|
+
"serde",
|
|
924
|
+
"serde_core",
|
|
925
|
+
"zmij",
|
|
926
|
+
]
|
|
927
|
+
|
|
928
|
+
[[package]]
|
|
929
|
+
name = "shlex"
|
|
930
|
+
version = "1.3.0"
|
|
931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "simdutf8"
|
|
936
|
+
version = "0.1.5"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "syn"
|
|
942
|
+
version = "2.0.114"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
945
|
+
dependencies = [
|
|
946
|
+
"proc-macro2",
|
|
947
|
+
"quote",
|
|
948
|
+
"unicode-ident",
|
|
949
|
+
]
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "target-lexicon"
|
|
953
|
+
version = "0.13.4"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "tiny-keccak"
|
|
959
|
+
version = "2.0.2"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
962
|
+
dependencies = [
|
|
963
|
+
"crunchy",
|
|
964
|
+
]
|
|
965
|
+
|
|
966
|
+
[[package]]
|
|
967
|
+
name = "unicode-ident"
|
|
968
|
+
version = "1.0.22"
|
|
969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "unindent"
|
|
974
|
+
version = "0.2.4"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "version_check"
|
|
980
|
+
version = "0.9.5"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "wasi"
|
|
986
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
989
|
+
|
|
990
|
+
[[package]]
|
|
991
|
+
name = "wasip2"
|
|
992
|
+
version = "1.0.2+wasi-0.2.9"
|
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
995
|
+
dependencies = [
|
|
996
|
+
"wit-bindgen",
|
|
997
|
+
]
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "wasm-bindgen"
|
|
1001
|
+
version = "0.2.108"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
1004
|
+
dependencies = [
|
|
1005
|
+
"cfg-if",
|
|
1006
|
+
"once_cell",
|
|
1007
|
+
"rustversion",
|
|
1008
|
+
"wasm-bindgen-macro",
|
|
1009
|
+
"wasm-bindgen-shared",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "wasm-bindgen-macro"
|
|
1014
|
+
version = "0.2.108"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"quote",
|
|
1019
|
+
"wasm-bindgen-macro-support",
|
|
1020
|
+
]
|
|
1021
|
+
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "wasm-bindgen-macro-support"
|
|
1024
|
+
version = "0.2.108"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
1027
|
+
dependencies = [
|
|
1028
|
+
"bumpalo",
|
|
1029
|
+
"proc-macro2",
|
|
1030
|
+
"quote",
|
|
1031
|
+
"syn",
|
|
1032
|
+
"wasm-bindgen-shared",
|
|
1033
|
+
]
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "wasm-bindgen-shared"
|
|
1037
|
+
version = "0.2.108"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
1040
|
+
dependencies = [
|
|
1041
|
+
"unicode-ident",
|
|
1042
|
+
]
|
|
1043
|
+
|
|
1044
|
+
[[package]]
|
|
1045
|
+
name = "windows-core"
|
|
1046
|
+
version = "0.62.2"
|
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1049
|
+
dependencies = [
|
|
1050
|
+
"windows-implement",
|
|
1051
|
+
"windows-interface",
|
|
1052
|
+
"windows-link",
|
|
1053
|
+
"windows-result",
|
|
1054
|
+
"windows-strings",
|
|
1055
|
+
]
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "windows-implement"
|
|
1059
|
+
version = "0.60.2"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1062
|
+
dependencies = [
|
|
1063
|
+
"proc-macro2",
|
|
1064
|
+
"quote",
|
|
1065
|
+
"syn",
|
|
1066
|
+
]
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "windows-interface"
|
|
1070
|
+
version = "0.59.3"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1073
|
+
dependencies = [
|
|
1074
|
+
"proc-macro2",
|
|
1075
|
+
"quote",
|
|
1076
|
+
"syn",
|
|
1077
|
+
]
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "windows-link"
|
|
1081
|
+
version = "0.2.1"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "windows-result"
|
|
1087
|
+
version = "0.4.1"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1090
|
+
dependencies = [
|
|
1091
|
+
"windows-link",
|
|
1092
|
+
]
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "windows-strings"
|
|
1096
|
+
version = "0.5.1"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1099
|
+
dependencies = [
|
|
1100
|
+
"windows-link",
|
|
1101
|
+
]
|
|
1102
|
+
|
|
1103
|
+
[[package]]
|
|
1104
|
+
name = "wit-bindgen"
|
|
1105
|
+
version = "0.51.0"
|
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "zerocopy"
|
|
1111
|
+
version = "0.8.38"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "57cf3aa6855b23711ee9852dfc97dfaa51c45feaba5b645d0c777414d494a961"
|
|
1114
|
+
dependencies = [
|
|
1115
|
+
"zerocopy-derive",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "zerocopy-derive"
|
|
1120
|
+
version = "0.8.38"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "8a616990af1a287837c4fe6596ad77ef57948f787e46ce28e166facc0cc1cb75"
|
|
1123
|
+
dependencies = [
|
|
1124
|
+
"proc-macro2",
|
|
1125
|
+
"quote",
|
|
1126
|
+
"syn",
|
|
1127
|
+
]
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "zmij"
|
|
1131
|
+
version = "1.0.19"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445"
|