pcodec 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pcodec-0.0.0/Cargo.lock +1872 -0
- pcodec-0.0.0/Cargo.toml +9 -0
- pcodec-0.0.0/PKG-INFO +9 -0
- pcodec-0.0.0/better_io/Cargo.toml +14 -0
- pcodec-0.0.0/better_io/README.md +13 -0
- pcodec-0.0.0/better_io/src/buf_read.rs +91 -0
- pcodec-0.0.0/better_io/src/buf_reader.rs +179 -0
- pcodec-0.0.0/better_io/src/lib.rs +5 -0
- pcodec-0.0.0/pco/Cargo.toml +21 -0
- pcodec-0.0.0/pco/README.md +78 -0
- pcodec-0.0.0/pco/src/ans/decoding.rs +56 -0
- pcodec-0.0.0/pco/src/ans/encoding.rs +216 -0
- pcodec-0.0.0/pco/src/ans/mod.rs +114 -0
- pcodec-0.0.0/pco/src/ans/spec.rs +108 -0
- pcodec-0.0.0/pco/src/auto.rs +66 -0
- pcodec-0.0.0/pco/src/bin.rs +67 -0
- pcodec-0.0.0/pco/src/bin_optimization.rs +180 -0
- pcodec-0.0.0/pco/src/bit_reader.rs +340 -0
- pcodec-0.0.0/pco/src/bit_writer.rs +195 -0
- pcodec-0.0.0/pco/src/bits.rs +51 -0
- pcodec-0.0.0/pco/src/chunk_config.rs +209 -0
- pcodec-0.0.0/pco/src/chunk_meta.rs +290 -0
- pcodec-0.0.0/pco/src/compression_intermediates.rs +27 -0
- pcodec-0.0.0/pco/src/compression_table.rs +32 -0
- pcodec-0.0.0/pco/src/constants.rs +81 -0
- pcodec-0.0.0/pco/src/data_types/floats.rs +122 -0
- pcodec-0.0.0/pco/src/data_types/mod.rs +179 -0
- pcodec-0.0.0/pco/src/data_types/signeds.rs +34 -0
- pcodec-0.0.0/pco/src/data_types/unsigneds.rs +223 -0
- pcodec-0.0.0/pco/src/delta.rs +128 -0
- pcodec-0.0.0/pco/src/errors.rs +81 -0
- pcodec-0.0.0/pco/src/float_mult_utils.rs +536 -0
- pcodec-0.0.0/pco/src/format_version.rs +49 -0
- pcodec-0.0.0/pco/src/int_mult_utils.rs +272 -0
- pcodec-0.0.0/pco/src/latent_batch_decompressor.rs +243 -0
- pcodec-0.0.0/pco/src/latent_batch_dissector.rs +138 -0
- pcodec-0.0.0/pco/src/lib.rs +50 -0
- pcodec-0.0.0/pco/src/mode.rs +74 -0
- pcodec-0.0.0/pco/src/page_meta.rs +80 -0
- pcodec-0.0.0/pco/src/progress.rs +12 -0
- pcodec-0.0.0/pco/src/read_write_uint.rs +83 -0
- pcodec-0.0.0/pco/src/sampling.rs +104 -0
- pcodec-0.0.0/pco/src/standalone/compressor.rs +145 -0
- pcodec-0.0.0/pco/src/standalone/constants.rs +24 -0
- pcodec-0.0.0/pco/src/standalone/decompressor.rs +209 -0
- pcodec-0.0.0/pco/src/standalone/mod.rs +8 -0
- pcodec-0.0.0/pco/src/standalone/simple.rs +169 -0
- pcodec-0.0.0/pco/src/tests/compatibility.rs +132 -0
- pcodec-0.0.0/pco/src/tests/low_level.rs +129 -0
- pcodec-0.0.0/pco/src/tests/mod.rs +4 -0
- pcodec-0.0.0/pco/src/tests/recovery.rs +319 -0
- pcodec-0.0.0/pco/src/tests/stability.rs +81 -0
- pcodec-0.0.0/pco/src/wrapped/chunk_compressor.rs +844 -0
- pcodec-0.0.0/pco/src/wrapped/chunk_decompressor.rs +37 -0
- pcodec-0.0.0/pco/src/wrapped/file_compressor.rs +76 -0
- pcodec-0.0.0/pco/src/wrapped/file_decompressor.rs +57 -0
- pcodec-0.0.0/pco/src/wrapped/mod.rs +12 -0
- pcodec-0.0.0/pco/src/wrapped/page_decompressor.rs +230 -0
- pcodec-0.0.0/pco_python/Cargo.toml +18 -0
- pcodec-0.0.0/pco_python/src/lib.rs +82 -0
- pcodec-0.0.0/pco_python/test/test_pcodec.py +54 -0
- pcodec-0.0.0/pco_python/test_requirements.txt +1 -0
- pcodec-0.0.0/pyproject.toml +24 -0
pcodec-0.0.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1872 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.3"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"const-random",
|
|
13
|
+
"getrandom",
|
|
14
|
+
"once_cell",
|
|
15
|
+
"version_check",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[[package]]
|
|
19
|
+
name = "aho-corasick"
|
|
20
|
+
version = "0.7.20"
|
|
21
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
22
|
+
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
|
|
23
|
+
dependencies = [
|
|
24
|
+
"memchr",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[[package]]
|
|
28
|
+
name = "android-tzdata"
|
|
29
|
+
version = "0.1.1"
|
|
30
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
31
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
32
|
+
|
|
33
|
+
[[package]]
|
|
34
|
+
name = "android_system_properties"
|
|
35
|
+
version = "0.1.5"
|
|
36
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
38
|
+
dependencies = [
|
|
39
|
+
"libc",
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
[[package]]
|
|
43
|
+
name = "anstream"
|
|
44
|
+
version = "0.3.2"
|
|
45
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
+
checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
|
|
47
|
+
dependencies = [
|
|
48
|
+
"anstyle",
|
|
49
|
+
"anstyle-parse",
|
|
50
|
+
"anstyle-query",
|
|
51
|
+
"anstyle-wincon",
|
|
52
|
+
"colorchoice",
|
|
53
|
+
"is-terminal",
|
|
54
|
+
"utf8parse",
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
[[package]]
|
|
58
|
+
name = "anstyle"
|
|
59
|
+
version = "1.0.1"
|
|
60
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
61
|
+
checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
|
|
62
|
+
|
|
63
|
+
[[package]]
|
|
64
|
+
name = "anstyle-parse"
|
|
65
|
+
version = "0.2.1"
|
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
+
checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
|
|
68
|
+
dependencies = [
|
|
69
|
+
"utf8parse",
|
|
70
|
+
]
|
|
71
|
+
|
|
72
|
+
[[package]]
|
|
73
|
+
name = "anstyle-query"
|
|
74
|
+
version = "1.0.0"
|
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
+
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
|
|
77
|
+
dependencies = [
|
|
78
|
+
"windows-sys 0.48.0",
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "anstyle-wincon"
|
|
83
|
+
version = "1.0.1"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
|
|
86
|
+
dependencies = [
|
|
87
|
+
"anstyle",
|
|
88
|
+
"windows-sys 0.48.0",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "anyhow"
|
|
93
|
+
version = "1.0.71"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "arrow"
|
|
99
|
+
version = "49.0.0"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "5bc25126d18a012146a888a0298f2c22e1150327bd2765fc76d710a556b2d614"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"ahash",
|
|
104
|
+
"arrow-arith",
|
|
105
|
+
"arrow-array",
|
|
106
|
+
"arrow-buffer",
|
|
107
|
+
"arrow-cast",
|
|
108
|
+
"arrow-csv",
|
|
109
|
+
"arrow-data",
|
|
110
|
+
"arrow-ord",
|
|
111
|
+
"arrow-row",
|
|
112
|
+
"arrow-schema",
|
|
113
|
+
"arrow-select",
|
|
114
|
+
"arrow-string",
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "arrow-arith"
|
|
119
|
+
version = "49.0.0"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "34ccd45e217ffa6e53bbb0080990e77113bdd4e91ddb84e97b77649810bcf1a7"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"arrow-array",
|
|
124
|
+
"arrow-buffer",
|
|
125
|
+
"arrow-data",
|
|
126
|
+
"arrow-schema",
|
|
127
|
+
"chrono",
|
|
128
|
+
"half",
|
|
129
|
+
"num",
|
|
130
|
+
]
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "arrow-array"
|
|
134
|
+
version = "49.0.0"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "6bda9acea48b25123c08340f3a8ac361aa0f74469bb36f5ee9acf923fce23e9d"
|
|
137
|
+
dependencies = [
|
|
138
|
+
"ahash",
|
|
139
|
+
"arrow-buffer",
|
|
140
|
+
"arrow-data",
|
|
141
|
+
"arrow-schema",
|
|
142
|
+
"chrono",
|
|
143
|
+
"half",
|
|
144
|
+
"hashbrown",
|
|
145
|
+
"num",
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "arrow-buffer"
|
|
150
|
+
version = "49.0.0"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "01a0fc21915b00fc6c2667b069c1b64bdd920982f426079bc4a7cab86822886c"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"bytes",
|
|
155
|
+
"half",
|
|
156
|
+
"num",
|
|
157
|
+
]
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "arrow-cast"
|
|
161
|
+
version = "49.0.0"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "5dc0368ed618d509636c1e3cc20db1281148190a78f43519487b2daf07b63b4a"
|
|
164
|
+
dependencies = [
|
|
165
|
+
"arrow-array",
|
|
166
|
+
"arrow-buffer",
|
|
167
|
+
"arrow-data",
|
|
168
|
+
"arrow-schema",
|
|
169
|
+
"arrow-select",
|
|
170
|
+
"base64",
|
|
171
|
+
"chrono",
|
|
172
|
+
"half",
|
|
173
|
+
"lexical-core",
|
|
174
|
+
"num",
|
|
175
|
+
]
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "arrow-csv"
|
|
179
|
+
version = "49.0.0"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "2e09aa6246a1d6459b3f14baeaa49606cfdbca34435c46320e14054d244987ca"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"arrow-array",
|
|
184
|
+
"arrow-buffer",
|
|
185
|
+
"arrow-cast",
|
|
186
|
+
"arrow-data",
|
|
187
|
+
"arrow-schema",
|
|
188
|
+
"chrono",
|
|
189
|
+
"csv",
|
|
190
|
+
"csv-core",
|
|
191
|
+
"lazy_static",
|
|
192
|
+
"lexical-core",
|
|
193
|
+
"regex",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "arrow-data"
|
|
198
|
+
version = "49.0.0"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "907fafe280a3874474678c1858b9ca4cb7fd83fb8034ff5b6d6376205a08c634"
|
|
201
|
+
dependencies = [
|
|
202
|
+
"arrow-buffer",
|
|
203
|
+
"arrow-schema",
|
|
204
|
+
"half",
|
|
205
|
+
"num",
|
|
206
|
+
]
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "arrow-ipc"
|
|
210
|
+
version = "49.0.0"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "79a43d6808411886b8c7d4f6f7dd477029c1e77ffffffb7923555cc6579639cd"
|
|
213
|
+
dependencies = [
|
|
214
|
+
"arrow-array",
|
|
215
|
+
"arrow-buffer",
|
|
216
|
+
"arrow-cast",
|
|
217
|
+
"arrow-data",
|
|
218
|
+
"arrow-schema",
|
|
219
|
+
"flatbuffers",
|
|
220
|
+
]
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "arrow-ord"
|
|
224
|
+
version = "49.0.0"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "9b23b0e53c0db57c6749997fd343d4c0354c994be7eca67152dd2bdb9a3e1bb4"
|
|
227
|
+
dependencies = [
|
|
228
|
+
"arrow-array",
|
|
229
|
+
"arrow-buffer",
|
|
230
|
+
"arrow-data",
|
|
231
|
+
"arrow-schema",
|
|
232
|
+
"arrow-select",
|
|
233
|
+
"half",
|
|
234
|
+
"num",
|
|
235
|
+
]
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "arrow-row"
|
|
239
|
+
version = "49.0.0"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "361249898d2d6d4a6eeb7484be6ac74977e48da12a4dd81a708d620cc558117a"
|
|
242
|
+
dependencies = [
|
|
243
|
+
"ahash",
|
|
244
|
+
"arrow-array",
|
|
245
|
+
"arrow-buffer",
|
|
246
|
+
"arrow-data",
|
|
247
|
+
"arrow-schema",
|
|
248
|
+
"half",
|
|
249
|
+
"hashbrown",
|
|
250
|
+
]
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "arrow-schema"
|
|
254
|
+
version = "49.0.0"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "09e28a5e781bf1b0f981333684ad13f5901f4cd2f20589eab7cf1797da8fc167"
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "arrow-select"
|
|
260
|
+
version = "49.0.0"
|
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
+
checksum = "4f6208466590960efc1d2a7172bc4ff18a67d6e25c529381d7f96ddaf0dc4036"
|
|
263
|
+
dependencies = [
|
|
264
|
+
"ahash",
|
|
265
|
+
"arrow-array",
|
|
266
|
+
"arrow-buffer",
|
|
267
|
+
"arrow-data",
|
|
268
|
+
"arrow-schema",
|
|
269
|
+
"num",
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "arrow-string"
|
|
274
|
+
version = "49.0.0"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "a4a48149c63c11c9ff571e50ab8f017d2a7cb71037a882b42f6354ed2da9acc7"
|
|
277
|
+
dependencies = [
|
|
278
|
+
"arrow-array",
|
|
279
|
+
"arrow-buffer",
|
|
280
|
+
"arrow-data",
|
|
281
|
+
"arrow-schema",
|
|
282
|
+
"arrow-select",
|
|
283
|
+
"num",
|
|
284
|
+
"regex",
|
|
285
|
+
"regex-syntax 0.8.2",
|
|
286
|
+
]
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "autocfg"
|
|
290
|
+
version = "1.1.0"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "base64"
|
|
296
|
+
version = "0.21.2"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "bench"
|
|
302
|
+
version = "0.0.0"
|
|
303
|
+
dependencies = [
|
|
304
|
+
"anyhow",
|
|
305
|
+
"bytes",
|
|
306
|
+
"clap",
|
|
307
|
+
"parquet",
|
|
308
|
+
"pco",
|
|
309
|
+
"q_compress",
|
|
310
|
+
"snap",
|
|
311
|
+
"tabled",
|
|
312
|
+
"zstd",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "better_io"
|
|
317
|
+
version = "0.0.0"
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "bitflags"
|
|
321
|
+
version = "1.3.2"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "bitflags"
|
|
327
|
+
version = "2.3.3"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "bstr"
|
|
333
|
+
version = "0.2.17"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
|
|
336
|
+
dependencies = [
|
|
337
|
+
"lazy_static",
|
|
338
|
+
"memchr",
|
|
339
|
+
"regex-automata",
|
|
340
|
+
"serde",
|
|
341
|
+
]
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "bumpalo"
|
|
345
|
+
version = "3.13.0"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "bytecount"
|
|
351
|
+
version = "0.6.3"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c"
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "byteorder"
|
|
357
|
+
version = "1.4.3"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
|
360
|
+
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "bytes"
|
|
363
|
+
version = "1.5.0"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "cc"
|
|
369
|
+
version = "1.0.79"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
|
|
372
|
+
dependencies = [
|
|
373
|
+
"jobserver",
|
|
374
|
+
]
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "cfg-if"
|
|
378
|
+
version = "1.0.0"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "chrono"
|
|
384
|
+
version = "0.4.31"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"android-tzdata",
|
|
389
|
+
"iana-time-zone",
|
|
390
|
+
"num-traits",
|
|
391
|
+
"windows-targets",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "clap"
|
|
396
|
+
version = "4.3.11"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "1640e5cc7fb47dbb8338fd471b105e7ed6c3cb2aeb00c2e067127ffd3764a05d"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"clap_builder",
|
|
401
|
+
"clap_derive",
|
|
402
|
+
"once_cell",
|
|
403
|
+
]
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "clap_builder"
|
|
407
|
+
version = "4.3.11"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "98c59138d527eeaf9b53f35a77fcc1fad9d883116070c63d5de1c7dc7b00c72b"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"anstream",
|
|
412
|
+
"anstyle",
|
|
413
|
+
"clap_lex",
|
|
414
|
+
"strsim",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "clap_derive"
|
|
419
|
+
version = "4.3.2"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "b8cd2b2a819ad6eec39e8f1d6b53001af1e5469f8c177579cdaeb313115b825f"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"heck",
|
|
424
|
+
"proc-macro2",
|
|
425
|
+
"quote",
|
|
426
|
+
"syn 2.0.23",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "clap_lex"
|
|
431
|
+
version = "0.5.0"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "colorchoice"
|
|
437
|
+
version = "1.0.0"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "const-random"
|
|
443
|
+
version = "0.1.15"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "368a7a772ead6ce7e1de82bfb04c485f3db8ec744f72925af5735e29a22cc18e"
|
|
446
|
+
dependencies = [
|
|
447
|
+
"const-random-macro",
|
|
448
|
+
"proc-macro-hack",
|
|
449
|
+
]
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "const-random-macro"
|
|
453
|
+
version = "0.1.15"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "9d7d6ab3c3a2282db210df5f02c4dab6e0a7057af0fb7ebd4070f30fe05c0ddb"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"getrandom",
|
|
458
|
+
"once_cell",
|
|
459
|
+
"proc-macro-hack",
|
|
460
|
+
"tiny-keccak",
|
|
461
|
+
]
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "core-foundation-sys"
|
|
465
|
+
version = "0.8.4"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "crunchy"
|
|
471
|
+
version = "0.2.2"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
|
474
|
+
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "csv"
|
|
477
|
+
version = "1.1.6"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1"
|
|
480
|
+
dependencies = [
|
|
481
|
+
"bstr",
|
|
482
|
+
"csv-core",
|
|
483
|
+
"itoa",
|
|
484
|
+
"ryu",
|
|
485
|
+
"serde",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "csv-core"
|
|
490
|
+
version = "0.1.10"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"memchr",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "enum-iterator"
|
|
499
|
+
version = "1.4.1"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "7add3873b5dd076766ee79c8e406ad1a472c385476b9e38849f8eec24f1be689"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"enum-iterator-derive",
|
|
504
|
+
]
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "enum-iterator-derive"
|
|
508
|
+
version = "1.2.1"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "eecf8589574ce9b895052fa12d69af7a233f99e6107f5cb8dd1044f2a17bfdcb"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"proc-macro2",
|
|
513
|
+
"quote",
|
|
514
|
+
"syn 2.0.23",
|
|
515
|
+
]
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "errno"
|
|
519
|
+
version = "0.3.1"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
|
|
522
|
+
dependencies = [
|
|
523
|
+
"errno-dragonfly",
|
|
524
|
+
"libc",
|
|
525
|
+
"windows-sys 0.48.0",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "errno-dragonfly"
|
|
530
|
+
version = "0.1.2"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
|
533
|
+
dependencies = [
|
|
534
|
+
"cc",
|
|
535
|
+
"libc",
|
|
536
|
+
]
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "flatbuffers"
|
|
540
|
+
version = "23.5.26"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "4dac53e22462d78c16d64a1cd22371b54cc3fe94aa15e7886a2fa6e5d1ab8640"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"bitflags 1.3.2",
|
|
545
|
+
"rustc_version",
|
|
546
|
+
]
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "fnv"
|
|
550
|
+
version = "1.0.7"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "futures"
|
|
556
|
+
version = "0.3.21"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
|
|
559
|
+
dependencies = [
|
|
560
|
+
"futures-channel",
|
|
561
|
+
"futures-core",
|
|
562
|
+
"futures-executor",
|
|
563
|
+
"futures-io",
|
|
564
|
+
"futures-sink",
|
|
565
|
+
"futures-task",
|
|
566
|
+
"futures-util",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "futures-channel"
|
|
571
|
+
version = "0.3.21"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
|
|
574
|
+
dependencies = [
|
|
575
|
+
"futures-core",
|
|
576
|
+
"futures-sink",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "futures-core"
|
|
581
|
+
version = "0.3.21"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "futures-executor"
|
|
587
|
+
version = "0.3.21"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"futures-core",
|
|
592
|
+
"futures-task",
|
|
593
|
+
"futures-util",
|
|
594
|
+
]
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "futures-io"
|
|
598
|
+
version = "0.3.21"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "futures-macro"
|
|
604
|
+
version = "0.3.21"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"proc-macro2",
|
|
609
|
+
"quote",
|
|
610
|
+
"syn 1.0.86",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "futures-sink"
|
|
615
|
+
version = "0.3.21"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "futures-task"
|
|
621
|
+
version = "0.3.21"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "futures-util"
|
|
627
|
+
version = "0.3.21"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
|
|
630
|
+
dependencies = [
|
|
631
|
+
"futures-channel",
|
|
632
|
+
"futures-core",
|
|
633
|
+
"futures-io",
|
|
634
|
+
"futures-macro",
|
|
635
|
+
"futures-sink",
|
|
636
|
+
"futures-task",
|
|
637
|
+
"memchr",
|
|
638
|
+
"pin-project-lite",
|
|
639
|
+
"pin-utils",
|
|
640
|
+
"slab",
|
|
641
|
+
]
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "getrandom"
|
|
645
|
+
version = "0.2.10"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
|
|
648
|
+
dependencies = [
|
|
649
|
+
"cfg-if",
|
|
650
|
+
"libc",
|
|
651
|
+
"wasi",
|
|
652
|
+
]
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "half"
|
|
656
|
+
version = "2.3.1"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "bc52e53916c08643f1b56ec082790d1e86a32e58dc5268f897f313fbae7b4872"
|
|
659
|
+
dependencies = [
|
|
660
|
+
"cfg-if",
|
|
661
|
+
"crunchy",
|
|
662
|
+
"num-traits",
|
|
663
|
+
]
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "hashbrown"
|
|
667
|
+
version = "0.14.0"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "heck"
|
|
673
|
+
version = "0.4.1"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "hermit-abi"
|
|
679
|
+
version = "0.1.19"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"libc",
|
|
684
|
+
]
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "hermit-abi"
|
|
688
|
+
version = "0.3.2"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "iana-time-zone"
|
|
694
|
+
version = "0.1.57"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
|
|
697
|
+
dependencies = [
|
|
698
|
+
"android_system_properties",
|
|
699
|
+
"core-foundation-sys",
|
|
700
|
+
"iana-time-zone-haiku",
|
|
701
|
+
"js-sys",
|
|
702
|
+
"wasm-bindgen",
|
|
703
|
+
"windows",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "iana-time-zone-haiku"
|
|
708
|
+
version = "0.1.2"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"cc",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "indoc"
|
|
717
|
+
version = "2.0.4"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "integer-encoding"
|
|
723
|
+
version = "3.0.4"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "is-terminal"
|
|
729
|
+
version = "0.4.9"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
|
|
732
|
+
dependencies = [
|
|
733
|
+
"hermit-abi 0.3.2",
|
|
734
|
+
"rustix",
|
|
735
|
+
"windows-sys 0.48.0",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "itoa"
|
|
740
|
+
version = "0.4.8"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "jobserver"
|
|
746
|
+
version = "0.1.24"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
|
|
749
|
+
dependencies = [
|
|
750
|
+
"libc",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "js-sys"
|
|
755
|
+
version = "0.3.64"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"wasm-bindgen",
|
|
760
|
+
]
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "lazy_static"
|
|
764
|
+
version = "1.4.0"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "lexical-core"
|
|
770
|
+
version = "0.8.2"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "6a3926d8f156019890be4abe5fd3785e0cff1001e06f59c597641fd513a5a284"
|
|
773
|
+
dependencies = [
|
|
774
|
+
"lexical-parse-float",
|
|
775
|
+
"lexical-parse-integer",
|
|
776
|
+
"lexical-util",
|
|
777
|
+
"lexical-write-float",
|
|
778
|
+
"lexical-write-integer",
|
|
779
|
+
]
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "lexical-parse-float"
|
|
783
|
+
version = "0.8.2"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "b4d066d004fa762d9da995ed21aa8845bb9f6e4265f540d716fb4b315197bf0e"
|
|
786
|
+
dependencies = [
|
|
787
|
+
"lexical-parse-integer",
|
|
788
|
+
"lexical-util",
|
|
789
|
+
"static_assertions",
|
|
790
|
+
]
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "lexical-parse-integer"
|
|
794
|
+
version = "0.8.0"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "f2c92badda8cc0fc4f3d3cc1c30aaefafb830510c8781ce4e8669881f3ed53ac"
|
|
797
|
+
dependencies = [
|
|
798
|
+
"lexical-util",
|
|
799
|
+
"static_assertions",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "lexical-util"
|
|
804
|
+
version = "0.8.1"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "6ff669ccaae16ee33af90dc51125755efed17f1309626ba5c12052512b11e291"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"static_assertions",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "lexical-write-float"
|
|
813
|
+
version = "0.8.2"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "8b5186948c7b297abaaa51560f2581dae625e5ce7dfc2d8fdc56345adb6dc576"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"lexical-util",
|
|
818
|
+
"lexical-write-integer",
|
|
819
|
+
"static_assertions",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "lexical-write-integer"
|
|
824
|
+
version = "0.8.0"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "ece956492e0e40fd95ef8658a34d53a3b8c2015762fdcaaff2167b28de1f56ef"
|
|
827
|
+
dependencies = [
|
|
828
|
+
"lexical-util",
|
|
829
|
+
"static_assertions",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "libc"
|
|
834
|
+
version = "0.2.147"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "libm"
|
|
840
|
+
version = "0.2.7"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4"
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "linux-raw-sys"
|
|
846
|
+
version = "0.4.3"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0"
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "lock_api"
|
|
852
|
+
version = "0.4.7"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
|
|
855
|
+
dependencies = [
|
|
856
|
+
"autocfg",
|
|
857
|
+
"scopeguard",
|
|
858
|
+
]
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "log"
|
|
862
|
+
version = "0.4.14"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
|
|
865
|
+
dependencies = [
|
|
866
|
+
"cfg-if",
|
|
867
|
+
]
|
|
868
|
+
|
|
869
|
+
[[package]]
|
|
870
|
+
name = "matrixmultiply"
|
|
871
|
+
version = "0.3.8"
|
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
|
+
checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2"
|
|
874
|
+
dependencies = [
|
|
875
|
+
"autocfg",
|
|
876
|
+
"rawpointer",
|
|
877
|
+
]
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "memchr"
|
|
881
|
+
version = "2.4.1"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
|
|
884
|
+
|
|
885
|
+
[[package]]
|
|
886
|
+
name = "memoffset"
|
|
887
|
+
version = "0.9.0"
|
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
+
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
|
890
|
+
dependencies = [
|
|
891
|
+
"autocfg",
|
|
892
|
+
]
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "mio"
|
|
896
|
+
version = "0.8.2"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9"
|
|
899
|
+
dependencies = [
|
|
900
|
+
"libc",
|
|
901
|
+
"log",
|
|
902
|
+
"miow",
|
|
903
|
+
"ntapi",
|
|
904
|
+
"wasi",
|
|
905
|
+
"winapi",
|
|
906
|
+
]
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "miow"
|
|
910
|
+
version = "0.3.7"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
|
|
913
|
+
dependencies = [
|
|
914
|
+
"winapi",
|
|
915
|
+
]
|
|
916
|
+
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "ndarray"
|
|
919
|
+
version = "0.15.6"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
|
|
922
|
+
dependencies = [
|
|
923
|
+
"matrixmultiply",
|
|
924
|
+
"num-complex",
|
|
925
|
+
"num-integer",
|
|
926
|
+
"num-traits",
|
|
927
|
+
"rawpointer",
|
|
928
|
+
]
|
|
929
|
+
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "ntapi"
|
|
932
|
+
version = "0.3.7"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
|
|
935
|
+
dependencies = [
|
|
936
|
+
"winapi",
|
|
937
|
+
]
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "num"
|
|
941
|
+
version = "0.4.1"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af"
|
|
944
|
+
dependencies = [
|
|
945
|
+
"num-bigint",
|
|
946
|
+
"num-complex",
|
|
947
|
+
"num-integer",
|
|
948
|
+
"num-iter",
|
|
949
|
+
"num-rational",
|
|
950
|
+
"num-traits",
|
|
951
|
+
]
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "num-bigint"
|
|
955
|
+
version = "0.4.3"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"autocfg",
|
|
960
|
+
"num-integer",
|
|
961
|
+
"num-traits",
|
|
962
|
+
]
|
|
963
|
+
|
|
964
|
+
[[package]]
|
|
965
|
+
name = "num-complex"
|
|
966
|
+
version = "0.4.3"
|
|
967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
+
checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
|
|
969
|
+
dependencies = [
|
|
970
|
+
"num-traits",
|
|
971
|
+
]
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "num-integer"
|
|
975
|
+
version = "0.1.45"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"autocfg",
|
|
980
|
+
"num-traits",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "num-iter"
|
|
985
|
+
version = "0.1.43"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"autocfg",
|
|
990
|
+
"num-integer",
|
|
991
|
+
"num-traits",
|
|
992
|
+
]
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "num-rational"
|
|
996
|
+
version = "0.4.1"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
|
|
999
|
+
dependencies = [
|
|
1000
|
+
"autocfg",
|
|
1001
|
+
"num-bigint",
|
|
1002
|
+
"num-integer",
|
|
1003
|
+
"num-traits",
|
|
1004
|
+
]
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "num-traits"
|
|
1008
|
+
version = "0.2.17"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
|
|
1011
|
+
dependencies = [
|
|
1012
|
+
"autocfg",
|
|
1013
|
+
"libm",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "num_cpus"
|
|
1018
|
+
version = "1.13.1"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
|
|
1021
|
+
dependencies = [
|
|
1022
|
+
"hermit-abi 0.1.19",
|
|
1023
|
+
"libc",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "numpy"
|
|
1028
|
+
version = "0.20.0"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "bef41cbb417ea83b30525259e30ccef6af39b31c240bda578889494c5392d331"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"libc",
|
|
1033
|
+
"ndarray",
|
|
1034
|
+
"num-complex",
|
|
1035
|
+
"num-integer",
|
|
1036
|
+
"num-traits",
|
|
1037
|
+
"pyo3",
|
|
1038
|
+
"rustc-hash",
|
|
1039
|
+
]
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "once_cell"
|
|
1043
|
+
version = "1.18.0"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "ordered-float"
|
|
1049
|
+
version = "2.10.0"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87"
|
|
1052
|
+
dependencies = [
|
|
1053
|
+
"num-traits",
|
|
1054
|
+
]
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "papergrid"
|
|
1058
|
+
version = "0.9.1"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "ae7891b22598926e4398790c8fe6447930c72a67d36d983a49d6ce682ce83290"
|
|
1061
|
+
dependencies = [
|
|
1062
|
+
"bytecount",
|
|
1063
|
+
"fnv",
|
|
1064
|
+
"unicode-width",
|
|
1065
|
+
]
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "parking_lot"
|
|
1069
|
+
version = "0.12.1"
|
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
+
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
|
1072
|
+
dependencies = [
|
|
1073
|
+
"lock_api",
|
|
1074
|
+
"parking_lot_core",
|
|
1075
|
+
]
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "parking_lot_core"
|
|
1079
|
+
version = "0.9.3"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
|
|
1082
|
+
dependencies = [
|
|
1083
|
+
"cfg-if",
|
|
1084
|
+
"libc",
|
|
1085
|
+
"redox_syscall",
|
|
1086
|
+
"smallvec",
|
|
1087
|
+
"windows-sys 0.36.1",
|
|
1088
|
+
]
|
|
1089
|
+
|
|
1090
|
+
[[package]]
|
|
1091
|
+
name = "parquet"
|
|
1092
|
+
version = "49.0.0"
|
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
+
checksum = "af88740a842787da39b3d69ce5fbf6fce97d20211d3b299fee0a0da6430c74d4"
|
|
1095
|
+
dependencies = [
|
|
1096
|
+
"ahash",
|
|
1097
|
+
"arrow-array",
|
|
1098
|
+
"arrow-buffer",
|
|
1099
|
+
"arrow-cast",
|
|
1100
|
+
"arrow-data",
|
|
1101
|
+
"arrow-ipc",
|
|
1102
|
+
"arrow-schema",
|
|
1103
|
+
"arrow-select",
|
|
1104
|
+
"base64",
|
|
1105
|
+
"bytes",
|
|
1106
|
+
"chrono",
|
|
1107
|
+
"hashbrown",
|
|
1108
|
+
"num",
|
|
1109
|
+
"num-bigint",
|
|
1110
|
+
"paste",
|
|
1111
|
+
"seq-macro",
|
|
1112
|
+
"snap",
|
|
1113
|
+
"thrift",
|
|
1114
|
+
"twox-hash",
|
|
1115
|
+
"zstd",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "paste"
|
|
1120
|
+
version = "1.0.13"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "b4b27ab7be369122c218afc2079489cdcb4b517c0a3fc386ff11e1fedfcc2b35"
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "pco"
|
|
1126
|
+
version = "0.1.3"
|
|
1127
|
+
dependencies = [
|
|
1128
|
+
"better_io",
|
|
1129
|
+
"futures",
|
|
1130
|
+
"rand",
|
|
1131
|
+
"rand_xoshiro",
|
|
1132
|
+
"tokio",
|
|
1133
|
+
]
|
|
1134
|
+
|
|
1135
|
+
[[package]]
|
|
1136
|
+
name = "pco_cli"
|
|
1137
|
+
version = "0.1.0"
|
|
1138
|
+
dependencies = [
|
|
1139
|
+
"anyhow",
|
|
1140
|
+
"arrow",
|
|
1141
|
+
"clap",
|
|
1142
|
+
"enum-iterator",
|
|
1143
|
+
"parquet",
|
|
1144
|
+
"pco",
|
|
1145
|
+
]
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "pco_python"
|
|
1149
|
+
version = "0.0.0"
|
|
1150
|
+
dependencies = [
|
|
1151
|
+
"numpy",
|
|
1152
|
+
"pco",
|
|
1153
|
+
"pyo3",
|
|
1154
|
+
]
|
|
1155
|
+
|
|
1156
|
+
[[package]]
|
|
1157
|
+
name = "pin-project-lite"
|
|
1158
|
+
version = "0.2.9"
|
|
1159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
+
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "pin-utils"
|
|
1164
|
+
version = "0.1.0"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "pkg-config"
|
|
1170
|
+
version = "0.3.27"
|
|
1171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
+
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
|
|
1173
|
+
|
|
1174
|
+
[[package]]
|
|
1175
|
+
name = "ppv-lite86"
|
|
1176
|
+
version = "0.2.16"
|
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
+
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "proc-macro-error"
|
|
1182
|
+
version = "1.0.4"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
|
1185
|
+
dependencies = [
|
|
1186
|
+
"proc-macro-error-attr",
|
|
1187
|
+
"proc-macro2",
|
|
1188
|
+
"quote",
|
|
1189
|
+
"syn 1.0.86",
|
|
1190
|
+
"version_check",
|
|
1191
|
+
]
|
|
1192
|
+
|
|
1193
|
+
[[package]]
|
|
1194
|
+
name = "proc-macro-error-attr"
|
|
1195
|
+
version = "1.0.4"
|
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
+
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
|
1198
|
+
dependencies = [
|
|
1199
|
+
"proc-macro2",
|
|
1200
|
+
"quote",
|
|
1201
|
+
"version_check",
|
|
1202
|
+
]
|
|
1203
|
+
|
|
1204
|
+
[[package]]
|
|
1205
|
+
name = "proc-macro-hack"
|
|
1206
|
+
version = "0.5.20+deprecated"
|
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
+
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
1209
|
+
|
|
1210
|
+
[[package]]
|
|
1211
|
+
name = "proc-macro2"
|
|
1212
|
+
version = "1.0.63"
|
|
1213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1214
|
+
checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb"
|
|
1215
|
+
dependencies = [
|
|
1216
|
+
"unicode-ident",
|
|
1217
|
+
]
|
|
1218
|
+
|
|
1219
|
+
[[package]]
|
|
1220
|
+
name = "pyo3"
|
|
1221
|
+
version = "0.20.0"
|
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
+
checksum = "04e8453b658fe480c3e70c8ed4e3d3ec33eb74988bd186561b0cc66b85c3bc4b"
|
|
1224
|
+
dependencies = [
|
|
1225
|
+
"cfg-if",
|
|
1226
|
+
"indoc",
|
|
1227
|
+
"libc",
|
|
1228
|
+
"memoffset",
|
|
1229
|
+
"parking_lot",
|
|
1230
|
+
"pyo3-build-config",
|
|
1231
|
+
"pyo3-ffi",
|
|
1232
|
+
"pyo3-macros",
|
|
1233
|
+
"unindent",
|
|
1234
|
+
]
|
|
1235
|
+
|
|
1236
|
+
[[package]]
|
|
1237
|
+
name = "pyo3-build-config"
|
|
1238
|
+
version = "0.20.0"
|
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
+
checksum = "a96fe70b176a89cff78f2fa7b3c930081e163d5379b4dcdf993e3ae29ca662e5"
|
|
1241
|
+
dependencies = [
|
|
1242
|
+
"once_cell",
|
|
1243
|
+
"target-lexicon",
|
|
1244
|
+
]
|
|
1245
|
+
|
|
1246
|
+
[[package]]
|
|
1247
|
+
name = "pyo3-ffi"
|
|
1248
|
+
version = "0.20.0"
|
|
1249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1250
|
+
checksum = "214929900fd25e6604661ed9cf349727c8920d47deff196c4e28165a6ef2a96b"
|
|
1251
|
+
dependencies = [
|
|
1252
|
+
"libc",
|
|
1253
|
+
"pyo3-build-config",
|
|
1254
|
+
]
|
|
1255
|
+
|
|
1256
|
+
[[package]]
|
|
1257
|
+
name = "pyo3-macros"
|
|
1258
|
+
version = "0.20.0"
|
|
1259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
+
checksum = "dac53072f717aa1bfa4db832b39de8c875b7c7af4f4a6fe93cdbf9264cf8383b"
|
|
1261
|
+
dependencies = [
|
|
1262
|
+
"proc-macro2",
|
|
1263
|
+
"pyo3-macros-backend",
|
|
1264
|
+
"quote",
|
|
1265
|
+
"syn 2.0.23",
|
|
1266
|
+
]
|
|
1267
|
+
|
|
1268
|
+
[[package]]
|
|
1269
|
+
name = "pyo3-macros-backend"
|
|
1270
|
+
version = "0.20.0"
|
|
1271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1272
|
+
checksum = "7774b5a8282bd4f25f803b1f0d945120be959a36c72e08e7cd031c792fdfd424"
|
|
1273
|
+
dependencies = [
|
|
1274
|
+
"heck",
|
|
1275
|
+
"proc-macro2",
|
|
1276
|
+
"quote",
|
|
1277
|
+
"syn 2.0.23",
|
|
1278
|
+
]
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "q_compress"
|
|
1282
|
+
version = "0.11.7"
|
|
1283
|
+
dependencies = [
|
|
1284
|
+
"futures",
|
|
1285
|
+
"rand",
|
|
1286
|
+
"tokio",
|
|
1287
|
+
]
|
|
1288
|
+
|
|
1289
|
+
[[package]]
|
|
1290
|
+
name = "q_compress_ffi"
|
|
1291
|
+
version = "0.0.0"
|
|
1292
|
+
dependencies = [
|
|
1293
|
+
"libc",
|
|
1294
|
+
"q_compress",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "quote"
|
|
1299
|
+
version = "1.0.29"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
|
|
1302
|
+
dependencies = [
|
|
1303
|
+
"proc-macro2",
|
|
1304
|
+
]
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "rand"
|
|
1308
|
+
version = "0.8.5"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1311
|
+
dependencies = [
|
|
1312
|
+
"libc",
|
|
1313
|
+
"rand_chacha",
|
|
1314
|
+
"rand_core",
|
|
1315
|
+
]
|
|
1316
|
+
|
|
1317
|
+
[[package]]
|
|
1318
|
+
name = "rand_chacha"
|
|
1319
|
+
version = "0.3.1"
|
|
1320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1321
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1322
|
+
dependencies = [
|
|
1323
|
+
"ppv-lite86",
|
|
1324
|
+
"rand_core",
|
|
1325
|
+
]
|
|
1326
|
+
|
|
1327
|
+
[[package]]
|
|
1328
|
+
name = "rand_core"
|
|
1329
|
+
version = "0.6.3"
|
|
1330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
+
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
|
|
1332
|
+
dependencies = [
|
|
1333
|
+
"getrandom",
|
|
1334
|
+
]
|
|
1335
|
+
|
|
1336
|
+
[[package]]
|
|
1337
|
+
name = "rand_xoshiro"
|
|
1338
|
+
version = "0.6.0"
|
|
1339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
+
checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
|
|
1341
|
+
dependencies = [
|
|
1342
|
+
"rand_core",
|
|
1343
|
+
]
|
|
1344
|
+
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "rawpointer"
|
|
1347
|
+
version = "0.2.1"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
1350
|
+
|
|
1351
|
+
[[package]]
|
|
1352
|
+
name = "redox_syscall"
|
|
1353
|
+
version = "0.2.13"
|
|
1354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1355
|
+
checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
|
|
1356
|
+
dependencies = [
|
|
1357
|
+
"bitflags 1.3.2",
|
|
1358
|
+
]
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "regex"
|
|
1362
|
+
version = "1.7.3"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
|
|
1365
|
+
dependencies = [
|
|
1366
|
+
"aho-corasick",
|
|
1367
|
+
"memchr",
|
|
1368
|
+
"regex-syntax 0.6.29",
|
|
1369
|
+
]
|
|
1370
|
+
|
|
1371
|
+
[[package]]
|
|
1372
|
+
name = "regex-automata"
|
|
1373
|
+
version = "0.1.10"
|
|
1374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1375
|
+
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
|
1376
|
+
|
|
1377
|
+
[[package]]
|
|
1378
|
+
name = "regex-syntax"
|
|
1379
|
+
version = "0.6.29"
|
|
1380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1381
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "regex-syntax"
|
|
1385
|
+
version = "0.8.2"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
|
1388
|
+
|
|
1389
|
+
[[package]]
|
|
1390
|
+
name = "rustc-hash"
|
|
1391
|
+
version = "1.1.0"
|
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1394
|
+
|
|
1395
|
+
[[package]]
|
|
1396
|
+
name = "rustc_version"
|
|
1397
|
+
version = "0.4.0"
|
|
1398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
+
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
|
1400
|
+
dependencies = [
|
|
1401
|
+
"semver",
|
|
1402
|
+
]
|
|
1403
|
+
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "rustix"
|
|
1406
|
+
version = "0.38.3"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "ac5ffa1efe7548069688cd7028f32591853cd7b5b756d41bcffd2353e4fc75b4"
|
|
1409
|
+
dependencies = [
|
|
1410
|
+
"bitflags 2.3.3",
|
|
1411
|
+
"errno",
|
|
1412
|
+
"libc",
|
|
1413
|
+
"linux-raw-sys",
|
|
1414
|
+
"windows-sys 0.48.0",
|
|
1415
|
+
]
|
|
1416
|
+
|
|
1417
|
+
[[package]]
|
|
1418
|
+
name = "ryu"
|
|
1419
|
+
version = "1.0.9"
|
|
1420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1421
|
+
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
|
|
1422
|
+
|
|
1423
|
+
[[package]]
|
|
1424
|
+
name = "scopeguard"
|
|
1425
|
+
version = "1.1.0"
|
|
1426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
|
+
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|
1428
|
+
|
|
1429
|
+
[[package]]
|
|
1430
|
+
name = "semver"
|
|
1431
|
+
version = "1.0.17"
|
|
1432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
+
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
|
|
1434
|
+
|
|
1435
|
+
[[package]]
|
|
1436
|
+
name = "seq-macro"
|
|
1437
|
+
version = "0.3.4"
|
|
1438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1439
|
+
checksum = "63134939175b3131fe4d2c131b103fd42f25ccca89423d43b5e4f267920ccf03"
|
|
1440
|
+
|
|
1441
|
+
[[package]]
|
|
1442
|
+
name = "serde"
|
|
1443
|
+
version = "1.0.136"
|
|
1444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
|
+
checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
|
|
1446
|
+
|
|
1447
|
+
[[package]]
|
|
1448
|
+
name = "signal-hook-registry"
|
|
1449
|
+
version = "1.4.0"
|
|
1450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
+
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
|
|
1452
|
+
dependencies = [
|
|
1453
|
+
"libc",
|
|
1454
|
+
]
|
|
1455
|
+
|
|
1456
|
+
[[package]]
|
|
1457
|
+
name = "slab"
|
|
1458
|
+
version = "0.4.6"
|
|
1459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1460
|
+
checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "smallvec"
|
|
1464
|
+
version = "1.8.0"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
|
|
1467
|
+
|
|
1468
|
+
[[package]]
|
|
1469
|
+
name = "snap"
|
|
1470
|
+
version = "1.1.0"
|
|
1471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
+
checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831"
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "socket2"
|
|
1476
|
+
version = "0.4.4"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
|
|
1479
|
+
dependencies = [
|
|
1480
|
+
"libc",
|
|
1481
|
+
"winapi",
|
|
1482
|
+
]
|
|
1483
|
+
|
|
1484
|
+
[[package]]
|
|
1485
|
+
name = "static_assertions"
|
|
1486
|
+
version = "1.1.0"
|
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1489
|
+
|
|
1490
|
+
[[package]]
|
|
1491
|
+
name = "strsim"
|
|
1492
|
+
version = "0.10.0"
|
|
1493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1494
|
+
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|
1495
|
+
|
|
1496
|
+
[[package]]
|
|
1497
|
+
name = "syn"
|
|
1498
|
+
version = "1.0.86"
|
|
1499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
+
checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b"
|
|
1501
|
+
dependencies = [
|
|
1502
|
+
"proc-macro2",
|
|
1503
|
+
"quote",
|
|
1504
|
+
"unicode-xid",
|
|
1505
|
+
]
|
|
1506
|
+
|
|
1507
|
+
[[package]]
|
|
1508
|
+
name = "syn"
|
|
1509
|
+
version = "2.0.23"
|
|
1510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
+
checksum = "59fb7d6d8281a51045d62b8eb3a7d1ce347b76f312af50cd3dc0af39c87c1737"
|
|
1512
|
+
dependencies = [
|
|
1513
|
+
"proc-macro2",
|
|
1514
|
+
"quote",
|
|
1515
|
+
"unicode-ident",
|
|
1516
|
+
]
|
|
1517
|
+
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "tabled"
|
|
1520
|
+
version = "0.12.2"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "0ce69a5028cd9576063ec1f48edb2c75339fd835e6094ef3e05b3a079bf594a6"
|
|
1523
|
+
dependencies = [
|
|
1524
|
+
"papergrid",
|
|
1525
|
+
"tabled_derive",
|
|
1526
|
+
"unicode-width",
|
|
1527
|
+
]
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "tabled_derive"
|
|
1531
|
+
version = "0.6.0"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "99f688a08b54f4f02f0a3c382aefdb7884d3d69609f785bd253dc033243e3fe4"
|
|
1534
|
+
dependencies = [
|
|
1535
|
+
"heck",
|
|
1536
|
+
"proc-macro-error",
|
|
1537
|
+
"proc-macro2",
|
|
1538
|
+
"quote",
|
|
1539
|
+
"syn 1.0.86",
|
|
1540
|
+
]
|
|
1541
|
+
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "target-lexicon"
|
|
1544
|
+
version = "0.12.12"
|
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
+
checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a"
|
|
1547
|
+
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "thrift"
|
|
1550
|
+
version = "0.17.0"
|
|
1551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
+
checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
|
|
1553
|
+
dependencies = [
|
|
1554
|
+
"byteorder",
|
|
1555
|
+
"integer-encoding",
|
|
1556
|
+
"ordered-float",
|
|
1557
|
+
]
|
|
1558
|
+
|
|
1559
|
+
[[package]]
|
|
1560
|
+
name = "tiny-keccak"
|
|
1561
|
+
version = "2.0.2"
|
|
1562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1563
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
1564
|
+
dependencies = [
|
|
1565
|
+
"crunchy",
|
|
1566
|
+
]
|
|
1567
|
+
|
|
1568
|
+
[[package]]
|
|
1569
|
+
name = "tokio"
|
|
1570
|
+
version = "1.19.2"
|
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
+
checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439"
|
|
1573
|
+
dependencies = [
|
|
1574
|
+
"bytes",
|
|
1575
|
+
"libc",
|
|
1576
|
+
"memchr",
|
|
1577
|
+
"mio",
|
|
1578
|
+
"num_cpus",
|
|
1579
|
+
"once_cell",
|
|
1580
|
+
"parking_lot",
|
|
1581
|
+
"pin-project-lite",
|
|
1582
|
+
"signal-hook-registry",
|
|
1583
|
+
"socket2",
|
|
1584
|
+
"tokio-macros",
|
|
1585
|
+
"winapi",
|
|
1586
|
+
]
|
|
1587
|
+
|
|
1588
|
+
[[package]]
|
|
1589
|
+
name = "tokio-macros"
|
|
1590
|
+
version = "1.8.0"
|
|
1591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1592
|
+
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
|
|
1593
|
+
dependencies = [
|
|
1594
|
+
"proc-macro2",
|
|
1595
|
+
"quote",
|
|
1596
|
+
"syn 1.0.86",
|
|
1597
|
+
]
|
|
1598
|
+
|
|
1599
|
+
[[package]]
|
|
1600
|
+
name = "twox-hash"
|
|
1601
|
+
version = "1.6.3"
|
|
1602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
+
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
|
|
1604
|
+
dependencies = [
|
|
1605
|
+
"cfg-if",
|
|
1606
|
+
"static_assertions",
|
|
1607
|
+
]
|
|
1608
|
+
|
|
1609
|
+
[[package]]
|
|
1610
|
+
name = "unicode-ident"
|
|
1611
|
+
version = "1.0.10"
|
|
1612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1613
|
+
checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73"
|
|
1614
|
+
|
|
1615
|
+
[[package]]
|
|
1616
|
+
name = "unicode-width"
|
|
1617
|
+
version = "0.1.10"
|
|
1618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
+
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
|
1620
|
+
|
|
1621
|
+
[[package]]
|
|
1622
|
+
name = "unicode-xid"
|
|
1623
|
+
version = "0.2.2"
|
|
1624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
+
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
|
|
1626
|
+
|
|
1627
|
+
[[package]]
|
|
1628
|
+
name = "unindent"
|
|
1629
|
+
version = "0.2.3"
|
|
1630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1631
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
1632
|
+
|
|
1633
|
+
[[package]]
|
|
1634
|
+
name = "utf8parse"
|
|
1635
|
+
version = "0.2.1"
|
|
1636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1637
|
+
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
|
|
1638
|
+
|
|
1639
|
+
[[package]]
|
|
1640
|
+
name = "version_check"
|
|
1641
|
+
version = "0.9.4"
|
|
1642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
|
+
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
|
1644
|
+
|
|
1645
|
+
[[package]]
|
|
1646
|
+
name = "wasi"
|
|
1647
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
1648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1649
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1650
|
+
|
|
1651
|
+
[[package]]
|
|
1652
|
+
name = "wasm-bindgen"
|
|
1653
|
+
version = "0.2.87"
|
|
1654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1655
|
+
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
|
|
1656
|
+
dependencies = [
|
|
1657
|
+
"cfg-if",
|
|
1658
|
+
"wasm-bindgen-macro",
|
|
1659
|
+
]
|
|
1660
|
+
|
|
1661
|
+
[[package]]
|
|
1662
|
+
name = "wasm-bindgen-backend"
|
|
1663
|
+
version = "0.2.87"
|
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
+
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
|
|
1666
|
+
dependencies = [
|
|
1667
|
+
"bumpalo",
|
|
1668
|
+
"log",
|
|
1669
|
+
"once_cell",
|
|
1670
|
+
"proc-macro2",
|
|
1671
|
+
"quote",
|
|
1672
|
+
"syn 2.0.23",
|
|
1673
|
+
"wasm-bindgen-shared",
|
|
1674
|
+
]
|
|
1675
|
+
|
|
1676
|
+
[[package]]
|
|
1677
|
+
name = "wasm-bindgen-macro"
|
|
1678
|
+
version = "0.2.87"
|
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
+
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
|
|
1681
|
+
dependencies = [
|
|
1682
|
+
"quote",
|
|
1683
|
+
"wasm-bindgen-macro-support",
|
|
1684
|
+
]
|
|
1685
|
+
|
|
1686
|
+
[[package]]
|
|
1687
|
+
name = "wasm-bindgen-macro-support"
|
|
1688
|
+
version = "0.2.87"
|
|
1689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1690
|
+
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
|
|
1691
|
+
dependencies = [
|
|
1692
|
+
"proc-macro2",
|
|
1693
|
+
"quote",
|
|
1694
|
+
"syn 2.0.23",
|
|
1695
|
+
"wasm-bindgen-backend",
|
|
1696
|
+
"wasm-bindgen-shared",
|
|
1697
|
+
]
|
|
1698
|
+
|
|
1699
|
+
[[package]]
|
|
1700
|
+
name = "wasm-bindgen-shared"
|
|
1701
|
+
version = "0.2.87"
|
|
1702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1703
|
+
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
|
|
1704
|
+
|
|
1705
|
+
[[package]]
|
|
1706
|
+
name = "winapi"
|
|
1707
|
+
version = "0.3.9"
|
|
1708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1709
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1710
|
+
dependencies = [
|
|
1711
|
+
"winapi-i686-pc-windows-gnu",
|
|
1712
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1713
|
+
]
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1717
|
+
version = "0.4.0"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1720
|
+
|
|
1721
|
+
[[package]]
|
|
1722
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1723
|
+
version = "0.4.0"
|
|
1724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1725
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "windows"
|
|
1729
|
+
version = "0.48.0"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
|
|
1732
|
+
dependencies = [
|
|
1733
|
+
"windows-targets",
|
|
1734
|
+
]
|
|
1735
|
+
|
|
1736
|
+
[[package]]
|
|
1737
|
+
name = "windows-sys"
|
|
1738
|
+
version = "0.36.1"
|
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
+
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
|
|
1741
|
+
dependencies = [
|
|
1742
|
+
"windows_aarch64_msvc 0.36.1",
|
|
1743
|
+
"windows_i686_gnu 0.36.1",
|
|
1744
|
+
"windows_i686_msvc 0.36.1",
|
|
1745
|
+
"windows_x86_64_gnu 0.36.1",
|
|
1746
|
+
"windows_x86_64_msvc 0.36.1",
|
|
1747
|
+
]
|
|
1748
|
+
|
|
1749
|
+
[[package]]
|
|
1750
|
+
name = "windows-sys"
|
|
1751
|
+
version = "0.48.0"
|
|
1752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1753
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
1754
|
+
dependencies = [
|
|
1755
|
+
"windows-targets",
|
|
1756
|
+
]
|
|
1757
|
+
|
|
1758
|
+
[[package]]
|
|
1759
|
+
name = "windows-targets"
|
|
1760
|
+
version = "0.48.1"
|
|
1761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
|
+
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
|
|
1763
|
+
dependencies = [
|
|
1764
|
+
"windows_aarch64_gnullvm",
|
|
1765
|
+
"windows_aarch64_msvc 0.48.0",
|
|
1766
|
+
"windows_i686_gnu 0.48.0",
|
|
1767
|
+
"windows_i686_msvc 0.48.0",
|
|
1768
|
+
"windows_x86_64_gnu 0.48.0",
|
|
1769
|
+
"windows_x86_64_gnullvm",
|
|
1770
|
+
"windows_x86_64_msvc 0.48.0",
|
|
1771
|
+
]
|
|
1772
|
+
|
|
1773
|
+
[[package]]
|
|
1774
|
+
name = "windows_aarch64_gnullvm"
|
|
1775
|
+
version = "0.48.0"
|
|
1776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
+
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
|
1778
|
+
|
|
1779
|
+
[[package]]
|
|
1780
|
+
name = "windows_aarch64_msvc"
|
|
1781
|
+
version = "0.36.1"
|
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
+
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
|
|
1784
|
+
|
|
1785
|
+
[[package]]
|
|
1786
|
+
name = "windows_aarch64_msvc"
|
|
1787
|
+
version = "0.48.0"
|
|
1788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
+
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
|
1790
|
+
|
|
1791
|
+
[[package]]
|
|
1792
|
+
name = "windows_i686_gnu"
|
|
1793
|
+
version = "0.36.1"
|
|
1794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1795
|
+
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
|
|
1796
|
+
|
|
1797
|
+
[[package]]
|
|
1798
|
+
name = "windows_i686_gnu"
|
|
1799
|
+
version = "0.48.0"
|
|
1800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
+
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
|
1802
|
+
|
|
1803
|
+
[[package]]
|
|
1804
|
+
name = "windows_i686_msvc"
|
|
1805
|
+
version = "0.36.1"
|
|
1806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
+
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
|
|
1808
|
+
|
|
1809
|
+
[[package]]
|
|
1810
|
+
name = "windows_i686_msvc"
|
|
1811
|
+
version = "0.48.0"
|
|
1812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1813
|
+
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
|
1814
|
+
|
|
1815
|
+
[[package]]
|
|
1816
|
+
name = "windows_x86_64_gnu"
|
|
1817
|
+
version = "0.36.1"
|
|
1818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1819
|
+
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
|
|
1820
|
+
|
|
1821
|
+
[[package]]
|
|
1822
|
+
name = "windows_x86_64_gnu"
|
|
1823
|
+
version = "0.48.0"
|
|
1824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1825
|
+
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
|
1826
|
+
|
|
1827
|
+
[[package]]
|
|
1828
|
+
name = "windows_x86_64_gnullvm"
|
|
1829
|
+
version = "0.48.0"
|
|
1830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
+
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
|
1832
|
+
|
|
1833
|
+
[[package]]
|
|
1834
|
+
name = "windows_x86_64_msvc"
|
|
1835
|
+
version = "0.36.1"
|
|
1836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
+
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
|
|
1838
|
+
|
|
1839
|
+
[[package]]
|
|
1840
|
+
name = "windows_x86_64_msvc"
|
|
1841
|
+
version = "0.48.0"
|
|
1842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
+
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
|
1844
|
+
|
|
1845
|
+
[[package]]
|
|
1846
|
+
name = "zstd"
|
|
1847
|
+
version = "0.13.0"
|
|
1848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1849
|
+
checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110"
|
|
1850
|
+
dependencies = [
|
|
1851
|
+
"zstd-safe",
|
|
1852
|
+
]
|
|
1853
|
+
|
|
1854
|
+
[[package]]
|
|
1855
|
+
name = "zstd-safe"
|
|
1856
|
+
version = "7.0.0"
|
|
1857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1858
|
+
checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e"
|
|
1859
|
+
dependencies = [
|
|
1860
|
+
"zstd-sys",
|
|
1861
|
+
]
|
|
1862
|
+
|
|
1863
|
+
[[package]]
|
|
1864
|
+
name = "zstd-sys"
|
|
1865
|
+
version = "2.0.8+zstd.1.5.5"
|
|
1866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
+
checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
|
|
1868
|
+
dependencies = [
|
|
1869
|
+
"cc",
|
|
1870
|
+
"libc",
|
|
1871
|
+
"pkg-config",
|
|
1872
|
+
]
|