parquet-tyfoom 0.8.0
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.
- checksums.yaml +7 -0
- data/Cargo.lock +1854 -0
- data/Cargo.toml +3 -0
- data/Gemfile +21 -0
- data/LICENSE +21 -0
- data/README.md +428 -0
- data/Rakefile +43 -0
- data/ext/parquet/Cargo.toml +39 -0
- data/ext/parquet/build.rs +5 -0
- data/ext/parquet/extconf.rb +4 -0
- data/ext/parquet/src/adapter_ffi.rs +297 -0
- data/ext/parquet/src/allocator.rs +13 -0
- data/ext/parquet/src/lib.rs +24 -0
- data/ext/parquet-core/Cargo.toml +24 -0
- data/ext/parquet-core/src/arrow_conversion.rs +1243 -0
- data/ext/parquet-core/src/error.rs +189 -0
- data/ext/parquet-core/src/lib.rs +60 -0
- data/ext/parquet-core/src/reader.rs +368 -0
- data/ext/parquet-core/src/schema.rs +452 -0
- data/ext/parquet-core/src/test_utils.rs +308 -0
- data/ext/parquet-core/src/traits/mod.rs +5 -0
- data/ext/parquet-core/src/traits/schema.rs +190 -0
- data/ext/parquet-core/src/value.rs +220 -0
- data/ext/parquet-core/src/writer.rs +1241 -0
- data/ext/parquet-core/tests/arrow_conversion_tests.rs +484 -0
- data/ext/parquet-core/tests/binary_data.rs +437 -0
- data/ext/parquet-core/tests/column_projection.rs +557 -0
- data/ext/parquet-core/tests/complex_types.rs +821 -0
- data/ext/parquet-core/tests/compression_tests.rs +434 -0
- data/ext/parquet-core/tests/concurrent_access.rs +431 -0
- data/ext/parquet-core/tests/decimal_tests.rs +488 -0
- data/ext/parquet-core/tests/edge_cases_corner_cases.rs +322 -0
- data/ext/parquet-core/tests/error_handling_comprehensive_tests.rs +540 -0
- data/ext/parquet-core/tests/null_handling_tests.rs +430 -0
- data/ext/parquet-core/tests/performance_memory.rs +181 -0
- data/ext/parquet-core/tests/primitive_types.rs +547 -0
- data/ext/parquet-core/tests/real_world_patterns.rs +777 -0
- data/ext/parquet-core/tests/review_regressions.rs +787 -0
- data/ext/parquet-core/tests/roundtrip_correctness.rs +279 -0
- data/ext/parquet-core/tests/schema_comprehensive_tests.rs +542 -0
- data/ext/parquet-core/tests/temporal_tests.rs +518 -0
- data/ext/parquet-core/tests/test_helpers.rs +132 -0
- data/ext/parquet-core/tests/writer_tests.rs +545 -0
- data/ext/parquet-ruby-adapter/Cargo.toml +24 -0
- data/ext/parquet-ruby-adapter/build.rs +5 -0
- data/ext/parquet-ruby-adapter/examples/try_into_value_demo.rs +98 -0
- data/ext/parquet-ruby-adapter/src/chunk_reader.rs +237 -0
- data/ext/parquet-ruby-adapter/src/converter.rs +1734 -0
- data/ext/parquet-ruby-adapter/src/error.rs +141 -0
- data/ext/parquet-ruby-adapter/src/io.rs +432 -0
- data/ext/parquet-ruby-adapter/src/lib.rs +91 -0
- data/ext/parquet-ruby-adapter/src/logger.rs +67 -0
- data/ext/parquet-ruby-adapter/src/metadata.rs +529 -0
- data/ext/parquet-ruby-adapter/src/reader.rs +339 -0
- data/ext/parquet-ruby-adapter/src/schema.rs +884 -0
- data/ext/parquet-ruby-adapter/src/string_cache.rs +115 -0
- data/ext/parquet-ruby-adapter/src/string_cache_test.rs +122 -0
- data/ext/parquet-ruby-adapter/src/string_storage.rs +632 -0
- data/ext/parquet-ruby-adapter/src/try_into_value.rs +91 -0
- data/ext/parquet-ruby-adapter/src/types.rs +98 -0
- data/ext/parquet-ruby-adapter/src/utils.rs +280 -0
- data/ext/parquet-ruby-adapter/src/writer.rs +625 -0
- data/lib/parquet/schema.rb +262 -0
- data/lib/parquet/version.rb +3 -0
- data/lib/parquet.rb +11 -0
- data/lib/parquet.rbi +181 -0
- metadata +165 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,1854 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "ahash"
|
|
13
|
+
version = "0.8.12"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"const-random",
|
|
19
|
+
"getrandom 0.3.3",
|
|
20
|
+
"once_cell",
|
|
21
|
+
"version_check",
|
|
22
|
+
"zerocopy",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "aho-corasick"
|
|
27
|
+
version = "1.1.3"
|
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
30
|
+
dependencies = [
|
|
31
|
+
"memchr",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "alloc-no-stdlib"
|
|
36
|
+
version = "2.0.4"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "alloc-stdlib"
|
|
42
|
+
version = "0.2.2"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"alloc-no-stdlib",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "android-tzdata"
|
|
51
|
+
version = "0.1.1"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "android_system_properties"
|
|
57
|
+
version = "0.1.5"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
60
|
+
dependencies = [
|
|
61
|
+
"libc",
|
|
62
|
+
]
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "arrow"
|
|
66
|
+
version = "58.3.0"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "378530e55cd479eda3c14eb345310799717e6f76d0c332041e8487022166b471"
|
|
69
|
+
dependencies = [
|
|
70
|
+
"arrow-arith",
|
|
71
|
+
"arrow-array",
|
|
72
|
+
"arrow-buffer",
|
|
73
|
+
"arrow-cast",
|
|
74
|
+
"arrow-csv",
|
|
75
|
+
"arrow-data",
|
|
76
|
+
"arrow-ipc",
|
|
77
|
+
"arrow-json",
|
|
78
|
+
"arrow-ord",
|
|
79
|
+
"arrow-row",
|
|
80
|
+
"arrow-schema",
|
|
81
|
+
"arrow-select",
|
|
82
|
+
"arrow-string",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "arrow-arith"
|
|
87
|
+
version = "58.3.0"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "a0ab212d2c1886e802f51c5212d78ebbcbb0bec980fff9dadc1eb8d45cd0b738"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"arrow-array",
|
|
92
|
+
"arrow-buffer",
|
|
93
|
+
"arrow-data",
|
|
94
|
+
"arrow-schema",
|
|
95
|
+
"chrono",
|
|
96
|
+
"num-traits",
|
|
97
|
+
]
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "arrow-array"
|
|
101
|
+
version = "58.3.0"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "cfd33d3e92f207444098c75b42de99d329562be0cf686b307b097cc52b4e999e"
|
|
104
|
+
dependencies = [
|
|
105
|
+
"ahash",
|
|
106
|
+
"arrow-buffer",
|
|
107
|
+
"arrow-data",
|
|
108
|
+
"arrow-schema",
|
|
109
|
+
"chrono",
|
|
110
|
+
"half",
|
|
111
|
+
"hashbrown 0.17.1",
|
|
112
|
+
"num-complex",
|
|
113
|
+
"num-integer",
|
|
114
|
+
"num-traits",
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "arrow-buffer"
|
|
119
|
+
version = "58.3.0"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "0c6cd424c2693bcdbc150d843dc9d4d137dd2de4782ce6df491ad11a3a0416c0"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"bytes",
|
|
124
|
+
"half",
|
|
125
|
+
"num-bigint",
|
|
126
|
+
"num-traits",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "arrow-cast"
|
|
131
|
+
version = "58.3.0"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "4c5aefb56a2c02e9e2b30746241058b85f8983f0fcff2ba0c6d09006e1cded7f"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"arrow-array",
|
|
136
|
+
"arrow-buffer",
|
|
137
|
+
"arrow-data",
|
|
138
|
+
"arrow-ord",
|
|
139
|
+
"arrow-schema",
|
|
140
|
+
"arrow-select",
|
|
141
|
+
"atoi",
|
|
142
|
+
"base64",
|
|
143
|
+
"chrono",
|
|
144
|
+
"half",
|
|
145
|
+
"lexical-core",
|
|
146
|
+
"num-traits",
|
|
147
|
+
"ryu",
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "arrow-csv"
|
|
152
|
+
version = "58.3.0"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "e94e8cf7e517657a52b91ea1263acf38c4ca62a84655d72458a3359b12ab97de"
|
|
155
|
+
dependencies = [
|
|
156
|
+
"arrow-array",
|
|
157
|
+
"arrow-cast",
|
|
158
|
+
"arrow-schema",
|
|
159
|
+
"chrono",
|
|
160
|
+
"csv",
|
|
161
|
+
"csv-core",
|
|
162
|
+
"regex",
|
|
163
|
+
]
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "arrow-data"
|
|
167
|
+
version = "58.3.0"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "3c88210023a2bfee1896af366309a3028fc3bcbd6515fa29a7990ee1baa08ee0"
|
|
170
|
+
dependencies = [
|
|
171
|
+
"arrow-buffer",
|
|
172
|
+
"arrow-schema",
|
|
173
|
+
"half",
|
|
174
|
+
"num-integer",
|
|
175
|
+
"num-traits",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "arrow-ipc"
|
|
180
|
+
version = "58.3.0"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "238438f0834483703d88896db6fe5a7138b2230debc31b34c0336c2996e3c64f"
|
|
183
|
+
dependencies = [
|
|
184
|
+
"arrow-array",
|
|
185
|
+
"arrow-buffer",
|
|
186
|
+
"arrow-data",
|
|
187
|
+
"arrow-schema",
|
|
188
|
+
"arrow-select",
|
|
189
|
+
"flatbuffers",
|
|
190
|
+
"lz4_flex",
|
|
191
|
+
]
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "arrow-json"
|
|
195
|
+
version = "58.3.0"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "205ca2119e6d679d5c133c6f30e68f027738d95ed948cf77677ea69c7800036b"
|
|
198
|
+
dependencies = [
|
|
199
|
+
"arrow-array",
|
|
200
|
+
"arrow-buffer",
|
|
201
|
+
"arrow-cast",
|
|
202
|
+
"arrow-ord",
|
|
203
|
+
"arrow-schema",
|
|
204
|
+
"arrow-select",
|
|
205
|
+
"chrono",
|
|
206
|
+
"half",
|
|
207
|
+
"indexmap",
|
|
208
|
+
"itoa",
|
|
209
|
+
"lexical-core",
|
|
210
|
+
"memchr",
|
|
211
|
+
"num-traits",
|
|
212
|
+
"ryu",
|
|
213
|
+
"serde_core",
|
|
214
|
+
"serde_json",
|
|
215
|
+
"simdutf8",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "arrow-ord"
|
|
220
|
+
version = "58.3.0"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "1bffd8fd2579286a5d63bac898159873e5094a79009940bcb42bbfce4f19f1d0"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"arrow-array",
|
|
225
|
+
"arrow-buffer",
|
|
226
|
+
"arrow-data",
|
|
227
|
+
"arrow-schema",
|
|
228
|
+
"arrow-select",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "arrow-row"
|
|
233
|
+
version = "58.3.0"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "bab5994731204603c73ba69267616c50f80780774c6bb0476f1f830625115e0c"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"arrow-array",
|
|
238
|
+
"arrow-buffer",
|
|
239
|
+
"arrow-data",
|
|
240
|
+
"arrow-schema",
|
|
241
|
+
"half",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "arrow-schema"
|
|
246
|
+
version = "58.3.0"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "f633dbfdf39c039ada1bf9e34c694816eb71fbb7dc78f613993b7245e078a1ed"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"serde_core",
|
|
251
|
+
"serde_json",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "arrow-select"
|
|
256
|
+
version = "58.3.0"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "8cd065c54172ac787cf3f2f8d4107e0d3fdc26edba76fdf4f4cc170258942222"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"ahash",
|
|
261
|
+
"arrow-array",
|
|
262
|
+
"arrow-buffer",
|
|
263
|
+
"arrow-data",
|
|
264
|
+
"arrow-schema",
|
|
265
|
+
"num-traits",
|
|
266
|
+
]
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "arrow-string"
|
|
270
|
+
version = "58.3.0"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "29dd7cda3ab9692f43a2e4acc444d760cc17b12bb6d8232ddf64e9bab7c06b42"
|
|
273
|
+
dependencies = [
|
|
274
|
+
"arrow-array",
|
|
275
|
+
"arrow-buffer",
|
|
276
|
+
"arrow-data",
|
|
277
|
+
"arrow-schema",
|
|
278
|
+
"arrow-select",
|
|
279
|
+
"memchr",
|
|
280
|
+
"num-traits",
|
|
281
|
+
"regex",
|
|
282
|
+
"regex-syntax",
|
|
283
|
+
]
|
|
284
|
+
|
|
285
|
+
[[package]]
|
|
286
|
+
name = "atoi"
|
|
287
|
+
version = "2.0.0"
|
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
290
|
+
dependencies = [
|
|
291
|
+
"num-traits",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "autocfg"
|
|
296
|
+
version = "1.5.0"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "base64"
|
|
302
|
+
version = "0.22.1"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "bindgen"
|
|
308
|
+
version = "0.69.5"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
311
|
+
dependencies = [
|
|
312
|
+
"bitflags",
|
|
313
|
+
"cexpr",
|
|
314
|
+
"clang-sys",
|
|
315
|
+
"itertools 0.12.1",
|
|
316
|
+
"lazy_static",
|
|
317
|
+
"lazycell",
|
|
318
|
+
"proc-macro2",
|
|
319
|
+
"quote",
|
|
320
|
+
"regex",
|
|
321
|
+
"rustc-hash",
|
|
322
|
+
"shlex",
|
|
323
|
+
"syn",
|
|
324
|
+
]
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "bitflags"
|
|
328
|
+
version = "2.9.1"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "brotli"
|
|
334
|
+
version = "8.0.1"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d"
|
|
337
|
+
dependencies = [
|
|
338
|
+
"alloc-no-stdlib",
|
|
339
|
+
"alloc-stdlib",
|
|
340
|
+
"brotli-decompressor",
|
|
341
|
+
]
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "brotli-decompressor"
|
|
345
|
+
version = "5.0.0"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
|
|
348
|
+
dependencies = [
|
|
349
|
+
"alloc-no-stdlib",
|
|
350
|
+
"alloc-stdlib",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "bumpalo"
|
|
355
|
+
version = "3.19.0"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "byteorder"
|
|
361
|
+
version = "1.5.0"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "bytes"
|
|
367
|
+
version = "1.10.1"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "cc"
|
|
373
|
+
version = "1.2.27"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
|
|
376
|
+
dependencies = [
|
|
377
|
+
"jobserver",
|
|
378
|
+
"libc",
|
|
379
|
+
"shlex",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "cexpr"
|
|
384
|
+
version = "0.6.0"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"nom",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "cfg-if"
|
|
393
|
+
version = "1.0.1"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "chrono"
|
|
399
|
+
version = "0.4.41"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"android-tzdata",
|
|
404
|
+
"iana-time-zone",
|
|
405
|
+
"num-traits",
|
|
406
|
+
"windows-link",
|
|
407
|
+
]
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "clang-sys"
|
|
411
|
+
version = "1.8.1"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
414
|
+
dependencies = [
|
|
415
|
+
"glob",
|
|
416
|
+
"libc",
|
|
417
|
+
"libloading",
|
|
418
|
+
]
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "const-random"
|
|
422
|
+
version = "0.1.18"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"const-random-macro",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "const-random-macro"
|
|
431
|
+
version = "0.1.16"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"getrandom 0.2.16",
|
|
436
|
+
"once_cell",
|
|
437
|
+
"tiny-keccak",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "core-foundation-sys"
|
|
442
|
+
version = "0.8.7"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "crc32fast"
|
|
448
|
+
version = "1.4.2"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"cfg-if",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "crunchy"
|
|
457
|
+
version = "0.2.4"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "csv"
|
|
463
|
+
version = "1.3.1"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"csv-core",
|
|
468
|
+
"itoa",
|
|
469
|
+
"ryu",
|
|
470
|
+
"serde",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "csv-core"
|
|
475
|
+
version = "0.1.12"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"memchr",
|
|
480
|
+
]
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "either"
|
|
484
|
+
version = "1.15.0"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "equivalent"
|
|
490
|
+
version = "1.0.2"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "errno"
|
|
496
|
+
version = "0.3.13"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"libc",
|
|
501
|
+
"windows-sys 0.60.2",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "fastrand"
|
|
506
|
+
version = "2.3.0"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "flatbuffers"
|
|
512
|
+
version = "25.2.10"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "1045398c1bfd89168b5fd3f1fc11f6e70b34f6f66300c87d44d3de849463abf1"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"bitflags",
|
|
517
|
+
"rustc_version",
|
|
518
|
+
]
|
|
519
|
+
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "flate2"
|
|
522
|
+
version = "1.1.2"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
|
525
|
+
dependencies = [
|
|
526
|
+
"crc32fast",
|
|
527
|
+
"libz-rs-sys",
|
|
528
|
+
"miniz_oxide",
|
|
529
|
+
]
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "getrandom"
|
|
533
|
+
version = "0.2.16"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"cfg-if",
|
|
538
|
+
"libc",
|
|
539
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
540
|
+
]
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "getrandom"
|
|
544
|
+
version = "0.3.3"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
547
|
+
dependencies = [
|
|
548
|
+
"cfg-if",
|
|
549
|
+
"libc",
|
|
550
|
+
"r-efi",
|
|
551
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
552
|
+
]
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "glob"
|
|
556
|
+
version = "0.3.2"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "half"
|
|
562
|
+
version = "2.6.0"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
|
565
|
+
dependencies = [
|
|
566
|
+
"cfg-if",
|
|
567
|
+
"crunchy",
|
|
568
|
+
"num-traits",
|
|
569
|
+
]
|
|
570
|
+
|
|
571
|
+
[[package]]
|
|
572
|
+
name = "hashbrown"
|
|
573
|
+
version = "0.15.4"
|
|
574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
575
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
|
576
|
+
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "hashbrown"
|
|
579
|
+
version = "0.17.1"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "iana-time-zone"
|
|
585
|
+
version = "0.1.63"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
|
588
|
+
dependencies = [
|
|
589
|
+
"android_system_properties",
|
|
590
|
+
"core-foundation-sys",
|
|
591
|
+
"iana-time-zone-haiku",
|
|
592
|
+
"js-sys",
|
|
593
|
+
"log",
|
|
594
|
+
"wasm-bindgen",
|
|
595
|
+
"windows-core",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "iana-time-zone-haiku"
|
|
600
|
+
version = "0.1.2"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"cc",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "indexmap"
|
|
609
|
+
version = "2.10.0"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"equivalent",
|
|
614
|
+
"hashbrown 0.15.4",
|
|
615
|
+
]
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "integer-encoding"
|
|
619
|
+
version = "3.0.4"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "itertools"
|
|
625
|
+
version = "0.12.1"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
628
|
+
dependencies = [
|
|
629
|
+
"either",
|
|
630
|
+
]
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "itertools"
|
|
634
|
+
version = "0.14.0"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
637
|
+
dependencies = [
|
|
638
|
+
"either",
|
|
639
|
+
]
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "itoa"
|
|
643
|
+
version = "1.0.15"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "jemalloc-sys"
|
|
649
|
+
version = "0.5.4+5.3.0-patched"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"cc",
|
|
654
|
+
"libc",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "jemallocator"
|
|
659
|
+
version = "0.5.4"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "a0de374a9f8e63150e6f5e8a60cc14c668226d7a347d8aee1a45766e3c4dd3bc"
|
|
662
|
+
dependencies = [
|
|
663
|
+
"jemalloc-sys",
|
|
664
|
+
"libc",
|
|
665
|
+
]
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "jiff"
|
|
669
|
+
version = "0.2.15"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
|
|
672
|
+
dependencies = [
|
|
673
|
+
"jiff-static",
|
|
674
|
+
"jiff-tzdb-platform",
|
|
675
|
+
"log",
|
|
676
|
+
"portable-atomic",
|
|
677
|
+
"portable-atomic-util",
|
|
678
|
+
"serde",
|
|
679
|
+
"windows-sys 0.59.0",
|
|
680
|
+
]
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "jiff-static"
|
|
684
|
+
version = "0.2.15"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
|
|
687
|
+
dependencies = [
|
|
688
|
+
"proc-macro2",
|
|
689
|
+
"quote",
|
|
690
|
+
"syn",
|
|
691
|
+
]
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "jiff-tzdb"
|
|
695
|
+
version = "0.1.4"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "c1283705eb0a21404d2bfd6eef2a7593d240bc42a0bdb39db0ad6fa2ec026524"
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "jiff-tzdb-platform"
|
|
701
|
+
version = "0.1.3"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"jiff-tzdb",
|
|
706
|
+
]
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "jobserver"
|
|
710
|
+
version = "0.1.33"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
|
713
|
+
dependencies = [
|
|
714
|
+
"getrandom 0.3.3",
|
|
715
|
+
"libc",
|
|
716
|
+
]
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "js-sys"
|
|
720
|
+
version = "0.3.77"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
723
|
+
dependencies = [
|
|
724
|
+
"once_cell",
|
|
725
|
+
"wasm-bindgen",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "lazy_static"
|
|
730
|
+
version = "1.5.0"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "lazycell"
|
|
736
|
+
version = "1.3.0"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "lexical-core"
|
|
742
|
+
version = "1.0.5"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "b765c31809609075565a70b4b71402281283aeda7ecaf4818ac14a7b2ade8958"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"lexical-parse-float",
|
|
747
|
+
"lexical-parse-integer",
|
|
748
|
+
"lexical-util",
|
|
749
|
+
"lexical-write-float",
|
|
750
|
+
"lexical-write-integer",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "lexical-parse-float"
|
|
755
|
+
version = "1.0.5"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "de6f9cb01fb0b08060209a057c048fcbab8717b4c1ecd2eac66ebfe39a65b0f2"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"lexical-parse-integer",
|
|
760
|
+
"lexical-util",
|
|
761
|
+
"static_assertions",
|
|
762
|
+
]
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "lexical-parse-integer"
|
|
766
|
+
version = "1.0.5"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "72207aae22fc0a121ba7b6d479e42cbfea549af1479c3f3a4f12c70dd66df12e"
|
|
769
|
+
dependencies = [
|
|
770
|
+
"lexical-util",
|
|
771
|
+
"static_assertions",
|
|
772
|
+
]
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "lexical-util"
|
|
776
|
+
version = "1.0.6"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "5a82e24bf537fd24c177ffbbdc6ebcc8d54732c35b50a3f28cc3f4e4c949a0b3"
|
|
779
|
+
dependencies = [
|
|
780
|
+
"static_assertions",
|
|
781
|
+
]
|
|
782
|
+
|
|
783
|
+
[[package]]
|
|
784
|
+
name = "lexical-write-float"
|
|
785
|
+
version = "1.0.5"
|
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
+
checksum = "c5afc668a27f460fb45a81a757b6bf2f43c2d7e30cb5a2dcd3abf294c78d62bd"
|
|
788
|
+
dependencies = [
|
|
789
|
+
"lexical-util",
|
|
790
|
+
"lexical-write-integer",
|
|
791
|
+
"static_assertions",
|
|
792
|
+
]
|
|
793
|
+
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "lexical-write-integer"
|
|
796
|
+
version = "1.0.5"
|
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
+
checksum = "629ddff1a914a836fb245616a7888b62903aae58fa771e1d83943035efa0f978"
|
|
799
|
+
dependencies = [
|
|
800
|
+
"lexical-util",
|
|
801
|
+
"static_assertions",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "libc"
|
|
806
|
+
version = "0.2.174"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "libloading"
|
|
812
|
+
version = "0.8.8"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
|
815
|
+
dependencies = [
|
|
816
|
+
"cfg-if",
|
|
817
|
+
"windows-targets 0.53.2",
|
|
818
|
+
]
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "libm"
|
|
822
|
+
version = "0.2.15"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "libmimalloc-sys"
|
|
828
|
+
version = "0.1.43"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "bf88cd67e9de251c1781dbe2f641a1a3ad66eaae831b8a2c38fbdc5ddae16d4d"
|
|
831
|
+
dependencies = [
|
|
832
|
+
"cc",
|
|
833
|
+
"libc",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "libz-rs-sys"
|
|
838
|
+
version = "0.5.1"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "172a788537a2221661b480fee8dc5f96c580eb34fa88764d3205dc356c7e4221"
|
|
841
|
+
dependencies = [
|
|
842
|
+
"zlib-rs",
|
|
843
|
+
]
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "linux-raw-sys"
|
|
847
|
+
version = "0.9.4"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "log"
|
|
853
|
+
version = "0.4.27"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "lz4_flex"
|
|
859
|
+
version = "0.13.1"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "7ef0d4ed8669f8f8826eb00dc878084aa8f253506c4fd5e8f58f5bce72ddb97e"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"twox-hash",
|
|
864
|
+
]
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "magnus"
|
|
868
|
+
version = "0.8.2"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
871
|
+
dependencies = [
|
|
872
|
+
"magnus-macros",
|
|
873
|
+
"rb-sys",
|
|
874
|
+
"rb-sys-env",
|
|
875
|
+
"seq-macro",
|
|
876
|
+
]
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "magnus-macros"
|
|
880
|
+
version = "0.8.0"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
883
|
+
dependencies = [
|
|
884
|
+
"proc-macro2",
|
|
885
|
+
"quote",
|
|
886
|
+
"syn",
|
|
887
|
+
]
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "memchr"
|
|
891
|
+
version = "2.7.5"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "mimalloc"
|
|
897
|
+
version = "0.1.47"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "b1791cbe101e95af5764f06f20f6760521f7158f69dbf9d6baf941ee1bf6bc40"
|
|
900
|
+
dependencies = [
|
|
901
|
+
"libmimalloc-sys",
|
|
902
|
+
]
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "minimal-lexical"
|
|
906
|
+
version = "0.2.1"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "miniz_oxide"
|
|
912
|
+
version = "0.8.9"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"adler2",
|
|
917
|
+
]
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "nom"
|
|
921
|
+
version = "7.1.3"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"memchr",
|
|
926
|
+
"minimal-lexical",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "num"
|
|
931
|
+
version = "0.4.3"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"num-bigint",
|
|
936
|
+
"num-complex",
|
|
937
|
+
"num-integer",
|
|
938
|
+
"num-iter",
|
|
939
|
+
"num-rational",
|
|
940
|
+
"num-traits",
|
|
941
|
+
]
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "num-bigint"
|
|
945
|
+
version = "0.4.6"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
948
|
+
dependencies = [
|
|
949
|
+
"num-integer",
|
|
950
|
+
"num-traits",
|
|
951
|
+
]
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "num-complex"
|
|
955
|
+
version = "0.4.6"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"num-traits",
|
|
960
|
+
]
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "num-integer"
|
|
964
|
+
version = "0.1.46"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
967
|
+
dependencies = [
|
|
968
|
+
"num-traits",
|
|
969
|
+
]
|
|
970
|
+
|
|
971
|
+
[[package]]
|
|
972
|
+
name = "num-iter"
|
|
973
|
+
version = "0.1.45"
|
|
974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
976
|
+
dependencies = [
|
|
977
|
+
"autocfg",
|
|
978
|
+
"num-integer",
|
|
979
|
+
"num-traits",
|
|
980
|
+
]
|
|
981
|
+
|
|
982
|
+
[[package]]
|
|
983
|
+
name = "num-rational"
|
|
984
|
+
version = "0.4.2"
|
|
985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
987
|
+
dependencies = [
|
|
988
|
+
"num-bigint",
|
|
989
|
+
"num-integer",
|
|
990
|
+
"num-traits",
|
|
991
|
+
]
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "num-traits"
|
|
995
|
+
version = "0.2.19"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
998
|
+
dependencies = [
|
|
999
|
+
"autocfg",
|
|
1000
|
+
"libm",
|
|
1001
|
+
]
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "once_cell"
|
|
1005
|
+
version = "1.21.3"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "ordered-float"
|
|
1011
|
+
version = "2.10.1"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"num-traits",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "ordered-float"
|
|
1020
|
+
version = "5.0.0"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "e2c1f9f56e534ac6a9b8a4600bdf0f530fb393b5f393e7b4d03489c3cf0c3f01"
|
|
1023
|
+
dependencies = [
|
|
1024
|
+
"num-traits",
|
|
1025
|
+
]
|
|
1026
|
+
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "parquet"
|
|
1029
|
+
version = "0.1.0"
|
|
1030
|
+
dependencies = [
|
|
1031
|
+
"ahash",
|
|
1032
|
+
"arrow-array",
|
|
1033
|
+
"arrow-buffer",
|
|
1034
|
+
"arrow-ipc",
|
|
1035
|
+
"arrow-schema",
|
|
1036
|
+
"bytes",
|
|
1037
|
+
"either",
|
|
1038
|
+
"itertools 0.14.0",
|
|
1039
|
+
"jemallocator",
|
|
1040
|
+
"jiff",
|
|
1041
|
+
"magnus",
|
|
1042
|
+
"mimalloc",
|
|
1043
|
+
"num",
|
|
1044
|
+
"ordered-float 5.0.0",
|
|
1045
|
+
"parquet 58.3.0",
|
|
1046
|
+
"parquet-ruby-adapter",
|
|
1047
|
+
"rand",
|
|
1048
|
+
"rb-sys",
|
|
1049
|
+
"rb-sys-env",
|
|
1050
|
+
"simdutf8",
|
|
1051
|
+
"tempfile",
|
|
1052
|
+
"thiserror",
|
|
1053
|
+
"uuid",
|
|
1054
|
+
]
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "parquet"
|
|
1058
|
+
version = "58.3.0"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "5dafa7d01085b62a47dd0c1829550a0a36710ea9c4fe358a05a85477cec8a908"
|
|
1061
|
+
dependencies = [
|
|
1062
|
+
"ahash",
|
|
1063
|
+
"arrow-array",
|
|
1064
|
+
"arrow-buffer",
|
|
1065
|
+
"arrow-data",
|
|
1066
|
+
"arrow-ipc",
|
|
1067
|
+
"arrow-schema",
|
|
1068
|
+
"arrow-select",
|
|
1069
|
+
"base64",
|
|
1070
|
+
"brotli",
|
|
1071
|
+
"bytes",
|
|
1072
|
+
"chrono",
|
|
1073
|
+
"flate2",
|
|
1074
|
+
"half",
|
|
1075
|
+
"hashbrown 0.17.1",
|
|
1076
|
+
"lz4_flex",
|
|
1077
|
+
"num-bigint",
|
|
1078
|
+
"num-integer",
|
|
1079
|
+
"num-traits",
|
|
1080
|
+
"paste",
|
|
1081
|
+
"seq-macro",
|
|
1082
|
+
"serde_json",
|
|
1083
|
+
"simdutf8",
|
|
1084
|
+
"snap",
|
|
1085
|
+
"thrift",
|
|
1086
|
+
"twox-hash",
|
|
1087
|
+
"zstd",
|
|
1088
|
+
]
|
|
1089
|
+
|
|
1090
|
+
[[package]]
|
|
1091
|
+
name = "parquet-core"
|
|
1092
|
+
version = "0.1.0"
|
|
1093
|
+
dependencies = [
|
|
1094
|
+
"arrow",
|
|
1095
|
+
"arrow-array",
|
|
1096
|
+
"arrow-buffer",
|
|
1097
|
+
"arrow-schema",
|
|
1098
|
+
"bytes",
|
|
1099
|
+
"indexmap",
|
|
1100
|
+
"jiff",
|
|
1101
|
+
"num",
|
|
1102
|
+
"ordered-float 5.0.0",
|
|
1103
|
+
"parquet 58.3.0",
|
|
1104
|
+
"rand",
|
|
1105
|
+
"serde",
|
|
1106
|
+
"tempfile",
|
|
1107
|
+
"thiserror",
|
|
1108
|
+
"triomphe",
|
|
1109
|
+
"uuid",
|
|
1110
|
+
]
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "parquet-ruby-adapter"
|
|
1114
|
+
version = "0.1.0"
|
|
1115
|
+
dependencies = [
|
|
1116
|
+
"arrow-array",
|
|
1117
|
+
"arrow-buffer",
|
|
1118
|
+
"arrow-schema",
|
|
1119
|
+
"bytes",
|
|
1120
|
+
"indexmap",
|
|
1121
|
+
"magnus",
|
|
1122
|
+
"num",
|
|
1123
|
+
"ordered-float 5.0.0",
|
|
1124
|
+
"parquet 58.3.0",
|
|
1125
|
+
"parquet-core",
|
|
1126
|
+
"rb-sys",
|
|
1127
|
+
"rb-sys-env",
|
|
1128
|
+
"tempfile",
|
|
1129
|
+
"thiserror",
|
|
1130
|
+
"triomphe",
|
|
1131
|
+
"uuid",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "paste"
|
|
1136
|
+
version = "1.0.15"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "pkg-config"
|
|
1142
|
+
version = "0.3.32"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "portable-atomic"
|
|
1148
|
+
version = "1.11.1"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
1151
|
+
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "portable-atomic-util"
|
|
1154
|
+
version = "0.2.4"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"portable-atomic",
|
|
1159
|
+
]
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "ppv-lite86"
|
|
1163
|
+
version = "0.2.21"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1166
|
+
dependencies = [
|
|
1167
|
+
"zerocopy",
|
|
1168
|
+
]
|
|
1169
|
+
|
|
1170
|
+
[[package]]
|
|
1171
|
+
name = "proc-macro2"
|
|
1172
|
+
version = "1.0.95"
|
|
1173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
1175
|
+
dependencies = [
|
|
1176
|
+
"unicode-ident",
|
|
1177
|
+
]
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "quote"
|
|
1181
|
+
version = "1.0.40"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
1184
|
+
dependencies = [
|
|
1185
|
+
"proc-macro2",
|
|
1186
|
+
]
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "r-efi"
|
|
1190
|
+
version = "5.3.0"
|
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "rand"
|
|
1196
|
+
version = "0.9.1"
|
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
|
1199
|
+
dependencies = [
|
|
1200
|
+
"rand_chacha",
|
|
1201
|
+
"rand_core",
|
|
1202
|
+
]
|
|
1203
|
+
|
|
1204
|
+
[[package]]
|
|
1205
|
+
name = "rand_chacha"
|
|
1206
|
+
version = "0.9.0"
|
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1209
|
+
dependencies = [
|
|
1210
|
+
"ppv-lite86",
|
|
1211
|
+
"rand_core",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "rand_core"
|
|
1216
|
+
version = "0.9.3"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
1219
|
+
dependencies = [
|
|
1220
|
+
"getrandom 0.3.3",
|
|
1221
|
+
]
|
|
1222
|
+
|
|
1223
|
+
[[package]]
|
|
1224
|
+
name = "rb-sys"
|
|
1225
|
+
version = "0.9.124"
|
|
1226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1227
|
+
checksum = "c85c4188462601e2aa1469def389c17228566f82ea72f137ed096f21591bc489"
|
|
1228
|
+
dependencies = [
|
|
1229
|
+
"rb-sys-build",
|
|
1230
|
+
]
|
|
1231
|
+
|
|
1232
|
+
[[package]]
|
|
1233
|
+
name = "rb-sys-build"
|
|
1234
|
+
version = "0.9.124"
|
|
1235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
|
+
checksum = "568068db4102230882e6d4ae8de6632e224ca75fe5970f6e026a04e91ed635d3"
|
|
1237
|
+
dependencies = [
|
|
1238
|
+
"bindgen",
|
|
1239
|
+
"lazy_static",
|
|
1240
|
+
"proc-macro2",
|
|
1241
|
+
"quote",
|
|
1242
|
+
"regex",
|
|
1243
|
+
"shell-words",
|
|
1244
|
+
"syn",
|
|
1245
|
+
]
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "rb-sys-env"
|
|
1249
|
+
version = "0.2.2"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "regex"
|
|
1255
|
+
version = "1.11.1"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
1258
|
+
dependencies = [
|
|
1259
|
+
"aho-corasick",
|
|
1260
|
+
"memchr",
|
|
1261
|
+
"regex-automata",
|
|
1262
|
+
"regex-syntax",
|
|
1263
|
+
]
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "regex-automata"
|
|
1267
|
+
version = "0.4.9"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"aho-corasick",
|
|
1272
|
+
"memchr",
|
|
1273
|
+
"regex-syntax",
|
|
1274
|
+
]
|
|
1275
|
+
|
|
1276
|
+
[[package]]
|
|
1277
|
+
name = "regex-syntax"
|
|
1278
|
+
version = "0.8.5"
|
|
1279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
1281
|
+
|
|
1282
|
+
[[package]]
|
|
1283
|
+
name = "rustc-hash"
|
|
1284
|
+
version = "1.1.0"
|
|
1285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1286
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1287
|
+
|
|
1288
|
+
[[package]]
|
|
1289
|
+
name = "rustc_version"
|
|
1290
|
+
version = "0.4.1"
|
|
1291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1292
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1293
|
+
dependencies = [
|
|
1294
|
+
"semver",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "rustix"
|
|
1299
|
+
version = "1.0.7"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
|
1302
|
+
dependencies = [
|
|
1303
|
+
"bitflags",
|
|
1304
|
+
"errno",
|
|
1305
|
+
"libc",
|
|
1306
|
+
"linux-raw-sys",
|
|
1307
|
+
"windows-sys 0.59.0",
|
|
1308
|
+
]
|
|
1309
|
+
|
|
1310
|
+
[[package]]
|
|
1311
|
+
name = "rustversion"
|
|
1312
|
+
version = "1.0.21"
|
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "ryu"
|
|
1318
|
+
version = "1.0.20"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1321
|
+
|
|
1322
|
+
[[package]]
|
|
1323
|
+
name = "semver"
|
|
1324
|
+
version = "1.0.26"
|
|
1325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1326
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
1327
|
+
|
|
1328
|
+
[[package]]
|
|
1329
|
+
name = "seq-macro"
|
|
1330
|
+
version = "0.3.6"
|
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
1333
|
+
|
|
1334
|
+
[[package]]
|
|
1335
|
+
name = "serde"
|
|
1336
|
+
version = "1.0.228"
|
|
1337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1339
|
+
dependencies = [
|
|
1340
|
+
"serde_core",
|
|
1341
|
+
"serde_derive",
|
|
1342
|
+
]
|
|
1343
|
+
|
|
1344
|
+
[[package]]
|
|
1345
|
+
name = "serde_core"
|
|
1346
|
+
version = "1.0.228"
|
|
1347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1349
|
+
dependencies = [
|
|
1350
|
+
"serde_derive",
|
|
1351
|
+
]
|
|
1352
|
+
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "serde_derive"
|
|
1355
|
+
version = "1.0.228"
|
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1358
|
+
dependencies = [
|
|
1359
|
+
"proc-macro2",
|
|
1360
|
+
"quote",
|
|
1361
|
+
"syn",
|
|
1362
|
+
]
|
|
1363
|
+
|
|
1364
|
+
[[package]]
|
|
1365
|
+
name = "serde_json"
|
|
1366
|
+
version = "1.0.140"
|
|
1367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
1369
|
+
dependencies = [
|
|
1370
|
+
"itoa",
|
|
1371
|
+
"memchr",
|
|
1372
|
+
"ryu",
|
|
1373
|
+
"serde",
|
|
1374
|
+
]
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "shell-words"
|
|
1378
|
+
version = "1.1.0"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
1381
|
+
|
|
1382
|
+
[[package]]
|
|
1383
|
+
name = "shlex"
|
|
1384
|
+
version = "1.3.0"
|
|
1385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1386
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "simdutf8"
|
|
1390
|
+
version = "0.1.5"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
1393
|
+
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "snap"
|
|
1396
|
+
version = "1.1.1"
|
|
1397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
+
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
1399
|
+
|
|
1400
|
+
[[package]]
|
|
1401
|
+
name = "stable_deref_trait"
|
|
1402
|
+
version = "1.2.1"
|
|
1403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1405
|
+
|
|
1406
|
+
[[package]]
|
|
1407
|
+
name = "static_assertions"
|
|
1408
|
+
version = "1.1.0"
|
|
1409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1411
|
+
|
|
1412
|
+
[[package]]
|
|
1413
|
+
name = "syn"
|
|
1414
|
+
version = "2.0.104"
|
|
1415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1416
|
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
|
1417
|
+
dependencies = [
|
|
1418
|
+
"proc-macro2",
|
|
1419
|
+
"quote",
|
|
1420
|
+
"unicode-ident",
|
|
1421
|
+
]
|
|
1422
|
+
|
|
1423
|
+
[[package]]
|
|
1424
|
+
name = "tempfile"
|
|
1425
|
+
version = "3.20.0"
|
|
1426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
|
1428
|
+
dependencies = [
|
|
1429
|
+
"fastrand",
|
|
1430
|
+
"getrandom 0.3.3",
|
|
1431
|
+
"once_cell",
|
|
1432
|
+
"rustix",
|
|
1433
|
+
"windows-sys 0.59.0",
|
|
1434
|
+
]
|
|
1435
|
+
|
|
1436
|
+
[[package]]
|
|
1437
|
+
name = "thiserror"
|
|
1438
|
+
version = "2.0.12"
|
|
1439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
1441
|
+
dependencies = [
|
|
1442
|
+
"thiserror-impl",
|
|
1443
|
+
]
|
|
1444
|
+
|
|
1445
|
+
[[package]]
|
|
1446
|
+
name = "thiserror-impl"
|
|
1447
|
+
version = "2.0.12"
|
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
1450
|
+
dependencies = [
|
|
1451
|
+
"proc-macro2",
|
|
1452
|
+
"quote",
|
|
1453
|
+
"syn",
|
|
1454
|
+
]
|
|
1455
|
+
|
|
1456
|
+
[[package]]
|
|
1457
|
+
name = "thrift"
|
|
1458
|
+
version = "0.17.0"
|
|
1459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1460
|
+
checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
|
|
1461
|
+
dependencies = [
|
|
1462
|
+
"byteorder",
|
|
1463
|
+
"integer-encoding",
|
|
1464
|
+
"ordered-float 2.10.1",
|
|
1465
|
+
]
|
|
1466
|
+
|
|
1467
|
+
[[package]]
|
|
1468
|
+
name = "tiny-keccak"
|
|
1469
|
+
version = "2.0.2"
|
|
1470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1471
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
1472
|
+
dependencies = [
|
|
1473
|
+
"crunchy",
|
|
1474
|
+
]
|
|
1475
|
+
|
|
1476
|
+
[[package]]
|
|
1477
|
+
name = "triomphe"
|
|
1478
|
+
version = "0.1.15"
|
|
1479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
+
checksum = "dd69c5aa8f924c7519d6372789a74eac5b94fb0f8fcf0d4a97eb0bfc3e785f39"
|
|
1481
|
+
dependencies = [
|
|
1482
|
+
"serde",
|
|
1483
|
+
"stable_deref_trait",
|
|
1484
|
+
]
|
|
1485
|
+
|
|
1486
|
+
[[package]]
|
|
1487
|
+
name = "twox-hash"
|
|
1488
|
+
version = "2.1.1"
|
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
+
checksum = "8b907da542cbced5261bd3256de1b3a1bf340a3d37f93425a07362a1d687de56"
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "unicode-ident"
|
|
1494
|
+
version = "1.0.18"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "uuid"
|
|
1500
|
+
version = "1.17.0"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
|
|
1503
|
+
dependencies = [
|
|
1504
|
+
"getrandom 0.3.3",
|
|
1505
|
+
"js-sys",
|
|
1506
|
+
"wasm-bindgen",
|
|
1507
|
+
]
|
|
1508
|
+
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "version_check"
|
|
1511
|
+
version = "0.9.5"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1514
|
+
|
|
1515
|
+
[[package]]
|
|
1516
|
+
name = "wasi"
|
|
1517
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1520
|
+
|
|
1521
|
+
[[package]]
|
|
1522
|
+
name = "wasi"
|
|
1523
|
+
version = "0.14.2+wasi-0.2.4"
|
|
1524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
1526
|
+
dependencies = [
|
|
1527
|
+
"wit-bindgen-rt",
|
|
1528
|
+
]
|
|
1529
|
+
|
|
1530
|
+
[[package]]
|
|
1531
|
+
name = "wasm-bindgen"
|
|
1532
|
+
version = "0.2.100"
|
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
1535
|
+
dependencies = [
|
|
1536
|
+
"cfg-if",
|
|
1537
|
+
"once_cell",
|
|
1538
|
+
"rustversion",
|
|
1539
|
+
"wasm-bindgen-macro",
|
|
1540
|
+
]
|
|
1541
|
+
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "wasm-bindgen-backend"
|
|
1544
|
+
version = "0.2.100"
|
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
1547
|
+
dependencies = [
|
|
1548
|
+
"bumpalo",
|
|
1549
|
+
"log",
|
|
1550
|
+
"proc-macro2",
|
|
1551
|
+
"quote",
|
|
1552
|
+
"syn",
|
|
1553
|
+
"wasm-bindgen-shared",
|
|
1554
|
+
]
|
|
1555
|
+
|
|
1556
|
+
[[package]]
|
|
1557
|
+
name = "wasm-bindgen-macro"
|
|
1558
|
+
version = "0.2.100"
|
|
1559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
1561
|
+
dependencies = [
|
|
1562
|
+
"quote",
|
|
1563
|
+
"wasm-bindgen-macro-support",
|
|
1564
|
+
]
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "wasm-bindgen-macro-support"
|
|
1568
|
+
version = "0.2.100"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
1571
|
+
dependencies = [
|
|
1572
|
+
"proc-macro2",
|
|
1573
|
+
"quote",
|
|
1574
|
+
"syn",
|
|
1575
|
+
"wasm-bindgen-backend",
|
|
1576
|
+
"wasm-bindgen-shared",
|
|
1577
|
+
]
|
|
1578
|
+
|
|
1579
|
+
[[package]]
|
|
1580
|
+
name = "wasm-bindgen-shared"
|
|
1581
|
+
version = "0.2.100"
|
|
1582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1583
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
1584
|
+
dependencies = [
|
|
1585
|
+
"unicode-ident",
|
|
1586
|
+
]
|
|
1587
|
+
|
|
1588
|
+
[[package]]
|
|
1589
|
+
name = "windows-core"
|
|
1590
|
+
version = "0.61.2"
|
|
1591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1592
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
1593
|
+
dependencies = [
|
|
1594
|
+
"windows-implement",
|
|
1595
|
+
"windows-interface",
|
|
1596
|
+
"windows-link",
|
|
1597
|
+
"windows-result",
|
|
1598
|
+
"windows-strings",
|
|
1599
|
+
]
|
|
1600
|
+
|
|
1601
|
+
[[package]]
|
|
1602
|
+
name = "windows-implement"
|
|
1603
|
+
version = "0.60.0"
|
|
1604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1605
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
1606
|
+
dependencies = [
|
|
1607
|
+
"proc-macro2",
|
|
1608
|
+
"quote",
|
|
1609
|
+
"syn",
|
|
1610
|
+
]
|
|
1611
|
+
|
|
1612
|
+
[[package]]
|
|
1613
|
+
name = "windows-interface"
|
|
1614
|
+
version = "0.59.1"
|
|
1615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
1617
|
+
dependencies = [
|
|
1618
|
+
"proc-macro2",
|
|
1619
|
+
"quote",
|
|
1620
|
+
"syn",
|
|
1621
|
+
]
|
|
1622
|
+
|
|
1623
|
+
[[package]]
|
|
1624
|
+
name = "windows-link"
|
|
1625
|
+
version = "0.1.3"
|
|
1626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1627
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
1628
|
+
|
|
1629
|
+
[[package]]
|
|
1630
|
+
name = "windows-result"
|
|
1631
|
+
version = "0.3.4"
|
|
1632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1633
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
1634
|
+
dependencies = [
|
|
1635
|
+
"windows-link",
|
|
1636
|
+
]
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "windows-strings"
|
|
1640
|
+
version = "0.4.2"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
1643
|
+
dependencies = [
|
|
1644
|
+
"windows-link",
|
|
1645
|
+
]
|
|
1646
|
+
|
|
1647
|
+
[[package]]
|
|
1648
|
+
name = "windows-sys"
|
|
1649
|
+
version = "0.59.0"
|
|
1650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1651
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1652
|
+
dependencies = [
|
|
1653
|
+
"windows-targets 0.52.6",
|
|
1654
|
+
]
|
|
1655
|
+
|
|
1656
|
+
[[package]]
|
|
1657
|
+
name = "windows-sys"
|
|
1658
|
+
version = "0.60.2"
|
|
1659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1661
|
+
dependencies = [
|
|
1662
|
+
"windows-targets 0.53.2",
|
|
1663
|
+
]
|
|
1664
|
+
|
|
1665
|
+
[[package]]
|
|
1666
|
+
name = "windows-targets"
|
|
1667
|
+
version = "0.52.6"
|
|
1668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1670
|
+
dependencies = [
|
|
1671
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
1672
|
+
"windows_aarch64_msvc 0.52.6",
|
|
1673
|
+
"windows_i686_gnu 0.52.6",
|
|
1674
|
+
"windows_i686_gnullvm 0.52.6",
|
|
1675
|
+
"windows_i686_msvc 0.52.6",
|
|
1676
|
+
"windows_x86_64_gnu 0.52.6",
|
|
1677
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
1678
|
+
"windows_x86_64_msvc 0.52.6",
|
|
1679
|
+
]
|
|
1680
|
+
|
|
1681
|
+
[[package]]
|
|
1682
|
+
name = "windows-targets"
|
|
1683
|
+
version = "0.53.2"
|
|
1684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
+
checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
|
|
1686
|
+
dependencies = [
|
|
1687
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
1688
|
+
"windows_aarch64_msvc 0.53.0",
|
|
1689
|
+
"windows_i686_gnu 0.53.0",
|
|
1690
|
+
"windows_i686_gnullvm 0.53.0",
|
|
1691
|
+
"windows_i686_msvc 0.53.0",
|
|
1692
|
+
"windows_x86_64_gnu 0.53.0",
|
|
1693
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
1694
|
+
"windows_x86_64_msvc 0.53.0",
|
|
1695
|
+
]
|
|
1696
|
+
|
|
1697
|
+
[[package]]
|
|
1698
|
+
name = "windows_aarch64_gnullvm"
|
|
1699
|
+
version = "0.52.6"
|
|
1700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1701
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "windows_aarch64_gnullvm"
|
|
1705
|
+
version = "0.53.0"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
1708
|
+
|
|
1709
|
+
[[package]]
|
|
1710
|
+
name = "windows_aarch64_msvc"
|
|
1711
|
+
version = "0.52.6"
|
|
1712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1713
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "windows_aarch64_msvc"
|
|
1717
|
+
version = "0.53.0"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
1720
|
+
|
|
1721
|
+
[[package]]
|
|
1722
|
+
name = "windows_i686_gnu"
|
|
1723
|
+
version = "0.52.6"
|
|
1724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1725
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "windows_i686_gnu"
|
|
1729
|
+
version = "0.53.0"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
1732
|
+
|
|
1733
|
+
[[package]]
|
|
1734
|
+
name = "windows_i686_gnullvm"
|
|
1735
|
+
version = "0.52.6"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "windows_i686_gnullvm"
|
|
1741
|
+
version = "0.53.0"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "windows_i686_msvc"
|
|
1747
|
+
version = "0.52.6"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1750
|
+
|
|
1751
|
+
[[package]]
|
|
1752
|
+
name = "windows_i686_msvc"
|
|
1753
|
+
version = "0.53.0"
|
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
1756
|
+
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "windows_x86_64_gnu"
|
|
1759
|
+
version = "0.52.6"
|
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1762
|
+
|
|
1763
|
+
[[package]]
|
|
1764
|
+
name = "windows_x86_64_gnu"
|
|
1765
|
+
version = "0.53.0"
|
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
1768
|
+
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "windows_x86_64_gnullvm"
|
|
1771
|
+
version = "0.52.6"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1774
|
+
|
|
1775
|
+
[[package]]
|
|
1776
|
+
name = "windows_x86_64_gnullvm"
|
|
1777
|
+
version = "0.53.0"
|
|
1778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1779
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
1780
|
+
|
|
1781
|
+
[[package]]
|
|
1782
|
+
name = "windows_x86_64_msvc"
|
|
1783
|
+
version = "0.52.6"
|
|
1784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1786
|
+
|
|
1787
|
+
[[package]]
|
|
1788
|
+
name = "windows_x86_64_msvc"
|
|
1789
|
+
version = "0.53.0"
|
|
1790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
1792
|
+
|
|
1793
|
+
[[package]]
|
|
1794
|
+
name = "wit-bindgen-rt"
|
|
1795
|
+
version = "0.39.0"
|
|
1796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1797
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
1798
|
+
dependencies = [
|
|
1799
|
+
"bitflags",
|
|
1800
|
+
]
|
|
1801
|
+
|
|
1802
|
+
[[package]]
|
|
1803
|
+
name = "zerocopy"
|
|
1804
|
+
version = "0.8.26"
|
|
1805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
+
checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
|
|
1807
|
+
dependencies = [
|
|
1808
|
+
"zerocopy-derive",
|
|
1809
|
+
]
|
|
1810
|
+
|
|
1811
|
+
[[package]]
|
|
1812
|
+
name = "zerocopy-derive"
|
|
1813
|
+
version = "0.8.26"
|
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
+
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
|
|
1816
|
+
dependencies = [
|
|
1817
|
+
"proc-macro2",
|
|
1818
|
+
"quote",
|
|
1819
|
+
"syn",
|
|
1820
|
+
]
|
|
1821
|
+
|
|
1822
|
+
[[package]]
|
|
1823
|
+
name = "zlib-rs"
|
|
1824
|
+
version = "0.5.1"
|
|
1825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
+
checksum = "626bd9fa9734751fc50d6060752170984d7053f5a39061f524cda68023d4db8a"
|
|
1827
|
+
|
|
1828
|
+
[[package]]
|
|
1829
|
+
name = "zstd"
|
|
1830
|
+
version = "0.13.3"
|
|
1831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1832
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
1833
|
+
dependencies = [
|
|
1834
|
+
"zstd-safe",
|
|
1835
|
+
]
|
|
1836
|
+
|
|
1837
|
+
[[package]]
|
|
1838
|
+
name = "zstd-safe"
|
|
1839
|
+
version = "7.2.4"
|
|
1840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
1842
|
+
dependencies = [
|
|
1843
|
+
"zstd-sys",
|
|
1844
|
+
]
|
|
1845
|
+
|
|
1846
|
+
[[package]]
|
|
1847
|
+
name = "zstd-sys"
|
|
1848
|
+
version = "2.0.15+zstd.1.5.7"
|
|
1849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
|
1851
|
+
dependencies = [
|
|
1852
|
+
"cc",
|
|
1853
|
+
"pkg-config",
|
|
1854
|
+
]
|