polars-df 0.10.0-x86_64-linux-musl
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +3 -0
- data/CHANGELOG.md +175 -0
- data/Cargo.lock +2536 -0
- data/Cargo.toml +6 -0
- data/LICENSE-THIRD-PARTY.txt +38726 -0
- data/LICENSE.txt +20 -0
- data/README.md +437 -0
- data/lib/polars/3.1/polars.so +0 -0
- data/lib/polars/3.2/polars.so +0 -0
- data/lib/polars/3.3/polars.so +0 -0
- data/lib/polars/array_expr.rb +537 -0
- data/lib/polars/array_name_space.rb +423 -0
- data/lib/polars/batched_csv_reader.rb +98 -0
- data/lib/polars/binary_expr.rb +77 -0
- data/lib/polars/binary_name_space.rb +66 -0
- data/lib/polars/cat_expr.rb +72 -0
- data/lib/polars/cat_name_space.rb +125 -0
- data/lib/polars/config.rb +530 -0
- data/lib/polars/convert.rb +93 -0
- data/lib/polars/data_frame.rb +5418 -0
- data/lib/polars/data_types.rb +466 -0
- data/lib/polars/date_time_expr.rb +1444 -0
- data/lib/polars/date_time_name_space.rb +1484 -0
- data/lib/polars/dynamic_group_by.rb +52 -0
- data/lib/polars/exceptions.rb +31 -0
- data/lib/polars/expr.rb +6105 -0
- data/lib/polars/expr_dispatch.rb +22 -0
- data/lib/polars/functions/aggregation/horizontal.rb +246 -0
- data/lib/polars/functions/aggregation/vertical.rb +282 -0
- data/lib/polars/functions/as_datatype.rb +248 -0
- data/lib/polars/functions/col.rb +47 -0
- data/lib/polars/functions/eager.rb +182 -0
- data/lib/polars/functions/lazy.rb +1280 -0
- data/lib/polars/functions/len.rb +49 -0
- data/lib/polars/functions/lit.rb +35 -0
- data/lib/polars/functions/random.rb +16 -0
- data/lib/polars/functions/range/date_range.rb +103 -0
- data/lib/polars/functions/range/int_range.rb +51 -0
- data/lib/polars/functions/repeat.rb +144 -0
- data/lib/polars/functions/whenthen.rb +96 -0
- data/lib/polars/functions.rb +57 -0
- data/lib/polars/group_by.rb +548 -0
- data/lib/polars/io.rb +890 -0
- data/lib/polars/lazy_frame.rb +2833 -0
- data/lib/polars/lazy_group_by.rb +84 -0
- data/lib/polars/list_expr.rb +791 -0
- data/lib/polars/list_name_space.rb +445 -0
- data/lib/polars/meta_expr.rb +222 -0
- data/lib/polars/name_expr.rb +198 -0
- data/lib/polars/plot.rb +109 -0
- data/lib/polars/rolling_group_by.rb +37 -0
- data/lib/polars/series.rb +4527 -0
- data/lib/polars/slice.rb +104 -0
- data/lib/polars/sql_context.rb +194 -0
- data/lib/polars/string_cache.rb +75 -0
- data/lib/polars/string_expr.rb +1519 -0
- data/lib/polars/string_name_space.rb +810 -0
- data/lib/polars/struct_expr.rb +98 -0
- data/lib/polars/struct_name_space.rb +96 -0
- data/lib/polars/testing.rb +507 -0
- data/lib/polars/utils.rb +422 -0
- data/lib/polars/version.rb +4 -0
- data/lib/polars/whenthen.rb +83 -0
- data/lib/polars-df.rb +1 -0
- data/lib/polars.rb +72 -0
- metadata +125 -0
data/Cargo.lock
ADDED
@@ -0,0 +1,2536 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 3
|
4
|
+
|
5
|
+
[[package]]
|
6
|
+
name = "addr2line"
|
7
|
+
version = "0.21.0"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
10
|
+
dependencies = [
|
11
|
+
"gimli",
|
12
|
+
]
|
13
|
+
|
14
|
+
[[package]]
|
15
|
+
name = "adler"
|
16
|
+
version = "1.0.2"
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
19
|
+
|
20
|
+
[[package]]
|
21
|
+
name = "adler32"
|
22
|
+
version = "1.2.0"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
25
|
+
|
26
|
+
[[package]]
|
27
|
+
name = "ahash"
|
28
|
+
version = "0.8.7"
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
+
checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
|
31
|
+
dependencies = [
|
32
|
+
"cfg-if",
|
33
|
+
"getrandom",
|
34
|
+
"once_cell",
|
35
|
+
"version_check",
|
36
|
+
"zerocopy",
|
37
|
+
]
|
38
|
+
|
39
|
+
[[package]]
|
40
|
+
name = "aho-corasick"
|
41
|
+
version = "1.1.2"
|
42
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
43
|
+
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
|
44
|
+
dependencies = [
|
45
|
+
"memchr",
|
46
|
+
]
|
47
|
+
|
48
|
+
[[package]]
|
49
|
+
name = "alloc-no-stdlib"
|
50
|
+
version = "2.0.4"
|
51
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
52
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
53
|
+
|
54
|
+
[[package]]
|
55
|
+
name = "alloc-stdlib"
|
56
|
+
version = "0.2.2"
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
58
|
+
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
59
|
+
dependencies = [
|
60
|
+
"alloc-no-stdlib",
|
61
|
+
]
|
62
|
+
|
63
|
+
[[package]]
|
64
|
+
name = "allocator-api2"
|
65
|
+
version = "0.2.16"
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
67
|
+
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
|
68
|
+
|
69
|
+
[[package]]
|
70
|
+
name = "android-tzdata"
|
71
|
+
version = "0.1.1"
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
73
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
74
|
+
|
75
|
+
[[package]]
|
76
|
+
name = "android_system_properties"
|
77
|
+
version = "0.1.5"
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
79
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
80
|
+
dependencies = [
|
81
|
+
"libc",
|
82
|
+
]
|
83
|
+
|
84
|
+
[[package]]
|
85
|
+
name = "argminmax"
|
86
|
+
version = "0.6.2"
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
88
|
+
checksum = "52424b59d69d69d5056d508b260553afd91c57e21849579cd1f50ee8b8b88eaa"
|
89
|
+
dependencies = [
|
90
|
+
"num-traits",
|
91
|
+
]
|
92
|
+
|
93
|
+
[[package]]
|
94
|
+
name = "array-init-cursor"
|
95
|
+
version = "0.2.0"
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
97
|
+
checksum = "bf7d0a018de4f6aa429b9d33d69edf69072b1c5b1cb8d3e4a5f7ef898fc3eb76"
|
98
|
+
|
99
|
+
[[package]]
|
100
|
+
name = "async-stream"
|
101
|
+
version = "0.3.5"
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
103
|
+
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
|
104
|
+
dependencies = [
|
105
|
+
"async-stream-impl",
|
106
|
+
"futures-core",
|
107
|
+
"pin-project-lite",
|
108
|
+
]
|
109
|
+
|
110
|
+
[[package]]
|
111
|
+
name = "async-stream-impl"
|
112
|
+
version = "0.3.5"
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
114
|
+
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
115
|
+
dependencies = [
|
116
|
+
"proc-macro2",
|
117
|
+
"quote",
|
118
|
+
"syn 2.0.46",
|
119
|
+
]
|
120
|
+
|
121
|
+
[[package]]
|
122
|
+
name = "async-trait"
|
123
|
+
version = "0.1.77"
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
125
|
+
checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
|
126
|
+
dependencies = [
|
127
|
+
"proc-macro2",
|
128
|
+
"quote",
|
129
|
+
"syn 2.0.46",
|
130
|
+
]
|
131
|
+
|
132
|
+
[[package]]
|
133
|
+
name = "atoi"
|
134
|
+
version = "2.0.0"
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
136
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
137
|
+
dependencies = [
|
138
|
+
"num-traits",
|
139
|
+
]
|
140
|
+
|
141
|
+
[[package]]
|
142
|
+
name = "atoi_simd"
|
143
|
+
version = "0.15.6"
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
145
|
+
checksum = "9ae037714f313c1353189ead58ef9eec30a8e8dc101b2622d461418fd59e28a9"
|
146
|
+
|
147
|
+
[[package]]
|
148
|
+
name = "autocfg"
|
149
|
+
version = "1.1.0"
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
151
|
+
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
152
|
+
|
153
|
+
[[package]]
|
154
|
+
name = "avro-schema"
|
155
|
+
version = "0.3.0"
|
156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
157
|
+
checksum = "b5281855b39aba9684d2f47bf96983fbfd8f1725f12fabb0513a8ab879647bbd"
|
158
|
+
dependencies = [
|
159
|
+
"crc",
|
160
|
+
"fallible-streaming-iterator",
|
161
|
+
"libflate",
|
162
|
+
"serde",
|
163
|
+
"serde_json",
|
164
|
+
"snap",
|
165
|
+
]
|
166
|
+
|
167
|
+
[[package]]
|
168
|
+
name = "backtrace"
|
169
|
+
version = "0.3.69"
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
171
|
+
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
|
172
|
+
dependencies = [
|
173
|
+
"addr2line",
|
174
|
+
"cc",
|
175
|
+
"cfg-if",
|
176
|
+
"libc",
|
177
|
+
"miniz_oxide",
|
178
|
+
"object",
|
179
|
+
"rustc-demangle",
|
180
|
+
]
|
181
|
+
|
182
|
+
[[package]]
|
183
|
+
name = "base64"
|
184
|
+
version = "0.21.5"
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
186
|
+
checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
|
187
|
+
|
188
|
+
[[package]]
|
189
|
+
name = "bindgen"
|
190
|
+
version = "0.69.1"
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
192
|
+
checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2"
|
193
|
+
dependencies = [
|
194
|
+
"bitflags 2.4.1",
|
195
|
+
"cexpr",
|
196
|
+
"clang-sys",
|
197
|
+
"lazy_static",
|
198
|
+
"lazycell",
|
199
|
+
"peeking_take_while",
|
200
|
+
"proc-macro2",
|
201
|
+
"quote",
|
202
|
+
"regex",
|
203
|
+
"rustc-hash",
|
204
|
+
"shlex",
|
205
|
+
"syn 2.0.46",
|
206
|
+
]
|
207
|
+
|
208
|
+
[[package]]
|
209
|
+
name = "bitflags"
|
210
|
+
version = "1.3.2"
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
212
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
213
|
+
|
214
|
+
[[package]]
|
215
|
+
name = "bitflags"
|
216
|
+
version = "2.4.1"
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
218
|
+
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
|
219
|
+
dependencies = [
|
220
|
+
"serde",
|
221
|
+
]
|
222
|
+
|
223
|
+
[[package]]
|
224
|
+
name = "brotli"
|
225
|
+
version = "3.4.0"
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
227
|
+
checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f"
|
228
|
+
dependencies = [
|
229
|
+
"alloc-no-stdlib",
|
230
|
+
"alloc-stdlib",
|
231
|
+
"brotli-decompressor",
|
232
|
+
]
|
233
|
+
|
234
|
+
[[package]]
|
235
|
+
name = "brotli-decompressor"
|
236
|
+
version = "2.5.1"
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
238
|
+
checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f"
|
239
|
+
dependencies = [
|
240
|
+
"alloc-no-stdlib",
|
241
|
+
"alloc-stdlib",
|
242
|
+
]
|
243
|
+
|
244
|
+
[[package]]
|
245
|
+
name = "bumpalo"
|
246
|
+
version = "3.14.0"
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
248
|
+
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
|
249
|
+
|
250
|
+
[[package]]
|
251
|
+
name = "bytemuck"
|
252
|
+
version = "1.14.0"
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
254
|
+
checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6"
|
255
|
+
dependencies = [
|
256
|
+
"bytemuck_derive",
|
257
|
+
]
|
258
|
+
|
259
|
+
[[package]]
|
260
|
+
name = "bytemuck_derive"
|
261
|
+
version = "1.5.0"
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
263
|
+
checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1"
|
264
|
+
dependencies = [
|
265
|
+
"proc-macro2",
|
266
|
+
"quote",
|
267
|
+
"syn 2.0.46",
|
268
|
+
]
|
269
|
+
|
270
|
+
[[package]]
|
271
|
+
name = "bytes"
|
272
|
+
version = "1.5.0"
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
274
|
+
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
|
275
|
+
|
276
|
+
[[package]]
|
277
|
+
name = "cc"
|
278
|
+
version = "1.0.83"
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
280
|
+
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
|
281
|
+
dependencies = [
|
282
|
+
"jobserver",
|
283
|
+
"libc",
|
284
|
+
]
|
285
|
+
|
286
|
+
[[package]]
|
287
|
+
name = "cexpr"
|
288
|
+
version = "0.6.0"
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
290
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
291
|
+
dependencies = [
|
292
|
+
"nom",
|
293
|
+
]
|
294
|
+
|
295
|
+
[[package]]
|
296
|
+
name = "cfg-if"
|
297
|
+
version = "1.0.0"
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
299
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
300
|
+
|
301
|
+
[[package]]
|
302
|
+
name = "chrono"
|
303
|
+
version = "0.4.35"
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
305
|
+
checksum = "8eaf5903dcbc0a39312feb77df2ff4c76387d591b9fc7b04a238dcf8bb62639a"
|
306
|
+
dependencies = [
|
307
|
+
"android-tzdata",
|
308
|
+
"iana-time-zone",
|
309
|
+
"js-sys",
|
310
|
+
"num-traits",
|
311
|
+
"serde",
|
312
|
+
"wasm-bindgen",
|
313
|
+
"windows-targets 0.52.0",
|
314
|
+
]
|
315
|
+
|
316
|
+
[[package]]
|
317
|
+
name = "chrono-tz"
|
318
|
+
version = "0.8.5"
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
320
|
+
checksum = "91d7b79e99bfaa0d47da0687c43aa3b7381938a62ad3a6498599039321f660b7"
|
321
|
+
dependencies = [
|
322
|
+
"chrono",
|
323
|
+
"chrono-tz-build",
|
324
|
+
"phf",
|
325
|
+
]
|
326
|
+
|
327
|
+
[[package]]
|
328
|
+
name = "chrono-tz-build"
|
329
|
+
version = "0.2.1"
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
331
|
+
checksum = "433e39f13c9a060046954e0592a8d0a4bcb1040125cbf91cb8ee58964cfb350f"
|
332
|
+
dependencies = [
|
333
|
+
"parse-zoneinfo",
|
334
|
+
"phf",
|
335
|
+
"phf_codegen",
|
336
|
+
]
|
337
|
+
|
338
|
+
[[package]]
|
339
|
+
name = "clang-sys"
|
340
|
+
version = "1.7.0"
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
342
|
+
checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
|
343
|
+
dependencies = [
|
344
|
+
"glob",
|
345
|
+
"libc",
|
346
|
+
"libloading",
|
347
|
+
]
|
348
|
+
|
349
|
+
[[package]]
|
350
|
+
name = "comfy-table"
|
351
|
+
version = "7.1.0"
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
353
|
+
checksum = "7c64043d6c7b7a4c58e39e7efccfdea7b93d885a795d0c054a69dbbf4dd52686"
|
354
|
+
dependencies = [
|
355
|
+
"crossterm",
|
356
|
+
"strum",
|
357
|
+
"strum_macros",
|
358
|
+
"unicode-width",
|
359
|
+
]
|
360
|
+
|
361
|
+
[[package]]
|
362
|
+
name = "core-foundation-sys"
|
363
|
+
version = "0.8.6"
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
365
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
366
|
+
|
367
|
+
[[package]]
|
368
|
+
name = "crc"
|
369
|
+
version = "2.1.0"
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
371
|
+
checksum = "49fc9a695bca7f35f5f4c15cddc84415f66a74ea78eef08e90c5024f2b540e23"
|
372
|
+
dependencies = [
|
373
|
+
"crc-catalog",
|
374
|
+
]
|
375
|
+
|
376
|
+
[[package]]
|
377
|
+
name = "crc-catalog"
|
378
|
+
version = "1.1.1"
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
380
|
+
checksum = "ccaeedb56da03b09f598226e25e80088cb4cd25f316e6e4df7d695f0feeb1403"
|
381
|
+
|
382
|
+
[[package]]
|
383
|
+
name = "crc32fast"
|
384
|
+
version = "1.3.2"
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
386
|
+
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
387
|
+
dependencies = [
|
388
|
+
"cfg-if",
|
389
|
+
]
|
390
|
+
|
391
|
+
[[package]]
|
392
|
+
name = "crossbeam-channel"
|
393
|
+
version = "0.5.10"
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
395
|
+
checksum = "82a9b73a36529d9c47029b9fb3a6f0ea3cc916a261195352ba19e770fc1748b2"
|
396
|
+
dependencies = [
|
397
|
+
"cfg-if",
|
398
|
+
"crossbeam-utils",
|
399
|
+
]
|
400
|
+
|
401
|
+
[[package]]
|
402
|
+
name = "crossbeam-deque"
|
403
|
+
version = "0.8.4"
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
405
|
+
checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751"
|
406
|
+
dependencies = [
|
407
|
+
"cfg-if",
|
408
|
+
"crossbeam-epoch",
|
409
|
+
"crossbeam-utils",
|
410
|
+
]
|
411
|
+
|
412
|
+
[[package]]
|
413
|
+
name = "crossbeam-epoch"
|
414
|
+
version = "0.9.17"
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
416
|
+
checksum = "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d"
|
417
|
+
dependencies = [
|
418
|
+
"autocfg",
|
419
|
+
"cfg-if",
|
420
|
+
"crossbeam-utils",
|
421
|
+
]
|
422
|
+
|
423
|
+
[[package]]
|
424
|
+
name = "crossbeam-queue"
|
425
|
+
version = "0.3.10"
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
427
|
+
checksum = "adc6598521bb5a83d491e8c1fe51db7296019d2ca3cb93cc6c2a20369a4d78a2"
|
428
|
+
dependencies = [
|
429
|
+
"cfg-if",
|
430
|
+
"crossbeam-utils",
|
431
|
+
]
|
432
|
+
|
433
|
+
[[package]]
|
434
|
+
name = "crossbeam-utils"
|
435
|
+
version = "0.8.18"
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
437
|
+
checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c"
|
438
|
+
dependencies = [
|
439
|
+
"cfg-if",
|
440
|
+
]
|
441
|
+
|
442
|
+
[[package]]
|
443
|
+
name = "crossterm"
|
444
|
+
version = "0.27.0"
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
446
|
+
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
|
447
|
+
dependencies = [
|
448
|
+
"bitflags 2.4.1",
|
449
|
+
"crossterm_winapi",
|
450
|
+
"libc",
|
451
|
+
"parking_lot",
|
452
|
+
"winapi",
|
453
|
+
]
|
454
|
+
|
455
|
+
[[package]]
|
456
|
+
name = "crossterm_winapi"
|
457
|
+
version = "0.9.1"
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
459
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
460
|
+
dependencies = [
|
461
|
+
"winapi",
|
462
|
+
]
|
463
|
+
|
464
|
+
[[package]]
|
465
|
+
name = "dyn-clone"
|
466
|
+
version = "1.0.16"
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
468
|
+
checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d"
|
469
|
+
|
470
|
+
[[package]]
|
471
|
+
name = "either"
|
472
|
+
version = "1.9.0"
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
474
|
+
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
475
|
+
|
476
|
+
[[package]]
|
477
|
+
name = "enum_dispatch"
|
478
|
+
version = "0.3.12"
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
480
|
+
checksum = "8f33313078bb8d4d05a2733a94ac4c2d8a0df9a2b84424ebf4f33bfc224a890e"
|
481
|
+
dependencies = [
|
482
|
+
"once_cell",
|
483
|
+
"proc-macro2",
|
484
|
+
"quote",
|
485
|
+
"syn 2.0.46",
|
486
|
+
]
|
487
|
+
|
488
|
+
[[package]]
|
489
|
+
name = "equivalent"
|
490
|
+
version = "1.0.1"
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
492
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
493
|
+
|
494
|
+
[[package]]
|
495
|
+
name = "ethnum"
|
496
|
+
version = "1.5.0"
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
498
|
+
checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c"
|
499
|
+
|
500
|
+
[[package]]
|
501
|
+
name = "fallible-streaming-iterator"
|
502
|
+
version = "0.1.9"
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
504
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
505
|
+
|
506
|
+
[[package]]
|
507
|
+
name = "fast-float"
|
508
|
+
version = "0.2.0"
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
510
|
+
checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
|
511
|
+
|
512
|
+
[[package]]
|
513
|
+
name = "flate2"
|
514
|
+
version = "1.0.28"
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
516
|
+
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
|
517
|
+
dependencies = [
|
518
|
+
"crc32fast",
|
519
|
+
"miniz_oxide",
|
520
|
+
]
|
521
|
+
|
522
|
+
[[package]]
|
523
|
+
name = "float-cmp"
|
524
|
+
version = "0.9.0"
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
526
|
+
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
527
|
+
dependencies = [
|
528
|
+
"num-traits",
|
529
|
+
]
|
530
|
+
|
531
|
+
[[package]]
|
532
|
+
name = "foreign_vec"
|
533
|
+
version = "0.1.0"
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
535
|
+
checksum = "ee1b05cbd864bcaecbd3455d6d967862d446e4ebfc3c2e5e5b9841e53cba6673"
|
536
|
+
|
537
|
+
[[package]]
|
538
|
+
name = "futures"
|
539
|
+
version = "0.3.30"
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
541
|
+
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
542
|
+
dependencies = [
|
543
|
+
"futures-channel",
|
544
|
+
"futures-core",
|
545
|
+
"futures-executor",
|
546
|
+
"futures-io",
|
547
|
+
"futures-sink",
|
548
|
+
"futures-task",
|
549
|
+
"futures-util",
|
550
|
+
]
|
551
|
+
|
552
|
+
[[package]]
|
553
|
+
name = "futures-channel"
|
554
|
+
version = "0.3.30"
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
556
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
557
|
+
dependencies = [
|
558
|
+
"futures-core",
|
559
|
+
"futures-sink",
|
560
|
+
]
|
561
|
+
|
562
|
+
[[package]]
|
563
|
+
name = "futures-core"
|
564
|
+
version = "0.3.30"
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
566
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
567
|
+
|
568
|
+
[[package]]
|
569
|
+
name = "futures-executor"
|
570
|
+
version = "0.3.30"
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
572
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
573
|
+
dependencies = [
|
574
|
+
"futures-core",
|
575
|
+
"futures-task",
|
576
|
+
"futures-util",
|
577
|
+
]
|
578
|
+
|
579
|
+
[[package]]
|
580
|
+
name = "futures-io"
|
581
|
+
version = "0.3.30"
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
583
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
584
|
+
|
585
|
+
[[package]]
|
586
|
+
name = "futures-macro"
|
587
|
+
version = "0.3.30"
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
589
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
590
|
+
dependencies = [
|
591
|
+
"proc-macro2",
|
592
|
+
"quote",
|
593
|
+
"syn 2.0.46",
|
594
|
+
]
|
595
|
+
|
596
|
+
[[package]]
|
597
|
+
name = "futures-sink"
|
598
|
+
version = "0.3.30"
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
601
|
+
|
602
|
+
[[package]]
|
603
|
+
name = "futures-task"
|
604
|
+
version = "0.3.30"
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
606
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
607
|
+
|
608
|
+
[[package]]
|
609
|
+
name = "futures-util"
|
610
|
+
version = "0.3.30"
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
612
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
613
|
+
dependencies = [
|
614
|
+
"futures-channel",
|
615
|
+
"futures-core",
|
616
|
+
"futures-io",
|
617
|
+
"futures-macro",
|
618
|
+
"futures-sink",
|
619
|
+
"futures-task",
|
620
|
+
"memchr",
|
621
|
+
"pin-project-lite",
|
622
|
+
"pin-utils",
|
623
|
+
"slab",
|
624
|
+
]
|
625
|
+
|
626
|
+
[[package]]
|
627
|
+
name = "getrandom"
|
628
|
+
version = "0.2.11"
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
630
|
+
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
|
631
|
+
dependencies = [
|
632
|
+
"cfg-if",
|
633
|
+
"js-sys",
|
634
|
+
"libc",
|
635
|
+
"wasi",
|
636
|
+
"wasm-bindgen",
|
637
|
+
]
|
638
|
+
|
639
|
+
[[package]]
|
640
|
+
name = "gimli"
|
641
|
+
version = "0.28.1"
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
643
|
+
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
644
|
+
|
645
|
+
[[package]]
|
646
|
+
name = "glob"
|
647
|
+
version = "0.3.1"
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
649
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
650
|
+
|
651
|
+
[[package]]
|
652
|
+
name = "halfbrown"
|
653
|
+
version = "0.2.4"
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
655
|
+
checksum = "5681137554ddff44396e5f149892c769d45301dd9aa19c51602a89ee214cb0ec"
|
656
|
+
dependencies = [
|
657
|
+
"hashbrown 0.13.2",
|
658
|
+
"serde",
|
659
|
+
]
|
660
|
+
|
661
|
+
[[package]]
|
662
|
+
name = "hashbrown"
|
663
|
+
version = "0.13.2"
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
665
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
666
|
+
dependencies = [
|
667
|
+
"ahash",
|
668
|
+
]
|
669
|
+
|
670
|
+
[[package]]
|
671
|
+
name = "hashbrown"
|
672
|
+
version = "0.14.3"
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
674
|
+
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
675
|
+
dependencies = [
|
676
|
+
"ahash",
|
677
|
+
"allocator-api2",
|
678
|
+
"rayon",
|
679
|
+
]
|
680
|
+
|
681
|
+
[[package]]
|
682
|
+
name = "heck"
|
683
|
+
version = "0.4.1"
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
685
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
686
|
+
|
687
|
+
[[package]]
|
688
|
+
name = "hermit-abi"
|
689
|
+
version = "0.3.3"
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
691
|
+
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
|
692
|
+
|
693
|
+
[[package]]
|
694
|
+
name = "hex"
|
695
|
+
version = "0.4.3"
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
697
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
698
|
+
|
699
|
+
[[package]]
|
700
|
+
name = "home"
|
701
|
+
version = "0.5.9"
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
703
|
+
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
704
|
+
dependencies = [
|
705
|
+
"windows-sys 0.52.0",
|
706
|
+
]
|
707
|
+
|
708
|
+
[[package]]
|
709
|
+
name = "iana-time-zone"
|
710
|
+
version = "0.1.59"
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
712
|
+
checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
|
713
|
+
dependencies = [
|
714
|
+
"android_system_properties",
|
715
|
+
"core-foundation-sys",
|
716
|
+
"iana-time-zone-haiku",
|
717
|
+
"js-sys",
|
718
|
+
"wasm-bindgen",
|
719
|
+
"windows-core",
|
720
|
+
]
|
721
|
+
|
722
|
+
[[package]]
|
723
|
+
name = "iana-time-zone-haiku"
|
724
|
+
version = "0.1.2"
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
726
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
727
|
+
dependencies = [
|
728
|
+
"cc",
|
729
|
+
]
|
730
|
+
|
731
|
+
[[package]]
|
732
|
+
name = "indexmap"
|
733
|
+
version = "2.1.0"
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
735
|
+
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
|
736
|
+
dependencies = [
|
737
|
+
"equivalent",
|
738
|
+
"hashbrown 0.14.3",
|
739
|
+
"serde",
|
740
|
+
]
|
741
|
+
|
742
|
+
[[package]]
|
743
|
+
name = "itoa"
|
744
|
+
version = "1.0.10"
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
746
|
+
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
747
|
+
|
748
|
+
[[package]]
|
749
|
+
name = "itoap"
|
750
|
+
version = "1.0.1"
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
752
|
+
checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
|
753
|
+
|
754
|
+
[[package]]
|
755
|
+
name = "jemalloc-sys"
|
756
|
+
version = "0.5.4+5.3.0-patched"
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
758
|
+
checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2"
|
759
|
+
dependencies = [
|
760
|
+
"cc",
|
761
|
+
"libc",
|
762
|
+
]
|
763
|
+
|
764
|
+
[[package]]
|
765
|
+
name = "jemallocator"
|
766
|
+
version = "0.5.4"
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
768
|
+
checksum = "a0de374a9f8e63150e6f5e8a60cc14c668226d7a347d8aee1a45766e3c4dd3bc"
|
769
|
+
dependencies = [
|
770
|
+
"jemalloc-sys",
|
771
|
+
"libc",
|
772
|
+
]
|
773
|
+
|
774
|
+
[[package]]
|
775
|
+
name = "jobserver"
|
776
|
+
version = "0.1.27"
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
778
|
+
checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"
|
779
|
+
dependencies = [
|
780
|
+
"libc",
|
781
|
+
]
|
782
|
+
|
783
|
+
[[package]]
|
784
|
+
name = "js-sys"
|
785
|
+
version = "0.3.66"
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
787
|
+
checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
|
788
|
+
dependencies = [
|
789
|
+
"wasm-bindgen",
|
790
|
+
]
|
791
|
+
|
792
|
+
[[package]]
|
793
|
+
name = "jsonpath_lib_polars_vendor"
|
794
|
+
version = "0.0.1"
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
796
|
+
checksum = "f4bd9354947622f7471ff713eacaabdb683ccb13bba4edccaab9860abf480b7d"
|
797
|
+
dependencies = [
|
798
|
+
"log",
|
799
|
+
"serde",
|
800
|
+
"serde_json",
|
801
|
+
]
|
802
|
+
|
803
|
+
[[package]]
|
804
|
+
name = "lazy_static"
|
805
|
+
version = "1.4.0"
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
807
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
808
|
+
|
809
|
+
[[package]]
|
810
|
+
name = "lazycell"
|
811
|
+
version = "1.3.0"
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
813
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
814
|
+
|
815
|
+
[[package]]
|
816
|
+
name = "lexical-core"
|
817
|
+
version = "0.8.5"
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
819
|
+
checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
|
820
|
+
dependencies = [
|
821
|
+
"lexical-parse-float",
|
822
|
+
"lexical-parse-integer",
|
823
|
+
"lexical-util",
|
824
|
+
"lexical-write-float",
|
825
|
+
"lexical-write-integer",
|
826
|
+
]
|
827
|
+
|
828
|
+
[[package]]
|
829
|
+
name = "lexical-parse-float"
|
830
|
+
version = "0.8.5"
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
832
|
+
checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
|
833
|
+
dependencies = [
|
834
|
+
"lexical-parse-integer",
|
835
|
+
"lexical-util",
|
836
|
+
"static_assertions",
|
837
|
+
]
|
838
|
+
|
839
|
+
[[package]]
|
840
|
+
name = "lexical-parse-integer"
|
841
|
+
version = "0.8.6"
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
843
|
+
checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
|
844
|
+
dependencies = [
|
845
|
+
"lexical-util",
|
846
|
+
"static_assertions",
|
847
|
+
]
|
848
|
+
|
849
|
+
[[package]]
|
850
|
+
name = "lexical-util"
|
851
|
+
version = "0.8.5"
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
853
|
+
checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
|
854
|
+
dependencies = [
|
855
|
+
"static_assertions",
|
856
|
+
]
|
857
|
+
|
858
|
+
[[package]]
|
859
|
+
name = "lexical-write-float"
|
860
|
+
version = "0.8.5"
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
862
|
+
checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
|
863
|
+
dependencies = [
|
864
|
+
"lexical-util",
|
865
|
+
"lexical-write-integer",
|
866
|
+
"static_assertions",
|
867
|
+
]
|
868
|
+
|
869
|
+
[[package]]
|
870
|
+
name = "lexical-write-integer"
|
871
|
+
version = "0.8.5"
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
873
|
+
checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
|
874
|
+
dependencies = [
|
875
|
+
"lexical-util",
|
876
|
+
"static_assertions",
|
877
|
+
]
|
878
|
+
|
879
|
+
[[package]]
|
880
|
+
name = "libc"
|
881
|
+
version = "0.2.151"
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
883
|
+
checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
|
884
|
+
|
885
|
+
[[package]]
|
886
|
+
name = "libflate"
|
887
|
+
version = "1.4.0"
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
889
|
+
checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18"
|
890
|
+
dependencies = [
|
891
|
+
"adler32",
|
892
|
+
"crc32fast",
|
893
|
+
"libflate_lz77",
|
894
|
+
]
|
895
|
+
|
896
|
+
[[package]]
|
897
|
+
name = "libflate_lz77"
|
898
|
+
version = "1.2.0"
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
900
|
+
checksum = "a52d3a8bfc85f250440e4424db7d857e241a3aebbbe301f3eb606ab15c39acbf"
|
901
|
+
dependencies = [
|
902
|
+
"rle-decode-fast",
|
903
|
+
]
|
904
|
+
|
905
|
+
[[package]]
|
906
|
+
name = "libloading"
|
907
|
+
version = "0.8.1"
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
909
|
+
checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161"
|
910
|
+
dependencies = [
|
911
|
+
"cfg-if",
|
912
|
+
"windows-sys 0.48.0",
|
913
|
+
]
|
914
|
+
|
915
|
+
[[package]]
|
916
|
+
name = "libm"
|
917
|
+
version = "0.2.8"
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
919
|
+
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
920
|
+
|
921
|
+
[[package]]
|
922
|
+
name = "libmimalloc-sys"
|
923
|
+
version = "0.1.35"
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
925
|
+
checksum = "3979b5c37ece694f1f5e51e7ecc871fdb0f517ed04ee45f88d15d6d553cb9664"
|
926
|
+
dependencies = [
|
927
|
+
"cc",
|
928
|
+
"libc",
|
929
|
+
]
|
930
|
+
|
931
|
+
[[package]]
|
932
|
+
name = "lock_api"
|
933
|
+
version = "0.4.11"
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
935
|
+
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
936
|
+
dependencies = [
|
937
|
+
"autocfg",
|
938
|
+
"scopeguard",
|
939
|
+
]
|
940
|
+
|
941
|
+
[[package]]
|
942
|
+
name = "log"
|
943
|
+
version = "0.4.20"
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
945
|
+
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
946
|
+
|
947
|
+
[[package]]
|
948
|
+
name = "lz4"
|
949
|
+
version = "1.24.0"
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
951
|
+
checksum = "7e9e2dd86df36ce760a60f6ff6ad526f7ba1f14ba0356f8254fb6905e6494df1"
|
952
|
+
dependencies = [
|
953
|
+
"libc",
|
954
|
+
"lz4-sys",
|
955
|
+
]
|
956
|
+
|
957
|
+
[[package]]
|
958
|
+
name = "lz4-sys"
|
959
|
+
version = "1.9.4"
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
961
|
+
checksum = "57d27b317e207b10f69f5e75494119e391a96f48861ae870d1da6edac98ca900"
|
962
|
+
dependencies = [
|
963
|
+
"cc",
|
964
|
+
"libc",
|
965
|
+
]
|
966
|
+
|
967
|
+
[[package]]
|
968
|
+
name = "magnus"
|
969
|
+
version = "0.6.3"
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
971
|
+
checksum = "0fc7a31fb0b64761e3cd09a6975577601fccc5f08b8fc9245064fc4f71ed6a9d"
|
972
|
+
dependencies = [
|
973
|
+
"magnus-macros",
|
974
|
+
"rb-sys",
|
975
|
+
"rb-sys-env",
|
976
|
+
"seq-macro",
|
977
|
+
]
|
978
|
+
|
979
|
+
[[package]]
|
980
|
+
name = "magnus-macros"
|
981
|
+
version = "0.6.0"
|
982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
983
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
984
|
+
dependencies = [
|
985
|
+
"proc-macro2",
|
986
|
+
"quote",
|
987
|
+
"syn 2.0.46",
|
988
|
+
]
|
989
|
+
|
990
|
+
[[package]]
|
991
|
+
name = "memchr"
|
992
|
+
version = "2.7.1"
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
994
|
+
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
|
995
|
+
|
996
|
+
[[package]]
|
997
|
+
name = "memmap2"
|
998
|
+
version = "0.7.1"
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1000
|
+
checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6"
|
1001
|
+
dependencies = [
|
1002
|
+
"libc",
|
1003
|
+
]
|
1004
|
+
|
1005
|
+
[[package]]
|
1006
|
+
name = "mimalloc"
|
1007
|
+
version = "0.1.39"
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1009
|
+
checksum = "fa01922b5ea280a911e323e4d2fd24b7fe5cc4042e0d2cda3c40775cdc4bdc9c"
|
1010
|
+
dependencies = [
|
1011
|
+
"libmimalloc-sys",
|
1012
|
+
]
|
1013
|
+
|
1014
|
+
[[package]]
|
1015
|
+
name = "minimal-lexical"
|
1016
|
+
version = "0.2.1"
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1018
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
1019
|
+
|
1020
|
+
[[package]]
|
1021
|
+
name = "miniz_oxide"
|
1022
|
+
version = "0.7.1"
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1024
|
+
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
|
1025
|
+
dependencies = [
|
1026
|
+
"adler",
|
1027
|
+
]
|
1028
|
+
|
1029
|
+
[[package]]
|
1030
|
+
name = "mio"
|
1031
|
+
version = "0.8.10"
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1033
|
+
checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
|
1034
|
+
dependencies = [
|
1035
|
+
"libc",
|
1036
|
+
"wasi",
|
1037
|
+
"windows-sys 0.48.0",
|
1038
|
+
]
|
1039
|
+
|
1040
|
+
[[package]]
|
1041
|
+
name = "multiversion"
|
1042
|
+
version = "0.7.3"
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1044
|
+
checksum = "b2c7b9d7fe61760ce5ea19532ead98541f6b4c495d87247aff9826445cf6872a"
|
1045
|
+
dependencies = [
|
1046
|
+
"multiversion-macros",
|
1047
|
+
"target-features",
|
1048
|
+
]
|
1049
|
+
|
1050
|
+
[[package]]
|
1051
|
+
name = "multiversion-macros"
|
1052
|
+
version = "0.7.3"
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1054
|
+
checksum = "26a83d8500ed06d68877e9de1dde76c1dbb83885dcdbda4ef44ccbc3fbda2ac8"
|
1055
|
+
dependencies = [
|
1056
|
+
"proc-macro2",
|
1057
|
+
"quote",
|
1058
|
+
"syn 1.0.109",
|
1059
|
+
"target-features",
|
1060
|
+
]
|
1061
|
+
|
1062
|
+
[[package]]
|
1063
|
+
name = "nom"
|
1064
|
+
version = "7.1.3"
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1066
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
1067
|
+
dependencies = [
|
1068
|
+
"memchr",
|
1069
|
+
"minimal-lexical",
|
1070
|
+
]
|
1071
|
+
|
1072
|
+
[[package]]
|
1073
|
+
name = "now"
|
1074
|
+
version = "0.1.3"
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1076
|
+
checksum = "6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0"
|
1077
|
+
dependencies = [
|
1078
|
+
"chrono",
|
1079
|
+
]
|
1080
|
+
|
1081
|
+
[[package]]
|
1082
|
+
name = "ntapi"
|
1083
|
+
version = "0.4.1"
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1085
|
+
checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
|
1086
|
+
dependencies = [
|
1087
|
+
"winapi",
|
1088
|
+
]
|
1089
|
+
|
1090
|
+
[[package]]
|
1091
|
+
name = "num-traits"
|
1092
|
+
version = "0.2.17"
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1094
|
+
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
|
1095
|
+
dependencies = [
|
1096
|
+
"autocfg",
|
1097
|
+
"libm",
|
1098
|
+
]
|
1099
|
+
|
1100
|
+
[[package]]
|
1101
|
+
name = "num_cpus"
|
1102
|
+
version = "1.16.0"
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1104
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
1105
|
+
dependencies = [
|
1106
|
+
"hermit-abi",
|
1107
|
+
"libc",
|
1108
|
+
]
|
1109
|
+
|
1110
|
+
[[package]]
|
1111
|
+
name = "object"
|
1112
|
+
version = "0.32.2"
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1114
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
1115
|
+
dependencies = [
|
1116
|
+
"memchr",
|
1117
|
+
]
|
1118
|
+
|
1119
|
+
[[package]]
|
1120
|
+
name = "once_cell"
|
1121
|
+
version = "1.19.0"
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1123
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
1124
|
+
|
1125
|
+
[[package]]
|
1126
|
+
name = "parking_lot"
|
1127
|
+
version = "0.12.1"
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1129
|
+
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
1130
|
+
dependencies = [
|
1131
|
+
"lock_api",
|
1132
|
+
"parking_lot_core",
|
1133
|
+
]
|
1134
|
+
|
1135
|
+
[[package]]
|
1136
|
+
name = "parking_lot_core"
|
1137
|
+
version = "0.9.9"
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1139
|
+
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
1140
|
+
dependencies = [
|
1141
|
+
"cfg-if",
|
1142
|
+
"libc",
|
1143
|
+
"redox_syscall",
|
1144
|
+
"smallvec",
|
1145
|
+
"windows-targets 0.48.5",
|
1146
|
+
]
|
1147
|
+
|
1148
|
+
[[package]]
|
1149
|
+
name = "parquet-format-safe"
|
1150
|
+
version = "0.2.4"
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1152
|
+
checksum = "1131c54b167dd4e4799ce762e1ab01549ebb94d5bdd13e6ec1b467491c378e1f"
|
1153
|
+
dependencies = [
|
1154
|
+
"async-trait",
|
1155
|
+
"futures",
|
1156
|
+
]
|
1157
|
+
|
1158
|
+
[[package]]
|
1159
|
+
name = "parse-zoneinfo"
|
1160
|
+
version = "0.3.0"
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1162
|
+
checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
|
1163
|
+
dependencies = [
|
1164
|
+
"regex",
|
1165
|
+
]
|
1166
|
+
|
1167
|
+
[[package]]
|
1168
|
+
name = "peeking_take_while"
|
1169
|
+
version = "0.1.2"
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1171
|
+
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
1172
|
+
|
1173
|
+
[[package]]
|
1174
|
+
name = "percent-encoding"
|
1175
|
+
version = "2.3.1"
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1177
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
1178
|
+
|
1179
|
+
[[package]]
|
1180
|
+
name = "phf"
|
1181
|
+
version = "0.11.2"
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1183
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
1184
|
+
dependencies = [
|
1185
|
+
"phf_shared",
|
1186
|
+
]
|
1187
|
+
|
1188
|
+
[[package]]
|
1189
|
+
name = "phf_codegen"
|
1190
|
+
version = "0.11.2"
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1192
|
+
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
|
1193
|
+
dependencies = [
|
1194
|
+
"phf_generator",
|
1195
|
+
"phf_shared",
|
1196
|
+
]
|
1197
|
+
|
1198
|
+
[[package]]
|
1199
|
+
name = "phf_generator"
|
1200
|
+
version = "0.11.2"
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1202
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
1203
|
+
dependencies = [
|
1204
|
+
"phf_shared",
|
1205
|
+
"rand",
|
1206
|
+
]
|
1207
|
+
|
1208
|
+
[[package]]
|
1209
|
+
name = "phf_shared"
|
1210
|
+
version = "0.11.2"
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1212
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
1213
|
+
dependencies = [
|
1214
|
+
"siphasher",
|
1215
|
+
]
|
1216
|
+
|
1217
|
+
[[package]]
|
1218
|
+
name = "pin-project-lite"
|
1219
|
+
version = "0.2.13"
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1221
|
+
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
|
1222
|
+
|
1223
|
+
[[package]]
|
1224
|
+
name = "pin-utils"
|
1225
|
+
version = "0.1.0"
|
1226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1227
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1228
|
+
|
1229
|
+
[[package]]
|
1230
|
+
name = "pkg-config"
|
1231
|
+
version = "0.3.28"
|
1232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1233
|
+
checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a"
|
1234
|
+
|
1235
|
+
[[package]]
|
1236
|
+
name = "planus"
|
1237
|
+
version = "0.3.1"
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1239
|
+
checksum = "fc1691dd09e82f428ce8d6310bd6d5da2557c82ff17694d2a32cad7242aea89f"
|
1240
|
+
dependencies = [
|
1241
|
+
"array-init-cursor",
|
1242
|
+
]
|
1243
|
+
|
1244
|
+
[[package]]
|
1245
|
+
name = "polars"
|
1246
|
+
version = "0.10.0"
|
1247
|
+
dependencies = [
|
1248
|
+
"ahash",
|
1249
|
+
"chrono",
|
1250
|
+
"either",
|
1251
|
+
"jemallocator",
|
1252
|
+
"magnus",
|
1253
|
+
"mimalloc",
|
1254
|
+
"polars 0.39.2",
|
1255
|
+
"polars-core",
|
1256
|
+
"polars-parquet",
|
1257
|
+
"polars-utils",
|
1258
|
+
"serde_json",
|
1259
|
+
"smartstring",
|
1260
|
+
]
|
1261
|
+
|
1262
|
+
[[package]]
|
1263
|
+
name = "polars"
|
1264
|
+
version = "0.39.2"
|
1265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1266
|
+
checksum = "0ea21b858b16b9c0e17a12db2800d11aa5b4bd182be6b3022eb537bbfc1f2db5"
|
1267
|
+
dependencies = [
|
1268
|
+
"getrandom",
|
1269
|
+
"polars-arrow",
|
1270
|
+
"polars-core",
|
1271
|
+
"polars-error",
|
1272
|
+
"polars-io",
|
1273
|
+
"polars-lazy",
|
1274
|
+
"polars-ops",
|
1275
|
+
"polars-parquet",
|
1276
|
+
"polars-plan",
|
1277
|
+
"polars-sql",
|
1278
|
+
"polars-time",
|
1279
|
+
"polars-utils",
|
1280
|
+
"version_check",
|
1281
|
+
]
|
1282
|
+
|
1283
|
+
[[package]]
|
1284
|
+
name = "polars-arrow"
|
1285
|
+
version = "0.39.2"
|
1286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1287
|
+
checksum = "725b09f2b5ef31279b66e27bbab63c58d49d8f6696b66b1f46c7eaab95e80f75"
|
1288
|
+
dependencies = [
|
1289
|
+
"ahash",
|
1290
|
+
"atoi",
|
1291
|
+
"atoi_simd",
|
1292
|
+
"avro-schema",
|
1293
|
+
"bytemuck",
|
1294
|
+
"chrono",
|
1295
|
+
"chrono-tz",
|
1296
|
+
"dyn-clone",
|
1297
|
+
"either",
|
1298
|
+
"ethnum",
|
1299
|
+
"fast-float",
|
1300
|
+
"foreign_vec",
|
1301
|
+
"futures",
|
1302
|
+
"getrandom",
|
1303
|
+
"hashbrown 0.14.3",
|
1304
|
+
"itoa",
|
1305
|
+
"itoap",
|
1306
|
+
"lz4",
|
1307
|
+
"multiversion",
|
1308
|
+
"num-traits",
|
1309
|
+
"polars-arrow-format",
|
1310
|
+
"polars-error",
|
1311
|
+
"polars-utils",
|
1312
|
+
"ryu",
|
1313
|
+
"serde",
|
1314
|
+
"simdutf8",
|
1315
|
+
"streaming-iterator",
|
1316
|
+
"strength_reduce",
|
1317
|
+
"version_check",
|
1318
|
+
"zstd",
|
1319
|
+
]
|
1320
|
+
|
1321
|
+
[[package]]
|
1322
|
+
name = "polars-arrow-format"
|
1323
|
+
version = "0.1.0"
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1325
|
+
checksum = "19b0ef2474af9396b19025b189d96e992311e6a47f90c53cd998b36c4c64b84c"
|
1326
|
+
dependencies = [
|
1327
|
+
"planus",
|
1328
|
+
"serde",
|
1329
|
+
]
|
1330
|
+
|
1331
|
+
[[package]]
|
1332
|
+
name = "polars-compute"
|
1333
|
+
version = "0.39.2"
|
1334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1335
|
+
checksum = "a796945b14b14fbb79b91ef0406e6fddca2be636e889f81ea5d6ee7d36efb4fe"
|
1336
|
+
dependencies = [
|
1337
|
+
"bytemuck",
|
1338
|
+
"either",
|
1339
|
+
"num-traits",
|
1340
|
+
"polars-arrow",
|
1341
|
+
"polars-error",
|
1342
|
+
"polars-utils",
|
1343
|
+
"strength_reduce",
|
1344
|
+
"version_check",
|
1345
|
+
]
|
1346
|
+
|
1347
|
+
[[package]]
|
1348
|
+
name = "polars-core"
|
1349
|
+
version = "0.39.2"
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1351
|
+
checksum = "465f70d3e96b6d0b1a43c358ba451286b8c8bd56696feff020d65702aa33e35c"
|
1352
|
+
dependencies = [
|
1353
|
+
"ahash",
|
1354
|
+
"bitflags 2.4.1",
|
1355
|
+
"bytemuck",
|
1356
|
+
"chrono",
|
1357
|
+
"chrono-tz",
|
1358
|
+
"comfy-table",
|
1359
|
+
"either",
|
1360
|
+
"hashbrown 0.14.3",
|
1361
|
+
"indexmap",
|
1362
|
+
"num-traits",
|
1363
|
+
"once_cell",
|
1364
|
+
"polars-arrow",
|
1365
|
+
"polars-compute",
|
1366
|
+
"polars-error",
|
1367
|
+
"polars-row",
|
1368
|
+
"polars-utils",
|
1369
|
+
"rand",
|
1370
|
+
"rand_distr",
|
1371
|
+
"rayon",
|
1372
|
+
"regex",
|
1373
|
+
"serde",
|
1374
|
+
"serde_json",
|
1375
|
+
"smartstring",
|
1376
|
+
"thiserror",
|
1377
|
+
"version_check",
|
1378
|
+
"xxhash-rust",
|
1379
|
+
]
|
1380
|
+
|
1381
|
+
[[package]]
|
1382
|
+
name = "polars-error"
|
1383
|
+
version = "0.39.2"
|
1384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1385
|
+
checksum = "5224d5d05e6b8a6f78b75951ae1b5f82c8ab1979e11ffaf5fd41941e3d5b0757"
|
1386
|
+
dependencies = [
|
1387
|
+
"avro-schema",
|
1388
|
+
"polars-arrow-format",
|
1389
|
+
"regex",
|
1390
|
+
"simdutf8",
|
1391
|
+
"thiserror",
|
1392
|
+
]
|
1393
|
+
|
1394
|
+
[[package]]
|
1395
|
+
name = "polars-io"
|
1396
|
+
version = "0.39.2"
|
1397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1398
|
+
checksum = "b2c8589e418cbe4a48228d64b2a8a40284a82ec3c98817c0c2bcc0267701338b"
|
1399
|
+
dependencies = [
|
1400
|
+
"ahash",
|
1401
|
+
"async-trait",
|
1402
|
+
"atoi_simd",
|
1403
|
+
"bytes",
|
1404
|
+
"chrono",
|
1405
|
+
"chrono-tz",
|
1406
|
+
"fast-float",
|
1407
|
+
"futures",
|
1408
|
+
"home",
|
1409
|
+
"itoa",
|
1410
|
+
"memchr",
|
1411
|
+
"memmap2",
|
1412
|
+
"num-traits",
|
1413
|
+
"once_cell",
|
1414
|
+
"percent-encoding",
|
1415
|
+
"polars-arrow",
|
1416
|
+
"polars-core",
|
1417
|
+
"polars-error",
|
1418
|
+
"polars-json",
|
1419
|
+
"polars-parquet",
|
1420
|
+
"polars-time",
|
1421
|
+
"polars-utils",
|
1422
|
+
"rayon",
|
1423
|
+
"regex",
|
1424
|
+
"ryu",
|
1425
|
+
"serde",
|
1426
|
+
"serde_json",
|
1427
|
+
"simd-json",
|
1428
|
+
"simdutf8",
|
1429
|
+
"smartstring",
|
1430
|
+
"tokio",
|
1431
|
+
"tokio-util",
|
1432
|
+
]
|
1433
|
+
|
1434
|
+
[[package]]
|
1435
|
+
name = "polars-json"
|
1436
|
+
version = "0.39.2"
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1438
|
+
checksum = "81224492a649a12b668480c0cf219d703f432509765d2717e72fe32ad16fc701"
|
1439
|
+
dependencies = [
|
1440
|
+
"ahash",
|
1441
|
+
"chrono",
|
1442
|
+
"fallible-streaming-iterator",
|
1443
|
+
"hashbrown 0.14.3",
|
1444
|
+
"indexmap",
|
1445
|
+
"itoa",
|
1446
|
+
"num-traits",
|
1447
|
+
"polars-arrow",
|
1448
|
+
"polars-error",
|
1449
|
+
"polars-utils",
|
1450
|
+
"ryu",
|
1451
|
+
"simd-json",
|
1452
|
+
"streaming-iterator",
|
1453
|
+
]
|
1454
|
+
|
1455
|
+
[[package]]
|
1456
|
+
name = "polars-lazy"
|
1457
|
+
version = "0.39.2"
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1459
|
+
checksum = "89b2632b1af668e2058d5f8f916d8fbde3cac63d03ae29a705f598e41dcfeb7f"
|
1460
|
+
dependencies = [
|
1461
|
+
"ahash",
|
1462
|
+
"bitflags 2.4.1",
|
1463
|
+
"glob",
|
1464
|
+
"once_cell",
|
1465
|
+
"polars-arrow",
|
1466
|
+
"polars-core",
|
1467
|
+
"polars-io",
|
1468
|
+
"polars-json",
|
1469
|
+
"polars-ops",
|
1470
|
+
"polars-pipe",
|
1471
|
+
"polars-plan",
|
1472
|
+
"polars-time",
|
1473
|
+
"polars-utils",
|
1474
|
+
"rayon",
|
1475
|
+
"smartstring",
|
1476
|
+
"version_check",
|
1477
|
+
]
|
1478
|
+
|
1479
|
+
[[package]]
|
1480
|
+
name = "polars-ops"
|
1481
|
+
version = "0.39.2"
|
1482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1483
|
+
checksum = "efdbdb4d9a92109bc2e0ce8e17af5ae8ab643bb5b7ee9d1d74f0aeffd1fbc95f"
|
1484
|
+
dependencies = [
|
1485
|
+
"ahash",
|
1486
|
+
"aho-corasick",
|
1487
|
+
"argminmax",
|
1488
|
+
"base64",
|
1489
|
+
"bytemuck",
|
1490
|
+
"chrono",
|
1491
|
+
"chrono-tz",
|
1492
|
+
"either",
|
1493
|
+
"hashbrown 0.14.3",
|
1494
|
+
"hex",
|
1495
|
+
"indexmap",
|
1496
|
+
"jsonpath_lib_polars_vendor",
|
1497
|
+
"memchr",
|
1498
|
+
"num-traits",
|
1499
|
+
"polars-arrow",
|
1500
|
+
"polars-compute",
|
1501
|
+
"polars-core",
|
1502
|
+
"polars-error",
|
1503
|
+
"polars-json",
|
1504
|
+
"polars-utils",
|
1505
|
+
"rand",
|
1506
|
+
"rand_distr",
|
1507
|
+
"rayon",
|
1508
|
+
"regex",
|
1509
|
+
"serde",
|
1510
|
+
"serde_json",
|
1511
|
+
"smartstring",
|
1512
|
+
"unicode-reverse",
|
1513
|
+
"version_check",
|
1514
|
+
]
|
1515
|
+
|
1516
|
+
[[package]]
|
1517
|
+
name = "polars-parquet"
|
1518
|
+
version = "0.39.2"
|
1519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1520
|
+
checksum = "b421d2196f786fdfe162db614c8485f8308fe41575d4de634a39bbe460d1eb6a"
|
1521
|
+
dependencies = [
|
1522
|
+
"ahash",
|
1523
|
+
"async-stream",
|
1524
|
+
"base64",
|
1525
|
+
"brotli",
|
1526
|
+
"ethnum",
|
1527
|
+
"flate2",
|
1528
|
+
"futures",
|
1529
|
+
"lz4",
|
1530
|
+
"num-traits",
|
1531
|
+
"parquet-format-safe",
|
1532
|
+
"polars-arrow",
|
1533
|
+
"polars-error",
|
1534
|
+
"polars-utils",
|
1535
|
+
"seq-macro",
|
1536
|
+
"simdutf8",
|
1537
|
+
"snap",
|
1538
|
+
"streaming-decompression",
|
1539
|
+
"zstd",
|
1540
|
+
]
|
1541
|
+
|
1542
|
+
[[package]]
|
1543
|
+
name = "polars-pipe"
|
1544
|
+
version = "0.39.2"
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1546
|
+
checksum = "48700f1d5bd56a15451e581f465c09541492750360f18637b196f995470a015c"
|
1547
|
+
dependencies = [
|
1548
|
+
"crossbeam-channel",
|
1549
|
+
"crossbeam-queue",
|
1550
|
+
"enum_dispatch",
|
1551
|
+
"hashbrown 0.14.3",
|
1552
|
+
"num-traits",
|
1553
|
+
"polars-arrow",
|
1554
|
+
"polars-compute",
|
1555
|
+
"polars-core",
|
1556
|
+
"polars-io",
|
1557
|
+
"polars-ops",
|
1558
|
+
"polars-plan",
|
1559
|
+
"polars-row",
|
1560
|
+
"polars-utils",
|
1561
|
+
"rayon",
|
1562
|
+
"smartstring",
|
1563
|
+
"uuid",
|
1564
|
+
"version_check",
|
1565
|
+
]
|
1566
|
+
|
1567
|
+
[[package]]
|
1568
|
+
name = "polars-plan"
|
1569
|
+
version = "0.39.2"
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1571
|
+
checksum = "2fb8e2302e20c44defd5be8cad9c96e75face63c3a5f609aced8c4ec3b3ac97d"
|
1572
|
+
dependencies = [
|
1573
|
+
"ahash",
|
1574
|
+
"bytemuck",
|
1575
|
+
"chrono",
|
1576
|
+
"chrono-tz",
|
1577
|
+
"hashbrown 0.14.3",
|
1578
|
+
"once_cell",
|
1579
|
+
"percent-encoding",
|
1580
|
+
"polars-arrow",
|
1581
|
+
"polars-core",
|
1582
|
+
"polars-io",
|
1583
|
+
"polars-json",
|
1584
|
+
"polars-ops",
|
1585
|
+
"polars-parquet",
|
1586
|
+
"polars-time",
|
1587
|
+
"polars-utils",
|
1588
|
+
"rayon",
|
1589
|
+
"recursive",
|
1590
|
+
"regex",
|
1591
|
+
"serde",
|
1592
|
+
"smartstring",
|
1593
|
+
"strum_macros",
|
1594
|
+
"version_check",
|
1595
|
+
]
|
1596
|
+
|
1597
|
+
[[package]]
|
1598
|
+
name = "polars-row"
|
1599
|
+
version = "0.39.2"
|
1600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1601
|
+
checksum = "a515bdc68c2ae3702e3de70d89601f3b71ca8137e282a226dddb53ee4bacfa2e"
|
1602
|
+
dependencies = [
|
1603
|
+
"bytemuck",
|
1604
|
+
"polars-arrow",
|
1605
|
+
"polars-error",
|
1606
|
+
"polars-utils",
|
1607
|
+
]
|
1608
|
+
|
1609
|
+
[[package]]
|
1610
|
+
name = "polars-sql"
|
1611
|
+
version = "0.39.2"
|
1612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1613
|
+
checksum = "7b4bb7cc1c04c3023d1953b2f1dec50515e8fd8169a5a2bf4967b3b082232db7"
|
1614
|
+
dependencies = [
|
1615
|
+
"hex",
|
1616
|
+
"polars-arrow",
|
1617
|
+
"polars-core",
|
1618
|
+
"polars-error",
|
1619
|
+
"polars-lazy",
|
1620
|
+
"polars-plan",
|
1621
|
+
"rand",
|
1622
|
+
"serde",
|
1623
|
+
"serde_json",
|
1624
|
+
"sqlparser",
|
1625
|
+
]
|
1626
|
+
|
1627
|
+
[[package]]
|
1628
|
+
name = "polars-time"
|
1629
|
+
version = "0.39.2"
|
1630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1631
|
+
checksum = "efc18e3ad92eec55db89d88f16c22d436559ba7030cf76f86f6ed7a754b673f1"
|
1632
|
+
dependencies = [
|
1633
|
+
"atoi",
|
1634
|
+
"chrono",
|
1635
|
+
"chrono-tz",
|
1636
|
+
"now",
|
1637
|
+
"once_cell",
|
1638
|
+
"polars-arrow",
|
1639
|
+
"polars-core",
|
1640
|
+
"polars-error",
|
1641
|
+
"polars-ops",
|
1642
|
+
"polars-utils",
|
1643
|
+
"regex",
|
1644
|
+
"serde",
|
1645
|
+
"smartstring",
|
1646
|
+
]
|
1647
|
+
|
1648
|
+
[[package]]
|
1649
|
+
name = "polars-utils"
|
1650
|
+
version = "0.39.2"
|
1651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1652
|
+
checksum = "c760b6c698cfe2fbbbd93d6cfb408db14ececfe1d92445dae2229ce1b5b21ae8"
|
1653
|
+
dependencies = [
|
1654
|
+
"ahash",
|
1655
|
+
"bytemuck",
|
1656
|
+
"hashbrown 0.14.3",
|
1657
|
+
"indexmap",
|
1658
|
+
"num-traits",
|
1659
|
+
"once_cell",
|
1660
|
+
"polars-error",
|
1661
|
+
"raw-cpuid",
|
1662
|
+
"rayon",
|
1663
|
+
"smartstring",
|
1664
|
+
"stacker",
|
1665
|
+
"sysinfo",
|
1666
|
+
"version_check",
|
1667
|
+
]
|
1668
|
+
|
1669
|
+
[[package]]
|
1670
|
+
name = "ppv-lite86"
|
1671
|
+
version = "0.2.17"
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1673
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
1674
|
+
|
1675
|
+
[[package]]
|
1676
|
+
name = "proc-macro2"
|
1677
|
+
version = "1.0.74"
|
1678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1679
|
+
checksum = "2de98502f212cfcea8d0bb305bd0f49d7ebdd75b64ba0a68f937d888f4e0d6db"
|
1680
|
+
dependencies = [
|
1681
|
+
"unicode-ident",
|
1682
|
+
]
|
1683
|
+
|
1684
|
+
[[package]]
|
1685
|
+
name = "psm"
|
1686
|
+
version = "0.1.21"
|
1687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1688
|
+
checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
|
1689
|
+
dependencies = [
|
1690
|
+
"cc",
|
1691
|
+
]
|
1692
|
+
|
1693
|
+
[[package]]
|
1694
|
+
name = "quote"
|
1695
|
+
version = "1.0.35"
|
1696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1697
|
+
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
|
1698
|
+
dependencies = [
|
1699
|
+
"proc-macro2",
|
1700
|
+
]
|
1701
|
+
|
1702
|
+
[[package]]
|
1703
|
+
name = "rand"
|
1704
|
+
version = "0.8.5"
|
1705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1706
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
1707
|
+
dependencies = [
|
1708
|
+
"libc",
|
1709
|
+
"rand_chacha",
|
1710
|
+
"rand_core",
|
1711
|
+
]
|
1712
|
+
|
1713
|
+
[[package]]
|
1714
|
+
name = "rand_chacha"
|
1715
|
+
version = "0.3.1"
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1717
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
1718
|
+
dependencies = [
|
1719
|
+
"ppv-lite86",
|
1720
|
+
"rand_core",
|
1721
|
+
]
|
1722
|
+
|
1723
|
+
[[package]]
|
1724
|
+
name = "rand_core"
|
1725
|
+
version = "0.6.4"
|
1726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1727
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
1728
|
+
dependencies = [
|
1729
|
+
"getrandom",
|
1730
|
+
]
|
1731
|
+
|
1732
|
+
[[package]]
|
1733
|
+
name = "rand_distr"
|
1734
|
+
version = "0.4.3"
|
1735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1736
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
1737
|
+
dependencies = [
|
1738
|
+
"num-traits",
|
1739
|
+
"rand",
|
1740
|
+
]
|
1741
|
+
|
1742
|
+
[[package]]
|
1743
|
+
name = "raw-cpuid"
|
1744
|
+
version = "11.0.1"
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1746
|
+
checksum = "9d86a7c4638d42c44551f4791a20e687dbb4c3de1f33c43dd71e355cd429def1"
|
1747
|
+
dependencies = [
|
1748
|
+
"bitflags 2.4.1",
|
1749
|
+
]
|
1750
|
+
|
1751
|
+
[[package]]
|
1752
|
+
name = "rayon"
|
1753
|
+
version = "1.9.0"
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1755
|
+
checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd"
|
1756
|
+
dependencies = [
|
1757
|
+
"either",
|
1758
|
+
"rayon-core",
|
1759
|
+
]
|
1760
|
+
|
1761
|
+
[[package]]
|
1762
|
+
name = "rayon-core"
|
1763
|
+
version = "1.12.1"
|
1764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1765
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
1766
|
+
dependencies = [
|
1767
|
+
"crossbeam-deque",
|
1768
|
+
"crossbeam-utils",
|
1769
|
+
]
|
1770
|
+
|
1771
|
+
[[package]]
|
1772
|
+
name = "rb-sys"
|
1773
|
+
version = "0.9.97"
|
1774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1775
|
+
checksum = "47d30bcad206b51f2f66121190ca678dce1fdf3a2eae0ac5d838d1818b19bdf5"
|
1776
|
+
dependencies = [
|
1777
|
+
"rb-sys-build",
|
1778
|
+
]
|
1779
|
+
|
1780
|
+
[[package]]
|
1781
|
+
name = "rb-sys-build"
|
1782
|
+
version = "0.9.97"
|
1783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1784
|
+
checksum = "3cbd92f281615f3c2dcb9dcb0f0576624752afbf9a7f99173b37c4b55b62dd8a"
|
1785
|
+
dependencies = [
|
1786
|
+
"bindgen",
|
1787
|
+
"lazy_static",
|
1788
|
+
"proc-macro2",
|
1789
|
+
"quote",
|
1790
|
+
"regex",
|
1791
|
+
"shell-words",
|
1792
|
+
"syn 2.0.46",
|
1793
|
+
]
|
1794
|
+
|
1795
|
+
[[package]]
|
1796
|
+
name = "rb-sys-env"
|
1797
|
+
version = "0.1.2"
|
1798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1799
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
1800
|
+
|
1801
|
+
[[package]]
|
1802
|
+
name = "recursive"
|
1803
|
+
version = "0.1.1"
|
1804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1805
|
+
checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
|
1806
|
+
dependencies = [
|
1807
|
+
"recursive-proc-macro-impl",
|
1808
|
+
"stacker",
|
1809
|
+
]
|
1810
|
+
|
1811
|
+
[[package]]
|
1812
|
+
name = "recursive-proc-macro-impl"
|
1813
|
+
version = "0.1.1"
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1815
|
+
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
1816
|
+
dependencies = [
|
1817
|
+
"quote",
|
1818
|
+
"syn 2.0.46",
|
1819
|
+
]
|
1820
|
+
|
1821
|
+
[[package]]
|
1822
|
+
name = "redox_syscall"
|
1823
|
+
version = "0.4.1"
|
1824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1825
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
1826
|
+
dependencies = [
|
1827
|
+
"bitflags 1.3.2",
|
1828
|
+
]
|
1829
|
+
|
1830
|
+
[[package]]
|
1831
|
+
name = "ref-cast"
|
1832
|
+
version = "1.0.22"
|
1833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1834
|
+
checksum = "c4846d4c50d1721b1a3bef8af76924eef20d5e723647333798c1b519b3a9473f"
|
1835
|
+
dependencies = [
|
1836
|
+
"ref-cast-impl",
|
1837
|
+
]
|
1838
|
+
|
1839
|
+
[[package]]
|
1840
|
+
name = "ref-cast-impl"
|
1841
|
+
version = "1.0.22"
|
1842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1843
|
+
checksum = "5fddb4f8d99b0a2ebafc65a87a69a7b9875e4b1ae1f00db265d300ef7f28bccc"
|
1844
|
+
dependencies = [
|
1845
|
+
"proc-macro2",
|
1846
|
+
"quote",
|
1847
|
+
"syn 2.0.46",
|
1848
|
+
]
|
1849
|
+
|
1850
|
+
[[package]]
|
1851
|
+
name = "regex"
|
1852
|
+
version = "1.10.2"
|
1853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1854
|
+
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
|
1855
|
+
dependencies = [
|
1856
|
+
"aho-corasick",
|
1857
|
+
"memchr",
|
1858
|
+
"regex-automata",
|
1859
|
+
"regex-syntax",
|
1860
|
+
]
|
1861
|
+
|
1862
|
+
[[package]]
|
1863
|
+
name = "regex-automata"
|
1864
|
+
version = "0.4.3"
|
1865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1866
|
+
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
|
1867
|
+
dependencies = [
|
1868
|
+
"aho-corasick",
|
1869
|
+
"memchr",
|
1870
|
+
"regex-syntax",
|
1871
|
+
]
|
1872
|
+
|
1873
|
+
[[package]]
|
1874
|
+
name = "regex-syntax"
|
1875
|
+
version = "0.8.2"
|
1876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1877
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
1878
|
+
|
1879
|
+
[[package]]
|
1880
|
+
name = "rle-decode-fast"
|
1881
|
+
version = "1.0.3"
|
1882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1883
|
+
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
1884
|
+
|
1885
|
+
[[package]]
|
1886
|
+
name = "rustc-demangle"
|
1887
|
+
version = "0.1.23"
|
1888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1889
|
+
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
1890
|
+
|
1891
|
+
[[package]]
|
1892
|
+
name = "rustc-hash"
|
1893
|
+
version = "1.1.0"
|
1894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1895
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1896
|
+
|
1897
|
+
[[package]]
|
1898
|
+
name = "rustversion"
|
1899
|
+
version = "1.0.14"
|
1900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1901
|
+
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
|
1902
|
+
|
1903
|
+
[[package]]
|
1904
|
+
name = "ryu"
|
1905
|
+
version = "1.0.16"
|
1906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1907
|
+
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
|
1908
|
+
|
1909
|
+
[[package]]
|
1910
|
+
name = "scopeguard"
|
1911
|
+
version = "1.2.0"
|
1912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1913
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1914
|
+
|
1915
|
+
[[package]]
|
1916
|
+
name = "seq-macro"
|
1917
|
+
version = "0.3.5"
|
1918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1919
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
1920
|
+
|
1921
|
+
[[package]]
|
1922
|
+
name = "serde"
|
1923
|
+
version = "1.0.194"
|
1924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1925
|
+
checksum = "0b114498256798c94a0689e1a15fec6005dee8ac1f41de56404b67afc2a4b773"
|
1926
|
+
dependencies = [
|
1927
|
+
"serde_derive",
|
1928
|
+
]
|
1929
|
+
|
1930
|
+
[[package]]
|
1931
|
+
name = "serde_derive"
|
1932
|
+
version = "1.0.194"
|
1933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1934
|
+
checksum = "a3385e45322e8f9931410f01b3031ec534c3947d0e94c18049af4d9f9907d4e0"
|
1935
|
+
dependencies = [
|
1936
|
+
"proc-macro2",
|
1937
|
+
"quote",
|
1938
|
+
"syn 2.0.46",
|
1939
|
+
]
|
1940
|
+
|
1941
|
+
[[package]]
|
1942
|
+
name = "serde_json"
|
1943
|
+
version = "1.0.110"
|
1944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1945
|
+
checksum = "6fbd975230bada99c8bb618e0c365c2eefa219158d5c6c29610fd09ff1833257"
|
1946
|
+
dependencies = [
|
1947
|
+
"indexmap",
|
1948
|
+
"itoa",
|
1949
|
+
"ryu",
|
1950
|
+
"serde",
|
1951
|
+
]
|
1952
|
+
|
1953
|
+
[[package]]
|
1954
|
+
name = "shell-words"
|
1955
|
+
version = "1.1.0"
|
1956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1957
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
1958
|
+
|
1959
|
+
[[package]]
|
1960
|
+
name = "shlex"
|
1961
|
+
version = "1.2.0"
|
1962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1963
|
+
checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
|
1964
|
+
|
1965
|
+
[[package]]
|
1966
|
+
name = "simd-json"
|
1967
|
+
version = "0.13.4"
|
1968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1969
|
+
checksum = "e5a3720326b20bf5b95b72dbbd133caae7e0dcf71eae8f6e6656e71a7e5c9aaa"
|
1970
|
+
dependencies = [
|
1971
|
+
"ahash",
|
1972
|
+
"getrandom",
|
1973
|
+
"halfbrown",
|
1974
|
+
"lexical-core",
|
1975
|
+
"once_cell",
|
1976
|
+
"ref-cast",
|
1977
|
+
"serde",
|
1978
|
+
"serde_json",
|
1979
|
+
"simdutf8",
|
1980
|
+
"value-trait",
|
1981
|
+
]
|
1982
|
+
|
1983
|
+
[[package]]
|
1984
|
+
name = "simdutf8"
|
1985
|
+
version = "0.1.4"
|
1986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1987
|
+
checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
|
1988
|
+
|
1989
|
+
[[package]]
|
1990
|
+
name = "siphasher"
|
1991
|
+
version = "0.3.11"
|
1992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1993
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
1994
|
+
|
1995
|
+
[[package]]
|
1996
|
+
name = "slab"
|
1997
|
+
version = "0.4.9"
|
1998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1999
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
2000
|
+
dependencies = [
|
2001
|
+
"autocfg",
|
2002
|
+
]
|
2003
|
+
|
2004
|
+
[[package]]
|
2005
|
+
name = "smallvec"
|
2006
|
+
version = "1.11.2"
|
2007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2008
|
+
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
|
2009
|
+
|
2010
|
+
[[package]]
|
2011
|
+
name = "smartstring"
|
2012
|
+
version = "1.0.1"
|
2013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2014
|
+
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
|
2015
|
+
dependencies = [
|
2016
|
+
"autocfg",
|
2017
|
+
"serde",
|
2018
|
+
"static_assertions",
|
2019
|
+
"version_check",
|
2020
|
+
]
|
2021
|
+
|
2022
|
+
[[package]]
|
2023
|
+
name = "snap"
|
2024
|
+
version = "1.1.1"
|
2025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026
|
+
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
2027
|
+
|
2028
|
+
[[package]]
|
2029
|
+
name = "socket2"
|
2030
|
+
version = "0.5.5"
|
2031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2032
|
+
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
|
2033
|
+
dependencies = [
|
2034
|
+
"libc",
|
2035
|
+
"windows-sys 0.48.0",
|
2036
|
+
]
|
2037
|
+
|
2038
|
+
[[package]]
|
2039
|
+
name = "sqlparser"
|
2040
|
+
version = "0.39.0"
|
2041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2042
|
+
checksum = "743b4dc2cbde11890ccb254a8fc9d537fa41b36da00de2a1c5e9848c9bc42bd7"
|
2043
|
+
dependencies = [
|
2044
|
+
"log",
|
2045
|
+
]
|
2046
|
+
|
2047
|
+
[[package]]
|
2048
|
+
name = "stacker"
|
2049
|
+
version = "0.1.15"
|
2050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2051
|
+
checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce"
|
2052
|
+
dependencies = [
|
2053
|
+
"cc",
|
2054
|
+
"cfg-if",
|
2055
|
+
"libc",
|
2056
|
+
"psm",
|
2057
|
+
"winapi",
|
2058
|
+
]
|
2059
|
+
|
2060
|
+
[[package]]
|
2061
|
+
name = "static_assertions"
|
2062
|
+
version = "1.1.0"
|
2063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2064
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
2065
|
+
|
2066
|
+
[[package]]
|
2067
|
+
name = "streaming-decompression"
|
2068
|
+
version = "0.1.2"
|
2069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2070
|
+
checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3"
|
2071
|
+
dependencies = [
|
2072
|
+
"fallible-streaming-iterator",
|
2073
|
+
]
|
2074
|
+
|
2075
|
+
[[package]]
|
2076
|
+
name = "streaming-iterator"
|
2077
|
+
version = "0.1.9"
|
2078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2079
|
+
checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
|
2080
|
+
|
2081
|
+
[[package]]
|
2082
|
+
name = "strength_reduce"
|
2083
|
+
version = "0.2.4"
|
2084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2085
|
+
checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
2086
|
+
|
2087
|
+
[[package]]
|
2088
|
+
name = "strum"
|
2089
|
+
version = "0.25.0"
|
2090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2091
|
+
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
|
2092
|
+
|
2093
|
+
[[package]]
|
2094
|
+
name = "strum_macros"
|
2095
|
+
version = "0.25.3"
|
2096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2097
|
+
checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
|
2098
|
+
dependencies = [
|
2099
|
+
"heck",
|
2100
|
+
"proc-macro2",
|
2101
|
+
"quote",
|
2102
|
+
"rustversion",
|
2103
|
+
"syn 2.0.46",
|
2104
|
+
]
|
2105
|
+
|
2106
|
+
[[package]]
|
2107
|
+
name = "syn"
|
2108
|
+
version = "1.0.109"
|
2109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2110
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
2111
|
+
dependencies = [
|
2112
|
+
"proc-macro2",
|
2113
|
+
"quote",
|
2114
|
+
"unicode-ident",
|
2115
|
+
]
|
2116
|
+
|
2117
|
+
[[package]]
|
2118
|
+
name = "syn"
|
2119
|
+
version = "2.0.46"
|
2120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2121
|
+
checksum = "89456b690ff72fddcecf231caedbe615c59480c93358a93dfae7fc29e3ebbf0e"
|
2122
|
+
dependencies = [
|
2123
|
+
"proc-macro2",
|
2124
|
+
"quote",
|
2125
|
+
"unicode-ident",
|
2126
|
+
]
|
2127
|
+
|
2128
|
+
[[package]]
|
2129
|
+
name = "sysinfo"
|
2130
|
+
version = "0.30.3"
|
2131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2132
|
+
checksum = "ba2dbd2894d23b2d78dae768d85e323b557ac3ac71a5d917a31536d8f77ebada"
|
2133
|
+
dependencies = [
|
2134
|
+
"cfg-if",
|
2135
|
+
"core-foundation-sys",
|
2136
|
+
"libc",
|
2137
|
+
"ntapi",
|
2138
|
+
"once_cell",
|
2139
|
+
"windows",
|
2140
|
+
]
|
2141
|
+
|
2142
|
+
[[package]]
|
2143
|
+
name = "target-features"
|
2144
|
+
version = "0.1.5"
|
2145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2146
|
+
checksum = "cfb5fa503293557c5158bd215fdc225695e567a77e453f5d4452a50a193969bd"
|
2147
|
+
|
2148
|
+
[[package]]
|
2149
|
+
name = "thiserror"
|
2150
|
+
version = "1.0.56"
|
2151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2152
|
+
checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
|
2153
|
+
dependencies = [
|
2154
|
+
"thiserror-impl",
|
2155
|
+
]
|
2156
|
+
|
2157
|
+
[[package]]
|
2158
|
+
name = "thiserror-impl"
|
2159
|
+
version = "1.0.56"
|
2160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2161
|
+
checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
|
2162
|
+
dependencies = [
|
2163
|
+
"proc-macro2",
|
2164
|
+
"quote",
|
2165
|
+
"syn 2.0.46",
|
2166
|
+
]
|
2167
|
+
|
2168
|
+
[[package]]
|
2169
|
+
name = "tokio"
|
2170
|
+
version = "1.35.1"
|
2171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2172
|
+
checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
|
2173
|
+
dependencies = [
|
2174
|
+
"backtrace",
|
2175
|
+
"bytes",
|
2176
|
+
"libc",
|
2177
|
+
"mio",
|
2178
|
+
"num_cpus",
|
2179
|
+
"pin-project-lite",
|
2180
|
+
"socket2",
|
2181
|
+
"windows-sys 0.48.0",
|
2182
|
+
]
|
2183
|
+
|
2184
|
+
[[package]]
|
2185
|
+
name = "tokio-util"
|
2186
|
+
version = "0.7.10"
|
2187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2188
|
+
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
|
2189
|
+
dependencies = [
|
2190
|
+
"bytes",
|
2191
|
+
"futures-core",
|
2192
|
+
"futures-sink",
|
2193
|
+
"pin-project-lite",
|
2194
|
+
"tokio",
|
2195
|
+
]
|
2196
|
+
|
2197
|
+
[[package]]
|
2198
|
+
name = "unicode-ident"
|
2199
|
+
version = "1.0.12"
|
2200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2201
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
2202
|
+
|
2203
|
+
[[package]]
|
2204
|
+
name = "unicode-reverse"
|
2205
|
+
version = "1.0.8"
|
2206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2207
|
+
checksum = "0bea5dacebb0d2d0a69a6700a05b59b3908bf801bf563a49bd27a1b60122962c"
|
2208
|
+
dependencies = [
|
2209
|
+
"unicode-segmentation",
|
2210
|
+
]
|
2211
|
+
|
2212
|
+
[[package]]
|
2213
|
+
name = "unicode-segmentation"
|
2214
|
+
version = "1.10.1"
|
2215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2216
|
+
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
|
2217
|
+
|
2218
|
+
[[package]]
|
2219
|
+
name = "unicode-width"
|
2220
|
+
version = "0.1.11"
|
2221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2222
|
+
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
|
2223
|
+
|
2224
|
+
[[package]]
|
2225
|
+
name = "uuid"
|
2226
|
+
version = "1.7.0"
|
2227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2228
|
+
checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"
|
2229
|
+
dependencies = [
|
2230
|
+
"getrandom",
|
2231
|
+
]
|
2232
|
+
|
2233
|
+
[[package]]
|
2234
|
+
name = "value-trait"
|
2235
|
+
version = "0.8.0"
|
2236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2237
|
+
checksum = "ea87257cfcbedcb9444eda79c59fdfea71217e6305afee8ee33f500375c2ac97"
|
2238
|
+
dependencies = [
|
2239
|
+
"float-cmp",
|
2240
|
+
"halfbrown",
|
2241
|
+
"itoa",
|
2242
|
+
"ryu",
|
2243
|
+
]
|
2244
|
+
|
2245
|
+
[[package]]
|
2246
|
+
name = "version_check"
|
2247
|
+
version = "0.9.4"
|
2248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2249
|
+
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
2250
|
+
|
2251
|
+
[[package]]
|
2252
|
+
name = "wasi"
|
2253
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
2254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2255
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
2256
|
+
|
2257
|
+
[[package]]
|
2258
|
+
name = "wasm-bindgen"
|
2259
|
+
version = "0.2.89"
|
2260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2261
|
+
checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
|
2262
|
+
dependencies = [
|
2263
|
+
"cfg-if",
|
2264
|
+
"wasm-bindgen-macro",
|
2265
|
+
]
|
2266
|
+
|
2267
|
+
[[package]]
|
2268
|
+
name = "wasm-bindgen-backend"
|
2269
|
+
version = "0.2.89"
|
2270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2271
|
+
checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
|
2272
|
+
dependencies = [
|
2273
|
+
"bumpalo",
|
2274
|
+
"log",
|
2275
|
+
"once_cell",
|
2276
|
+
"proc-macro2",
|
2277
|
+
"quote",
|
2278
|
+
"syn 2.0.46",
|
2279
|
+
"wasm-bindgen-shared",
|
2280
|
+
]
|
2281
|
+
|
2282
|
+
[[package]]
|
2283
|
+
name = "wasm-bindgen-macro"
|
2284
|
+
version = "0.2.89"
|
2285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2286
|
+
checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
|
2287
|
+
dependencies = [
|
2288
|
+
"quote",
|
2289
|
+
"wasm-bindgen-macro-support",
|
2290
|
+
]
|
2291
|
+
|
2292
|
+
[[package]]
|
2293
|
+
name = "wasm-bindgen-macro-support"
|
2294
|
+
version = "0.2.89"
|
2295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2296
|
+
checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
|
2297
|
+
dependencies = [
|
2298
|
+
"proc-macro2",
|
2299
|
+
"quote",
|
2300
|
+
"syn 2.0.46",
|
2301
|
+
"wasm-bindgen-backend",
|
2302
|
+
"wasm-bindgen-shared",
|
2303
|
+
]
|
2304
|
+
|
2305
|
+
[[package]]
|
2306
|
+
name = "wasm-bindgen-shared"
|
2307
|
+
version = "0.2.89"
|
2308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2309
|
+
checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
|
2310
|
+
|
2311
|
+
[[package]]
|
2312
|
+
name = "winapi"
|
2313
|
+
version = "0.3.9"
|
2314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2315
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
2316
|
+
dependencies = [
|
2317
|
+
"winapi-i686-pc-windows-gnu",
|
2318
|
+
"winapi-x86_64-pc-windows-gnu",
|
2319
|
+
]
|
2320
|
+
|
2321
|
+
[[package]]
|
2322
|
+
name = "winapi-i686-pc-windows-gnu"
|
2323
|
+
version = "0.4.0"
|
2324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2325
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2326
|
+
|
2327
|
+
[[package]]
|
2328
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
2329
|
+
version = "0.4.0"
|
2330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2331
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2332
|
+
|
2333
|
+
[[package]]
|
2334
|
+
name = "windows"
|
2335
|
+
version = "0.52.0"
|
2336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2337
|
+
checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
|
2338
|
+
dependencies = [
|
2339
|
+
"windows-core",
|
2340
|
+
"windows-targets 0.52.0",
|
2341
|
+
]
|
2342
|
+
|
2343
|
+
[[package]]
|
2344
|
+
name = "windows-core"
|
2345
|
+
version = "0.52.0"
|
2346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2347
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
2348
|
+
dependencies = [
|
2349
|
+
"windows-targets 0.52.0",
|
2350
|
+
]
|
2351
|
+
|
2352
|
+
[[package]]
|
2353
|
+
name = "windows-sys"
|
2354
|
+
version = "0.48.0"
|
2355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2356
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
2357
|
+
dependencies = [
|
2358
|
+
"windows-targets 0.48.5",
|
2359
|
+
]
|
2360
|
+
|
2361
|
+
[[package]]
|
2362
|
+
name = "windows-sys"
|
2363
|
+
version = "0.52.0"
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2365
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
2366
|
+
dependencies = [
|
2367
|
+
"windows-targets 0.52.0",
|
2368
|
+
]
|
2369
|
+
|
2370
|
+
[[package]]
|
2371
|
+
name = "windows-targets"
|
2372
|
+
version = "0.48.5"
|
2373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2374
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
2375
|
+
dependencies = [
|
2376
|
+
"windows_aarch64_gnullvm 0.48.5",
|
2377
|
+
"windows_aarch64_msvc 0.48.5",
|
2378
|
+
"windows_i686_gnu 0.48.5",
|
2379
|
+
"windows_i686_msvc 0.48.5",
|
2380
|
+
"windows_x86_64_gnu 0.48.5",
|
2381
|
+
"windows_x86_64_gnullvm 0.48.5",
|
2382
|
+
"windows_x86_64_msvc 0.48.5",
|
2383
|
+
]
|
2384
|
+
|
2385
|
+
[[package]]
|
2386
|
+
name = "windows-targets"
|
2387
|
+
version = "0.52.0"
|
2388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2389
|
+
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
|
2390
|
+
dependencies = [
|
2391
|
+
"windows_aarch64_gnullvm 0.52.0",
|
2392
|
+
"windows_aarch64_msvc 0.52.0",
|
2393
|
+
"windows_i686_gnu 0.52.0",
|
2394
|
+
"windows_i686_msvc 0.52.0",
|
2395
|
+
"windows_x86_64_gnu 0.52.0",
|
2396
|
+
"windows_x86_64_gnullvm 0.52.0",
|
2397
|
+
"windows_x86_64_msvc 0.52.0",
|
2398
|
+
]
|
2399
|
+
|
2400
|
+
[[package]]
|
2401
|
+
name = "windows_aarch64_gnullvm"
|
2402
|
+
version = "0.48.5"
|
2403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2404
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
2405
|
+
|
2406
|
+
[[package]]
|
2407
|
+
name = "windows_aarch64_gnullvm"
|
2408
|
+
version = "0.52.0"
|
2409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2410
|
+
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
|
2411
|
+
|
2412
|
+
[[package]]
|
2413
|
+
name = "windows_aarch64_msvc"
|
2414
|
+
version = "0.48.5"
|
2415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2416
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
2417
|
+
|
2418
|
+
[[package]]
|
2419
|
+
name = "windows_aarch64_msvc"
|
2420
|
+
version = "0.52.0"
|
2421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2422
|
+
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
|
2423
|
+
|
2424
|
+
[[package]]
|
2425
|
+
name = "windows_i686_gnu"
|
2426
|
+
version = "0.48.5"
|
2427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2428
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
2429
|
+
|
2430
|
+
[[package]]
|
2431
|
+
name = "windows_i686_gnu"
|
2432
|
+
version = "0.52.0"
|
2433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2434
|
+
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
|
2435
|
+
|
2436
|
+
[[package]]
|
2437
|
+
name = "windows_i686_msvc"
|
2438
|
+
version = "0.48.5"
|
2439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2440
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
2441
|
+
|
2442
|
+
[[package]]
|
2443
|
+
name = "windows_i686_msvc"
|
2444
|
+
version = "0.52.0"
|
2445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2446
|
+
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
|
2447
|
+
|
2448
|
+
[[package]]
|
2449
|
+
name = "windows_x86_64_gnu"
|
2450
|
+
version = "0.48.5"
|
2451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2452
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
2453
|
+
|
2454
|
+
[[package]]
|
2455
|
+
name = "windows_x86_64_gnu"
|
2456
|
+
version = "0.52.0"
|
2457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2458
|
+
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
|
2459
|
+
|
2460
|
+
[[package]]
|
2461
|
+
name = "windows_x86_64_gnullvm"
|
2462
|
+
version = "0.48.5"
|
2463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2464
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
2465
|
+
|
2466
|
+
[[package]]
|
2467
|
+
name = "windows_x86_64_gnullvm"
|
2468
|
+
version = "0.52.0"
|
2469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2470
|
+
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
|
2471
|
+
|
2472
|
+
[[package]]
|
2473
|
+
name = "windows_x86_64_msvc"
|
2474
|
+
version = "0.48.5"
|
2475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2476
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
2477
|
+
|
2478
|
+
[[package]]
|
2479
|
+
name = "windows_x86_64_msvc"
|
2480
|
+
version = "0.52.0"
|
2481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2482
|
+
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
|
2483
|
+
|
2484
|
+
[[package]]
|
2485
|
+
name = "xxhash-rust"
|
2486
|
+
version = "0.8.8"
|
2487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2488
|
+
checksum = "53be06678ed9e83edb1745eb72efc0bbcd7b5c3c35711a860906aed827a13d61"
|
2489
|
+
|
2490
|
+
[[package]]
|
2491
|
+
name = "zerocopy"
|
2492
|
+
version = "0.7.32"
|
2493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2494
|
+
checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
|
2495
|
+
dependencies = [
|
2496
|
+
"zerocopy-derive",
|
2497
|
+
]
|
2498
|
+
|
2499
|
+
[[package]]
|
2500
|
+
name = "zerocopy-derive"
|
2501
|
+
version = "0.7.32"
|
2502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2503
|
+
checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
|
2504
|
+
dependencies = [
|
2505
|
+
"proc-macro2",
|
2506
|
+
"quote",
|
2507
|
+
"syn 2.0.46",
|
2508
|
+
]
|
2509
|
+
|
2510
|
+
[[package]]
|
2511
|
+
name = "zstd"
|
2512
|
+
version = "0.13.0"
|
2513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2514
|
+
checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110"
|
2515
|
+
dependencies = [
|
2516
|
+
"zstd-safe",
|
2517
|
+
]
|
2518
|
+
|
2519
|
+
[[package]]
|
2520
|
+
name = "zstd-safe"
|
2521
|
+
version = "7.0.0"
|
2522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2523
|
+
checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e"
|
2524
|
+
dependencies = [
|
2525
|
+
"zstd-sys",
|
2526
|
+
]
|
2527
|
+
|
2528
|
+
[[package]]
|
2529
|
+
name = "zstd-sys"
|
2530
|
+
version = "2.0.9+zstd.1.5.5"
|
2531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2532
|
+
checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
|
2533
|
+
dependencies = [
|
2534
|
+
"cc",
|
2535
|
+
"pkg-config",
|
2536
|
+
]
|