parquet 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Cargo.lock +1918 -0
- data/Cargo.toml +3 -0
- data/Gemfile +12 -0
- data/LICENSE +21 -0
- data/README.md +29 -0
- data/Rakefile +27 -0
- data/ext/parquet/Cargo.toml +18 -0
- data/ext/parquet/extconf.rb +4 -0
- data/ext/parquet/src/header_cache.rs +81 -0
- data/ext/parquet/src/lib.rs +16 -0
- data/ext/parquet/src/reader.rs +337 -0
- data/ext/parquet/src/ruby_reader.rs +231 -0
- data/ext/parquet/src/utils.rs +70 -0
- data/lib/parquet/version.rb +3 -0
- data/lib/parquet.rb +5 -0
- data/lib/parquet.rbi +17 -0
- metadata +96 -0
data/Cargo.lock
ADDED
@@ -0,0 +1,1918 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 4
|
4
|
+
|
5
|
+
[[package]]
|
6
|
+
name = "addr2line"
|
7
|
+
version = "0.24.2"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
10
|
+
dependencies = [
|
11
|
+
"gimli",
|
12
|
+
]
|
13
|
+
|
14
|
+
[[package]]
|
15
|
+
name = "adler2"
|
16
|
+
version = "2.0.0"
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
19
|
+
|
20
|
+
[[package]]
|
21
|
+
name = "ahash"
|
22
|
+
version = "0.8.11"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
25
|
+
dependencies = [
|
26
|
+
"cfg-if",
|
27
|
+
"const-random",
|
28
|
+
"getrandom",
|
29
|
+
"once_cell",
|
30
|
+
"version_check",
|
31
|
+
"zerocopy",
|
32
|
+
]
|
33
|
+
|
34
|
+
[[package]]
|
35
|
+
name = "aho-corasick"
|
36
|
+
version = "1.1.3"
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
38
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
39
|
+
dependencies = [
|
40
|
+
"memchr",
|
41
|
+
]
|
42
|
+
|
43
|
+
[[package]]
|
44
|
+
name = "alloc-no-stdlib"
|
45
|
+
version = "2.0.4"
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
47
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
48
|
+
|
49
|
+
[[package]]
|
50
|
+
name = "alloc-stdlib"
|
51
|
+
version = "0.2.2"
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
53
|
+
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
54
|
+
dependencies = [
|
55
|
+
"alloc-no-stdlib",
|
56
|
+
]
|
57
|
+
|
58
|
+
[[package]]
|
59
|
+
name = "android-tzdata"
|
60
|
+
version = "0.1.1"
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
62
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
63
|
+
|
64
|
+
[[package]]
|
65
|
+
name = "android_system_properties"
|
66
|
+
version = "0.1.5"
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
68
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
69
|
+
dependencies = [
|
70
|
+
"libc",
|
71
|
+
]
|
72
|
+
|
73
|
+
[[package]]
|
74
|
+
name = "arrow-array"
|
75
|
+
version = "54.0.0"
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
77
|
+
checksum = "bd6ed90c28c6f73a706c55799b8cc3a094e89257238e5b1d65ca7c70bd3ae23f"
|
78
|
+
dependencies = [
|
79
|
+
"ahash",
|
80
|
+
"arrow-buffer",
|
81
|
+
"arrow-data",
|
82
|
+
"arrow-schema",
|
83
|
+
"chrono",
|
84
|
+
"half",
|
85
|
+
"hashbrown",
|
86
|
+
"num",
|
87
|
+
]
|
88
|
+
|
89
|
+
[[package]]
|
90
|
+
name = "arrow-buffer"
|
91
|
+
version = "54.0.0"
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
93
|
+
checksum = "fe4a40bdc1552ea10fbdeae4e5a945d8572c32f66bce457b96c13d9c46b80447"
|
94
|
+
dependencies = [
|
95
|
+
"bytes",
|
96
|
+
"half",
|
97
|
+
"num",
|
98
|
+
]
|
99
|
+
|
100
|
+
[[package]]
|
101
|
+
name = "arrow-cast"
|
102
|
+
version = "54.0.0"
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
104
|
+
checksum = "430c0a21aa7f81bcf0f97c57216d7127795ea755f494d27bae2bd233be43c2cc"
|
105
|
+
dependencies = [
|
106
|
+
"arrow-array",
|
107
|
+
"arrow-buffer",
|
108
|
+
"arrow-data",
|
109
|
+
"arrow-schema",
|
110
|
+
"arrow-select",
|
111
|
+
"atoi",
|
112
|
+
"base64",
|
113
|
+
"chrono",
|
114
|
+
"half",
|
115
|
+
"lexical-core",
|
116
|
+
"num",
|
117
|
+
"ryu",
|
118
|
+
]
|
119
|
+
|
120
|
+
[[package]]
|
121
|
+
name = "arrow-data"
|
122
|
+
version = "54.0.0"
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
124
|
+
checksum = "09af476cfbe9879937e50b1334c73189de6039186e025b1b1ac84b283b87b20e"
|
125
|
+
dependencies = [
|
126
|
+
"arrow-buffer",
|
127
|
+
"arrow-schema",
|
128
|
+
"half",
|
129
|
+
"num",
|
130
|
+
]
|
131
|
+
|
132
|
+
[[package]]
|
133
|
+
name = "arrow-ipc"
|
134
|
+
version = "54.0.0"
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
136
|
+
checksum = "136296e8824333a8a4c4a6e508e4aa65d5678b801246d0408825ae7b2523c628"
|
137
|
+
dependencies = [
|
138
|
+
"arrow-array",
|
139
|
+
"arrow-buffer",
|
140
|
+
"arrow-data",
|
141
|
+
"arrow-schema",
|
142
|
+
"flatbuffers",
|
143
|
+
]
|
144
|
+
|
145
|
+
[[package]]
|
146
|
+
name = "arrow-schema"
|
147
|
+
version = "54.0.0"
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
149
|
+
checksum = "3a1822a1a952955637e85e8f9d6b0e04dd75d65492b87ec548dd593d3a1f772b"
|
150
|
+
|
151
|
+
[[package]]
|
152
|
+
name = "arrow-select"
|
153
|
+
version = "54.0.0"
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
155
|
+
checksum = "5c4172e9a12dfe15303d3926269f9ead471ea93bdd067d113abc65cb6c48e246"
|
156
|
+
dependencies = [
|
157
|
+
"ahash",
|
158
|
+
"arrow-array",
|
159
|
+
"arrow-buffer",
|
160
|
+
"arrow-data",
|
161
|
+
"arrow-schema",
|
162
|
+
"num",
|
163
|
+
]
|
164
|
+
|
165
|
+
[[package]]
|
166
|
+
name = "async-trait"
|
167
|
+
version = "0.1.83"
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
169
|
+
checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
|
170
|
+
dependencies = [
|
171
|
+
"proc-macro2",
|
172
|
+
"quote",
|
173
|
+
"syn",
|
174
|
+
]
|
175
|
+
|
176
|
+
[[package]]
|
177
|
+
name = "atoi"
|
178
|
+
version = "2.0.0"
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
180
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
181
|
+
dependencies = [
|
182
|
+
"num-traits",
|
183
|
+
]
|
184
|
+
|
185
|
+
[[package]]
|
186
|
+
name = "autocfg"
|
187
|
+
version = "1.4.0"
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
189
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
190
|
+
|
191
|
+
[[package]]
|
192
|
+
name = "backtrace"
|
193
|
+
version = "0.3.74"
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
195
|
+
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
196
|
+
dependencies = [
|
197
|
+
"addr2line",
|
198
|
+
"cfg-if",
|
199
|
+
"libc",
|
200
|
+
"miniz_oxide",
|
201
|
+
"object",
|
202
|
+
"rustc-demangle",
|
203
|
+
"windows-targets",
|
204
|
+
]
|
205
|
+
|
206
|
+
[[package]]
|
207
|
+
name = "base64"
|
208
|
+
version = "0.22.1"
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
210
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
211
|
+
|
212
|
+
[[package]]
|
213
|
+
name = "bindgen"
|
214
|
+
version = "0.69.5"
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
216
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
217
|
+
dependencies = [
|
218
|
+
"bitflags 2.6.0",
|
219
|
+
"cexpr",
|
220
|
+
"clang-sys",
|
221
|
+
"itertools 0.12.1",
|
222
|
+
"lazy_static",
|
223
|
+
"lazycell",
|
224
|
+
"proc-macro2",
|
225
|
+
"quote",
|
226
|
+
"regex",
|
227
|
+
"rustc-hash",
|
228
|
+
"shlex",
|
229
|
+
"syn",
|
230
|
+
]
|
231
|
+
|
232
|
+
[[package]]
|
233
|
+
name = "bitflags"
|
234
|
+
version = "1.3.2"
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
236
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
237
|
+
|
238
|
+
[[package]]
|
239
|
+
name = "bitflags"
|
240
|
+
version = "2.6.0"
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
242
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
243
|
+
|
244
|
+
[[package]]
|
245
|
+
name = "brotli"
|
246
|
+
version = "7.0.0"
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
248
|
+
checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
|
249
|
+
dependencies = [
|
250
|
+
"alloc-no-stdlib",
|
251
|
+
"alloc-stdlib",
|
252
|
+
"brotli-decompressor",
|
253
|
+
]
|
254
|
+
|
255
|
+
[[package]]
|
256
|
+
name = "brotli-decompressor"
|
257
|
+
version = "4.0.1"
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
259
|
+
checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
|
260
|
+
dependencies = [
|
261
|
+
"alloc-no-stdlib",
|
262
|
+
"alloc-stdlib",
|
263
|
+
]
|
264
|
+
|
265
|
+
[[package]]
|
266
|
+
name = "bumpalo"
|
267
|
+
version = "3.16.0"
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
269
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
270
|
+
|
271
|
+
[[package]]
|
272
|
+
name = "byteorder"
|
273
|
+
version = "1.5.0"
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
275
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
276
|
+
|
277
|
+
[[package]]
|
278
|
+
name = "bytes"
|
279
|
+
version = "1.9.0"
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
281
|
+
checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
|
282
|
+
|
283
|
+
[[package]]
|
284
|
+
name = "cc"
|
285
|
+
version = "1.2.6"
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
287
|
+
checksum = "8d6dbb628b8f8555f86d0323c2eb39e3ec81901f4b83e091db8a6a76d316a333"
|
288
|
+
dependencies = [
|
289
|
+
"jobserver",
|
290
|
+
"libc",
|
291
|
+
"shlex",
|
292
|
+
]
|
293
|
+
|
294
|
+
[[package]]
|
295
|
+
name = "cexpr"
|
296
|
+
version = "0.6.0"
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
298
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
299
|
+
dependencies = [
|
300
|
+
"nom",
|
301
|
+
]
|
302
|
+
|
303
|
+
[[package]]
|
304
|
+
name = "cfg-if"
|
305
|
+
version = "1.0.0"
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
307
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
308
|
+
|
309
|
+
[[package]]
|
310
|
+
name = "chrono"
|
311
|
+
version = "0.4.39"
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
313
|
+
checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
|
314
|
+
dependencies = [
|
315
|
+
"android-tzdata",
|
316
|
+
"iana-time-zone",
|
317
|
+
"num-traits",
|
318
|
+
"windows-targets",
|
319
|
+
]
|
320
|
+
|
321
|
+
[[package]]
|
322
|
+
name = "clang-sys"
|
323
|
+
version = "1.8.1"
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
325
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
326
|
+
dependencies = [
|
327
|
+
"glob",
|
328
|
+
"libc",
|
329
|
+
"libloading",
|
330
|
+
]
|
331
|
+
|
332
|
+
[[package]]
|
333
|
+
name = "const-random"
|
334
|
+
version = "0.1.18"
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
336
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
337
|
+
dependencies = [
|
338
|
+
"const-random-macro",
|
339
|
+
]
|
340
|
+
|
341
|
+
[[package]]
|
342
|
+
name = "const-random-macro"
|
343
|
+
version = "0.1.16"
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
345
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
346
|
+
dependencies = [
|
347
|
+
"getrandom",
|
348
|
+
"once_cell",
|
349
|
+
"tiny-keccak",
|
350
|
+
]
|
351
|
+
|
352
|
+
[[package]]
|
353
|
+
name = "core-foundation-sys"
|
354
|
+
version = "0.8.7"
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
356
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
357
|
+
|
358
|
+
[[package]]
|
359
|
+
name = "crc32fast"
|
360
|
+
version = "1.4.2"
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
362
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
363
|
+
dependencies = [
|
364
|
+
"cfg-if",
|
365
|
+
]
|
366
|
+
|
367
|
+
[[package]]
|
368
|
+
name = "crunchy"
|
369
|
+
version = "0.2.2"
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
371
|
+
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
372
|
+
|
373
|
+
[[package]]
|
374
|
+
name = "displaydoc"
|
375
|
+
version = "0.2.5"
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
377
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
378
|
+
dependencies = [
|
379
|
+
"proc-macro2",
|
380
|
+
"quote",
|
381
|
+
"syn",
|
382
|
+
]
|
383
|
+
|
384
|
+
[[package]]
|
385
|
+
name = "either"
|
386
|
+
version = "1.13.0"
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
388
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
389
|
+
|
390
|
+
[[package]]
|
391
|
+
name = "flatbuffers"
|
392
|
+
version = "24.12.23"
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
394
|
+
checksum = "4f1baf0dbf96932ec9a3038d57900329c015b0bfb7b63d904f3bc27e2b02a096"
|
395
|
+
dependencies = [
|
396
|
+
"bitflags 1.3.2",
|
397
|
+
"rustc_version",
|
398
|
+
]
|
399
|
+
|
400
|
+
[[package]]
|
401
|
+
name = "flate2"
|
402
|
+
version = "1.0.35"
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
404
|
+
checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
|
405
|
+
dependencies = [
|
406
|
+
"crc32fast",
|
407
|
+
"miniz_oxide",
|
408
|
+
]
|
409
|
+
|
410
|
+
[[package]]
|
411
|
+
name = "form_urlencoded"
|
412
|
+
version = "1.2.1"
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
414
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
415
|
+
dependencies = [
|
416
|
+
"percent-encoding",
|
417
|
+
]
|
418
|
+
|
419
|
+
[[package]]
|
420
|
+
name = "futures"
|
421
|
+
version = "0.3.31"
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
423
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
424
|
+
dependencies = [
|
425
|
+
"futures-channel",
|
426
|
+
"futures-core",
|
427
|
+
"futures-executor",
|
428
|
+
"futures-io",
|
429
|
+
"futures-sink",
|
430
|
+
"futures-task",
|
431
|
+
"futures-util",
|
432
|
+
]
|
433
|
+
|
434
|
+
[[package]]
|
435
|
+
name = "futures-channel"
|
436
|
+
version = "0.3.31"
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
438
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
439
|
+
dependencies = [
|
440
|
+
"futures-core",
|
441
|
+
"futures-sink",
|
442
|
+
]
|
443
|
+
|
444
|
+
[[package]]
|
445
|
+
name = "futures-core"
|
446
|
+
version = "0.3.31"
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
448
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
449
|
+
|
450
|
+
[[package]]
|
451
|
+
name = "futures-executor"
|
452
|
+
version = "0.3.31"
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
454
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
455
|
+
dependencies = [
|
456
|
+
"futures-core",
|
457
|
+
"futures-task",
|
458
|
+
"futures-util",
|
459
|
+
]
|
460
|
+
|
461
|
+
[[package]]
|
462
|
+
name = "futures-io"
|
463
|
+
version = "0.3.31"
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
465
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
466
|
+
|
467
|
+
[[package]]
|
468
|
+
name = "futures-macro"
|
469
|
+
version = "0.3.31"
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
471
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
472
|
+
dependencies = [
|
473
|
+
"proc-macro2",
|
474
|
+
"quote",
|
475
|
+
"syn",
|
476
|
+
]
|
477
|
+
|
478
|
+
[[package]]
|
479
|
+
name = "futures-sink"
|
480
|
+
version = "0.3.31"
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
482
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
483
|
+
|
484
|
+
[[package]]
|
485
|
+
name = "futures-task"
|
486
|
+
version = "0.3.31"
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
488
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
489
|
+
|
490
|
+
[[package]]
|
491
|
+
name = "futures-util"
|
492
|
+
version = "0.3.31"
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
494
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
495
|
+
dependencies = [
|
496
|
+
"futures-channel",
|
497
|
+
"futures-core",
|
498
|
+
"futures-io",
|
499
|
+
"futures-macro",
|
500
|
+
"futures-sink",
|
501
|
+
"futures-task",
|
502
|
+
"memchr",
|
503
|
+
"pin-project-lite",
|
504
|
+
"pin-utils",
|
505
|
+
"slab",
|
506
|
+
]
|
507
|
+
|
508
|
+
[[package]]
|
509
|
+
name = "getrandom"
|
510
|
+
version = "0.2.15"
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
512
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
513
|
+
dependencies = [
|
514
|
+
"cfg-if",
|
515
|
+
"libc",
|
516
|
+
"wasi",
|
517
|
+
]
|
518
|
+
|
519
|
+
[[package]]
|
520
|
+
name = "gimli"
|
521
|
+
version = "0.31.1"
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
523
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
524
|
+
|
525
|
+
[[package]]
|
526
|
+
name = "glob"
|
527
|
+
version = "0.3.1"
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
529
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
530
|
+
|
531
|
+
[[package]]
|
532
|
+
name = "half"
|
533
|
+
version = "2.4.1"
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
535
|
+
checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
|
536
|
+
dependencies = [
|
537
|
+
"cfg-if",
|
538
|
+
"crunchy",
|
539
|
+
"num-traits",
|
540
|
+
]
|
541
|
+
|
542
|
+
[[package]]
|
543
|
+
name = "hashbrown"
|
544
|
+
version = "0.15.2"
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
546
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
547
|
+
|
548
|
+
[[package]]
|
549
|
+
name = "heck"
|
550
|
+
version = "0.5.0"
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
552
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
553
|
+
|
554
|
+
[[package]]
|
555
|
+
name = "humantime"
|
556
|
+
version = "2.1.0"
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
558
|
+
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
559
|
+
|
560
|
+
[[package]]
|
561
|
+
name = "iana-time-zone"
|
562
|
+
version = "0.1.61"
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
564
|
+
checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
|
565
|
+
dependencies = [
|
566
|
+
"android_system_properties",
|
567
|
+
"core-foundation-sys",
|
568
|
+
"iana-time-zone-haiku",
|
569
|
+
"js-sys",
|
570
|
+
"wasm-bindgen",
|
571
|
+
"windows-core",
|
572
|
+
]
|
573
|
+
|
574
|
+
[[package]]
|
575
|
+
name = "iana-time-zone-haiku"
|
576
|
+
version = "0.1.2"
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
578
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
579
|
+
dependencies = [
|
580
|
+
"cc",
|
581
|
+
]
|
582
|
+
|
583
|
+
[[package]]
|
584
|
+
name = "icu_collections"
|
585
|
+
version = "1.5.0"
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
587
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
588
|
+
dependencies = [
|
589
|
+
"displaydoc",
|
590
|
+
"yoke",
|
591
|
+
"zerofrom",
|
592
|
+
"zerovec",
|
593
|
+
]
|
594
|
+
|
595
|
+
[[package]]
|
596
|
+
name = "icu_locid"
|
597
|
+
version = "1.5.0"
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
599
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
600
|
+
dependencies = [
|
601
|
+
"displaydoc",
|
602
|
+
"litemap",
|
603
|
+
"tinystr",
|
604
|
+
"writeable",
|
605
|
+
"zerovec",
|
606
|
+
]
|
607
|
+
|
608
|
+
[[package]]
|
609
|
+
name = "icu_locid_transform"
|
610
|
+
version = "1.5.0"
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
612
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
613
|
+
dependencies = [
|
614
|
+
"displaydoc",
|
615
|
+
"icu_locid",
|
616
|
+
"icu_locid_transform_data",
|
617
|
+
"icu_provider",
|
618
|
+
"tinystr",
|
619
|
+
"zerovec",
|
620
|
+
]
|
621
|
+
|
622
|
+
[[package]]
|
623
|
+
name = "icu_locid_transform_data"
|
624
|
+
version = "1.5.0"
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
626
|
+
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
627
|
+
|
628
|
+
[[package]]
|
629
|
+
name = "icu_normalizer"
|
630
|
+
version = "1.5.0"
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
632
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
633
|
+
dependencies = [
|
634
|
+
"displaydoc",
|
635
|
+
"icu_collections",
|
636
|
+
"icu_normalizer_data",
|
637
|
+
"icu_properties",
|
638
|
+
"icu_provider",
|
639
|
+
"smallvec",
|
640
|
+
"utf16_iter",
|
641
|
+
"utf8_iter",
|
642
|
+
"write16",
|
643
|
+
"zerovec",
|
644
|
+
]
|
645
|
+
|
646
|
+
[[package]]
|
647
|
+
name = "icu_normalizer_data"
|
648
|
+
version = "1.5.0"
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
650
|
+
checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
|
651
|
+
|
652
|
+
[[package]]
|
653
|
+
name = "icu_properties"
|
654
|
+
version = "1.5.1"
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
656
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
657
|
+
dependencies = [
|
658
|
+
"displaydoc",
|
659
|
+
"icu_collections",
|
660
|
+
"icu_locid_transform",
|
661
|
+
"icu_properties_data",
|
662
|
+
"icu_provider",
|
663
|
+
"tinystr",
|
664
|
+
"zerovec",
|
665
|
+
]
|
666
|
+
|
667
|
+
[[package]]
|
668
|
+
name = "icu_properties_data"
|
669
|
+
version = "1.5.0"
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
671
|
+
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
|
672
|
+
|
673
|
+
[[package]]
|
674
|
+
name = "icu_provider"
|
675
|
+
version = "1.5.0"
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
677
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
678
|
+
dependencies = [
|
679
|
+
"displaydoc",
|
680
|
+
"icu_locid",
|
681
|
+
"icu_provider_macros",
|
682
|
+
"stable_deref_trait",
|
683
|
+
"tinystr",
|
684
|
+
"writeable",
|
685
|
+
"yoke",
|
686
|
+
"zerofrom",
|
687
|
+
"zerovec",
|
688
|
+
]
|
689
|
+
|
690
|
+
[[package]]
|
691
|
+
name = "icu_provider_macros"
|
692
|
+
version = "1.5.0"
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
694
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
695
|
+
dependencies = [
|
696
|
+
"proc-macro2",
|
697
|
+
"quote",
|
698
|
+
"syn",
|
699
|
+
]
|
700
|
+
|
701
|
+
[[package]]
|
702
|
+
name = "idna"
|
703
|
+
version = "1.0.3"
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
705
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
706
|
+
dependencies = [
|
707
|
+
"idna_adapter",
|
708
|
+
"smallvec",
|
709
|
+
"utf8_iter",
|
710
|
+
]
|
711
|
+
|
712
|
+
[[package]]
|
713
|
+
name = "idna_adapter"
|
714
|
+
version = "1.2.0"
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
716
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
717
|
+
dependencies = [
|
718
|
+
"icu_normalizer",
|
719
|
+
"icu_properties",
|
720
|
+
]
|
721
|
+
|
722
|
+
[[package]]
|
723
|
+
name = "integer-encoding"
|
724
|
+
version = "3.0.4"
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
726
|
+
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
727
|
+
|
728
|
+
[[package]]
|
729
|
+
name = "itertools"
|
730
|
+
version = "0.12.1"
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
732
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
733
|
+
dependencies = [
|
734
|
+
"either",
|
735
|
+
]
|
736
|
+
|
737
|
+
[[package]]
|
738
|
+
name = "itertools"
|
739
|
+
version = "0.13.0"
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
741
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
742
|
+
dependencies = [
|
743
|
+
"either",
|
744
|
+
]
|
745
|
+
|
746
|
+
[[package]]
|
747
|
+
name = "itoa"
|
748
|
+
version = "1.0.14"
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
750
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
751
|
+
|
752
|
+
[[package]]
|
753
|
+
name = "jobserver"
|
754
|
+
version = "0.1.32"
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
756
|
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
757
|
+
dependencies = [
|
758
|
+
"libc",
|
759
|
+
]
|
760
|
+
|
761
|
+
[[package]]
|
762
|
+
name = "js-sys"
|
763
|
+
version = "0.3.76"
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
765
|
+
checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7"
|
766
|
+
dependencies = [
|
767
|
+
"once_cell",
|
768
|
+
"wasm-bindgen",
|
769
|
+
]
|
770
|
+
|
771
|
+
[[package]]
|
772
|
+
name = "kanal"
|
773
|
+
version = "0.1.0-pre8"
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
775
|
+
checksum = "b05d55519627edaf7fd0f29981f6dc03fb52df3f5b257130eb8d0bf2801ea1d7"
|
776
|
+
dependencies = [
|
777
|
+
"futures-core",
|
778
|
+
"lock_api",
|
779
|
+
]
|
780
|
+
|
781
|
+
[[package]]
|
782
|
+
name = "lazy_static"
|
783
|
+
version = "1.5.0"
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
785
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
786
|
+
|
787
|
+
[[package]]
|
788
|
+
name = "lazycell"
|
789
|
+
version = "1.3.0"
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
791
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
792
|
+
|
793
|
+
[[package]]
|
794
|
+
name = "lexical-core"
|
795
|
+
version = "1.0.5"
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
797
|
+
checksum = "b765c31809609075565a70b4b71402281283aeda7ecaf4818ac14a7b2ade8958"
|
798
|
+
dependencies = [
|
799
|
+
"lexical-parse-float",
|
800
|
+
"lexical-parse-integer",
|
801
|
+
"lexical-util",
|
802
|
+
"lexical-write-float",
|
803
|
+
"lexical-write-integer",
|
804
|
+
]
|
805
|
+
|
806
|
+
[[package]]
|
807
|
+
name = "lexical-parse-float"
|
808
|
+
version = "1.0.5"
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
810
|
+
checksum = "de6f9cb01fb0b08060209a057c048fcbab8717b4c1ecd2eac66ebfe39a65b0f2"
|
811
|
+
dependencies = [
|
812
|
+
"lexical-parse-integer",
|
813
|
+
"lexical-util",
|
814
|
+
"static_assertions",
|
815
|
+
]
|
816
|
+
|
817
|
+
[[package]]
|
818
|
+
name = "lexical-parse-integer"
|
819
|
+
version = "1.0.5"
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
821
|
+
checksum = "72207aae22fc0a121ba7b6d479e42cbfea549af1479c3f3a4f12c70dd66df12e"
|
822
|
+
dependencies = [
|
823
|
+
"lexical-util",
|
824
|
+
"static_assertions",
|
825
|
+
]
|
826
|
+
|
827
|
+
[[package]]
|
828
|
+
name = "lexical-util"
|
829
|
+
version = "1.0.6"
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
831
|
+
checksum = "5a82e24bf537fd24c177ffbbdc6ebcc8d54732c35b50a3f28cc3f4e4c949a0b3"
|
832
|
+
dependencies = [
|
833
|
+
"static_assertions",
|
834
|
+
]
|
835
|
+
|
836
|
+
[[package]]
|
837
|
+
name = "lexical-write-float"
|
838
|
+
version = "1.0.5"
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
840
|
+
checksum = "c5afc668a27f460fb45a81a757b6bf2f43c2d7e30cb5a2dcd3abf294c78d62bd"
|
841
|
+
dependencies = [
|
842
|
+
"lexical-util",
|
843
|
+
"lexical-write-integer",
|
844
|
+
"static_assertions",
|
845
|
+
]
|
846
|
+
|
847
|
+
[[package]]
|
848
|
+
name = "lexical-write-integer"
|
849
|
+
version = "1.0.5"
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
851
|
+
checksum = "629ddff1a914a836fb245616a7888b62903aae58fa771e1d83943035efa0f978"
|
852
|
+
dependencies = [
|
853
|
+
"lexical-util",
|
854
|
+
"static_assertions",
|
855
|
+
]
|
856
|
+
|
857
|
+
[[package]]
|
858
|
+
name = "libc"
|
859
|
+
version = "0.2.169"
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
861
|
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
862
|
+
|
863
|
+
[[package]]
|
864
|
+
name = "libloading"
|
865
|
+
version = "0.8.6"
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
867
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
868
|
+
dependencies = [
|
869
|
+
"cfg-if",
|
870
|
+
"windows-targets",
|
871
|
+
]
|
872
|
+
|
873
|
+
[[package]]
|
874
|
+
name = "libm"
|
875
|
+
version = "0.2.11"
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
877
|
+
checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
|
878
|
+
|
879
|
+
[[package]]
|
880
|
+
name = "litemap"
|
881
|
+
version = "0.7.4"
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
883
|
+
checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
|
884
|
+
|
885
|
+
[[package]]
|
886
|
+
name = "lock_api"
|
887
|
+
version = "0.4.12"
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
889
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
890
|
+
dependencies = [
|
891
|
+
"autocfg",
|
892
|
+
"scopeguard",
|
893
|
+
]
|
894
|
+
|
895
|
+
[[package]]
|
896
|
+
name = "log"
|
897
|
+
version = "0.4.22"
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
899
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
900
|
+
|
901
|
+
[[package]]
|
902
|
+
name = "lz4_flex"
|
903
|
+
version = "0.11.3"
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
905
|
+
checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
|
906
|
+
dependencies = [
|
907
|
+
"twox-hash",
|
908
|
+
]
|
909
|
+
|
910
|
+
[[package]]
|
911
|
+
name = "magnus"
|
912
|
+
version = "0.6.4"
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
914
|
+
checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479"
|
915
|
+
dependencies = [
|
916
|
+
"magnus-macros",
|
917
|
+
"rb-sys",
|
918
|
+
"rb-sys-env",
|
919
|
+
"seq-macro",
|
920
|
+
]
|
921
|
+
|
922
|
+
[[package]]
|
923
|
+
name = "magnus"
|
924
|
+
version = "0.7.1"
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
926
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
927
|
+
dependencies = [
|
928
|
+
"magnus-macros",
|
929
|
+
"rb-sys",
|
930
|
+
"rb-sys-env",
|
931
|
+
"seq-macro",
|
932
|
+
]
|
933
|
+
|
934
|
+
[[package]]
|
935
|
+
name = "magnus-macros"
|
936
|
+
version = "0.6.0"
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
938
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
939
|
+
dependencies = [
|
940
|
+
"proc-macro2",
|
941
|
+
"quote",
|
942
|
+
"syn",
|
943
|
+
]
|
944
|
+
|
945
|
+
[[package]]
|
946
|
+
name = "memchr"
|
947
|
+
version = "2.7.4"
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
949
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
950
|
+
|
951
|
+
[[package]]
|
952
|
+
name = "minimal-lexical"
|
953
|
+
version = "0.2.1"
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
955
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
956
|
+
|
957
|
+
[[package]]
|
958
|
+
name = "miniz_oxide"
|
959
|
+
version = "0.8.2"
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
961
|
+
checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394"
|
962
|
+
dependencies = [
|
963
|
+
"adler2",
|
964
|
+
]
|
965
|
+
|
966
|
+
[[package]]
|
967
|
+
name = "nom"
|
968
|
+
version = "7.1.3"
|
969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
970
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
971
|
+
dependencies = [
|
972
|
+
"memchr",
|
973
|
+
"minimal-lexical",
|
974
|
+
]
|
975
|
+
|
976
|
+
[[package]]
|
977
|
+
name = "num"
|
978
|
+
version = "0.4.3"
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
980
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
981
|
+
dependencies = [
|
982
|
+
"num-bigint",
|
983
|
+
"num-complex",
|
984
|
+
"num-integer",
|
985
|
+
"num-iter",
|
986
|
+
"num-rational",
|
987
|
+
"num-traits",
|
988
|
+
]
|
989
|
+
|
990
|
+
[[package]]
|
991
|
+
name = "num-bigint"
|
992
|
+
version = "0.4.6"
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
994
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
995
|
+
dependencies = [
|
996
|
+
"num-integer",
|
997
|
+
"num-traits",
|
998
|
+
]
|
999
|
+
|
1000
|
+
[[package]]
|
1001
|
+
name = "num-complex"
|
1002
|
+
version = "0.4.6"
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1004
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
1005
|
+
dependencies = [
|
1006
|
+
"num-traits",
|
1007
|
+
]
|
1008
|
+
|
1009
|
+
[[package]]
|
1010
|
+
name = "num-integer"
|
1011
|
+
version = "0.1.46"
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1013
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
1014
|
+
dependencies = [
|
1015
|
+
"num-traits",
|
1016
|
+
]
|
1017
|
+
|
1018
|
+
[[package]]
|
1019
|
+
name = "num-iter"
|
1020
|
+
version = "0.1.45"
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1022
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
1023
|
+
dependencies = [
|
1024
|
+
"autocfg",
|
1025
|
+
"num-integer",
|
1026
|
+
"num-traits",
|
1027
|
+
]
|
1028
|
+
|
1029
|
+
[[package]]
|
1030
|
+
name = "num-rational"
|
1031
|
+
version = "0.4.2"
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1033
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
1034
|
+
dependencies = [
|
1035
|
+
"num-bigint",
|
1036
|
+
"num-integer",
|
1037
|
+
"num-traits",
|
1038
|
+
]
|
1039
|
+
|
1040
|
+
[[package]]
|
1041
|
+
name = "num-traits"
|
1042
|
+
version = "0.2.19"
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1044
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
1045
|
+
dependencies = [
|
1046
|
+
"autocfg",
|
1047
|
+
"libm",
|
1048
|
+
]
|
1049
|
+
|
1050
|
+
[[package]]
|
1051
|
+
name = "object"
|
1052
|
+
version = "0.36.7"
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1054
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
1055
|
+
dependencies = [
|
1056
|
+
"memchr",
|
1057
|
+
]
|
1058
|
+
|
1059
|
+
[[package]]
|
1060
|
+
name = "object_store"
|
1061
|
+
version = "0.11.2"
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1063
|
+
checksum = "3cfccb68961a56facde1163f9319e0d15743352344e7808a11795fb99698dcaf"
|
1064
|
+
dependencies = [
|
1065
|
+
"async-trait",
|
1066
|
+
"bytes",
|
1067
|
+
"chrono",
|
1068
|
+
"futures",
|
1069
|
+
"humantime",
|
1070
|
+
"itertools 0.13.0",
|
1071
|
+
"parking_lot",
|
1072
|
+
"percent-encoding",
|
1073
|
+
"snafu",
|
1074
|
+
"tokio",
|
1075
|
+
"tracing",
|
1076
|
+
"url",
|
1077
|
+
"walkdir",
|
1078
|
+
]
|
1079
|
+
|
1080
|
+
[[package]]
|
1081
|
+
name = "once_cell"
|
1082
|
+
version = "1.20.2"
|
1083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1084
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
1085
|
+
|
1086
|
+
[[package]]
|
1087
|
+
name = "ordered-float"
|
1088
|
+
version = "2.10.1"
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1090
|
+
checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
|
1091
|
+
dependencies = [
|
1092
|
+
"num-traits",
|
1093
|
+
]
|
1094
|
+
|
1095
|
+
[[package]]
|
1096
|
+
name = "parking_lot"
|
1097
|
+
version = "0.12.3"
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1099
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
1100
|
+
dependencies = [
|
1101
|
+
"lock_api",
|
1102
|
+
"parking_lot_core",
|
1103
|
+
]
|
1104
|
+
|
1105
|
+
[[package]]
|
1106
|
+
name = "parking_lot_core"
|
1107
|
+
version = "0.9.10"
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1109
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
1110
|
+
dependencies = [
|
1111
|
+
"cfg-if",
|
1112
|
+
"libc",
|
1113
|
+
"redox_syscall",
|
1114
|
+
"smallvec",
|
1115
|
+
"windows-targets",
|
1116
|
+
]
|
1117
|
+
|
1118
|
+
[[package]]
|
1119
|
+
name = "parquet"
|
1120
|
+
version = "0.1.0"
|
1121
|
+
dependencies = [
|
1122
|
+
"bytes",
|
1123
|
+
"kanal",
|
1124
|
+
"magnus 0.7.1",
|
1125
|
+
"parquet 54.0.0",
|
1126
|
+
"rb-sys",
|
1127
|
+
"serde",
|
1128
|
+
"serde_magnus",
|
1129
|
+
"thiserror",
|
1130
|
+
"xxhash-rust",
|
1131
|
+
]
|
1132
|
+
|
1133
|
+
[[package]]
|
1134
|
+
name = "parquet"
|
1135
|
+
version = "54.0.0"
|
1136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1137
|
+
checksum = "3334c50239d9f4951653d84fa6f636da86f53742e5e5849a30fbe852f3ff4383"
|
1138
|
+
dependencies = [
|
1139
|
+
"ahash",
|
1140
|
+
"arrow-array",
|
1141
|
+
"arrow-buffer",
|
1142
|
+
"arrow-cast",
|
1143
|
+
"arrow-data",
|
1144
|
+
"arrow-ipc",
|
1145
|
+
"arrow-schema",
|
1146
|
+
"arrow-select",
|
1147
|
+
"base64",
|
1148
|
+
"brotli",
|
1149
|
+
"bytes",
|
1150
|
+
"chrono",
|
1151
|
+
"flate2",
|
1152
|
+
"futures",
|
1153
|
+
"half",
|
1154
|
+
"hashbrown",
|
1155
|
+
"lz4_flex",
|
1156
|
+
"num",
|
1157
|
+
"num-bigint",
|
1158
|
+
"object_store",
|
1159
|
+
"paste",
|
1160
|
+
"seq-macro",
|
1161
|
+
"serde_json",
|
1162
|
+
"snap",
|
1163
|
+
"thrift",
|
1164
|
+
"tokio",
|
1165
|
+
"twox-hash",
|
1166
|
+
"zstd",
|
1167
|
+
"zstd-sys",
|
1168
|
+
]
|
1169
|
+
|
1170
|
+
[[package]]
|
1171
|
+
name = "paste"
|
1172
|
+
version = "1.0.15"
|
1173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1174
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
1175
|
+
|
1176
|
+
[[package]]
|
1177
|
+
name = "percent-encoding"
|
1178
|
+
version = "2.3.1"
|
1179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1180
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
1181
|
+
|
1182
|
+
[[package]]
|
1183
|
+
name = "pin-project-lite"
|
1184
|
+
version = "0.2.15"
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1186
|
+
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
|
1187
|
+
|
1188
|
+
[[package]]
|
1189
|
+
name = "pin-utils"
|
1190
|
+
version = "0.1.0"
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1192
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1193
|
+
|
1194
|
+
[[package]]
|
1195
|
+
name = "pkg-config"
|
1196
|
+
version = "0.3.31"
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1198
|
+
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
1199
|
+
|
1200
|
+
[[package]]
|
1201
|
+
name = "proc-macro2"
|
1202
|
+
version = "1.0.92"
|
1203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1204
|
+
checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
|
1205
|
+
dependencies = [
|
1206
|
+
"unicode-ident",
|
1207
|
+
]
|
1208
|
+
|
1209
|
+
[[package]]
|
1210
|
+
name = "quote"
|
1211
|
+
version = "1.0.37"
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1213
|
+
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
|
1214
|
+
dependencies = [
|
1215
|
+
"proc-macro2",
|
1216
|
+
]
|
1217
|
+
|
1218
|
+
[[package]]
|
1219
|
+
name = "rb-sys"
|
1220
|
+
version = "0.9.104"
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1222
|
+
checksum = "e2e26425f064a90404ed5e33fee2137b02a9c6d1c83e19394f4d8a476b9d76a2"
|
1223
|
+
dependencies = [
|
1224
|
+
"rb-sys-build",
|
1225
|
+
]
|
1226
|
+
|
1227
|
+
[[package]]
|
1228
|
+
name = "rb-sys-build"
|
1229
|
+
version = "0.9.104"
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1231
|
+
checksum = "c9802c9003c5648ee0a067e9aa8960d402d5f764f682f93c1ed49eec72f6d7fc"
|
1232
|
+
dependencies = [
|
1233
|
+
"bindgen",
|
1234
|
+
"lazy_static",
|
1235
|
+
"proc-macro2",
|
1236
|
+
"quote",
|
1237
|
+
"regex",
|
1238
|
+
"shell-words",
|
1239
|
+
"syn",
|
1240
|
+
]
|
1241
|
+
|
1242
|
+
[[package]]
|
1243
|
+
name = "rb-sys-env"
|
1244
|
+
version = "0.1.2"
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1246
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
1247
|
+
|
1248
|
+
[[package]]
|
1249
|
+
name = "redox_syscall"
|
1250
|
+
version = "0.5.8"
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1252
|
+
checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
|
1253
|
+
dependencies = [
|
1254
|
+
"bitflags 2.6.0",
|
1255
|
+
]
|
1256
|
+
|
1257
|
+
[[package]]
|
1258
|
+
name = "regex"
|
1259
|
+
version = "1.11.1"
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1261
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
1262
|
+
dependencies = [
|
1263
|
+
"aho-corasick",
|
1264
|
+
"memchr",
|
1265
|
+
"regex-automata",
|
1266
|
+
"regex-syntax",
|
1267
|
+
]
|
1268
|
+
|
1269
|
+
[[package]]
|
1270
|
+
name = "regex-automata"
|
1271
|
+
version = "0.4.9"
|
1272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1273
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
1274
|
+
dependencies = [
|
1275
|
+
"aho-corasick",
|
1276
|
+
"memchr",
|
1277
|
+
"regex-syntax",
|
1278
|
+
]
|
1279
|
+
|
1280
|
+
[[package]]
|
1281
|
+
name = "regex-syntax"
|
1282
|
+
version = "0.8.5"
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1284
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
1285
|
+
|
1286
|
+
[[package]]
|
1287
|
+
name = "rustc-demangle"
|
1288
|
+
version = "0.1.24"
|
1289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1290
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
1291
|
+
|
1292
|
+
[[package]]
|
1293
|
+
name = "rustc-hash"
|
1294
|
+
version = "1.1.0"
|
1295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1296
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1297
|
+
|
1298
|
+
[[package]]
|
1299
|
+
name = "rustc_version"
|
1300
|
+
version = "0.4.1"
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1302
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
1303
|
+
dependencies = [
|
1304
|
+
"semver",
|
1305
|
+
]
|
1306
|
+
|
1307
|
+
[[package]]
|
1308
|
+
name = "ryu"
|
1309
|
+
version = "1.0.18"
|
1310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1311
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
1312
|
+
|
1313
|
+
[[package]]
|
1314
|
+
name = "same-file"
|
1315
|
+
version = "1.0.6"
|
1316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1317
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
1318
|
+
dependencies = [
|
1319
|
+
"winapi-util",
|
1320
|
+
]
|
1321
|
+
|
1322
|
+
[[package]]
|
1323
|
+
name = "scopeguard"
|
1324
|
+
version = "1.2.0"
|
1325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1326
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1327
|
+
|
1328
|
+
[[package]]
|
1329
|
+
name = "semver"
|
1330
|
+
version = "1.0.24"
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1332
|
+
checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba"
|
1333
|
+
|
1334
|
+
[[package]]
|
1335
|
+
name = "seq-macro"
|
1336
|
+
version = "0.3.5"
|
1337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1338
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
1339
|
+
|
1340
|
+
[[package]]
|
1341
|
+
name = "serde"
|
1342
|
+
version = "1.0.216"
|
1343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1344
|
+
checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e"
|
1345
|
+
dependencies = [
|
1346
|
+
"serde_derive",
|
1347
|
+
]
|
1348
|
+
|
1349
|
+
[[package]]
|
1350
|
+
name = "serde_derive"
|
1351
|
+
version = "1.0.216"
|
1352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1353
|
+
checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e"
|
1354
|
+
dependencies = [
|
1355
|
+
"proc-macro2",
|
1356
|
+
"quote",
|
1357
|
+
"syn",
|
1358
|
+
]
|
1359
|
+
|
1360
|
+
[[package]]
|
1361
|
+
name = "serde_json"
|
1362
|
+
version = "1.0.133"
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1364
|
+
checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
|
1365
|
+
dependencies = [
|
1366
|
+
"itoa",
|
1367
|
+
"memchr",
|
1368
|
+
"ryu",
|
1369
|
+
"serde",
|
1370
|
+
]
|
1371
|
+
|
1372
|
+
[[package]]
|
1373
|
+
name = "serde_magnus"
|
1374
|
+
version = "0.8.1"
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1376
|
+
checksum = "76c20da583b5e1016e9199ef5f3260f7a8d1b253307d232600f6b12737262dbd"
|
1377
|
+
dependencies = [
|
1378
|
+
"magnus 0.6.4",
|
1379
|
+
"serde",
|
1380
|
+
"tap",
|
1381
|
+
]
|
1382
|
+
|
1383
|
+
[[package]]
|
1384
|
+
name = "shell-words"
|
1385
|
+
version = "1.1.0"
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1387
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
1388
|
+
|
1389
|
+
[[package]]
|
1390
|
+
name = "shlex"
|
1391
|
+
version = "1.3.0"
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1393
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
1394
|
+
|
1395
|
+
[[package]]
|
1396
|
+
name = "slab"
|
1397
|
+
version = "0.4.9"
|
1398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1399
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
1400
|
+
dependencies = [
|
1401
|
+
"autocfg",
|
1402
|
+
]
|
1403
|
+
|
1404
|
+
[[package]]
|
1405
|
+
name = "smallvec"
|
1406
|
+
version = "1.13.2"
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1408
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
1409
|
+
|
1410
|
+
[[package]]
|
1411
|
+
name = "snafu"
|
1412
|
+
version = "0.8.5"
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1414
|
+
checksum = "223891c85e2a29c3fe8fb900c1fae5e69c2e42415e3177752e8718475efa5019"
|
1415
|
+
dependencies = [
|
1416
|
+
"snafu-derive",
|
1417
|
+
]
|
1418
|
+
|
1419
|
+
[[package]]
|
1420
|
+
name = "snafu-derive"
|
1421
|
+
version = "0.8.5"
|
1422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1423
|
+
checksum = "03c3c6b7927ffe7ecaa769ee0e3994da3b8cafc8f444578982c83ecb161af917"
|
1424
|
+
dependencies = [
|
1425
|
+
"heck",
|
1426
|
+
"proc-macro2",
|
1427
|
+
"quote",
|
1428
|
+
"syn",
|
1429
|
+
]
|
1430
|
+
|
1431
|
+
[[package]]
|
1432
|
+
name = "snap"
|
1433
|
+
version = "1.1.1"
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1435
|
+
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
1436
|
+
|
1437
|
+
[[package]]
|
1438
|
+
name = "stable_deref_trait"
|
1439
|
+
version = "1.2.0"
|
1440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1441
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
1442
|
+
|
1443
|
+
[[package]]
|
1444
|
+
name = "static_assertions"
|
1445
|
+
version = "1.1.0"
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1447
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
1448
|
+
|
1449
|
+
[[package]]
|
1450
|
+
name = "syn"
|
1451
|
+
version = "2.0.91"
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1453
|
+
checksum = "d53cbcb5a243bd33b7858b1d7f4aca2153490815872d86d955d6ea29f743c035"
|
1454
|
+
dependencies = [
|
1455
|
+
"proc-macro2",
|
1456
|
+
"quote",
|
1457
|
+
"unicode-ident",
|
1458
|
+
]
|
1459
|
+
|
1460
|
+
[[package]]
|
1461
|
+
name = "synstructure"
|
1462
|
+
version = "0.13.1"
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1464
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
1465
|
+
dependencies = [
|
1466
|
+
"proc-macro2",
|
1467
|
+
"quote",
|
1468
|
+
"syn",
|
1469
|
+
]
|
1470
|
+
|
1471
|
+
[[package]]
|
1472
|
+
name = "tap"
|
1473
|
+
version = "1.0.1"
|
1474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1475
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
1476
|
+
|
1477
|
+
[[package]]
|
1478
|
+
name = "thiserror"
|
1479
|
+
version = "2.0.9"
|
1480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1481
|
+
checksum = "f072643fd0190df67a8bab670c20ef5d8737177d6ac6b2e9a236cb096206b2cc"
|
1482
|
+
dependencies = [
|
1483
|
+
"thiserror-impl",
|
1484
|
+
]
|
1485
|
+
|
1486
|
+
[[package]]
|
1487
|
+
name = "thiserror-impl"
|
1488
|
+
version = "2.0.9"
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1490
|
+
checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4"
|
1491
|
+
dependencies = [
|
1492
|
+
"proc-macro2",
|
1493
|
+
"quote",
|
1494
|
+
"syn",
|
1495
|
+
]
|
1496
|
+
|
1497
|
+
[[package]]
|
1498
|
+
name = "thrift"
|
1499
|
+
version = "0.17.0"
|
1500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1501
|
+
checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
|
1502
|
+
dependencies = [
|
1503
|
+
"byteorder",
|
1504
|
+
"integer-encoding",
|
1505
|
+
"ordered-float",
|
1506
|
+
]
|
1507
|
+
|
1508
|
+
[[package]]
|
1509
|
+
name = "tiny-keccak"
|
1510
|
+
version = "2.0.2"
|
1511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1512
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
1513
|
+
dependencies = [
|
1514
|
+
"crunchy",
|
1515
|
+
]
|
1516
|
+
|
1517
|
+
[[package]]
|
1518
|
+
name = "tinystr"
|
1519
|
+
version = "0.7.6"
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1521
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
1522
|
+
dependencies = [
|
1523
|
+
"displaydoc",
|
1524
|
+
"zerovec",
|
1525
|
+
]
|
1526
|
+
|
1527
|
+
[[package]]
|
1528
|
+
name = "tokio"
|
1529
|
+
version = "1.42.0"
|
1530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1531
|
+
checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551"
|
1532
|
+
dependencies = [
|
1533
|
+
"backtrace",
|
1534
|
+
"bytes",
|
1535
|
+
"pin-project-lite",
|
1536
|
+
"tokio-macros",
|
1537
|
+
]
|
1538
|
+
|
1539
|
+
[[package]]
|
1540
|
+
name = "tokio-macros"
|
1541
|
+
version = "2.4.0"
|
1542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1543
|
+
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
|
1544
|
+
dependencies = [
|
1545
|
+
"proc-macro2",
|
1546
|
+
"quote",
|
1547
|
+
"syn",
|
1548
|
+
]
|
1549
|
+
|
1550
|
+
[[package]]
|
1551
|
+
name = "tracing"
|
1552
|
+
version = "0.1.41"
|
1553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1554
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
1555
|
+
dependencies = [
|
1556
|
+
"pin-project-lite",
|
1557
|
+
"tracing-attributes",
|
1558
|
+
"tracing-core",
|
1559
|
+
]
|
1560
|
+
|
1561
|
+
[[package]]
|
1562
|
+
name = "tracing-attributes"
|
1563
|
+
version = "0.1.28"
|
1564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1565
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
1566
|
+
dependencies = [
|
1567
|
+
"proc-macro2",
|
1568
|
+
"quote",
|
1569
|
+
"syn",
|
1570
|
+
]
|
1571
|
+
|
1572
|
+
[[package]]
|
1573
|
+
name = "tracing-core"
|
1574
|
+
version = "0.1.33"
|
1575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1576
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
1577
|
+
dependencies = [
|
1578
|
+
"once_cell",
|
1579
|
+
]
|
1580
|
+
|
1581
|
+
[[package]]
|
1582
|
+
name = "twox-hash"
|
1583
|
+
version = "1.6.3"
|
1584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1585
|
+
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
|
1586
|
+
dependencies = [
|
1587
|
+
"cfg-if",
|
1588
|
+
"static_assertions",
|
1589
|
+
]
|
1590
|
+
|
1591
|
+
[[package]]
|
1592
|
+
name = "unicode-ident"
|
1593
|
+
version = "1.0.14"
|
1594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1595
|
+
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
|
1596
|
+
|
1597
|
+
[[package]]
|
1598
|
+
name = "url"
|
1599
|
+
version = "2.5.4"
|
1600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1601
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
1602
|
+
dependencies = [
|
1603
|
+
"form_urlencoded",
|
1604
|
+
"idna",
|
1605
|
+
"percent-encoding",
|
1606
|
+
]
|
1607
|
+
|
1608
|
+
[[package]]
|
1609
|
+
name = "utf16_iter"
|
1610
|
+
version = "1.0.5"
|
1611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1612
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
1613
|
+
|
1614
|
+
[[package]]
|
1615
|
+
name = "utf8_iter"
|
1616
|
+
version = "1.0.4"
|
1617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1618
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
1619
|
+
|
1620
|
+
[[package]]
|
1621
|
+
name = "version_check"
|
1622
|
+
version = "0.9.5"
|
1623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1624
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
1625
|
+
|
1626
|
+
[[package]]
|
1627
|
+
name = "walkdir"
|
1628
|
+
version = "2.5.0"
|
1629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1630
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
1631
|
+
dependencies = [
|
1632
|
+
"same-file",
|
1633
|
+
"winapi-util",
|
1634
|
+
]
|
1635
|
+
|
1636
|
+
[[package]]
|
1637
|
+
name = "wasi"
|
1638
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
1639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1640
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
1641
|
+
|
1642
|
+
[[package]]
|
1643
|
+
name = "wasm-bindgen"
|
1644
|
+
version = "0.2.99"
|
1645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1646
|
+
checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
|
1647
|
+
dependencies = [
|
1648
|
+
"cfg-if",
|
1649
|
+
"once_cell",
|
1650
|
+
"wasm-bindgen-macro",
|
1651
|
+
]
|
1652
|
+
|
1653
|
+
[[package]]
|
1654
|
+
name = "wasm-bindgen-backend"
|
1655
|
+
version = "0.2.99"
|
1656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1657
|
+
checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
|
1658
|
+
dependencies = [
|
1659
|
+
"bumpalo",
|
1660
|
+
"log",
|
1661
|
+
"proc-macro2",
|
1662
|
+
"quote",
|
1663
|
+
"syn",
|
1664
|
+
"wasm-bindgen-shared",
|
1665
|
+
]
|
1666
|
+
|
1667
|
+
[[package]]
|
1668
|
+
name = "wasm-bindgen-macro"
|
1669
|
+
version = "0.2.99"
|
1670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1671
|
+
checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
|
1672
|
+
dependencies = [
|
1673
|
+
"quote",
|
1674
|
+
"wasm-bindgen-macro-support",
|
1675
|
+
]
|
1676
|
+
|
1677
|
+
[[package]]
|
1678
|
+
name = "wasm-bindgen-macro-support"
|
1679
|
+
version = "0.2.99"
|
1680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1681
|
+
checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
|
1682
|
+
dependencies = [
|
1683
|
+
"proc-macro2",
|
1684
|
+
"quote",
|
1685
|
+
"syn",
|
1686
|
+
"wasm-bindgen-backend",
|
1687
|
+
"wasm-bindgen-shared",
|
1688
|
+
]
|
1689
|
+
|
1690
|
+
[[package]]
|
1691
|
+
name = "wasm-bindgen-shared"
|
1692
|
+
version = "0.2.99"
|
1693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1694
|
+
checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
|
1695
|
+
|
1696
|
+
[[package]]
|
1697
|
+
name = "winapi-util"
|
1698
|
+
version = "0.1.9"
|
1699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1700
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
1701
|
+
dependencies = [
|
1702
|
+
"windows-sys",
|
1703
|
+
]
|
1704
|
+
|
1705
|
+
[[package]]
|
1706
|
+
name = "windows-core"
|
1707
|
+
version = "0.52.0"
|
1708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1709
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
1710
|
+
dependencies = [
|
1711
|
+
"windows-targets",
|
1712
|
+
]
|
1713
|
+
|
1714
|
+
[[package]]
|
1715
|
+
name = "windows-sys"
|
1716
|
+
version = "0.59.0"
|
1717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1718
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
1719
|
+
dependencies = [
|
1720
|
+
"windows-targets",
|
1721
|
+
]
|
1722
|
+
|
1723
|
+
[[package]]
|
1724
|
+
name = "windows-targets"
|
1725
|
+
version = "0.52.6"
|
1726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1727
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
1728
|
+
dependencies = [
|
1729
|
+
"windows_aarch64_gnullvm",
|
1730
|
+
"windows_aarch64_msvc",
|
1731
|
+
"windows_i686_gnu",
|
1732
|
+
"windows_i686_gnullvm",
|
1733
|
+
"windows_i686_msvc",
|
1734
|
+
"windows_x86_64_gnu",
|
1735
|
+
"windows_x86_64_gnullvm",
|
1736
|
+
"windows_x86_64_msvc",
|
1737
|
+
]
|
1738
|
+
|
1739
|
+
[[package]]
|
1740
|
+
name = "windows_aarch64_gnullvm"
|
1741
|
+
version = "0.52.6"
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1743
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
1744
|
+
|
1745
|
+
[[package]]
|
1746
|
+
name = "windows_aarch64_msvc"
|
1747
|
+
version = "0.52.6"
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1749
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
1750
|
+
|
1751
|
+
[[package]]
|
1752
|
+
name = "windows_i686_gnu"
|
1753
|
+
version = "0.52.6"
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1755
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
1756
|
+
|
1757
|
+
[[package]]
|
1758
|
+
name = "windows_i686_gnullvm"
|
1759
|
+
version = "0.52.6"
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1761
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
1762
|
+
|
1763
|
+
[[package]]
|
1764
|
+
name = "windows_i686_msvc"
|
1765
|
+
version = "0.52.6"
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1767
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1768
|
+
|
1769
|
+
[[package]]
|
1770
|
+
name = "windows_x86_64_gnu"
|
1771
|
+
version = "0.52.6"
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1773
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1774
|
+
|
1775
|
+
[[package]]
|
1776
|
+
name = "windows_x86_64_gnullvm"
|
1777
|
+
version = "0.52.6"
|
1778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1779
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
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 = "write16"
|
1789
|
+
version = "1.0.0"
|
1790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1791
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
1792
|
+
|
1793
|
+
[[package]]
|
1794
|
+
name = "writeable"
|
1795
|
+
version = "0.5.5"
|
1796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1797
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
1798
|
+
|
1799
|
+
[[package]]
|
1800
|
+
name = "xxhash-rust"
|
1801
|
+
version = "0.8.14"
|
1802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1803
|
+
checksum = "d7d48f1b18be023c95e7b75f481cac649d74be7c507ff4a407c55cfb957f7934"
|
1804
|
+
|
1805
|
+
[[package]]
|
1806
|
+
name = "yoke"
|
1807
|
+
version = "0.7.5"
|
1808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1809
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
1810
|
+
dependencies = [
|
1811
|
+
"serde",
|
1812
|
+
"stable_deref_trait",
|
1813
|
+
"yoke-derive",
|
1814
|
+
"zerofrom",
|
1815
|
+
]
|
1816
|
+
|
1817
|
+
[[package]]
|
1818
|
+
name = "yoke-derive"
|
1819
|
+
version = "0.7.5"
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1821
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
1822
|
+
dependencies = [
|
1823
|
+
"proc-macro2",
|
1824
|
+
"quote",
|
1825
|
+
"syn",
|
1826
|
+
"synstructure",
|
1827
|
+
]
|
1828
|
+
|
1829
|
+
[[package]]
|
1830
|
+
name = "zerocopy"
|
1831
|
+
version = "0.7.35"
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1833
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
1834
|
+
dependencies = [
|
1835
|
+
"zerocopy-derive",
|
1836
|
+
]
|
1837
|
+
|
1838
|
+
[[package]]
|
1839
|
+
name = "zerocopy-derive"
|
1840
|
+
version = "0.7.35"
|
1841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1842
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
1843
|
+
dependencies = [
|
1844
|
+
"proc-macro2",
|
1845
|
+
"quote",
|
1846
|
+
"syn",
|
1847
|
+
]
|
1848
|
+
|
1849
|
+
[[package]]
|
1850
|
+
name = "zerofrom"
|
1851
|
+
version = "0.1.5"
|
1852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1853
|
+
checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
|
1854
|
+
dependencies = [
|
1855
|
+
"zerofrom-derive",
|
1856
|
+
]
|
1857
|
+
|
1858
|
+
[[package]]
|
1859
|
+
name = "zerofrom-derive"
|
1860
|
+
version = "0.1.5"
|
1861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1862
|
+
checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
|
1863
|
+
dependencies = [
|
1864
|
+
"proc-macro2",
|
1865
|
+
"quote",
|
1866
|
+
"syn",
|
1867
|
+
"synstructure",
|
1868
|
+
]
|
1869
|
+
|
1870
|
+
[[package]]
|
1871
|
+
name = "zerovec"
|
1872
|
+
version = "0.10.4"
|
1873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1874
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
1875
|
+
dependencies = [
|
1876
|
+
"yoke",
|
1877
|
+
"zerofrom",
|
1878
|
+
"zerovec-derive",
|
1879
|
+
]
|
1880
|
+
|
1881
|
+
[[package]]
|
1882
|
+
name = "zerovec-derive"
|
1883
|
+
version = "0.10.3"
|
1884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1885
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
1886
|
+
dependencies = [
|
1887
|
+
"proc-macro2",
|
1888
|
+
"quote",
|
1889
|
+
"syn",
|
1890
|
+
]
|
1891
|
+
|
1892
|
+
[[package]]
|
1893
|
+
name = "zstd"
|
1894
|
+
version = "0.13.2"
|
1895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1896
|
+
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
1897
|
+
dependencies = [
|
1898
|
+
"zstd-safe",
|
1899
|
+
]
|
1900
|
+
|
1901
|
+
[[package]]
|
1902
|
+
name = "zstd-safe"
|
1903
|
+
version = "7.2.1"
|
1904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1905
|
+
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
|
1906
|
+
dependencies = [
|
1907
|
+
"zstd-sys",
|
1908
|
+
]
|
1909
|
+
|
1910
|
+
[[package]]
|
1911
|
+
name = "zstd-sys"
|
1912
|
+
version = "2.0.13+zstd.1.5.6"
|
1913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1914
|
+
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
|
1915
|
+
dependencies = [
|
1916
|
+
"cc",
|
1917
|
+
"pkg-config",
|
1918
|
+
]
|