rypipe 0.1.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.
- rypipe-0.1.0/Cargo.lock +1088 -0
- rypipe-0.1.0/Cargo.toml +29 -0
- rypipe-0.1.0/LICENSE +21 -0
- rypipe-0.1.0/PKG-INFO +230 -0
- rypipe-0.1.0/README.md +206 -0
- rypipe-0.1.0/_rypipe/__init__.py +1 -0
- rypipe-0.1.0/crates/rypipe-core/Cargo.toml +22 -0
- rypipe-0.1.0/crates/rypipe-core/examples/bench_throughput.rs +143 -0
- rypipe-0.1.0/crates/rypipe-core/src/arrow_export.rs +112 -0
- rypipe-0.1.0/crates/rypipe-core/src/bounded.rs +118 -0
- rypipe-0.1.0/crates/rypipe-core/src/columnar.rs +500 -0
- rypipe-0.1.0/crates/rypipe-core/src/decoder.rs +63 -0
- rypipe-0.1.0/crates/rypipe-core/src/engine.rs +536 -0
- rypipe-0.1.0/crates/rypipe-core/src/error.rs +28 -0
- rypipe-0.1.0/crates/rypipe-core/src/input.rs +76 -0
- rypipe-0.1.0/crates/rypipe-core/src/lib.rs +29 -0
- rypipe-0.1.0/crates/rypipe-core/src/merge.rs +123 -0
- rypipe-0.1.0/crates/rypipe-core/src/parallel.rs +89 -0
- rypipe-0.1.0/crates/rypipe-core/src/pipeline.rs +209 -0
- rypipe-0.1.0/crates/rypipe-core/src/plan.rs +236 -0
- rypipe-0.1.0/crates/rypipe-core/src/value.rs +17 -0
- rypipe-0.1.0/crates/rypipe-core/tests/bounded_executor_test.rs +134 -0
- rypipe-0.1.0/crates/rypipe-core/tests/merge_error_test.rs +41 -0
- rypipe-0.1.0/crates/rypipe-core/tests/pushdown_test.rs +193 -0
- rypipe-0.1.0/crates/rypipe-python/Cargo.toml +18 -0
- rypipe-0.1.0/crates/rypipe-python/src/export.rs +62 -0
- rypipe-0.1.0/crates/rypipe-python/src/lib.rs +52 -0
- rypipe-0.1.0/crates/rypipe-python/src/plan_kwargs.rs +95 -0
- rypipe-0.1.0/crates/rypipe-python/tests/conftest.py +31 -0
- rypipe-0.1.0/crates/rypipe-python/tests/test_rypipe_api.py +75 -0
- rypipe-0.1.0/crates/rypipe-python/tests/test_source_pipeline.py +325 -0
- rypipe-0.1.0/pyproject.toml +45 -0
- rypipe-0.1.0/rypipe/__init__.py +228 -0
- rypipe-0.1.0/rypipe/batchpipe.py +296 -0
- rypipe-0.1.0/rypipe/fusion.py +107 -0
- rypipe-0.1.0/rypipe/pipeline.py +85 -0
- rypipe-0.1.0/rypipe/sinks.py +130 -0
- rypipe-0.1.0/rypipe/source.py +202 -0
- rypipe-0.1.0/rypipe/stages/__init__.py +21 -0
- rypipe-0.1.0/rypipe/stages/cast.py +48 -0
- rypipe-0.1.0/rypipe/stages/drop.py +22 -0
- rypipe-0.1.0/rypipe/stages/filter.py +97 -0
- rypipe-0.1.0/rypipe/stages/rename.py +15 -0
rypipe-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1088 @@
|
|
|
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.5"
|
|
22
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
23
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
24
|
+
dependencies = [
|
|
25
|
+
"memchr",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[[package]]
|
|
29
|
+
name = "android_system_properties"
|
|
30
|
+
version = "0.1.6"
|
|
31
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
32
|
+
checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
|
|
33
|
+
dependencies = [
|
|
34
|
+
"libc",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[[package]]
|
|
38
|
+
name = "arrow"
|
|
39
|
+
version = "55.2.0"
|
|
40
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
41
|
+
checksum = "f3f15b4c6b148206ff3a2b35002e08929c2462467b62b9c02036d9c34f9ef994"
|
|
42
|
+
dependencies = [
|
|
43
|
+
"arrow-arith",
|
|
44
|
+
"arrow-array",
|
|
45
|
+
"arrow-buffer",
|
|
46
|
+
"arrow-cast",
|
|
47
|
+
"arrow-data",
|
|
48
|
+
"arrow-ord",
|
|
49
|
+
"arrow-pyarrow",
|
|
50
|
+
"arrow-row",
|
|
51
|
+
"arrow-schema",
|
|
52
|
+
"arrow-select",
|
|
53
|
+
"arrow-string",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "arrow-arith"
|
|
58
|
+
version = "55.2.0"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "30feb679425110209ae35c3fbf82404a39a4c0436bb3ec36164d8bffed2a4ce4"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"arrow-array",
|
|
63
|
+
"arrow-buffer",
|
|
64
|
+
"arrow-data",
|
|
65
|
+
"arrow-schema",
|
|
66
|
+
"chrono",
|
|
67
|
+
"num",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "arrow-array"
|
|
72
|
+
version = "55.2.0"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "70732f04d285d49054a48b72c54f791bb3424abae92d27aafdf776c98af161c8"
|
|
75
|
+
dependencies = [
|
|
76
|
+
"ahash",
|
|
77
|
+
"arrow-buffer",
|
|
78
|
+
"arrow-data",
|
|
79
|
+
"arrow-schema",
|
|
80
|
+
"chrono",
|
|
81
|
+
"half",
|
|
82
|
+
"hashbrown",
|
|
83
|
+
"num",
|
|
84
|
+
]
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "arrow-buffer"
|
|
88
|
+
version = "55.2.0"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "169b1d5d6cb390dd92ce582b06b23815c7953e9dfaaea75556e89d890d19993d"
|
|
91
|
+
dependencies = [
|
|
92
|
+
"bytes",
|
|
93
|
+
"half",
|
|
94
|
+
"num",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "arrow-cast"
|
|
99
|
+
version = "55.2.0"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "e4f12eccc3e1c05a766cafb31f6a60a46c2f8efec9b74c6e0648766d30686af8"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"arrow-array",
|
|
104
|
+
"arrow-buffer",
|
|
105
|
+
"arrow-data",
|
|
106
|
+
"arrow-schema",
|
|
107
|
+
"arrow-select",
|
|
108
|
+
"atoi",
|
|
109
|
+
"base64",
|
|
110
|
+
"chrono",
|
|
111
|
+
"half",
|
|
112
|
+
"lexical-core",
|
|
113
|
+
"num",
|
|
114
|
+
"ryu",
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "arrow-data"
|
|
119
|
+
version = "55.2.0"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "8de1ce212d803199684b658fc4ba55fb2d7e87b213de5af415308d2fee3619c2"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"arrow-buffer",
|
|
124
|
+
"arrow-schema",
|
|
125
|
+
"half",
|
|
126
|
+
"num",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "arrow-ord"
|
|
131
|
+
version = "55.2.0"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "6506e3a059e3be23023f587f79c82ef0bcf6d293587e3272d20f2d30b969b5a7"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"arrow-array",
|
|
136
|
+
"arrow-buffer",
|
|
137
|
+
"arrow-data",
|
|
138
|
+
"arrow-schema",
|
|
139
|
+
"arrow-select",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "arrow-pyarrow"
|
|
144
|
+
version = "55.2.0"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "0e55ecf16b9b61d433f6e63c72fc6afcf2597d7db96583de88ebb887d1822268"
|
|
147
|
+
dependencies = [
|
|
148
|
+
"arrow-array",
|
|
149
|
+
"arrow-data",
|
|
150
|
+
"arrow-schema",
|
|
151
|
+
"pyo3",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "arrow-row"
|
|
156
|
+
version = "55.2.0"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "52bf7393166beaf79b4bed9bfdf19e97472af32ce5b6b48169d321518a08cae2"
|
|
159
|
+
dependencies = [
|
|
160
|
+
"arrow-array",
|
|
161
|
+
"arrow-buffer",
|
|
162
|
+
"arrow-data",
|
|
163
|
+
"arrow-schema",
|
|
164
|
+
"half",
|
|
165
|
+
]
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "arrow-schema"
|
|
169
|
+
version = "55.2.0"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "af7686986a3bf2254c9fb130c623cdcb2f8e1f15763e7c71c310f0834da3d292"
|
|
172
|
+
dependencies = [
|
|
173
|
+
"bitflags",
|
|
174
|
+
]
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "arrow-select"
|
|
178
|
+
version = "55.2.0"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "dd2b45757d6a2373faa3352d02ff5b54b098f5e21dccebc45a21806bc34501e5"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"ahash",
|
|
183
|
+
"arrow-array",
|
|
184
|
+
"arrow-buffer",
|
|
185
|
+
"arrow-data",
|
|
186
|
+
"arrow-schema",
|
|
187
|
+
"num",
|
|
188
|
+
]
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "arrow-string"
|
|
192
|
+
version = "55.2.0"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "0377d532850babb4d927a06294314b316e23311503ed580ec6ce6a0158f49d40"
|
|
195
|
+
dependencies = [
|
|
196
|
+
"arrow-array",
|
|
197
|
+
"arrow-buffer",
|
|
198
|
+
"arrow-data",
|
|
199
|
+
"arrow-schema",
|
|
200
|
+
"arrow-select",
|
|
201
|
+
"memchr",
|
|
202
|
+
"num",
|
|
203
|
+
"regex",
|
|
204
|
+
"regex-syntax",
|
|
205
|
+
]
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "atoi"
|
|
209
|
+
version = "2.0.0"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
212
|
+
dependencies = [
|
|
213
|
+
"num-traits",
|
|
214
|
+
]
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "autocfg"
|
|
218
|
+
version = "1.5.1"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "base64"
|
|
224
|
+
version = "0.22.1"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "bitflags"
|
|
230
|
+
version = "2.13.1"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "bumpalo"
|
|
236
|
+
version = "3.20.3"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "bytes"
|
|
242
|
+
version = "1.12.1"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "cc"
|
|
248
|
+
version = "1.4.4"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"find-msvc-tools",
|
|
253
|
+
"shlex",
|
|
254
|
+
]
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "cfg-if"
|
|
258
|
+
version = "1.0.4"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "chrono"
|
|
264
|
+
version = "0.4.45"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"iana-time-zone",
|
|
269
|
+
"num-traits",
|
|
270
|
+
"windows-link",
|
|
271
|
+
]
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "const-random"
|
|
275
|
+
version = "0.1.18"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
278
|
+
dependencies = [
|
|
279
|
+
"const-random-macro",
|
|
280
|
+
]
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "const-random-macro"
|
|
284
|
+
version = "0.1.16"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
287
|
+
dependencies = [
|
|
288
|
+
"getrandom 0.2.17",
|
|
289
|
+
"once_cell",
|
|
290
|
+
"tiny-keccak",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "core-foundation-sys"
|
|
295
|
+
version = "0.8.7"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "crossbeam-deque"
|
|
301
|
+
version = "0.8.7"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"crossbeam-epoch",
|
|
306
|
+
"crossbeam-utils",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "crossbeam-epoch"
|
|
311
|
+
version = "0.9.20"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"crossbeam-utils",
|
|
316
|
+
]
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "crossbeam-utils"
|
|
320
|
+
version = "0.8.22"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "crunchy"
|
|
326
|
+
version = "0.2.4"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "either"
|
|
332
|
+
version = "1.18.0"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "find-msvc-tools"
|
|
338
|
+
version = "0.1.11"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "futures-core"
|
|
344
|
+
version = "0.3.34"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "futures-task"
|
|
350
|
+
version = "0.3.34"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "futures-util"
|
|
356
|
+
version = "0.3.34"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"futures-core",
|
|
361
|
+
"futures-task",
|
|
362
|
+
"pin-project-lite",
|
|
363
|
+
"slab",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "getrandom"
|
|
368
|
+
version = "0.2.17"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"cfg-if",
|
|
373
|
+
"libc",
|
|
374
|
+
"wasi",
|
|
375
|
+
]
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "getrandom"
|
|
379
|
+
version = "0.3.4"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
382
|
+
dependencies = [
|
|
383
|
+
"cfg-if",
|
|
384
|
+
"libc",
|
|
385
|
+
"r-efi",
|
|
386
|
+
"wasip2",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "half"
|
|
391
|
+
version = "2.7.1"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"cfg-if",
|
|
396
|
+
"crunchy",
|
|
397
|
+
"num-traits",
|
|
398
|
+
"zerocopy",
|
|
399
|
+
]
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "hashbrown"
|
|
403
|
+
version = "0.15.5"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "heck"
|
|
409
|
+
version = "0.5.0"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "iana-time-zone"
|
|
415
|
+
version = "0.1.65"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
418
|
+
dependencies = [
|
|
419
|
+
"android_system_properties",
|
|
420
|
+
"core-foundation-sys",
|
|
421
|
+
"iana-time-zone-haiku",
|
|
422
|
+
"js-sys",
|
|
423
|
+
"log",
|
|
424
|
+
"wasm-bindgen",
|
|
425
|
+
"windows-core",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "iana-time-zone-haiku"
|
|
430
|
+
version = "0.1.2"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"cc",
|
|
435
|
+
]
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "indoc"
|
|
439
|
+
version = "2.0.7"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"rustversion",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "js-sys"
|
|
448
|
+
version = "0.3.104"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"cfg-if",
|
|
453
|
+
"futures-util",
|
|
454
|
+
"wasm-bindgen",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "lexical"
|
|
459
|
+
version = "7.0.5"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "1bc8a009b2ff1f419ccc62706f04fe0ca6e67b37460513964a3dfdb919bb37d6"
|
|
462
|
+
dependencies = [
|
|
463
|
+
"lexical-core",
|
|
464
|
+
]
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "lexical-core"
|
|
468
|
+
version = "1.0.6"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
|
|
471
|
+
dependencies = [
|
|
472
|
+
"lexical-parse-float",
|
|
473
|
+
"lexical-parse-integer",
|
|
474
|
+
"lexical-util",
|
|
475
|
+
"lexical-write-float",
|
|
476
|
+
"lexical-write-integer",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "lexical-parse-float"
|
|
481
|
+
version = "1.0.6"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"lexical-parse-integer",
|
|
486
|
+
"lexical-util",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "lexical-parse-integer"
|
|
491
|
+
version = "1.0.6"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"lexical-util",
|
|
496
|
+
]
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "lexical-util"
|
|
500
|
+
version = "1.0.7"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "lexical-write-float"
|
|
506
|
+
version = "1.0.6"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"lexical-util",
|
|
511
|
+
"lexical-write-integer",
|
|
512
|
+
]
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "lexical-write-integer"
|
|
516
|
+
version = "1.0.6"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"lexical-util",
|
|
521
|
+
]
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "libc"
|
|
525
|
+
version = "0.2.189"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "libm"
|
|
531
|
+
version = "0.2.16"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "libmimalloc-sys"
|
|
537
|
+
version = "0.1.49"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "6a45a52f43e1c16f667ccfe4dd8c85b7f7c204fd5e3bf46c5b0db9a5c3c0b8e9"
|
|
540
|
+
dependencies = [
|
|
541
|
+
"cc",
|
|
542
|
+
]
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "log"
|
|
546
|
+
version = "0.4.34"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "memchr"
|
|
552
|
+
version = "2.8.3"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "memmap2"
|
|
558
|
+
version = "0.9.11"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"libc",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "memoffset"
|
|
567
|
+
version = "0.9.1"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"autocfg",
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "mimalloc"
|
|
576
|
+
version = "0.1.52"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "2d4139bb28d14ad1facf21d5eb8825051b326e172d216b39f6d31df53cc97862"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"libmimalloc-sys",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "num"
|
|
585
|
+
version = "0.4.3"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
588
|
+
dependencies = [
|
|
589
|
+
"num-bigint",
|
|
590
|
+
"num-complex",
|
|
591
|
+
"num-integer",
|
|
592
|
+
"num-iter",
|
|
593
|
+
"num-rational",
|
|
594
|
+
"num-traits",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "num-bigint"
|
|
599
|
+
version = "0.4.8"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"num-integer",
|
|
604
|
+
"num-traits",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "num-complex"
|
|
609
|
+
version = "0.4.6"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"num-traits",
|
|
614
|
+
]
|
|
615
|
+
|
|
616
|
+
[[package]]
|
|
617
|
+
name = "num-integer"
|
|
618
|
+
version = "0.1.47"
|
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
621
|
+
dependencies = [
|
|
622
|
+
"num-traits",
|
|
623
|
+
]
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "num-iter"
|
|
627
|
+
version = "0.1.46"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
|
|
630
|
+
dependencies = [
|
|
631
|
+
"num-integer",
|
|
632
|
+
"num-traits",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "num-rational"
|
|
637
|
+
version = "0.4.2"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"num-bigint",
|
|
642
|
+
"num-integer",
|
|
643
|
+
"num-traits",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "num-traits"
|
|
648
|
+
version = "0.2.19"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"autocfg",
|
|
653
|
+
"libm",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "once_cell"
|
|
658
|
+
version = "1.21.4"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "pin-project-lite"
|
|
664
|
+
version = "0.2.17"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "portable-atomic"
|
|
670
|
+
version = "1.15.0"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "proc-macro2"
|
|
676
|
+
version = "1.0.107"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
679
|
+
dependencies = [
|
|
680
|
+
"unicode-ident",
|
|
681
|
+
]
|
|
682
|
+
|
|
683
|
+
[[package]]
|
|
684
|
+
name = "pyo3"
|
|
685
|
+
version = "0.24.2"
|
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
|
688
|
+
dependencies = [
|
|
689
|
+
"cfg-if",
|
|
690
|
+
"indoc",
|
|
691
|
+
"libc",
|
|
692
|
+
"memoffset",
|
|
693
|
+
"once_cell",
|
|
694
|
+
"portable-atomic",
|
|
695
|
+
"pyo3-build-config",
|
|
696
|
+
"pyo3-ffi",
|
|
697
|
+
"pyo3-macros",
|
|
698
|
+
"unindent",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "pyo3-build-config"
|
|
703
|
+
version = "0.24.2"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"once_cell",
|
|
708
|
+
"target-lexicon",
|
|
709
|
+
]
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "pyo3-ffi"
|
|
713
|
+
version = "0.24.2"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"libc",
|
|
718
|
+
"pyo3-build-config",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "pyo3-macros"
|
|
723
|
+
version = "0.24.2"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"proc-macro2",
|
|
728
|
+
"pyo3-macros-backend",
|
|
729
|
+
"quote",
|
|
730
|
+
"syn 2.0.119",
|
|
731
|
+
]
|
|
732
|
+
|
|
733
|
+
[[package]]
|
|
734
|
+
name = "pyo3-macros-backend"
|
|
735
|
+
version = "0.24.2"
|
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
|
738
|
+
dependencies = [
|
|
739
|
+
"heck",
|
|
740
|
+
"proc-macro2",
|
|
741
|
+
"pyo3-build-config",
|
|
742
|
+
"quote",
|
|
743
|
+
"syn 2.0.119",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "quote"
|
|
748
|
+
version = "1.0.47"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
751
|
+
dependencies = [
|
|
752
|
+
"proc-macro2",
|
|
753
|
+
]
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "r-efi"
|
|
757
|
+
version = "5.3.0"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "rayon"
|
|
763
|
+
version = "1.12.0"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
766
|
+
dependencies = [
|
|
767
|
+
"either",
|
|
768
|
+
"rayon-core",
|
|
769
|
+
]
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "rayon-core"
|
|
773
|
+
version = "1.13.0"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
776
|
+
dependencies = [
|
|
777
|
+
"crossbeam-deque",
|
|
778
|
+
"crossbeam-utils",
|
|
779
|
+
]
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "regex"
|
|
783
|
+
version = "1.13.1"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
786
|
+
dependencies = [
|
|
787
|
+
"aho-corasick",
|
|
788
|
+
"memchr",
|
|
789
|
+
"regex-automata",
|
|
790
|
+
"regex-syntax",
|
|
791
|
+
]
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "regex-automata"
|
|
795
|
+
version = "0.4.18"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
798
|
+
dependencies = [
|
|
799
|
+
"aho-corasick",
|
|
800
|
+
"memchr",
|
|
801
|
+
"regex-syntax",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "regex-syntax"
|
|
806
|
+
version = "0.8.11"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "rustc-hash"
|
|
812
|
+
version = "2.1.3"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "rustversion"
|
|
818
|
+
version = "1.0.23"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "rypipe-core"
|
|
824
|
+
version = "0.1.0"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"arrow",
|
|
827
|
+
"lexical",
|
|
828
|
+
"memchr",
|
|
829
|
+
"memmap2",
|
|
830
|
+
"rayon",
|
|
831
|
+
"rustc-hash",
|
|
832
|
+
"simdutf8",
|
|
833
|
+
"thiserror",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "rypipe-python"
|
|
838
|
+
version = "0.1.0"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"arrow",
|
|
841
|
+
"mimalloc",
|
|
842
|
+
"pyo3",
|
|
843
|
+
"rypipe-core",
|
|
844
|
+
]
|
|
845
|
+
|
|
846
|
+
[[package]]
|
|
847
|
+
name = "ryu"
|
|
848
|
+
version = "1.0.23"
|
|
849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
851
|
+
|
|
852
|
+
[[package]]
|
|
853
|
+
name = "shlex"
|
|
854
|
+
version = "2.0.1"
|
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "simdutf8"
|
|
860
|
+
version = "0.1.5"
|
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
863
|
+
|
|
864
|
+
[[package]]
|
|
865
|
+
name = "slab"
|
|
866
|
+
version = "0.4.12"
|
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
869
|
+
|
|
870
|
+
[[package]]
|
|
871
|
+
name = "syn"
|
|
872
|
+
version = "2.0.119"
|
|
873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
875
|
+
dependencies = [
|
|
876
|
+
"proc-macro2",
|
|
877
|
+
"quote",
|
|
878
|
+
"unicode-ident",
|
|
879
|
+
]
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "syn"
|
|
883
|
+
version = "3.0.3"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
886
|
+
dependencies = [
|
|
887
|
+
"proc-macro2",
|
|
888
|
+
"quote",
|
|
889
|
+
"unicode-ident",
|
|
890
|
+
]
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "target-lexicon"
|
|
894
|
+
version = "0.13.5"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "thiserror"
|
|
900
|
+
version = "2.0.20"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
903
|
+
dependencies = [
|
|
904
|
+
"thiserror-impl",
|
|
905
|
+
]
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "thiserror-impl"
|
|
909
|
+
version = "2.0.20"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
912
|
+
dependencies = [
|
|
913
|
+
"proc-macro2",
|
|
914
|
+
"quote",
|
|
915
|
+
"syn 3.0.3",
|
|
916
|
+
]
|
|
917
|
+
|
|
918
|
+
[[package]]
|
|
919
|
+
name = "tiny-keccak"
|
|
920
|
+
version = "2.0.2"
|
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
923
|
+
dependencies = [
|
|
924
|
+
"crunchy",
|
|
925
|
+
]
|
|
926
|
+
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "unicode-ident"
|
|
929
|
+
version = "1.0.24"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "unindent"
|
|
935
|
+
version = "0.2.4"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "version_check"
|
|
941
|
+
version = "0.9.5"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "wasi"
|
|
947
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "wasip2"
|
|
953
|
+
version = "1.0.4+wasi-0.2.12"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
956
|
+
dependencies = [
|
|
957
|
+
"wit-bindgen",
|
|
958
|
+
]
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "wasm-bindgen"
|
|
962
|
+
version = "0.2.127"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"cfg-if",
|
|
967
|
+
"once_cell",
|
|
968
|
+
"rustversion",
|
|
969
|
+
"wasm-bindgen-macro",
|
|
970
|
+
"wasm-bindgen-shared",
|
|
971
|
+
]
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "wasm-bindgen-macro"
|
|
975
|
+
version = "0.2.127"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"quote",
|
|
980
|
+
"wasm-bindgen-macro-support",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "wasm-bindgen-macro-support"
|
|
985
|
+
version = "0.2.127"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"bumpalo",
|
|
990
|
+
"proc-macro2",
|
|
991
|
+
"quote",
|
|
992
|
+
"syn 2.0.119",
|
|
993
|
+
"wasm-bindgen-shared",
|
|
994
|
+
]
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "wasm-bindgen-shared"
|
|
998
|
+
version = "0.2.127"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
|
|
1001
|
+
dependencies = [
|
|
1002
|
+
"unicode-ident",
|
|
1003
|
+
]
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "windows-core"
|
|
1007
|
+
version = "0.62.2"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1010
|
+
dependencies = [
|
|
1011
|
+
"windows-implement",
|
|
1012
|
+
"windows-interface",
|
|
1013
|
+
"windows-link",
|
|
1014
|
+
"windows-result",
|
|
1015
|
+
"windows-strings",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "windows-implement"
|
|
1020
|
+
version = "0.60.2"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1023
|
+
dependencies = [
|
|
1024
|
+
"proc-macro2",
|
|
1025
|
+
"quote",
|
|
1026
|
+
"syn 2.0.119",
|
|
1027
|
+
]
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "windows-interface"
|
|
1031
|
+
version = "0.59.3"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1034
|
+
dependencies = [
|
|
1035
|
+
"proc-macro2",
|
|
1036
|
+
"quote",
|
|
1037
|
+
"syn 2.0.119",
|
|
1038
|
+
]
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "windows-link"
|
|
1042
|
+
version = "0.2.1"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "windows-result"
|
|
1048
|
+
version = "0.4.1"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"windows-link",
|
|
1053
|
+
]
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "windows-strings"
|
|
1057
|
+
version = "0.5.1"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"windows-link",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "wit-bindgen"
|
|
1066
|
+
version = "0.57.1"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "zerocopy"
|
|
1072
|
+
version = "0.8.56"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
|
|
1075
|
+
dependencies = [
|
|
1076
|
+
"zerocopy-derive",
|
|
1077
|
+
]
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "zerocopy-derive"
|
|
1081
|
+
version = "0.8.56"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"proc-macro2",
|
|
1086
|
+
"quote",
|
|
1087
|
+
"syn 2.0.119",
|
|
1088
|
+
]
|