polars-df 0.13.0-x64-mingw-ucrt
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 +208 -0
- data/Cargo.lock +2556 -0
- data/Cargo.toml +6 -0
- data/LICENSE-THIRD-PARTY.txt +39278 -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 +104 -0
- data/lib/polars/binary_expr.rb +77 -0
- data/lib/polars/binary_name_space.rb +66 -0
- data/lib/polars/cat_expr.rb +36 -0
- data/lib/polars/cat_name_space.rb +88 -0
- data/lib/polars/config.rb +530 -0
- data/lib/polars/convert.rb +98 -0
- data/lib/polars/data_frame.rb +5191 -0
- data/lib/polars/data_types.rb +466 -0
- data/lib/polars/date_time_expr.rb +1397 -0
- data/lib/polars/date_time_name_space.rb +1287 -0
- data/lib/polars/dynamic_group_by.rb +52 -0
- data/lib/polars/exceptions.rb +38 -0
- data/lib/polars/expr.rb +7256 -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 +271 -0
- data/lib/polars/functions/col.rb +47 -0
- data/lib/polars/functions/eager.rb +182 -0
- data/lib/polars/functions/lazy.rb +1329 -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 +136 -0
- data/lib/polars/functions/range/datetime_range.rb +149 -0
- data/lib/polars/functions/range/int_range.rb +51 -0
- data/lib/polars/functions/range/time_range.rb +141 -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 +613 -0
- data/lib/polars/io/avro.rb +24 -0
- data/lib/polars/io/csv.rb +696 -0
- data/lib/polars/io/database.rb +73 -0
- data/lib/polars/io/ipc.rb +275 -0
- data/lib/polars/io/json.rb +29 -0
- data/lib/polars/io/ndjson.rb +80 -0
- data/lib/polars/io/parquet.rb +233 -0
- data/lib/polars/lazy_frame.rb +2708 -0
- data/lib/polars/lazy_group_by.rb +181 -0
- data/lib/polars/list_expr.rb +791 -0
- data/lib/polars/list_name_space.rb +449 -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 +35 -0
- data/lib/polars/series.rb +4444 -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 +1495 -0
- data/lib/polars/string_name_space.rb +811 -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/constants.rb +9 -0
- data/lib/polars/utils/convert.rb +97 -0
- data/lib/polars/utils/parse.rb +89 -0
- data/lib/polars/utils/various.rb +76 -0
- data/lib/polars/utils/wrap.rb +19 -0
- data/lib/polars/utils.rb +130 -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 +91 -0
- metadata +138 -0
data/Cargo.lock
ADDED
@@ -0,0 +1,2556 @@
|
|
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.22.0"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
|
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.11"
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
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.3"
|
42
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
43
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
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.18"
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
67
|
+
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
|
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.74",
|
119
|
+
]
|
120
|
+
|
121
|
+
[[package]]
|
122
|
+
name = "async-trait"
|
123
|
+
version = "0.1.81"
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
125
|
+
checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
|
126
|
+
dependencies = [
|
127
|
+
"proc-macro2",
|
128
|
+
"quote",
|
129
|
+
"syn 2.0.74",
|
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.3.0"
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
151
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
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.73"
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
171
|
+
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
|
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.22.1"
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
186
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
187
|
+
|
188
|
+
[[package]]
|
189
|
+
name = "bindgen"
|
190
|
+
version = "0.69.4"
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
192
|
+
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
|
193
|
+
dependencies = [
|
194
|
+
"bitflags",
|
195
|
+
"cexpr",
|
196
|
+
"clang-sys",
|
197
|
+
"itertools",
|
198
|
+
"lazy_static",
|
199
|
+
"lazycell",
|
200
|
+
"proc-macro2",
|
201
|
+
"quote",
|
202
|
+
"regex",
|
203
|
+
"rustc-hash",
|
204
|
+
"shlex",
|
205
|
+
"syn 2.0.74",
|
206
|
+
]
|
207
|
+
|
208
|
+
[[package]]
|
209
|
+
name = "bitflags"
|
210
|
+
version = "2.6.0"
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
212
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
213
|
+
dependencies = [
|
214
|
+
"serde",
|
215
|
+
]
|
216
|
+
|
217
|
+
[[package]]
|
218
|
+
name = "brotli"
|
219
|
+
version = "6.0.0"
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
221
|
+
checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
|
222
|
+
dependencies = [
|
223
|
+
"alloc-no-stdlib",
|
224
|
+
"alloc-stdlib",
|
225
|
+
"brotli-decompressor",
|
226
|
+
]
|
227
|
+
|
228
|
+
[[package]]
|
229
|
+
name = "brotli-decompressor"
|
230
|
+
version = "4.0.1"
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
232
|
+
checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
|
233
|
+
dependencies = [
|
234
|
+
"alloc-no-stdlib",
|
235
|
+
"alloc-stdlib",
|
236
|
+
]
|
237
|
+
|
238
|
+
[[package]]
|
239
|
+
name = "bumpalo"
|
240
|
+
version = "3.16.0"
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
242
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
243
|
+
|
244
|
+
[[package]]
|
245
|
+
name = "bytemuck"
|
246
|
+
version = "1.16.3"
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
248
|
+
checksum = "102087e286b4677862ea56cf8fc58bb2cdfa8725c40ffb80fe3a008eb7f2fc83"
|
249
|
+
dependencies = [
|
250
|
+
"bytemuck_derive",
|
251
|
+
]
|
252
|
+
|
253
|
+
[[package]]
|
254
|
+
name = "bytemuck_derive"
|
255
|
+
version = "1.7.0"
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
257
|
+
checksum = "1ee891b04274a59bd38b412188e24b849617b2e45a0fd8d057deb63e7403761b"
|
258
|
+
dependencies = [
|
259
|
+
"proc-macro2",
|
260
|
+
"quote",
|
261
|
+
"syn 2.0.74",
|
262
|
+
]
|
263
|
+
|
264
|
+
[[package]]
|
265
|
+
name = "byteorder"
|
266
|
+
version = "1.5.0"
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
268
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
269
|
+
|
270
|
+
[[package]]
|
271
|
+
name = "bytes"
|
272
|
+
version = "1.7.1"
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
274
|
+
checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
|
275
|
+
|
276
|
+
[[package]]
|
277
|
+
name = "cc"
|
278
|
+
version = "1.1.11"
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
280
|
+
checksum = "5fb8dd288a69fc53a1996d7ecfbf4a20d59065bff137ce7e56bbd620de191189"
|
281
|
+
dependencies = [
|
282
|
+
"jobserver",
|
283
|
+
"libc",
|
284
|
+
"shlex",
|
285
|
+
]
|
286
|
+
|
287
|
+
[[package]]
|
288
|
+
name = "cexpr"
|
289
|
+
version = "0.6.0"
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
291
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
292
|
+
dependencies = [
|
293
|
+
"nom",
|
294
|
+
]
|
295
|
+
|
296
|
+
[[package]]
|
297
|
+
name = "cfg-if"
|
298
|
+
version = "1.0.0"
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
300
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
301
|
+
|
302
|
+
[[package]]
|
303
|
+
name = "chrono"
|
304
|
+
version = "0.4.38"
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
306
|
+
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
|
307
|
+
dependencies = [
|
308
|
+
"android-tzdata",
|
309
|
+
"iana-time-zone",
|
310
|
+
"js-sys",
|
311
|
+
"num-traits",
|
312
|
+
"serde",
|
313
|
+
"wasm-bindgen",
|
314
|
+
"windows-targets",
|
315
|
+
]
|
316
|
+
|
317
|
+
[[package]]
|
318
|
+
name = "chrono-tz"
|
319
|
+
version = "0.8.6"
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
321
|
+
checksum = "d59ae0466b83e838b81a54256c39d5d7c20b9d7daa10510a242d9b75abd5936e"
|
322
|
+
dependencies = [
|
323
|
+
"chrono",
|
324
|
+
"chrono-tz-build",
|
325
|
+
"phf",
|
326
|
+
]
|
327
|
+
|
328
|
+
[[package]]
|
329
|
+
name = "chrono-tz-build"
|
330
|
+
version = "0.2.1"
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
332
|
+
checksum = "433e39f13c9a060046954e0592a8d0a4bcb1040125cbf91cb8ee58964cfb350f"
|
333
|
+
dependencies = [
|
334
|
+
"parse-zoneinfo",
|
335
|
+
"phf",
|
336
|
+
"phf_codegen",
|
337
|
+
]
|
338
|
+
|
339
|
+
[[package]]
|
340
|
+
name = "clang-sys"
|
341
|
+
version = "1.8.1"
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
343
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
344
|
+
dependencies = [
|
345
|
+
"glob",
|
346
|
+
"libc",
|
347
|
+
"libloading",
|
348
|
+
]
|
349
|
+
|
350
|
+
[[package]]
|
351
|
+
name = "comfy-table"
|
352
|
+
version = "7.1.1"
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
354
|
+
checksum = "b34115915337defe99b2aff5c2ce6771e5fbc4079f4b506301f5cf394c8452f7"
|
355
|
+
dependencies = [
|
356
|
+
"crossterm",
|
357
|
+
"strum",
|
358
|
+
"strum_macros",
|
359
|
+
"unicode-width",
|
360
|
+
]
|
361
|
+
|
362
|
+
[[package]]
|
363
|
+
name = "core-foundation-sys"
|
364
|
+
version = "0.8.7"
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
366
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
367
|
+
|
368
|
+
[[package]]
|
369
|
+
name = "crc"
|
370
|
+
version = "2.1.0"
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
372
|
+
checksum = "49fc9a695bca7f35f5f4c15cddc84415f66a74ea78eef08e90c5024f2b540e23"
|
373
|
+
dependencies = [
|
374
|
+
"crc-catalog",
|
375
|
+
]
|
376
|
+
|
377
|
+
[[package]]
|
378
|
+
name = "crc-catalog"
|
379
|
+
version = "1.1.1"
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
381
|
+
checksum = "ccaeedb56da03b09f598226e25e80088cb4cd25f316e6e4df7d695f0feeb1403"
|
382
|
+
|
383
|
+
[[package]]
|
384
|
+
name = "crc32fast"
|
385
|
+
version = "1.4.2"
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
387
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
388
|
+
dependencies = [
|
389
|
+
"cfg-if",
|
390
|
+
]
|
391
|
+
|
392
|
+
[[package]]
|
393
|
+
name = "crossbeam-channel"
|
394
|
+
version = "0.5.13"
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
396
|
+
checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
|
397
|
+
dependencies = [
|
398
|
+
"crossbeam-utils",
|
399
|
+
]
|
400
|
+
|
401
|
+
[[package]]
|
402
|
+
name = "crossbeam-deque"
|
403
|
+
version = "0.8.5"
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
405
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
406
|
+
dependencies = [
|
407
|
+
"crossbeam-epoch",
|
408
|
+
"crossbeam-utils",
|
409
|
+
]
|
410
|
+
|
411
|
+
[[package]]
|
412
|
+
name = "crossbeam-epoch"
|
413
|
+
version = "0.9.18"
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
415
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
416
|
+
dependencies = [
|
417
|
+
"crossbeam-utils",
|
418
|
+
]
|
419
|
+
|
420
|
+
[[package]]
|
421
|
+
name = "crossbeam-queue"
|
422
|
+
version = "0.3.11"
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
424
|
+
checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
|
425
|
+
dependencies = [
|
426
|
+
"crossbeam-utils",
|
427
|
+
]
|
428
|
+
|
429
|
+
[[package]]
|
430
|
+
name = "crossbeam-utils"
|
431
|
+
version = "0.8.20"
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
433
|
+
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
434
|
+
|
435
|
+
[[package]]
|
436
|
+
name = "crossterm"
|
437
|
+
version = "0.27.0"
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
439
|
+
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
|
440
|
+
dependencies = [
|
441
|
+
"bitflags",
|
442
|
+
"crossterm_winapi",
|
443
|
+
"libc",
|
444
|
+
"parking_lot",
|
445
|
+
"winapi",
|
446
|
+
]
|
447
|
+
|
448
|
+
[[package]]
|
449
|
+
name = "crossterm_winapi"
|
450
|
+
version = "0.9.1"
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
452
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
453
|
+
dependencies = [
|
454
|
+
"winapi",
|
455
|
+
]
|
456
|
+
|
457
|
+
[[package]]
|
458
|
+
name = "dyn-clone"
|
459
|
+
version = "1.0.17"
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
461
|
+
checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
|
462
|
+
|
463
|
+
[[package]]
|
464
|
+
name = "either"
|
465
|
+
version = "1.13.0"
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
467
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
468
|
+
dependencies = [
|
469
|
+
"serde",
|
470
|
+
]
|
471
|
+
|
472
|
+
[[package]]
|
473
|
+
name = "enum_dispatch"
|
474
|
+
version = "0.3.13"
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
476
|
+
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
477
|
+
dependencies = [
|
478
|
+
"once_cell",
|
479
|
+
"proc-macro2",
|
480
|
+
"quote",
|
481
|
+
"syn 2.0.74",
|
482
|
+
]
|
483
|
+
|
484
|
+
[[package]]
|
485
|
+
name = "equivalent"
|
486
|
+
version = "1.0.1"
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
488
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
489
|
+
|
490
|
+
[[package]]
|
491
|
+
name = "ethnum"
|
492
|
+
version = "1.5.0"
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
494
|
+
checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c"
|
495
|
+
|
496
|
+
[[package]]
|
497
|
+
name = "fallible-streaming-iterator"
|
498
|
+
version = "0.1.9"
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
500
|
+
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
|
501
|
+
|
502
|
+
[[package]]
|
503
|
+
name = "fast-float"
|
504
|
+
version = "0.2.0"
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
506
|
+
checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c"
|
507
|
+
|
508
|
+
[[package]]
|
509
|
+
name = "flate2"
|
510
|
+
version = "1.0.31"
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
512
|
+
checksum = "7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920"
|
513
|
+
dependencies = [
|
514
|
+
"crc32fast",
|
515
|
+
"miniz_oxide",
|
516
|
+
]
|
517
|
+
|
518
|
+
[[package]]
|
519
|
+
name = "float-cmp"
|
520
|
+
version = "0.9.0"
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
522
|
+
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
523
|
+
dependencies = [
|
524
|
+
"num-traits",
|
525
|
+
]
|
526
|
+
|
527
|
+
[[package]]
|
528
|
+
name = "futures"
|
529
|
+
version = "0.3.30"
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
531
|
+
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
532
|
+
dependencies = [
|
533
|
+
"futures-channel",
|
534
|
+
"futures-core",
|
535
|
+
"futures-executor",
|
536
|
+
"futures-io",
|
537
|
+
"futures-sink",
|
538
|
+
"futures-task",
|
539
|
+
"futures-util",
|
540
|
+
]
|
541
|
+
|
542
|
+
[[package]]
|
543
|
+
name = "futures-channel"
|
544
|
+
version = "0.3.30"
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
546
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
547
|
+
dependencies = [
|
548
|
+
"futures-core",
|
549
|
+
"futures-sink",
|
550
|
+
]
|
551
|
+
|
552
|
+
[[package]]
|
553
|
+
name = "futures-core"
|
554
|
+
version = "0.3.30"
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
556
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
557
|
+
|
558
|
+
[[package]]
|
559
|
+
name = "futures-executor"
|
560
|
+
version = "0.3.30"
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
562
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
563
|
+
dependencies = [
|
564
|
+
"futures-core",
|
565
|
+
"futures-task",
|
566
|
+
"futures-util",
|
567
|
+
]
|
568
|
+
|
569
|
+
[[package]]
|
570
|
+
name = "futures-io"
|
571
|
+
version = "0.3.30"
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
573
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
574
|
+
|
575
|
+
[[package]]
|
576
|
+
name = "futures-macro"
|
577
|
+
version = "0.3.30"
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
579
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
580
|
+
dependencies = [
|
581
|
+
"proc-macro2",
|
582
|
+
"quote",
|
583
|
+
"syn 2.0.74",
|
584
|
+
]
|
585
|
+
|
586
|
+
[[package]]
|
587
|
+
name = "futures-sink"
|
588
|
+
version = "0.3.30"
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
590
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
591
|
+
|
592
|
+
[[package]]
|
593
|
+
name = "futures-task"
|
594
|
+
version = "0.3.30"
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
596
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
597
|
+
|
598
|
+
[[package]]
|
599
|
+
name = "futures-util"
|
600
|
+
version = "0.3.30"
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
602
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
603
|
+
dependencies = [
|
604
|
+
"futures-channel",
|
605
|
+
"futures-core",
|
606
|
+
"futures-io",
|
607
|
+
"futures-macro",
|
608
|
+
"futures-sink",
|
609
|
+
"futures-task",
|
610
|
+
"memchr",
|
611
|
+
"pin-project-lite",
|
612
|
+
"pin-utils",
|
613
|
+
"slab",
|
614
|
+
]
|
615
|
+
|
616
|
+
[[package]]
|
617
|
+
name = "getrandom"
|
618
|
+
version = "0.2.15"
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
620
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
621
|
+
dependencies = [
|
622
|
+
"cfg-if",
|
623
|
+
"js-sys",
|
624
|
+
"libc",
|
625
|
+
"wasi",
|
626
|
+
"wasm-bindgen",
|
627
|
+
]
|
628
|
+
|
629
|
+
[[package]]
|
630
|
+
name = "gimli"
|
631
|
+
version = "0.29.0"
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
633
|
+
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
|
634
|
+
|
635
|
+
[[package]]
|
636
|
+
name = "glob"
|
637
|
+
version = "0.3.1"
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
639
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
640
|
+
|
641
|
+
[[package]]
|
642
|
+
name = "halfbrown"
|
643
|
+
version = "0.2.5"
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
645
|
+
checksum = "8588661a8607108a5ca69cab034063441a0413a0b041c13618a7dd348021ef6f"
|
646
|
+
dependencies = [
|
647
|
+
"hashbrown",
|
648
|
+
"serde",
|
649
|
+
]
|
650
|
+
|
651
|
+
[[package]]
|
652
|
+
name = "hashbrown"
|
653
|
+
version = "0.14.5"
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
655
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
656
|
+
dependencies = [
|
657
|
+
"ahash",
|
658
|
+
"allocator-api2",
|
659
|
+
"rayon",
|
660
|
+
"serde",
|
661
|
+
]
|
662
|
+
|
663
|
+
[[package]]
|
664
|
+
name = "heck"
|
665
|
+
version = "0.5.0"
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
667
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
668
|
+
|
669
|
+
[[package]]
|
670
|
+
name = "hermit-abi"
|
671
|
+
version = "0.3.9"
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
673
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
674
|
+
|
675
|
+
[[package]]
|
676
|
+
name = "hex"
|
677
|
+
version = "0.4.3"
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
679
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
680
|
+
|
681
|
+
[[package]]
|
682
|
+
name = "home"
|
683
|
+
version = "0.5.9"
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
685
|
+
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
686
|
+
dependencies = [
|
687
|
+
"windows-sys",
|
688
|
+
]
|
689
|
+
|
690
|
+
[[package]]
|
691
|
+
name = "iana-time-zone"
|
692
|
+
version = "0.1.60"
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
694
|
+
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
|
695
|
+
dependencies = [
|
696
|
+
"android_system_properties",
|
697
|
+
"core-foundation-sys",
|
698
|
+
"iana-time-zone-haiku",
|
699
|
+
"js-sys",
|
700
|
+
"wasm-bindgen",
|
701
|
+
"windows-core 0.52.0",
|
702
|
+
]
|
703
|
+
|
704
|
+
[[package]]
|
705
|
+
name = "iana-time-zone-haiku"
|
706
|
+
version = "0.1.2"
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
708
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
709
|
+
dependencies = [
|
710
|
+
"cc",
|
711
|
+
]
|
712
|
+
|
713
|
+
[[package]]
|
714
|
+
name = "indexmap"
|
715
|
+
version = "2.4.0"
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
717
|
+
checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c"
|
718
|
+
dependencies = [
|
719
|
+
"equivalent",
|
720
|
+
"hashbrown",
|
721
|
+
"serde",
|
722
|
+
]
|
723
|
+
|
724
|
+
[[package]]
|
725
|
+
name = "itertools"
|
726
|
+
version = "0.12.1"
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
728
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
729
|
+
dependencies = [
|
730
|
+
"either",
|
731
|
+
]
|
732
|
+
|
733
|
+
[[package]]
|
734
|
+
name = "itoa"
|
735
|
+
version = "1.0.11"
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
737
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
738
|
+
|
739
|
+
[[package]]
|
740
|
+
name = "itoap"
|
741
|
+
version = "1.0.1"
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
743
|
+
checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
|
744
|
+
|
745
|
+
[[package]]
|
746
|
+
name = "jemalloc-sys"
|
747
|
+
version = "0.5.4+5.3.0-patched"
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
749
|
+
checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2"
|
750
|
+
dependencies = [
|
751
|
+
"cc",
|
752
|
+
"libc",
|
753
|
+
]
|
754
|
+
|
755
|
+
[[package]]
|
756
|
+
name = "jemallocator"
|
757
|
+
version = "0.5.4"
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
759
|
+
checksum = "a0de374a9f8e63150e6f5e8a60cc14c668226d7a347d8aee1a45766e3c4dd3bc"
|
760
|
+
dependencies = [
|
761
|
+
"jemalloc-sys",
|
762
|
+
"libc",
|
763
|
+
]
|
764
|
+
|
765
|
+
[[package]]
|
766
|
+
name = "jobserver"
|
767
|
+
version = "0.1.32"
|
768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
769
|
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
770
|
+
dependencies = [
|
771
|
+
"libc",
|
772
|
+
]
|
773
|
+
|
774
|
+
[[package]]
|
775
|
+
name = "js-sys"
|
776
|
+
version = "0.3.70"
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
778
|
+
checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a"
|
779
|
+
dependencies = [
|
780
|
+
"wasm-bindgen",
|
781
|
+
]
|
782
|
+
|
783
|
+
[[package]]
|
784
|
+
name = "jsonpath_lib_polars_vendor"
|
785
|
+
version = "0.0.1"
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
787
|
+
checksum = "f4bd9354947622f7471ff713eacaabdb683ccb13bba4edccaab9860abf480b7d"
|
788
|
+
dependencies = [
|
789
|
+
"log",
|
790
|
+
"serde",
|
791
|
+
"serde_json",
|
792
|
+
]
|
793
|
+
|
794
|
+
[[package]]
|
795
|
+
name = "lazy_static"
|
796
|
+
version = "1.5.0"
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
798
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
799
|
+
|
800
|
+
[[package]]
|
801
|
+
name = "lazycell"
|
802
|
+
version = "1.3.0"
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
804
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
805
|
+
|
806
|
+
[[package]]
|
807
|
+
name = "lexical-core"
|
808
|
+
version = "0.8.5"
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
810
|
+
checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
|
811
|
+
dependencies = [
|
812
|
+
"lexical-parse-float",
|
813
|
+
"lexical-parse-integer",
|
814
|
+
"lexical-util",
|
815
|
+
"lexical-write-float",
|
816
|
+
"lexical-write-integer",
|
817
|
+
]
|
818
|
+
|
819
|
+
[[package]]
|
820
|
+
name = "lexical-parse-float"
|
821
|
+
version = "0.8.5"
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
823
|
+
checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
|
824
|
+
dependencies = [
|
825
|
+
"lexical-parse-integer",
|
826
|
+
"lexical-util",
|
827
|
+
"static_assertions",
|
828
|
+
]
|
829
|
+
|
830
|
+
[[package]]
|
831
|
+
name = "lexical-parse-integer"
|
832
|
+
version = "0.8.6"
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
834
|
+
checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
|
835
|
+
dependencies = [
|
836
|
+
"lexical-util",
|
837
|
+
"static_assertions",
|
838
|
+
]
|
839
|
+
|
840
|
+
[[package]]
|
841
|
+
name = "lexical-util"
|
842
|
+
version = "0.8.5"
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
844
|
+
checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
|
845
|
+
dependencies = [
|
846
|
+
"static_assertions",
|
847
|
+
]
|
848
|
+
|
849
|
+
[[package]]
|
850
|
+
name = "lexical-write-float"
|
851
|
+
version = "0.8.5"
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
853
|
+
checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
|
854
|
+
dependencies = [
|
855
|
+
"lexical-util",
|
856
|
+
"lexical-write-integer",
|
857
|
+
"static_assertions",
|
858
|
+
]
|
859
|
+
|
860
|
+
[[package]]
|
861
|
+
name = "lexical-write-integer"
|
862
|
+
version = "0.8.5"
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
864
|
+
checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
|
865
|
+
dependencies = [
|
866
|
+
"lexical-util",
|
867
|
+
"static_assertions",
|
868
|
+
]
|
869
|
+
|
870
|
+
[[package]]
|
871
|
+
name = "libc"
|
872
|
+
version = "0.2.155"
|
873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
874
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
875
|
+
|
876
|
+
[[package]]
|
877
|
+
name = "libflate"
|
878
|
+
version = "1.4.0"
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
880
|
+
checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18"
|
881
|
+
dependencies = [
|
882
|
+
"adler32",
|
883
|
+
"crc32fast",
|
884
|
+
"libflate_lz77",
|
885
|
+
]
|
886
|
+
|
887
|
+
[[package]]
|
888
|
+
name = "libflate_lz77"
|
889
|
+
version = "1.2.0"
|
890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
891
|
+
checksum = "a52d3a8bfc85f250440e4424db7d857e241a3aebbbe301f3eb606ab15c39acbf"
|
892
|
+
dependencies = [
|
893
|
+
"rle-decode-fast",
|
894
|
+
]
|
895
|
+
|
896
|
+
[[package]]
|
897
|
+
name = "libloading"
|
898
|
+
version = "0.8.5"
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
900
|
+
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
|
901
|
+
dependencies = [
|
902
|
+
"cfg-if",
|
903
|
+
"windows-targets",
|
904
|
+
]
|
905
|
+
|
906
|
+
[[package]]
|
907
|
+
name = "libm"
|
908
|
+
version = "0.2.8"
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
910
|
+
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
911
|
+
|
912
|
+
[[package]]
|
913
|
+
name = "libmimalloc-sys"
|
914
|
+
version = "0.1.39"
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
916
|
+
checksum = "23aa6811d3bd4deb8a84dde645f943476d13b248d818edcf8ce0b2f37f036b44"
|
917
|
+
dependencies = [
|
918
|
+
"cc",
|
919
|
+
"libc",
|
920
|
+
]
|
921
|
+
|
922
|
+
[[package]]
|
923
|
+
name = "lock_api"
|
924
|
+
version = "0.4.12"
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
926
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
927
|
+
dependencies = [
|
928
|
+
"autocfg",
|
929
|
+
"scopeguard",
|
930
|
+
]
|
931
|
+
|
932
|
+
[[package]]
|
933
|
+
name = "log"
|
934
|
+
version = "0.4.22"
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
936
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
937
|
+
|
938
|
+
[[package]]
|
939
|
+
name = "lz4"
|
940
|
+
version = "1.26.0"
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
942
|
+
checksum = "958b4caa893816eea05507c20cfe47574a43d9a697138a7872990bba8a0ece68"
|
943
|
+
dependencies = [
|
944
|
+
"libc",
|
945
|
+
"lz4-sys",
|
946
|
+
]
|
947
|
+
|
948
|
+
[[package]]
|
949
|
+
name = "lz4-sys"
|
950
|
+
version = "1.10.0"
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
952
|
+
checksum = "109de74d5d2353660401699a4174a4ff23fcc649caf553df71933c7fb45ad868"
|
953
|
+
dependencies = [
|
954
|
+
"cc",
|
955
|
+
"libc",
|
956
|
+
]
|
957
|
+
|
958
|
+
[[package]]
|
959
|
+
name = "magnus"
|
960
|
+
version = "0.7.1"
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
962
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
963
|
+
dependencies = [
|
964
|
+
"magnus-macros",
|
965
|
+
"rb-sys",
|
966
|
+
"rb-sys-env",
|
967
|
+
"seq-macro",
|
968
|
+
]
|
969
|
+
|
970
|
+
[[package]]
|
971
|
+
name = "magnus-macros"
|
972
|
+
version = "0.6.0"
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
974
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
975
|
+
dependencies = [
|
976
|
+
"proc-macro2",
|
977
|
+
"quote",
|
978
|
+
"syn 2.0.74",
|
979
|
+
]
|
980
|
+
|
981
|
+
[[package]]
|
982
|
+
name = "memchr"
|
983
|
+
version = "2.7.4"
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
985
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
986
|
+
|
987
|
+
[[package]]
|
988
|
+
name = "memmap2"
|
989
|
+
version = "0.7.1"
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
991
|
+
checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6"
|
992
|
+
dependencies = [
|
993
|
+
"libc",
|
994
|
+
]
|
995
|
+
|
996
|
+
[[package]]
|
997
|
+
name = "mimalloc"
|
998
|
+
version = "0.1.43"
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1000
|
+
checksum = "68914350ae34959d83f732418d51e2427a794055d0b9529f48259ac07af65633"
|
1001
|
+
dependencies = [
|
1002
|
+
"libmimalloc-sys",
|
1003
|
+
]
|
1004
|
+
|
1005
|
+
[[package]]
|
1006
|
+
name = "minimal-lexical"
|
1007
|
+
version = "0.2.1"
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1009
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
1010
|
+
|
1011
|
+
[[package]]
|
1012
|
+
name = "miniz_oxide"
|
1013
|
+
version = "0.7.4"
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1015
|
+
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
1016
|
+
dependencies = [
|
1017
|
+
"adler",
|
1018
|
+
]
|
1019
|
+
|
1020
|
+
[[package]]
|
1021
|
+
name = "mio"
|
1022
|
+
version = "1.0.2"
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1024
|
+
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
|
1025
|
+
dependencies = [
|
1026
|
+
"hermit-abi",
|
1027
|
+
"libc",
|
1028
|
+
"wasi",
|
1029
|
+
"windows-sys",
|
1030
|
+
]
|
1031
|
+
|
1032
|
+
[[package]]
|
1033
|
+
name = "multiversion"
|
1034
|
+
version = "0.7.4"
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1036
|
+
checksum = "c4851161a11d3ad0bf9402d90ffc3967bf231768bfd7aeb61755ad06dbf1a142"
|
1037
|
+
dependencies = [
|
1038
|
+
"multiversion-macros",
|
1039
|
+
"target-features",
|
1040
|
+
]
|
1041
|
+
|
1042
|
+
[[package]]
|
1043
|
+
name = "multiversion-macros"
|
1044
|
+
version = "0.7.4"
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1046
|
+
checksum = "79a74ddee9e0c27d2578323c13905793e91622148f138ba29738f9dddb835e90"
|
1047
|
+
dependencies = [
|
1048
|
+
"proc-macro2",
|
1049
|
+
"quote",
|
1050
|
+
"syn 1.0.109",
|
1051
|
+
"target-features",
|
1052
|
+
]
|
1053
|
+
|
1054
|
+
[[package]]
|
1055
|
+
name = "nom"
|
1056
|
+
version = "7.1.3"
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1058
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
1059
|
+
dependencies = [
|
1060
|
+
"memchr",
|
1061
|
+
"minimal-lexical",
|
1062
|
+
]
|
1063
|
+
|
1064
|
+
[[package]]
|
1065
|
+
name = "now"
|
1066
|
+
version = "0.1.3"
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1068
|
+
checksum = "6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0"
|
1069
|
+
dependencies = [
|
1070
|
+
"chrono",
|
1071
|
+
]
|
1072
|
+
|
1073
|
+
[[package]]
|
1074
|
+
name = "ntapi"
|
1075
|
+
version = "0.4.1"
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1077
|
+
checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
|
1078
|
+
dependencies = [
|
1079
|
+
"winapi",
|
1080
|
+
]
|
1081
|
+
|
1082
|
+
[[package]]
|
1083
|
+
name = "num-traits"
|
1084
|
+
version = "0.2.19"
|
1085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1086
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
1087
|
+
dependencies = [
|
1088
|
+
"autocfg",
|
1089
|
+
"libm",
|
1090
|
+
]
|
1091
|
+
|
1092
|
+
[[package]]
|
1093
|
+
name = "object"
|
1094
|
+
version = "0.36.3"
|
1095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1096
|
+
checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9"
|
1097
|
+
dependencies = [
|
1098
|
+
"memchr",
|
1099
|
+
]
|
1100
|
+
|
1101
|
+
[[package]]
|
1102
|
+
name = "once_cell"
|
1103
|
+
version = "1.19.0"
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1105
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
1106
|
+
|
1107
|
+
[[package]]
|
1108
|
+
name = "parking_lot"
|
1109
|
+
version = "0.12.3"
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1111
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
1112
|
+
dependencies = [
|
1113
|
+
"lock_api",
|
1114
|
+
"parking_lot_core",
|
1115
|
+
]
|
1116
|
+
|
1117
|
+
[[package]]
|
1118
|
+
name = "parking_lot_core"
|
1119
|
+
version = "0.9.10"
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1121
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
1122
|
+
dependencies = [
|
1123
|
+
"cfg-if",
|
1124
|
+
"libc",
|
1125
|
+
"redox_syscall",
|
1126
|
+
"smallvec",
|
1127
|
+
"windows-targets",
|
1128
|
+
]
|
1129
|
+
|
1130
|
+
[[package]]
|
1131
|
+
name = "parquet-format-safe"
|
1132
|
+
version = "0.2.4"
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1134
|
+
checksum = "1131c54b167dd4e4799ce762e1ab01549ebb94d5bdd13e6ec1b467491c378e1f"
|
1135
|
+
dependencies = [
|
1136
|
+
"async-trait",
|
1137
|
+
"futures",
|
1138
|
+
]
|
1139
|
+
|
1140
|
+
[[package]]
|
1141
|
+
name = "parse-zoneinfo"
|
1142
|
+
version = "0.3.1"
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1144
|
+
checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
|
1145
|
+
dependencies = [
|
1146
|
+
"regex",
|
1147
|
+
]
|
1148
|
+
|
1149
|
+
[[package]]
|
1150
|
+
name = "percent-encoding"
|
1151
|
+
version = "2.3.1"
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1153
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
1154
|
+
|
1155
|
+
[[package]]
|
1156
|
+
name = "phf"
|
1157
|
+
version = "0.11.2"
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1159
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
1160
|
+
dependencies = [
|
1161
|
+
"phf_shared",
|
1162
|
+
]
|
1163
|
+
|
1164
|
+
[[package]]
|
1165
|
+
name = "phf_codegen"
|
1166
|
+
version = "0.11.2"
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1168
|
+
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
|
1169
|
+
dependencies = [
|
1170
|
+
"phf_generator",
|
1171
|
+
"phf_shared",
|
1172
|
+
]
|
1173
|
+
|
1174
|
+
[[package]]
|
1175
|
+
name = "phf_generator"
|
1176
|
+
version = "0.11.2"
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1178
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
1179
|
+
dependencies = [
|
1180
|
+
"phf_shared",
|
1181
|
+
"rand",
|
1182
|
+
]
|
1183
|
+
|
1184
|
+
[[package]]
|
1185
|
+
name = "phf_shared"
|
1186
|
+
version = "0.11.2"
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1188
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
1189
|
+
dependencies = [
|
1190
|
+
"siphasher",
|
1191
|
+
]
|
1192
|
+
|
1193
|
+
[[package]]
|
1194
|
+
name = "pin-project-lite"
|
1195
|
+
version = "0.2.14"
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1197
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
1198
|
+
|
1199
|
+
[[package]]
|
1200
|
+
name = "pin-utils"
|
1201
|
+
version = "0.1.0"
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1203
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1204
|
+
|
1205
|
+
[[package]]
|
1206
|
+
name = "pkg-config"
|
1207
|
+
version = "0.3.30"
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1209
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
1210
|
+
|
1211
|
+
[[package]]
|
1212
|
+
name = "planus"
|
1213
|
+
version = "0.3.1"
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1215
|
+
checksum = "fc1691dd09e82f428ce8d6310bd6d5da2557c82ff17694d2a32cad7242aea89f"
|
1216
|
+
dependencies = [
|
1217
|
+
"array-init-cursor",
|
1218
|
+
]
|
1219
|
+
|
1220
|
+
[[package]]
|
1221
|
+
name = "polars"
|
1222
|
+
version = "0.13.0"
|
1223
|
+
dependencies = [
|
1224
|
+
"ahash",
|
1225
|
+
"chrono",
|
1226
|
+
"either",
|
1227
|
+
"jemallocator",
|
1228
|
+
"magnus",
|
1229
|
+
"mimalloc",
|
1230
|
+
"polars 0.42.0",
|
1231
|
+
"polars-core",
|
1232
|
+
"polars-parquet",
|
1233
|
+
"polars-utils",
|
1234
|
+
"serde_json",
|
1235
|
+
"smartstring",
|
1236
|
+
]
|
1237
|
+
|
1238
|
+
[[package]]
|
1239
|
+
name = "polars"
|
1240
|
+
version = "0.42.0"
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1242
|
+
checksum = "ad002eb9c541b4f7e0c7c759cefe884a0350e15d241231ac4be31c5568c15070"
|
1243
|
+
dependencies = [
|
1244
|
+
"getrandom",
|
1245
|
+
"polars-arrow",
|
1246
|
+
"polars-core",
|
1247
|
+
"polars-error",
|
1248
|
+
"polars-io",
|
1249
|
+
"polars-lazy",
|
1250
|
+
"polars-ops",
|
1251
|
+
"polars-parquet",
|
1252
|
+
"polars-plan",
|
1253
|
+
"polars-sql",
|
1254
|
+
"polars-time",
|
1255
|
+
"polars-utils",
|
1256
|
+
"version_check",
|
1257
|
+
]
|
1258
|
+
|
1259
|
+
[[package]]
|
1260
|
+
name = "polars-arrow"
|
1261
|
+
version = "0.42.0"
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1263
|
+
checksum = "32d19c6db79cb6a3c55af3b5a3976276edaab64cbf7f69b392617c2af30d7742"
|
1264
|
+
dependencies = [
|
1265
|
+
"ahash",
|
1266
|
+
"atoi",
|
1267
|
+
"atoi_simd",
|
1268
|
+
"avro-schema",
|
1269
|
+
"bytemuck",
|
1270
|
+
"chrono",
|
1271
|
+
"chrono-tz",
|
1272
|
+
"dyn-clone",
|
1273
|
+
"either",
|
1274
|
+
"ethnum",
|
1275
|
+
"fast-float",
|
1276
|
+
"futures",
|
1277
|
+
"getrandom",
|
1278
|
+
"hashbrown",
|
1279
|
+
"itoa",
|
1280
|
+
"itoap",
|
1281
|
+
"lz4",
|
1282
|
+
"multiversion",
|
1283
|
+
"num-traits",
|
1284
|
+
"parking_lot",
|
1285
|
+
"polars-arrow-format",
|
1286
|
+
"polars-error",
|
1287
|
+
"polars-utils",
|
1288
|
+
"ryu",
|
1289
|
+
"serde",
|
1290
|
+
"simdutf8",
|
1291
|
+
"streaming-iterator",
|
1292
|
+
"strength_reduce",
|
1293
|
+
"version_check",
|
1294
|
+
"zstd",
|
1295
|
+
]
|
1296
|
+
|
1297
|
+
[[package]]
|
1298
|
+
name = "polars-arrow-format"
|
1299
|
+
version = "0.1.0"
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1301
|
+
checksum = "19b0ef2474af9396b19025b189d96e992311e6a47f90c53cd998b36c4c64b84c"
|
1302
|
+
dependencies = [
|
1303
|
+
"planus",
|
1304
|
+
"serde",
|
1305
|
+
]
|
1306
|
+
|
1307
|
+
[[package]]
|
1308
|
+
name = "polars-compute"
|
1309
|
+
version = "0.42.0"
|
1310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1311
|
+
checksum = "30194a5ff325f61d6fcb62dc215c9210f308fc4fc85a493ef777dbcd938cba24"
|
1312
|
+
dependencies = [
|
1313
|
+
"bytemuck",
|
1314
|
+
"either",
|
1315
|
+
"num-traits",
|
1316
|
+
"polars-arrow",
|
1317
|
+
"polars-error",
|
1318
|
+
"polars-utils",
|
1319
|
+
"strength_reduce",
|
1320
|
+
"version_check",
|
1321
|
+
]
|
1322
|
+
|
1323
|
+
[[package]]
|
1324
|
+
name = "polars-core"
|
1325
|
+
version = "0.42.0"
|
1326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1327
|
+
checksum = "2ba2a3b736d55b92a12889672d0197dc25ad321ab23eba4168a3b6316a6b6349"
|
1328
|
+
dependencies = [
|
1329
|
+
"ahash",
|
1330
|
+
"bitflags",
|
1331
|
+
"bytemuck",
|
1332
|
+
"chrono",
|
1333
|
+
"chrono-tz",
|
1334
|
+
"comfy-table",
|
1335
|
+
"either",
|
1336
|
+
"hashbrown",
|
1337
|
+
"indexmap",
|
1338
|
+
"num-traits",
|
1339
|
+
"once_cell",
|
1340
|
+
"polars-arrow",
|
1341
|
+
"polars-compute",
|
1342
|
+
"polars-error",
|
1343
|
+
"polars-row",
|
1344
|
+
"polars-utils",
|
1345
|
+
"rand",
|
1346
|
+
"rand_distr",
|
1347
|
+
"rayon",
|
1348
|
+
"regex",
|
1349
|
+
"serde",
|
1350
|
+
"serde_json",
|
1351
|
+
"smartstring",
|
1352
|
+
"thiserror",
|
1353
|
+
"version_check",
|
1354
|
+
"xxhash-rust",
|
1355
|
+
]
|
1356
|
+
|
1357
|
+
[[package]]
|
1358
|
+
name = "polars-error"
|
1359
|
+
version = "0.42.0"
|
1360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1361
|
+
checksum = "07101d1803ca2046cdb3a8adb1523ddcc879229860f0ac56a853034269dec1e1"
|
1362
|
+
dependencies = [
|
1363
|
+
"avro-schema",
|
1364
|
+
"polars-arrow-format",
|
1365
|
+
"regex",
|
1366
|
+
"simdutf8",
|
1367
|
+
"thiserror",
|
1368
|
+
]
|
1369
|
+
|
1370
|
+
[[package]]
|
1371
|
+
name = "polars-expr"
|
1372
|
+
version = "0.42.0"
|
1373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1374
|
+
checksum = "dd5c69634ddbb0f44186cd1c42d166963fc756f9cc994438e941bc2703ddbbab"
|
1375
|
+
dependencies = [
|
1376
|
+
"ahash",
|
1377
|
+
"bitflags",
|
1378
|
+
"once_cell",
|
1379
|
+
"polars-arrow",
|
1380
|
+
"polars-core",
|
1381
|
+
"polars-io",
|
1382
|
+
"polars-ops",
|
1383
|
+
"polars-plan",
|
1384
|
+
"polars-time",
|
1385
|
+
"polars-utils",
|
1386
|
+
"rayon",
|
1387
|
+
"smartstring",
|
1388
|
+
]
|
1389
|
+
|
1390
|
+
[[package]]
|
1391
|
+
name = "polars-io"
|
1392
|
+
version = "0.42.0"
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1394
|
+
checksum = "a48ddf416ae185336c3d7880d2e05b7e55686e3e0da1014e5e7325eff9c7d722"
|
1395
|
+
dependencies = [
|
1396
|
+
"ahash",
|
1397
|
+
"async-trait",
|
1398
|
+
"atoi_simd",
|
1399
|
+
"bytes",
|
1400
|
+
"chrono",
|
1401
|
+
"chrono-tz",
|
1402
|
+
"fast-float",
|
1403
|
+
"futures",
|
1404
|
+
"glob",
|
1405
|
+
"home",
|
1406
|
+
"itoa",
|
1407
|
+
"memchr",
|
1408
|
+
"memmap2",
|
1409
|
+
"num-traits",
|
1410
|
+
"once_cell",
|
1411
|
+
"percent-encoding",
|
1412
|
+
"polars-arrow",
|
1413
|
+
"polars-core",
|
1414
|
+
"polars-error",
|
1415
|
+
"polars-json",
|
1416
|
+
"polars-parquet",
|
1417
|
+
"polars-time",
|
1418
|
+
"polars-utils",
|
1419
|
+
"rayon",
|
1420
|
+
"regex",
|
1421
|
+
"ryu",
|
1422
|
+
"serde",
|
1423
|
+
"serde_json",
|
1424
|
+
"simd-json",
|
1425
|
+
"simdutf8",
|
1426
|
+
"smartstring",
|
1427
|
+
"tokio",
|
1428
|
+
"tokio-util",
|
1429
|
+
]
|
1430
|
+
|
1431
|
+
[[package]]
|
1432
|
+
name = "polars-json"
|
1433
|
+
version = "0.42.0"
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1435
|
+
checksum = "f0a43388585a922524e8bbaa1ed1391c9c4b0768a644585609afa9a2fd5fc702"
|
1436
|
+
dependencies = [
|
1437
|
+
"ahash",
|
1438
|
+
"chrono",
|
1439
|
+
"chrono-tz",
|
1440
|
+
"fallible-streaming-iterator",
|
1441
|
+
"hashbrown",
|
1442
|
+
"indexmap",
|
1443
|
+
"itoa",
|
1444
|
+
"num-traits",
|
1445
|
+
"polars-arrow",
|
1446
|
+
"polars-error",
|
1447
|
+
"polars-utils",
|
1448
|
+
"ryu",
|
1449
|
+
"simd-json",
|
1450
|
+
"streaming-iterator",
|
1451
|
+
]
|
1452
|
+
|
1453
|
+
[[package]]
|
1454
|
+
name = "polars-lazy"
|
1455
|
+
version = "0.42.0"
|
1456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1457
|
+
checksum = "a514a85df9e7d501c71c96f094861d0608b05a3f533447b1c0ea9cf714162fcb"
|
1458
|
+
dependencies = [
|
1459
|
+
"ahash",
|
1460
|
+
"bitflags",
|
1461
|
+
"memchr",
|
1462
|
+
"once_cell",
|
1463
|
+
"polars-arrow",
|
1464
|
+
"polars-core",
|
1465
|
+
"polars-expr",
|
1466
|
+
"polars-io",
|
1467
|
+
"polars-json",
|
1468
|
+
"polars-mem-engine",
|
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-mem-engine"
|
1481
|
+
version = "0.42.0"
|
1482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1483
|
+
checksum = "2d057df81b17b4f0ea0e4424ee34f755e6b9ccfba432ecb2fe57dc4da6da2713"
|
1484
|
+
dependencies = [
|
1485
|
+
"memmap2",
|
1486
|
+
"polars-arrow",
|
1487
|
+
"polars-core",
|
1488
|
+
"polars-error",
|
1489
|
+
"polars-expr",
|
1490
|
+
"polars-io",
|
1491
|
+
"polars-json",
|
1492
|
+
"polars-ops",
|
1493
|
+
"polars-plan",
|
1494
|
+
"polars-time",
|
1495
|
+
"polars-utils",
|
1496
|
+
"rayon",
|
1497
|
+
]
|
1498
|
+
|
1499
|
+
[[package]]
|
1500
|
+
name = "polars-ops"
|
1501
|
+
version = "0.42.0"
|
1502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1503
|
+
checksum = "01ba44233249b7937491b5d2bdbf14e4ad534c0a65d06548c3bc418fc3e60791"
|
1504
|
+
dependencies = [
|
1505
|
+
"ahash",
|
1506
|
+
"aho-corasick",
|
1507
|
+
"argminmax",
|
1508
|
+
"base64",
|
1509
|
+
"bytemuck",
|
1510
|
+
"chrono",
|
1511
|
+
"chrono-tz",
|
1512
|
+
"either",
|
1513
|
+
"hashbrown",
|
1514
|
+
"hex",
|
1515
|
+
"indexmap",
|
1516
|
+
"jsonpath_lib_polars_vendor",
|
1517
|
+
"memchr",
|
1518
|
+
"num-traits",
|
1519
|
+
"polars-arrow",
|
1520
|
+
"polars-compute",
|
1521
|
+
"polars-core",
|
1522
|
+
"polars-error",
|
1523
|
+
"polars-json",
|
1524
|
+
"polars-utils",
|
1525
|
+
"rand",
|
1526
|
+
"rand_distr",
|
1527
|
+
"rayon",
|
1528
|
+
"regex",
|
1529
|
+
"serde",
|
1530
|
+
"serde_json",
|
1531
|
+
"smartstring",
|
1532
|
+
"unicode-reverse",
|
1533
|
+
"version_check",
|
1534
|
+
]
|
1535
|
+
|
1536
|
+
[[package]]
|
1537
|
+
name = "polars-parquet"
|
1538
|
+
version = "0.42.0"
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1540
|
+
checksum = "bb2993265079ffa07dd16277189444424f8d787b00b01c6f6e001f58bab543ce"
|
1541
|
+
dependencies = [
|
1542
|
+
"ahash",
|
1543
|
+
"async-stream",
|
1544
|
+
"base64",
|
1545
|
+
"brotli",
|
1546
|
+
"bytemuck",
|
1547
|
+
"ethnum",
|
1548
|
+
"flate2",
|
1549
|
+
"futures",
|
1550
|
+
"lz4",
|
1551
|
+
"num-traits",
|
1552
|
+
"parquet-format-safe",
|
1553
|
+
"polars-arrow",
|
1554
|
+
"polars-compute",
|
1555
|
+
"polars-error",
|
1556
|
+
"polars-utils",
|
1557
|
+
"serde",
|
1558
|
+
"simdutf8",
|
1559
|
+
"snap",
|
1560
|
+
"streaming-decompression",
|
1561
|
+
"zstd",
|
1562
|
+
]
|
1563
|
+
|
1564
|
+
[[package]]
|
1565
|
+
name = "polars-pipe"
|
1566
|
+
version = "0.42.0"
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1568
|
+
checksum = "0ccba94c4fa9fded0f41730f7649574c72d6d938a840731c7e4eea4e7ed5cecf"
|
1569
|
+
dependencies = [
|
1570
|
+
"crossbeam-channel",
|
1571
|
+
"crossbeam-queue",
|
1572
|
+
"enum_dispatch",
|
1573
|
+
"hashbrown",
|
1574
|
+
"num-traits",
|
1575
|
+
"polars-arrow",
|
1576
|
+
"polars-compute",
|
1577
|
+
"polars-core",
|
1578
|
+
"polars-expr",
|
1579
|
+
"polars-io",
|
1580
|
+
"polars-ops",
|
1581
|
+
"polars-plan",
|
1582
|
+
"polars-row",
|
1583
|
+
"polars-utils",
|
1584
|
+
"rayon",
|
1585
|
+
"smartstring",
|
1586
|
+
"uuid",
|
1587
|
+
"version_check",
|
1588
|
+
]
|
1589
|
+
|
1590
|
+
[[package]]
|
1591
|
+
name = "polars-plan"
|
1592
|
+
version = "0.42.0"
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1594
|
+
checksum = "5d6b29cc53d6c086c09b11050b01c25c28f6a91339036ba1fb1250fcf0d89e74"
|
1595
|
+
dependencies = [
|
1596
|
+
"ahash",
|
1597
|
+
"bitflags",
|
1598
|
+
"bytemuck",
|
1599
|
+
"chrono",
|
1600
|
+
"chrono-tz",
|
1601
|
+
"either",
|
1602
|
+
"hashbrown",
|
1603
|
+
"memmap2",
|
1604
|
+
"once_cell",
|
1605
|
+
"percent-encoding",
|
1606
|
+
"polars-arrow",
|
1607
|
+
"polars-core",
|
1608
|
+
"polars-io",
|
1609
|
+
"polars-json",
|
1610
|
+
"polars-ops",
|
1611
|
+
"polars-parquet",
|
1612
|
+
"polars-time",
|
1613
|
+
"polars-utils",
|
1614
|
+
"rayon",
|
1615
|
+
"recursive",
|
1616
|
+
"regex",
|
1617
|
+
"serde",
|
1618
|
+
"smartstring",
|
1619
|
+
"strum_macros",
|
1620
|
+
"version_check",
|
1621
|
+
]
|
1622
|
+
|
1623
|
+
[[package]]
|
1624
|
+
name = "polars-row"
|
1625
|
+
version = "0.42.0"
|
1626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1627
|
+
checksum = "6e11f43f48466c4b1caa6dc61c381dc10c2d67b87fcb74bc996e21c4f7b0a311"
|
1628
|
+
dependencies = [
|
1629
|
+
"bytemuck",
|
1630
|
+
"polars-arrow",
|
1631
|
+
"polars-error",
|
1632
|
+
"polars-utils",
|
1633
|
+
]
|
1634
|
+
|
1635
|
+
[[package]]
|
1636
|
+
name = "polars-sql"
|
1637
|
+
version = "0.42.0"
|
1638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1639
|
+
checksum = "6e9338806e7254618eb819cc632c34b75b71d462222a913f9c1035ed81911ddc"
|
1640
|
+
dependencies = [
|
1641
|
+
"hex",
|
1642
|
+
"once_cell",
|
1643
|
+
"polars-arrow",
|
1644
|
+
"polars-core",
|
1645
|
+
"polars-error",
|
1646
|
+
"polars-lazy",
|
1647
|
+
"polars-ops",
|
1648
|
+
"polars-plan",
|
1649
|
+
"polars-time",
|
1650
|
+
"rand",
|
1651
|
+
"serde",
|
1652
|
+
"serde_json",
|
1653
|
+
"sqlparser",
|
1654
|
+
]
|
1655
|
+
|
1656
|
+
[[package]]
|
1657
|
+
name = "polars-time"
|
1658
|
+
version = "0.42.0"
|
1659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1660
|
+
checksum = "30a601ab9a62e733b8b560b37642321cb1933faa194864739f6a59d6dfc4d686"
|
1661
|
+
dependencies = [
|
1662
|
+
"atoi",
|
1663
|
+
"bytemuck",
|
1664
|
+
"chrono",
|
1665
|
+
"chrono-tz",
|
1666
|
+
"now",
|
1667
|
+
"once_cell",
|
1668
|
+
"polars-arrow",
|
1669
|
+
"polars-core",
|
1670
|
+
"polars-error",
|
1671
|
+
"polars-ops",
|
1672
|
+
"polars-utils",
|
1673
|
+
"regex",
|
1674
|
+
"serde",
|
1675
|
+
"smartstring",
|
1676
|
+
]
|
1677
|
+
|
1678
|
+
[[package]]
|
1679
|
+
name = "polars-utils"
|
1680
|
+
version = "0.42.0"
|
1681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1682
|
+
checksum = "19dd73207bd15efb0ae5c9c3ece3227927ed6a16ad63578acec342378e6bdcb4"
|
1683
|
+
dependencies = [
|
1684
|
+
"ahash",
|
1685
|
+
"bytemuck",
|
1686
|
+
"bytes",
|
1687
|
+
"hashbrown",
|
1688
|
+
"indexmap",
|
1689
|
+
"memmap2",
|
1690
|
+
"num-traits",
|
1691
|
+
"once_cell",
|
1692
|
+
"polars-error",
|
1693
|
+
"raw-cpuid",
|
1694
|
+
"rayon",
|
1695
|
+
"smartstring",
|
1696
|
+
"stacker",
|
1697
|
+
"sysinfo",
|
1698
|
+
"version_check",
|
1699
|
+
]
|
1700
|
+
|
1701
|
+
[[package]]
|
1702
|
+
name = "ppv-lite86"
|
1703
|
+
version = "0.2.20"
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1705
|
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
1706
|
+
dependencies = [
|
1707
|
+
"zerocopy",
|
1708
|
+
]
|
1709
|
+
|
1710
|
+
[[package]]
|
1711
|
+
name = "proc-macro2"
|
1712
|
+
version = "1.0.86"
|
1713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1714
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
1715
|
+
dependencies = [
|
1716
|
+
"unicode-ident",
|
1717
|
+
]
|
1718
|
+
|
1719
|
+
[[package]]
|
1720
|
+
name = "psm"
|
1721
|
+
version = "0.1.21"
|
1722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1723
|
+
checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
|
1724
|
+
dependencies = [
|
1725
|
+
"cc",
|
1726
|
+
]
|
1727
|
+
|
1728
|
+
[[package]]
|
1729
|
+
name = "quote"
|
1730
|
+
version = "1.0.36"
|
1731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1732
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
1733
|
+
dependencies = [
|
1734
|
+
"proc-macro2",
|
1735
|
+
]
|
1736
|
+
|
1737
|
+
[[package]]
|
1738
|
+
name = "rand"
|
1739
|
+
version = "0.8.5"
|
1740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1741
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
1742
|
+
dependencies = [
|
1743
|
+
"libc",
|
1744
|
+
"rand_chacha",
|
1745
|
+
"rand_core",
|
1746
|
+
]
|
1747
|
+
|
1748
|
+
[[package]]
|
1749
|
+
name = "rand_chacha"
|
1750
|
+
version = "0.3.1"
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1752
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
1753
|
+
dependencies = [
|
1754
|
+
"ppv-lite86",
|
1755
|
+
"rand_core",
|
1756
|
+
]
|
1757
|
+
|
1758
|
+
[[package]]
|
1759
|
+
name = "rand_core"
|
1760
|
+
version = "0.6.4"
|
1761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1762
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
1763
|
+
dependencies = [
|
1764
|
+
"getrandom",
|
1765
|
+
]
|
1766
|
+
|
1767
|
+
[[package]]
|
1768
|
+
name = "rand_distr"
|
1769
|
+
version = "0.4.3"
|
1770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1771
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
1772
|
+
dependencies = [
|
1773
|
+
"num-traits",
|
1774
|
+
"rand",
|
1775
|
+
]
|
1776
|
+
|
1777
|
+
[[package]]
|
1778
|
+
name = "raw-cpuid"
|
1779
|
+
version = "11.1.0"
|
1780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1781
|
+
checksum = "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d"
|
1782
|
+
dependencies = [
|
1783
|
+
"bitflags",
|
1784
|
+
]
|
1785
|
+
|
1786
|
+
[[package]]
|
1787
|
+
name = "rayon"
|
1788
|
+
version = "1.10.0"
|
1789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1790
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
1791
|
+
dependencies = [
|
1792
|
+
"either",
|
1793
|
+
"rayon-core",
|
1794
|
+
]
|
1795
|
+
|
1796
|
+
[[package]]
|
1797
|
+
name = "rayon-core"
|
1798
|
+
version = "1.12.1"
|
1799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1800
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
1801
|
+
dependencies = [
|
1802
|
+
"crossbeam-deque",
|
1803
|
+
"crossbeam-utils",
|
1804
|
+
]
|
1805
|
+
|
1806
|
+
[[package]]
|
1807
|
+
name = "rb-sys"
|
1808
|
+
version = "0.9.101"
|
1809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1810
|
+
checksum = "1ba2704ccfa7875c91792c57a9aa7c3caac524d3036c122e36eeddad6f6e7c6f"
|
1811
|
+
dependencies = [
|
1812
|
+
"rb-sys-build",
|
1813
|
+
]
|
1814
|
+
|
1815
|
+
[[package]]
|
1816
|
+
name = "rb-sys-build"
|
1817
|
+
version = "0.9.101"
|
1818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1819
|
+
checksum = "c73585ec80c217b7a81257ca9bb89b191b5e452ec4b9106dc4c2e4e96a822242"
|
1820
|
+
dependencies = [
|
1821
|
+
"bindgen",
|
1822
|
+
"lazy_static",
|
1823
|
+
"proc-macro2",
|
1824
|
+
"quote",
|
1825
|
+
"regex",
|
1826
|
+
"shell-words",
|
1827
|
+
"syn 2.0.74",
|
1828
|
+
]
|
1829
|
+
|
1830
|
+
[[package]]
|
1831
|
+
name = "rb-sys-env"
|
1832
|
+
version = "0.1.2"
|
1833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1834
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
1835
|
+
|
1836
|
+
[[package]]
|
1837
|
+
name = "recursive"
|
1838
|
+
version = "0.1.1"
|
1839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1840
|
+
checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
|
1841
|
+
dependencies = [
|
1842
|
+
"recursive-proc-macro-impl",
|
1843
|
+
"stacker",
|
1844
|
+
]
|
1845
|
+
|
1846
|
+
[[package]]
|
1847
|
+
name = "recursive-proc-macro-impl"
|
1848
|
+
version = "0.1.1"
|
1849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1850
|
+
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
1851
|
+
dependencies = [
|
1852
|
+
"quote",
|
1853
|
+
"syn 2.0.74",
|
1854
|
+
]
|
1855
|
+
|
1856
|
+
[[package]]
|
1857
|
+
name = "redox_syscall"
|
1858
|
+
version = "0.5.3"
|
1859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1860
|
+
checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
|
1861
|
+
dependencies = [
|
1862
|
+
"bitflags",
|
1863
|
+
]
|
1864
|
+
|
1865
|
+
[[package]]
|
1866
|
+
name = "ref-cast"
|
1867
|
+
version = "1.0.23"
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1869
|
+
checksum = "ccf0a6f84d5f1d581da8b41b47ec8600871962f2a528115b542b362d4b744931"
|
1870
|
+
dependencies = [
|
1871
|
+
"ref-cast-impl",
|
1872
|
+
]
|
1873
|
+
|
1874
|
+
[[package]]
|
1875
|
+
name = "ref-cast-impl"
|
1876
|
+
version = "1.0.23"
|
1877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1878
|
+
checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6"
|
1879
|
+
dependencies = [
|
1880
|
+
"proc-macro2",
|
1881
|
+
"quote",
|
1882
|
+
"syn 2.0.74",
|
1883
|
+
]
|
1884
|
+
|
1885
|
+
[[package]]
|
1886
|
+
name = "regex"
|
1887
|
+
version = "1.10.6"
|
1888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1889
|
+
checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
|
1890
|
+
dependencies = [
|
1891
|
+
"aho-corasick",
|
1892
|
+
"memchr",
|
1893
|
+
"regex-automata",
|
1894
|
+
"regex-syntax",
|
1895
|
+
]
|
1896
|
+
|
1897
|
+
[[package]]
|
1898
|
+
name = "regex-automata"
|
1899
|
+
version = "0.4.7"
|
1900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1901
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
1902
|
+
dependencies = [
|
1903
|
+
"aho-corasick",
|
1904
|
+
"memchr",
|
1905
|
+
"regex-syntax",
|
1906
|
+
]
|
1907
|
+
|
1908
|
+
[[package]]
|
1909
|
+
name = "regex-syntax"
|
1910
|
+
version = "0.8.4"
|
1911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1912
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
1913
|
+
|
1914
|
+
[[package]]
|
1915
|
+
name = "rle-decode-fast"
|
1916
|
+
version = "1.0.3"
|
1917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1918
|
+
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
1919
|
+
|
1920
|
+
[[package]]
|
1921
|
+
name = "rustc-demangle"
|
1922
|
+
version = "0.1.24"
|
1923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1924
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
1925
|
+
|
1926
|
+
[[package]]
|
1927
|
+
name = "rustc-hash"
|
1928
|
+
version = "1.1.0"
|
1929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1930
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1931
|
+
|
1932
|
+
[[package]]
|
1933
|
+
name = "rustversion"
|
1934
|
+
version = "1.0.17"
|
1935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1936
|
+
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
|
1937
|
+
|
1938
|
+
[[package]]
|
1939
|
+
name = "ryu"
|
1940
|
+
version = "1.0.18"
|
1941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1942
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
1943
|
+
|
1944
|
+
[[package]]
|
1945
|
+
name = "scopeguard"
|
1946
|
+
version = "1.2.0"
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1948
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1949
|
+
|
1950
|
+
[[package]]
|
1951
|
+
name = "seq-macro"
|
1952
|
+
version = "0.3.5"
|
1953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1954
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
1955
|
+
|
1956
|
+
[[package]]
|
1957
|
+
name = "serde"
|
1958
|
+
version = "1.0.207"
|
1959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1960
|
+
checksum = "5665e14a49a4ea1b91029ba7d3bca9f299e1f7cfa194388ccc20f14743e784f2"
|
1961
|
+
dependencies = [
|
1962
|
+
"serde_derive",
|
1963
|
+
]
|
1964
|
+
|
1965
|
+
[[package]]
|
1966
|
+
name = "serde_derive"
|
1967
|
+
version = "1.0.207"
|
1968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1969
|
+
checksum = "6aea2634c86b0e8ef2cfdc0c340baede54ec27b1e46febd7f80dffb2aa44a00e"
|
1970
|
+
dependencies = [
|
1971
|
+
"proc-macro2",
|
1972
|
+
"quote",
|
1973
|
+
"syn 2.0.74",
|
1974
|
+
]
|
1975
|
+
|
1976
|
+
[[package]]
|
1977
|
+
name = "serde_json"
|
1978
|
+
version = "1.0.124"
|
1979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1980
|
+
checksum = "66ad62847a56b3dba58cc891acd13884b9c61138d330c0d7b6181713d4fce38d"
|
1981
|
+
dependencies = [
|
1982
|
+
"indexmap",
|
1983
|
+
"itoa",
|
1984
|
+
"memchr",
|
1985
|
+
"ryu",
|
1986
|
+
"serde",
|
1987
|
+
]
|
1988
|
+
|
1989
|
+
[[package]]
|
1990
|
+
name = "shell-words"
|
1991
|
+
version = "1.1.0"
|
1992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1993
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
1994
|
+
|
1995
|
+
[[package]]
|
1996
|
+
name = "shlex"
|
1997
|
+
version = "1.3.0"
|
1998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1999
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
2000
|
+
|
2001
|
+
[[package]]
|
2002
|
+
name = "simd-json"
|
2003
|
+
version = "0.13.10"
|
2004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2005
|
+
checksum = "570c430b3d902ea083097e853263ae782dfe40857d93db019a12356c8e8143fa"
|
2006
|
+
dependencies = [
|
2007
|
+
"ahash",
|
2008
|
+
"getrandom",
|
2009
|
+
"halfbrown",
|
2010
|
+
"lexical-core",
|
2011
|
+
"once_cell",
|
2012
|
+
"ref-cast",
|
2013
|
+
"serde",
|
2014
|
+
"serde_json",
|
2015
|
+
"simdutf8",
|
2016
|
+
"value-trait",
|
2017
|
+
]
|
2018
|
+
|
2019
|
+
[[package]]
|
2020
|
+
name = "simdutf8"
|
2021
|
+
version = "0.1.4"
|
2022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023
|
+
checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
|
2024
|
+
|
2025
|
+
[[package]]
|
2026
|
+
name = "siphasher"
|
2027
|
+
version = "0.3.11"
|
2028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2029
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
2030
|
+
|
2031
|
+
[[package]]
|
2032
|
+
name = "slab"
|
2033
|
+
version = "0.4.9"
|
2034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2035
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
2036
|
+
dependencies = [
|
2037
|
+
"autocfg",
|
2038
|
+
]
|
2039
|
+
|
2040
|
+
[[package]]
|
2041
|
+
name = "smallvec"
|
2042
|
+
version = "1.13.2"
|
2043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2044
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
2045
|
+
|
2046
|
+
[[package]]
|
2047
|
+
name = "smartstring"
|
2048
|
+
version = "1.0.1"
|
2049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2050
|
+
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
|
2051
|
+
dependencies = [
|
2052
|
+
"autocfg",
|
2053
|
+
"serde",
|
2054
|
+
"static_assertions",
|
2055
|
+
"version_check",
|
2056
|
+
]
|
2057
|
+
|
2058
|
+
[[package]]
|
2059
|
+
name = "snap"
|
2060
|
+
version = "1.1.1"
|
2061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2062
|
+
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
2063
|
+
|
2064
|
+
[[package]]
|
2065
|
+
name = "socket2"
|
2066
|
+
version = "0.5.7"
|
2067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2068
|
+
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
2069
|
+
dependencies = [
|
2070
|
+
"libc",
|
2071
|
+
"windows-sys",
|
2072
|
+
]
|
2073
|
+
|
2074
|
+
[[package]]
|
2075
|
+
name = "sqlparser"
|
2076
|
+
version = "0.49.0"
|
2077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2078
|
+
checksum = "a4a404d0e14905361b918cb8afdb73605e25c1d5029312bd9785142dcb3aa49e"
|
2079
|
+
dependencies = [
|
2080
|
+
"log",
|
2081
|
+
]
|
2082
|
+
|
2083
|
+
[[package]]
|
2084
|
+
name = "stacker"
|
2085
|
+
version = "0.1.15"
|
2086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2087
|
+
checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce"
|
2088
|
+
dependencies = [
|
2089
|
+
"cc",
|
2090
|
+
"cfg-if",
|
2091
|
+
"libc",
|
2092
|
+
"psm",
|
2093
|
+
"winapi",
|
2094
|
+
]
|
2095
|
+
|
2096
|
+
[[package]]
|
2097
|
+
name = "static_assertions"
|
2098
|
+
version = "1.1.0"
|
2099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2100
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
2101
|
+
|
2102
|
+
[[package]]
|
2103
|
+
name = "streaming-decompression"
|
2104
|
+
version = "0.1.2"
|
2105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2106
|
+
checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3"
|
2107
|
+
dependencies = [
|
2108
|
+
"fallible-streaming-iterator",
|
2109
|
+
]
|
2110
|
+
|
2111
|
+
[[package]]
|
2112
|
+
name = "streaming-iterator"
|
2113
|
+
version = "0.1.9"
|
2114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2115
|
+
checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
|
2116
|
+
|
2117
|
+
[[package]]
|
2118
|
+
name = "strength_reduce"
|
2119
|
+
version = "0.2.4"
|
2120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2121
|
+
checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
2122
|
+
|
2123
|
+
[[package]]
|
2124
|
+
name = "strum"
|
2125
|
+
version = "0.26.3"
|
2126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2127
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
2128
|
+
|
2129
|
+
[[package]]
|
2130
|
+
name = "strum_macros"
|
2131
|
+
version = "0.26.4"
|
2132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2133
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
2134
|
+
dependencies = [
|
2135
|
+
"heck",
|
2136
|
+
"proc-macro2",
|
2137
|
+
"quote",
|
2138
|
+
"rustversion",
|
2139
|
+
"syn 2.0.74",
|
2140
|
+
]
|
2141
|
+
|
2142
|
+
[[package]]
|
2143
|
+
name = "syn"
|
2144
|
+
version = "1.0.109"
|
2145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2146
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
2147
|
+
dependencies = [
|
2148
|
+
"proc-macro2",
|
2149
|
+
"quote",
|
2150
|
+
"unicode-ident",
|
2151
|
+
]
|
2152
|
+
|
2153
|
+
[[package]]
|
2154
|
+
name = "syn"
|
2155
|
+
version = "2.0.74"
|
2156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2157
|
+
checksum = "1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7"
|
2158
|
+
dependencies = [
|
2159
|
+
"proc-macro2",
|
2160
|
+
"quote",
|
2161
|
+
"unicode-ident",
|
2162
|
+
]
|
2163
|
+
|
2164
|
+
[[package]]
|
2165
|
+
name = "sysinfo"
|
2166
|
+
version = "0.31.2"
|
2167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2168
|
+
checksum = "d4115055da5f572fff541dd0c4e61b0262977f453cc9fe04be83aba25a89bdab"
|
2169
|
+
dependencies = [
|
2170
|
+
"core-foundation-sys",
|
2171
|
+
"libc",
|
2172
|
+
"memchr",
|
2173
|
+
"ntapi",
|
2174
|
+
"windows",
|
2175
|
+
]
|
2176
|
+
|
2177
|
+
[[package]]
|
2178
|
+
name = "target-features"
|
2179
|
+
version = "0.1.6"
|
2180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2181
|
+
checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
|
2182
|
+
|
2183
|
+
[[package]]
|
2184
|
+
name = "thiserror"
|
2185
|
+
version = "1.0.63"
|
2186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2187
|
+
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
|
2188
|
+
dependencies = [
|
2189
|
+
"thiserror-impl",
|
2190
|
+
]
|
2191
|
+
|
2192
|
+
[[package]]
|
2193
|
+
name = "thiserror-impl"
|
2194
|
+
version = "1.0.63"
|
2195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2196
|
+
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
|
2197
|
+
dependencies = [
|
2198
|
+
"proc-macro2",
|
2199
|
+
"quote",
|
2200
|
+
"syn 2.0.74",
|
2201
|
+
]
|
2202
|
+
|
2203
|
+
[[package]]
|
2204
|
+
name = "tokio"
|
2205
|
+
version = "1.39.2"
|
2206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2207
|
+
checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1"
|
2208
|
+
dependencies = [
|
2209
|
+
"backtrace",
|
2210
|
+
"bytes",
|
2211
|
+
"libc",
|
2212
|
+
"mio",
|
2213
|
+
"pin-project-lite",
|
2214
|
+
"socket2",
|
2215
|
+
"windows-sys",
|
2216
|
+
]
|
2217
|
+
|
2218
|
+
[[package]]
|
2219
|
+
name = "tokio-util"
|
2220
|
+
version = "0.7.11"
|
2221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2222
|
+
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
|
2223
|
+
dependencies = [
|
2224
|
+
"bytes",
|
2225
|
+
"futures-core",
|
2226
|
+
"futures-sink",
|
2227
|
+
"pin-project-lite",
|
2228
|
+
"tokio",
|
2229
|
+
]
|
2230
|
+
|
2231
|
+
[[package]]
|
2232
|
+
name = "unicode-ident"
|
2233
|
+
version = "1.0.12"
|
2234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2235
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
2236
|
+
|
2237
|
+
[[package]]
|
2238
|
+
name = "unicode-reverse"
|
2239
|
+
version = "1.0.9"
|
2240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2241
|
+
checksum = "4b6f4888ebc23094adfb574fdca9fdc891826287a6397d2cd28802ffd6f20c76"
|
2242
|
+
dependencies = [
|
2243
|
+
"unicode-segmentation",
|
2244
|
+
]
|
2245
|
+
|
2246
|
+
[[package]]
|
2247
|
+
name = "unicode-segmentation"
|
2248
|
+
version = "1.11.0"
|
2249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2250
|
+
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
|
2251
|
+
|
2252
|
+
[[package]]
|
2253
|
+
name = "unicode-width"
|
2254
|
+
version = "0.1.13"
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2256
|
+
checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
|
2257
|
+
|
2258
|
+
[[package]]
|
2259
|
+
name = "uuid"
|
2260
|
+
version = "1.10.0"
|
2261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2262
|
+
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
|
2263
|
+
dependencies = [
|
2264
|
+
"getrandom",
|
2265
|
+
]
|
2266
|
+
|
2267
|
+
[[package]]
|
2268
|
+
name = "value-trait"
|
2269
|
+
version = "0.8.1"
|
2270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2271
|
+
checksum = "dad8db98c1e677797df21ba03fca7d3bf9bec3ca38db930954e4fe6e1ea27eb4"
|
2272
|
+
dependencies = [
|
2273
|
+
"float-cmp",
|
2274
|
+
"halfbrown",
|
2275
|
+
"itoa",
|
2276
|
+
"ryu",
|
2277
|
+
]
|
2278
|
+
|
2279
|
+
[[package]]
|
2280
|
+
name = "version_check"
|
2281
|
+
version = "0.9.5"
|
2282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2283
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
2284
|
+
|
2285
|
+
[[package]]
|
2286
|
+
name = "wasi"
|
2287
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
2288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2289
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
2290
|
+
|
2291
|
+
[[package]]
|
2292
|
+
name = "wasm-bindgen"
|
2293
|
+
version = "0.2.93"
|
2294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2295
|
+
checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
|
2296
|
+
dependencies = [
|
2297
|
+
"cfg-if",
|
2298
|
+
"once_cell",
|
2299
|
+
"wasm-bindgen-macro",
|
2300
|
+
]
|
2301
|
+
|
2302
|
+
[[package]]
|
2303
|
+
name = "wasm-bindgen-backend"
|
2304
|
+
version = "0.2.93"
|
2305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2306
|
+
checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
|
2307
|
+
dependencies = [
|
2308
|
+
"bumpalo",
|
2309
|
+
"log",
|
2310
|
+
"once_cell",
|
2311
|
+
"proc-macro2",
|
2312
|
+
"quote",
|
2313
|
+
"syn 2.0.74",
|
2314
|
+
"wasm-bindgen-shared",
|
2315
|
+
]
|
2316
|
+
|
2317
|
+
[[package]]
|
2318
|
+
name = "wasm-bindgen-macro"
|
2319
|
+
version = "0.2.93"
|
2320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2321
|
+
checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
|
2322
|
+
dependencies = [
|
2323
|
+
"quote",
|
2324
|
+
"wasm-bindgen-macro-support",
|
2325
|
+
]
|
2326
|
+
|
2327
|
+
[[package]]
|
2328
|
+
name = "wasm-bindgen-macro-support"
|
2329
|
+
version = "0.2.93"
|
2330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2331
|
+
checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
|
2332
|
+
dependencies = [
|
2333
|
+
"proc-macro2",
|
2334
|
+
"quote",
|
2335
|
+
"syn 2.0.74",
|
2336
|
+
"wasm-bindgen-backend",
|
2337
|
+
"wasm-bindgen-shared",
|
2338
|
+
]
|
2339
|
+
|
2340
|
+
[[package]]
|
2341
|
+
name = "wasm-bindgen-shared"
|
2342
|
+
version = "0.2.93"
|
2343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2344
|
+
checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
|
2345
|
+
|
2346
|
+
[[package]]
|
2347
|
+
name = "winapi"
|
2348
|
+
version = "0.3.9"
|
2349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2350
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
2351
|
+
dependencies = [
|
2352
|
+
"winapi-i686-pc-windows-gnu",
|
2353
|
+
"winapi-x86_64-pc-windows-gnu",
|
2354
|
+
]
|
2355
|
+
|
2356
|
+
[[package]]
|
2357
|
+
name = "winapi-i686-pc-windows-gnu"
|
2358
|
+
version = "0.4.0"
|
2359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2360
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2361
|
+
|
2362
|
+
[[package]]
|
2363
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
2364
|
+
version = "0.4.0"
|
2365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2366
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2367
|
+
|
2368
|
+
[[package]]
|
2369
|
+
name = "windows"
|
2370
|
+
version = "0.57.0"
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2372
|
+
checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
|
2373
|
+
dependencies = [
|
2374
|
+
"windows-core 0.57.0",
|
2375
|
+
"windows-targets",
|
2376
|
+
]
|
2377
|
+
|
2378
|
+
[[package]]
|
2379
|
+
name = "windows-core"
|
2380
|
+
version = "0.52.0"
|
2381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2382
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
2383
|
+
dependencies = [
|
2384
|
+
"windows-targets",
|
2385
|
+
]
|
2386
|
+
|
2387
|
+
[[package]]
|
2388
|
+
name = "windows-core"
|
2389
|
+
version = "0.57.0"
|
2390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2391
|
+
checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
|
2392
|
+
dependencies = [
|
2393
|
+
"windows-implement",
|
2394
|
+
"windows-interface",
|
2395
|
+
"windows-result",
|
2396
|
+
"windows-targets",
|
2397
|
+
]
|
2398
|
+
|
2399
|
+
[[package]]
|
2400
|
+
name = "windows-implement"
|
2401
|
+
version = "0.57.0"
|
2402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2403
|
+
checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
|
2404
|
+
dependencies = [
|
2405
|
+
"proc-macro2",
|
2406
|
+
"quote",
|
2407
|
+
"syn 2.0.74",
|
2408
|
+
]
|
2409
|
+
|
2410
|
+
[[package]]
|
2411
|
+
name = "windows-interface"
|
2412
|
+
version = "0.57.0"
|
2413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2414
|
+
checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
|
2415
|
+
dependencies = [
|
2416
|
+
"proc-macro2",
|
2417
|
+
"quote",
|
2418
|
+
"syn 2.0.74",
|
2419
|
+
]
|
2420
|
+
|
2421
|
+
[[package]]
|
2422
|
+
name = "windows-result"
|
2423
|
+
version = "0.1.2"
|
2424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2425
|
+
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
|
2426
|
+
dependencies = [
|
2427
|
+
"windows-targets",
|
2428
|
+
]
|
2429
|
+
|
2430
|
+
[[package]]
|
2431
|
+
name = "windows-sys"
|
2432
|
+
version = "0.52.0"
|
2433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2434
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
2435
|
+
dependencies = [
|
2436
|
+
"windows-targets",
|
2437
|
+
]
|
2438
|
+
|
2439
|
+
[[package]]
|
2440
|
+
name = "windows-targets"
|
2441
|
+
version = "0.52.6"
|
2442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2443
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
2444
|
+
dependencies = [
|
2445
|
+
"windows_aarch64_gnullvm",
|
2446
|
+
"windows_aarch64_msvc",
|
2447
|
+
"windows_i686_gnu",
|
2448
|
+
"windows_i686_gnullvm",
|
2449
|
+
"windows_i686_msvc",
|
2450
|
+
"windows_x86_64_gnu",
|
2451
|
+
"windows_x86_64_gnullvm",
|
2452
|
+
"windows_x86_64_msvc",
|
2453
|
+
]
|
2454
|
+
|
2455
|
+
[[package]]
|
2456
|
+
name = "windows_aarch64_gnullvm"
|
2457
|
+
version = "0.52.6"
|
2458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2459
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
2460
|
+
|
2461
|
+
[[package]]
|
2462
|
+
name = "windows_aarch64_msvc"
|
2463
|
+
version = "0.52.6"
|
2464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2465
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
2466
|
+
|
2467
|
+
[[package]]
|
2468
|
+
name = "windows_i686_gnu"
|
2469
|
+
version = "0.52.6"
|
2470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2471
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
2472
|
+
|
2473
|
+
[[package]]
|
2474
|
+
name = "windows_i686_gnullvm"
|
2475
|
+
version = "0.52.6"
|
2476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2477
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
2478
|
+
|
2479
|
+
[[package]]
|
2480
|
+
name = "windows_i686_msvc"
|
2481
|
+
version = "0.52.6"
|
2482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2483
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
2484
|
+
|
2485
|
+
[[package]]
|
2486
|
+
name = "windows_x86_64_gnu"
|
2487
|
+
version = "0.52.6"
|
2488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2489
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
2490
|
+
|
2491
|
+
[[package]]
|
2492
|
+
name = "windows_x86_64_gnullvm"
|
2493
|
+
version = "0.52.6"
|
2494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2495
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
2496
|
+
|
2497
|
+
[[package]]
|
2498
|
+
name = "windows_x86_64_msvc"
|
2499
|
+
version = "0.52.6"
|
2500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2501
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
2502
|
+
|
2503
|
+
[[package]]
|
2504
|
+
name = "xxhash-rust"
|
2505
|
+
version = "0.8.12"
|
2506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2507
|
+
checksum = "6a5cbf750400958819fb6178eaa83bee5cd9c29a26a40cc241df8c70fdd46984"
|
2508
|
+
|
2509
|
+
[[package]]
|
2510
|
+
name = "zerocopy"
|
2511
|
+
version = "0.7.35"
|
2512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2513
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
2514
|
+
dependencies = [
|
2515
|
+
"byteorder",
|
2516
|
+
"zerocopy-derive",
|
2517
|
+
]
|
2518
|
+
|
2519
|
+
[[package]]
|
2520
|
+
name = "zerocopy-derive"
|
2521
|
+
version = "0.7.35"
|
2522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2523
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
2524
|
+
dependencies = [
|
2525
|
+
"proc-macro2",
|
2526
|
+
"quote",
|
2527
|
+
"syn 2.0.74",
|
2528
|
+
]
|
2529
|
+
|
2530
|
+
[[package]]
|
2531
|
+
name = "zstd"
|
2532
|
+
version = "0.13.2"
|
2533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2534
|
+
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
2535
|
+
dependencies = [
|
2536
|
+
"zstd-safe",
|
2537
|
+
]
|
2538
|
+
|
2539
|
+
[[package]]
|
2540
|
+
name = "zstd-safe"
|
2541
|
+
version = "7.2.1"
|
2542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2543
|
+
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
|
2544
|
+
dependencies = [
|
2545
|
+
"zstd-sys",
|
2546
|
+
]
|
2547
|
+
|
2548
|
+
[[package]]
|
2549
|
+
name = "zstd-sys"
|
2550
|
+
version = "2.0.13+zstd.1.5.6"
|
2551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2552
|
+
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
|
2553
|
+
dependencies = [
|
2554
|
+
"cc",
|
2555
|
+
"pkg-config",
|
2556
|
+
]
|