hudi 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hudi-0.1.0/Cargo.lock +3451 -0
- hudi-0.1.0/Cargo.toml +71 -0
- hudi-0.1.0/PKG-INFO +137 -0
- hudi-0.1.0/README.md +115 -0
- hudi-0.1.0/crates/core/Cargo.toml +64 -0
- hudi-0.1.0/crates/core/src/config/internal.rs +62 -0
- hudi-0.1.0/crates/core/src/config/mod.rs +171 -0
- hudi-0.1.0/crates/core/src/config/read.rs +93 -0
- hudi-0.1.0/crates/core/src/config/table.rs +223 -0
- hudi-0.1.0/crates/core/src/file_group/mod.rs +253 -0
- hudi-0.1.0/crates/core/src/lib.rs +23 -0
- hudi-0.1.0/crates/core/src/storage/file_info.rs +25 -0
- hudi-0.1.0/crates/core/src/storage/file_stats.rs +23 -0
- hudi-0.1.0/crates/core/src/storage/mod.rs +364 -0
- hudi-0.1.0/crates/core/src/storage/utils.rs +151 -0
- hudi-0.1.0/crates/core/src/table/fs_view.rs +243 -0
- hudi-0.1.0/crates/core/src/table/mod.rs +589 -0
- hudi-0.1.0/crates/core/src/table/timeline.rs +289 -0
- hudi-0.1.0/crates/core/tests/data/a.parquet +0 -0
- hudi-0.1.0/crates/core/tests/data/leaf_dir/.gitkeep +0 -0
- hudi-0.1.0/crates/core/tests/data/table_props_invalid/.hoodie/hoodie.properties +27 -0
- hudi-0.1.0/crates/core/tests/data/table_props_valid/.hoodie/hoodie.properties +39 -0
- hudi-0.1.0/crates/core/tests/data/timeline/commits_stub/.hoodie/20240402123035233.commit +0 -0
- hudi-0.1.0/crates/core/tests/data/timeline/commits_stub/.hoodie/20240402123035233.commit.requested +0 -0
- hudi-0.1.0/crates/core/tests/data/timeline/commits_stub/.hoodie/20240402123035233.inflight +0 -0
- hudi-0.1.0/crates/core/tests/data/timeline/commits_stub/.hoodie/20240402144910683.commit +0 -0
- hudi-0.1.0/crates/core/tests/data/timeline/commits_stub/.hoodie/20240402144910683.commit.requested +0 -0
- hudi-0.1.0/crates/core/tests/data/timeline/commits_stub/.hoodie/20240402144910683.inflight +0 -0
- hudi-0.1.0/crates/core/tests/data/timeline/commits_stub/.hoodie/hoodie.properties +0 -0
- hudi-0.1.0/crates/core/tests/data/timeline/commits_stub/a.parquet +0 -0
- hudi-0.1.0/crates/core/tests/data/timeline/commits_stub/part1/b.parquet +0 -0
- hudi-0.1.0/crates/core/tests/data/timeline/commits_stub/part2/part22/c.parquet +0 -0
- hudi-0.1.0/crates/core/tests/data/timeline/commits_stub/part3/part32/part33/d.parquet +0 -0
- hudi-0.1.0/crates/hudi/Cargo.toml +40 -0
- hudi-0.1.0/crates/hudi/src/lib.rs +23 -0
- hudi-0.1.0/crates/tests/Cargo.toml +51 -0
- hudi-0.1.0/crates/tests/data/tables/v6_complexkeygen_hivestyle.sql +87 -0
- hudi-0.1.0/crates/tests/data/tables/v6_complexkeygen_hivestyle.zip +0 -0
- hudi-0.1.0/crates/tests/data/tables/v6_empty.sql +30 -0
- hudi-0.1.0/crates/tests/data/tables/v6_empty.zip +0 -0
- hudi-0.1.0/crates/tests/data/tables/v6_nonpartitioned.sql +80 -0
- hudi-0.1.0/crates/tests/data/tables/v6_nonpartitioned.zip +0 -0
- hudi-0.1.0/crates/tests/data/tables/v6_simplekeygen_hivestyle_no_metafields.sql +81 -0
- hudi-0.1.0/crates/tests/data/tables/v6_simplekeygen_hivestyle_no_metafields.zip +0 -0
- hudi-0.1.0/crates/tests/data/tables/v6_simplekeygen_nonhivestyle.sql +88 -0
- hudi-0.1.0/crates/tests/data/tables/v6_simplekeygen_nonhivestyle.zip +0 -0
- hudi-0.1.0/crates/tests/data/tables/v6_simplekeygen_nonhivestyle_overwritetable.sql +96 -0
- hudi-0.1.0/crates/tests/data/tables/v6_simplekeygen_nonhivestyle_overwritetable.zip +0 -0
- hudi-0.1.0/crates/tests/data/tables/v6_timebasedkeygen_nonhivestyle.sql +92 -0
- hudi-0.1.0/crates/tests/data/tables/v6_timebasedkeygen_nonhivestyle.zip +0 -0
- hudi-0.1.0/crates/tests/src/lib.rs +84 -0
- hudi-0.1.0/crates/tests/src/utils.rs +87 -0
- hudi-0.1.0/hudi/__init__.py +20 -0
- hudi-0.1.0/hudi/_internal.pyi +56 -0
- hudi-0.1.0/hudi/py.typed +16 -0
- hudi-0.1.0/pyproject.toml +60 -0
- hudi-0.1.0/python/.cargo/config.toml +29 -0
- hudi-0.1.0/python/.gitignore +89 -0
- hudi-0.1.0/python/Cargo.toml +50 -0
- hudi-0.1.0/python/Makefile +59 -0
- hudi-0.1.0/python/hudi/__init__.py +20 -0
- hudi-0.1.0/python/hudi/_internal.pyi +56 -0
- hudi-0.1.0/python/hudi/py.typed +16 -0
- hudi-0.1.0/python/src/internal.rs +137 -0
- hudi-0.1.0/python/src/lib.rs +32 -0
- hudi-0.1.0/python/tests/__init__.py +16 -0
- hudi-0.1.0/python/tests/conftest.py +40 -0
- hudi-0.1.0/python/tests/table/0.x_cow_partitioned.zip +0 -0
- hudi-0.1.0/python/tests/test_table_read.py +81 -0
hudi-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,3451 @@
|
|
|
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 = "aes"
|
|
22
|
+
version = "0.8.4"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"cfg-if",
|
|
27
|
+
"cipher",
|
|
28
|
+
"cpufeatures",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "ahash"
|
|
33
|
+
version = "0.8.11"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"cfg-if",
|
|
38
|
+
"const-random",
|
|
39
|
+
"getrandom",
|
|
40
|
+
"once_cell",
|
|
41
|
+
"version_check",
|
|
42
|
+
"zerocopy",
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
[[package]]
|
|
46
|
+
name = "aho-corasick"
|
|
47
|
+
version = "1.1.3"
|
|
48
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
49
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
50
|
+
dependencies = [
|
|
51
|
+
"memchr",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "alloc-no-stdlib"
|
|
56
|
+
version = "2.0.4"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "alloc-stdlib"
|
|
62
|
+
version = "0.2.2"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"alloc-no-stdlib",
|
|
67
|
+
]
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "allocator-api2"
|
|
71
|
+
version = "0.2.18"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "android-tzdata"
|
|
77
|
+
version = "0.1.1"
|
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "android_system_properties"
|
|
83
|
+
version = "0.1.5"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
86
|
+
dependencies = [
|
|
87
|
+
"libc",
|
|
88
|
+
]
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "anyhow"
|
|
92
|
+
version = "1.0.86"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "arrayref"
|
|
98
|
+
version = "0.3.7"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "arrayvec"
|
|
104
|
+
version = "0.7.4"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "arrow"
|
|
110
|
+
version = "52.1.0"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "6127ea5e585a12ec9f742232442828ebaf264dfa5eefdd71282376c599562b77"
|
|
113
|
+
dependencies = [
|
|
114
|
+
"arrow-arith",
|
|
115
|
+
"arrow-array",
|
|
116
|
+
"arrow-buffer",
|
|
117
|
+
"arrow-cast",
|
|
118
|
+
"arrow-csv",
|
|
119
|
+
"arrow-data",
|
|
120
|
+
"arrow-ipc",
|
|
121
|
+
"arrow-json",
|
|
122
|
+
"arrow-ord",
|
|
123
|
+
"arrow-row",
|
|
124
|
+
"arrow-schema",
|
|
125
|
+
"arrow-select",
|
|
126
|
+
"arrow-string",
|
|
127
|
+
"pyo3",
|
|
128
|
+
]
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "arrow-arith"
|
|
132
|
+
version = "52.1.0"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "7add7f39210b7d726e2a8efc0083e7bf06e8f2d15bdb4896b564dce4410fbf5d"
|
|
135
|
+
dependencies = [
|
|
136
|
+
"arrow-array",
|
|
137
|
+
"arrow-buffer",
|
|
138
|
+
"arrow-data",
|
|
139
|
+
"arrow-schema",
|
|
140
|
+
"chrono",
|
|
141
|
+
"half",
|
|
142
|
+
"num",
|
|
143
|
+
]
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "arrow-array"
|
|
147
|
+
version = "52.1.0"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "81c16ec702d3898c2f5cfdc148443c6cd7dbe5bac28399859eb0a3d38f072827"
|
|
150
|
+
dependencies = [
|
|
151
|
+
"ahash",
|
|
152
|
+
"arrow-buffer",
|
|
153
|
+
"arrow-data",
|
|
154
|
+
"arrow-schema",
|
|
155
|
+
"chrono",
|
|
156
|
+
"chrono-tz",
|
|
157
|
+
"half",
|
|
158
|
+
"hashbrown",
|
|
159
|
+
"num",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "arrow-buffer"
|
|
164
|
+
version = "52.1.0"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "cae6970bab043c4fbc10aee1660ceb5b306d0c42c8cc5f6ae564efcd9759b663"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"bytes",
|
|
169
|
+
"half",
|
|
170
|
+
"num",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "arrow-cast"
|
|
175
|
+
version = "52.1.0"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "1c7ef44f26ef4f8edc392a048324ed5d757ad09135eff6d5509e6450d39e0398"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"arrow-array",
|
|
180
|
+
"arrow-buffer",
|
|
181
|
+
"arrow-data",
|
|
182
|
+
"arrow-schema",
|
|
183
|
+
"arrow-select",
|
|
184
|
+
"atoi",
|
|
185
|
+
"base64",
|
|
186
|
+
"chrono",
|
|
187
|
+
"comfy-table",
|
|
188
|
+
"half",
|
|
189
|
+
"lexical-core",
|
|
190
|
+
"num",
|
|
191
|
+
"ryu",
|
|
192
|
+
]
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "arrow-csv"
|
|
196
|
+
version = "52.1.0"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "5f843490bd258c5182b66e888161bb6f198f49f3792f7c7f98198b924ae0f564"
|
|
199
|
+
dependencies = [
|
|
200
|
+
"arrow-array",
|
|
201
|
+
"arrow-buffer",
|
|
202
|
+
"arrow-cast",
|
|
203
|
+
"arrow-data",
|
|
204
|
+
"arrow-schema",
|
|
205
|
+
"chrono",
|
|
206
|
+
"csv",
|
|
207
|
+
"csv-core",
|
|
208
|
+
"lazy_static",
|
|
209
|
+
"lexical-core",
|
|
210
|
+
"regex",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "arrow-data"
|
|
215
|
+
version = "52.1.0"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "a769666ffac256dd301006faca1ca553d0ae7cffcf4cd07095f73f95eb226514"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"arrow-buffer",
|
|
220
|
+
"arrow-schema",
|
|
221
|
+
"half",
|
|
222
|
+
"num",
|
|
223
|
+
]
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "arrow-ipc"
|
|
227
|
+
version = "52.1.0"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "dbf9c3fb57390a1af0b7bb3b5558c1ee1f63905f3eccf49ae7676a8d1e6e5a72"
|
|
230
|
+
dependencies = [
|
|
231
|
+
"arrow-array",
|
|
232
|
+
"arrow-buffer",
|
|
233
|
+
"arrow-cast",
|
|
234
|
+
"arrow-data",
|
|
235
|
+
"arrow-schema",
|
|
236
|
+
"flatbuffers",
|
|
237
|
+
"lz4_flex",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "arrow-json"
|
|
242
|
+
version = "52.1.0"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "654e7f3724176b66ddfacba31af397c48e106fbe4d281c8144e7d237df5acfd7"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"arrow-array",
|
|
247
|
+
"arrow-buffer",
|
|
248
|
+
"arrow-cast",
|
|
249
|
+
"arrow-data",
|
|
250
|
+
"arrow-schema",
|
|
251
|
+
"chrono",
|
|
252
|
+
"half",
|
|
253
|
+
"indexmap",
|
|
254
|
+
"lexical-core",
|
|
255
|
+
"num",
|
|
256
|
+
"serde",
|
|
257
|
+
"serde_json",
|
|
258
|
+
]
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "arrow-ord"
|
|
262
|
+
version = "52.1.0"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "e8008370e624e8e3c68174faaf793540287106cfda8ad1da862fdc53d8e096b4"
|
|
265
|
+
dependencies = [
|
|
266
|
+
"arrow-array",
|
|
267
|
+
"arrow-buffer",
|
|
268
|
+
"arrow-data",
|
|
269
|
+
"arrow-schema",
|
|
270
|
+
"arrow-select",
|
|
271
|
+
"half",
|
|
272
|
+
"num",
|
|
273
|
+
]
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "arrow-row"
|
|
277
|
+
version = "52.1.0"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "ca5e3a6b7fda8d9fe03f3b18a2d946354ea7f3c8e4076dbdb502ad50d9d44824"
|
|
280
|
+
dependencies = [
|
|
281
|
+
"ahash",
|
|
282
|
+
"arrow-array",
|
|
283
|
+
"arrow-buffer",
|
|
284
|
+
"arrow-data",
|
|
285
|
+
"arrow-schema",
|
|
286
|
+
"half",
|
|
287
|
+
"hashbrown",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "arrow-schema"
|
|
292
|
+
version = "52.1.0"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "dab1c12b40e29d9f3b699e0203c2a73ba558444c05e388a4377208f8f9c97eee"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"bitflags 2.6.0",
|
|
297
|
+
"serde",
|
|
298
|
+
]
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "arrow-select"
|
|
302
|
+
version = "52.1.0"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "e80159088ffe8c48965cb9b1a7c968b2729f29f37363df7eca177fc3281fe7c3"
|
|
305
|
+
dependencies = [
|
|
306
|
+
"ahash",
|
|
307
|
+
"arrow-array",
|
|
308
|
+
"arrow-buffer",
|
|
309
|
+
"arrow-data",
|
|
310
|
+
"arrow-schema",
|
|
311
|
+
"num",
|
|
312
|
+
]
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "arrow-string"
|
|
316
|
+
version = "52.1.0"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "0fd04a6ea7de183648edbcb7a6dd925bbd04c210895f6384c780e27a9b54afcd"
|
|
319
|
+
dependencies = [
|
|
320
|
+
"arrow-array",
|
|
321
|
+
"arrow-buffer",
|
|
322
|
+
"arrow-data",
|
|
323
|
+
"arrow-schema",
|
|
324
|
+
"arrow-select",
|
|
325
|
+
"memchr",
|
|
326
|
+
"num",
|
|
327
|
+
"regex",
|
|
328
|
+
"regex-syntax",
|
|
329
|
+
]
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "async-compression"
|
|
333
|
+
version = "0.4.11"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "cd066d0b4ef8ecb03a55319dc13aa6910616d0f44008a045bb1835af830abff5"
|
|
336
|
+
dependencies = [
|
|
337
|
+
"bzip2",
|
|
338
|
+
"flate2",
|
|
339
|
+
"futures-core",
|
|
340
|
+
"futures-io",
|
|
341
|
+
"memchr",
|
|
342
|
+
"pin-project-lite",
|
|
343
|
+
"tokio",
|
|
344
|
+
"xz2",
|
|
345
|
+
"zstd 0.13.2",
|
|
346
|
+
"zstd-safe 7.2.0",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "async-recursion"
|
|
351
|
+
version = "1.1.1"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"proc-macro2",
|
|
356
|
+
"quote",
|
|
357
|
+
"syn 2.0.71",
|
|
358
|
+
]
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "async-trait"
|
|
362
|
+
version = "0.1.81"
|
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
+
checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
|
|
365
|
+
dependencies = [
|
|
366
|
+
"proc-macro2",
|
|
367
|
+
"quote",
|
|
368
|
+
"syn 2.0.71",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "atoi"
|
|
373
|
+
version = "2.0.0"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
376
|
+
dependencies = [
|
|
377
|
+
"num-traits",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "atomic-waker"
|
|
382
|
+
version = "1.1.2"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "autocfg"
|
|
388
|
+
version = "1.3.0"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "backtrace"
|
|
394
|
+
version = "0.3.73"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
|
|
397
|
+
dependencies = [
|
|
398
|
+
"addr2line",
|
|
399
|
+
"cc",
|
|
400
|
+
"cfg-if",
|
|
401
|
+
"libc",
|
|
402
|
+
"miniz_oxide",
|
|
403
|
+
"object",
|
|
404
|
+
"rustc-demangle",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "base64"
|
|
409
|
+
version = "0.22.1"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "base64ct"
|
|
415
|
+
version = "1.6.0"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "bitflags"
|
|
421
|
+
version = "1.3.2"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "bitflags"
|
|
427
|
+
version = "2.6.0"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "blake2"
|
|
433
|
+
version = "0.10.6"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"digest",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "blake3"
|
|
442
|
+
version = "1.5.2"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "3d08263faac5cde2a4d52b513dadb80846023aade56fcd8fc99ba73ba8050e92"
|
|
445
|
+
dependencies = [
|
|
446
|
+
"arrayref",
|
|
447
|
+
"arrayvec",
|
|
448
|
+
"cc",
|
|
449
|
+
"cfg-if",
|
|
450
|
+
"constant_time_eq 0.3.0",
|
|
451
|
+
]
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "block-buffer"
|
|
455
|
+
version = "0.10.4"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
458
|
+
dependencies = [
|
|
459
|
+
"generic-array",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "brotli"
|
|
464
|
+
version = "6.0.0"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"alloc-no-stdlib",
|
|
469
|
+
"alloc-stdlib",
|
|
470
|
+
"brotli-decompressor",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "brotli-decompressor"
|
|
475
|
+
version = "4.0.1"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"alloc-no-stdlib",
|
|
480
|
+
"alloc-stdlib",
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "bumpalo"
|
|
485
|
+
version = "3.16.0"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "byteorder"
|
|
491
|
+
version = "1.5.0"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "bytes"
|
|
497
|
+
version = "1.6.1"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952"
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "bzip2"
|
|
503
|
+
version = "0.4.4"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"bzip2-sys",
|
|
508
|
+
"libc",
|
|
509
|
+
]
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "bzip2-sys"
|
|
513
|
+
version = "0.1.11+1.0.8"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
|
|
516
|
+
dependencies = [
|
|
517
|
+
"cc",
|
|
518
|
+
"libc",
|
|
519
|
+
"pkg-config",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "cc"
|
|
524
|
+
version = "1.1.5"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "324c74f2155653c90b04f25b2a47a8a631360cb908f92a772695f430c7e31052"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"jobserver",
|
|
529
|
+
"libc",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "cfg-if"
|
|
534
|
+
version = "1.0.0"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "chrono"
|
|
540
|
+
version = "0.4.38"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"android-tzdata",
|
|
545
|
+
"iana-time-zone",
|
|
546
|
+
"num-traits",
|
|
547
|
+
"serde",
|
|
548
|
+
"windows-targets 0.52.6",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "chrono-tz"
|
|
553
|
+
version = "0.9.0"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"chrono",
|
|
558
|
+
"chrono-tz-build",
|
|
559
|
+
"phf",
|
|
560
|
+
]
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "chrono-tz-build"
|
|
564
|
+
version = "0.3.0"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1"
|
|
567
|
+
dependencies = [
|
|
568
|
+
"parse-zoneinfo",
|
|
569
|
+
"phf",
|
|
570
|
+
"phf_codegen",
|
|
571
|
+
]
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "cipher"
|
|
575
|
+
version = "0.4.4"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
578
|
+
dependencies = [
|
|
579
|
+
"crypto-common",
|
|
580
|
+
"inout",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "comfy-table"
|
|
585
|
+
version = "7.1.1"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "b34115915337defe99b2aff5c2ce6771e5fbc4079f4b506301f5cf394c8452f7"
|
|
588
|
+
dependencies = [
|
|
589
|
+
"strum",
|
|
590
|
+
"strum_macros",
|
|
591
|
+
"unicode-width",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "const-random"
|
|
596
|
+
version = "0.1.18"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
599
|
+
dependencies = [
|
|
600
|
+
"const-random-macro",
|
|
601
|
+
]
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "const-random-macro"
|
|
605
|
+
version = "0.1.16"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"getrandom",
|
|
610
|
+
"once_cell",
|
|
611
|
+
"tiny-keccak",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "constant_time_eq"
|
|
616
|
+
version = "0.1.5"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
|
|
619
|
+
|
|
620
|
+
[[package]]
|
|
621
|
+
name = "constant_time_eq"
|
|
622
|
+
version = "0.3.0"
|
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
+
checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "core-foundation"
|
|
628
|
+
version = "0.9.4"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
631
|
+
dependencies = [
|
|
632
|
+
"core-foundation-sys",
|
|
633
|
+
"libc",
|
|
634
|
+
]
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "core-foundation-sys"
|
|
638
|
+
version = "0.8.6"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "cpufeatures"
|
|
644
|
+
version = "0.2.12"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
|
|
647
|
+
dependencies = [
|
|
648
|
+
"libc",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "crc32fast"
|
|
653
|
+
version = "1.4.2"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"cfg-if",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "crossbeam-utils"
|
|
662
|
+
version = "0.8.20"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "crunchy"
|
|
668
|
+
version = "0.2.2"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "crypto-common"
|
|
674
|
+
version = "0.1.6"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
677
|
+
dependencies = [
|
|
678
|
+
"generic-array",
|
|
679
|
+
"typenum",
|
|
680
|
+
]
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "csv"
|
|
684
|
+
version = "1.3.0"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
|
|
687
|
+
dependencies = [
|
|
688
|
+
"csv-core",
|
|
689
|
+
"itoa",
|
|
690
|
+
"ryu",
|
|
691
|
+
"serde",
|
|
692
|
+
]
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "csv-core"
|
|
696
|
+
version = "0.1.11"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
|
|
699
|
+
dependencies = [
|
|
700
|
+
"memchr",
|
|
701
|
+
]
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "dashmap"
|
|
705
|
+
version = "5.5.3"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"cfg-if",
|
|
710
|
+
"hashbrown",
|
|
711
|
+
"lock_api",
|
|
712
|
+
"once_cell",
|
|
713
|
+
"parking_lot_core",
|
|
714
|
+
]
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "dashmap"
|
|
718
|
+
version = "6.0.1"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "804c8821570c3f8b70230c2ba75ffa5c0f9a4189b9a432b6656c536712acae28"
|
|
721
|
+
dependencies = [
|
|
722
|
+
"cfg-if",
|
|
723
|
+
"crossbeam-utils",
|
|
724
|
+
"hashbrown",
|
|
725
|
+
"lock_api",
|
|
726
|
+
"once_cell",
|
|
727
|
+
"parking_lot_core",
|
|
728
|
+
]
|
|
729
|
+
|
|
730
|
+
[[package]]
|
|
731
|
+
name = "datafusion"
|
|
732
|
+
version = "39.0.0"
|
|
733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
+
checksum = "2f92d2d7a9cba4580900b32b009848d9eb35f1028ac84cdd6ddcf97612cd0068"
|
|
735
|
+
dependencies = [
|
|
736
|
+
"ahash",
|
|
737
|
+
"arrow",
|
|
738
|
+
"arrow-array",
|
|
739
|
+
"arrow-ipc",
|
|
740
|
+
"arrow-schema",
|
|
741
|
+
"async-compression",
|
|
742
|
+
"async-trait",
|
|
743
|
+
"bytes",
|
|
744
|
+
"bzip2",
|
|
745
|
+
"chrono",
|
|
746
|
+
"dashmap 5.5.3",
|
|
747
|
+
"datafusion-common",
|
|
748
|
+
"datafusion-common-runtime",
|
|
749
|
+
"datafusion-execution",
|
|
750
|
+
"datafusion-expr",
|
|
751
|
+
"datafusion-functions",
|
|
752
|
+
"datafusion-functions-aggregate",
|
|
753
|
+
"datafusion-functions-array",
|
|
754
|
+
"datafusion-optimizer",
|
|
755
|
+
"datafusion-physical-expr",
|
|
756
|
+
"datafusion-physical-expr-common",
|
|
757
|
+
"datafusion-physical-plan",
|
|
758
|
+
"datafusion-sql",
|
|
759
|
+
"flate2",
|
|
760
|
+
"futures",
|
|
761
|
+
"glob",
|
|
762
|
+
"half",
|
|
763
|
+
"hashbrown",
|
|
764
|
+
"indexmap",
|
|
765
|
+
"itertools",
|
|
766
|
+
"log",
|
|
767
|
+
"num_cpus",
|
|
768
|
+
"object_store",
|
|
769
|
+
"parking_lot",
|
|
770
|
+
"parquet",
|
|
771
|
+
"paste",
|
|
772
|
+
"pin-project-lite",
|
|
773
|
+
"rand",
|
|
774
|
+
"sqlparser",
|
|
775
|
+
"tempfile",
|
|
776
|
+
"tokio",
|
|
777
|
+
"tokio-util",
|
|
778
|
+
"url",
|
|
779
|
+
"uuid",
|
|
780
|
+
"xz2",
|
|
781
|
+
"zstd 0.13.2",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "datafusion-common"
|
|
786
|
+
version = "39.0.0"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "effed030d2c1667eb1e11df5372d4981eaf5d11a521be32220b3985ae5ba6971"
|
|
789
|
+
dependencies = [
|
|
790
|
+
"ahash",
|
|
791
|
+
"arrow",
|
|
792
|
+
"arrow-array",
|
|
793
|
+
"arrow-buffer",
|
|
794
|
+
"arrow-schema",
|
|
795
|
+
"chrono",
|
|
796
|
+
"half",
|
|
797
|
+
"hashbrown",
|
|
798
|
+
"instant",
|
|
799
|
+
"libc",
|
|
800
|
+
"num_cpus",
|
|
801
|
+
"object_store",
|
|
802
|
+
"parquet",
|
|
803
|
+
"sqlparser",
|
|
804
|
+
]
|
|
805
|
+
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "datafusion-common-runtime"
|
|
808
|
+
version = "39.0.0"
|
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
+
checksum = "d0091318129dad1359f08e4c6c71f855163c35bba05d1dbf983196f727857894"
|
|
811
|
+
dependencies = [
|
|
812
|
+
"tokio",
|
|
813
|
+
]
|
|
814
|
+
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "datafusion-execution"
|
|
817
|
+
version = "39.0.0"
|
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
+
checksum = "8385aba84fc4a06d3ebccfbcbf9b4f985e80c762fac634b49079f7cc14933fb1"
|
|
820
|
+
dependencies = [
|
|
821
|
+
"arrow",
|
|
822
|
+
"chrono",
|
|
823
|
+
"dashmap 5.5.3",
|
|
824
|
+
"datafusion-common",
|
|
825
|
+
"datafusion-expr",
|
|
826
|
+
"futures",
|
|
827
|
+
"hashbrown",
|
|
828
|
+
"log",
|
|
829
|
+
"object_store",
|
|
830
|
+
"parking_lot",
|
|
831
|
+
"rand",
|
|
832
|
+
"tempfile",
|
|
833
|
+
"url",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "datafusion-expr"
|
|
838
|
+
version = "39.0.0"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "ebb192f0055d2ce64e38ac100abc18e4e6ae9734d3c28eee522bbbd6a32108a3"
|
|
841
|
+
dependencies = [
|
|
842
|
+
"ahash",
|
|
843
|
+
"arrow",
|
|
844
|
+
"arrow-array",
|
|
845
|
+
"arrow-buffer",
|
|
846
|
+
"chrono",
|
|
847
|
+
"datafusion-common",
|
|
848
|
+
"paste",
|
|
849
|
+
"serde_json",
|
|
850
|
+
"sqlparser",
|
|
851
|
+
"strum",
|
|
852
|
+
"strum_macros",
|
|
853
|
+
]
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "datafusion-functions"
|
|
857
|
+
version = "39.0.0"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "27c081ae5b7edd712b92767fb8ed5c0e32755682f8075707666cd70835807c0b"
|
|
860
|
+
dependencies = [
|
|
861
|
+
"arrow",
|
|
862
|
+
"base64",
|
|
863
|
+
"blake2",
|
|
864
|
+
"blake3",
|
|
865
|
+
"chrono",
|
|
866
|
+
"datafusion-common",
|
|
867
|
+
"datafusion-execution",
|
|
868
|
+
"datafusion-expr",
|
|
869
|
+
"datafusion-physical-expr",
|
|
870
|
+
"hashbrown",
|
|
871
|
+
"hex",
|
|
872
|
+
"itertools",
|
|
873
|
+
"log",
|
|
874
|
+
"md-5",
|
|
875
|
+
"rand",
|
|
876
|
+
"regex",
|
|
877
|
+
"sha2",
|
|
878
|
+
"unicode-segmentation",
|
|
879
|
+
"uuid",
|
|
880
|
+
]
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "datafusion-functions-aggregate"
|
|
884
|
+
version = "39.0.0"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "feb28a4ea52c28a26990646986a27c4052829a2a2572386258679e19263f8b78"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"ahash",
|
|
889
|
+
"arrow",
|
|
890
|
+
"arrow-schema",
|
|
891
|
+
"datafusion-common",
|
|
892
|
+
"datafusion-execution",
|
|
893
|
+
"datafusion-expr",
|
|
894
|
+
"datafusion-physical-expr-common",
|
|
895
|
+
"log",
|
|
896
|
+
"paste",
|
|
897
|
+
"sqlparser",
|
|
898
|
+
]
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "datafusion-functions-array"
|
|
902
|
+
version = "39.0.0"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "89b17c02a74cdc87380a56758ec27e7d417356bf806f33062700908929aedb8a"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"arrow",
|
|
907
|
+
"arrow-array",
|
|
908
|
+
"arrow-buffer",
|
|
909
|
+
"arrow-ord",
|
|
910
|
+
"arrow-schema",
|
|
911
|
+
"datafusion-common",
|
|
912
|
+
"datafusion-execution",
|
|
913
|
+
"datafusion-expr",
|
|
914
|
+
"datafusion-functions",
|
|
915
|
+
"itertools",
|
|
916
|
+
"log",
|
|
917
|
+
"paste",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "datafusion-optimizer"
|
|
922
|
+
version = "39.0.0"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "12172f2a6c9eb4992a51e62d709eeba5dedaa3b5369cce37ff6c2260e100ba76"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"arrow",
|
|
927
|
+
"async-trait",
|
|
928
|
+
"chrono",
|
|
929
|
+
"datafusion-common",
|
|
930
|
+
"datafusion-expr",
|
|
931
|
+
"datafusion-physical-expr",
|
|
932
|
+
"hashbrown",
|
|
933
|
+
"indexmap",
|
|
934
|
+
"itertools",
|
|
935
|
+
"log",
|
|
936
|
+
"regex-syntax",
|
|
937
|
+
]
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "datafusion-physical-expr"
|
|
941
|
+
version = "39.0.0"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "7a3fce531b623e94180f6cd33d620ef01530405751b6ddd2fd96250cdbd78e2e"
|
|
944
|
+
dependencies = [
|
|
945
|
+
"ahash",
|
|
946
|
+
"arrow",
|
|
947
|
+
"arrow-array",
|
|
948
|
+
"arrow-buffer",
|
|
949
|
+
"arrow-ord",
|
|
950
|
+
"arrow-schema",
|
|
951
|
+
"arrow-string",
|
|
952
|
+
"base64",
|
|
953
|
+
"chrono",
|
|
954
|
+
"datafusion-common",
|
|
955
|
+
"datafusion-execution",
|
|
956
|
+
"datafusion-expr",
|
|
957
|
+
"datafusion-functions-aggregate",
|
|
958
|
+
"datafusion-physical-expr-common",
|
|
959
|
+
"half",
|
|
960
|
+
"hashbrown",
|
|
961
|
+
"hex",
|
|
962
|
+
"indexmap",
|
|
963
|
+
"itertools",
|
|
964
|
+
"log",
|
|
965
|
+
"paste",
|
|
966
|
+
"petgraph",
|
|
967
|
+
"regex",
|
|
968
|
+
]
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "datafusion-physical-expr-common"
|
|
972
|
+
version = "39.0.0"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "046400b6a2cc3ed57a7c576f5ae6aecc77804ac8e0186926b278b189305b2a77"
|
|
975
|
+
dependencies = [
|
|
976
|
+
"arrow",
|
|
977
|
+
"datafusion-common",
|
|
978
|
+
"datafusion-expr",
|
|
979
|
+
"rand",
|
|
980
|
+
]
|
|
981
|
+
|
|
982
|
+
[[package]]
|
|
983
|
+
name = "datafusion-physical-plan"
|
|
984
|
+
version = "39.0.0"
|
|
985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
+
checksum = "4aed47f5a2ad8766260befb375b201592e86a08b260256e168ae4311426a2bff"
|
|
987
|
+
dependencies = [
|
|
988
|
+
"ahash",
|
|
989
|
+
"arrow",
|
|
990
|
+
"arrow-array",
|
|
991
|
+
"arrow-buffer",
|
|
992
|
+
"arrow-ord",
|
|
993
|
+
"arrow-schema",
|
|
994
|
+
"async-trait",
|
|
995
|
+
"chrono",
|
|
996
|
+
"datafusion-common",
|
|
997
|
+
"datafusion-common-runtime",
|
|
998
|
+
"datafusion-execution",
|
|
999
|
+
"datafusion-expr",
|
|
1000
|
+
"datafusion-functions-aggregate",
|
|
1001
|
+
"datafusion-physical-expr",
|
|
1002
|
+
"datafusion-physical-expr-common",
|
|
1003
|
+
"futures",
|
|
1004
|
+
"half",
|
|
1005
|
+
"hashbrown",
|
|
1006
|
+
"indexmap",
|
|
1007
|
+
"itertools",
|
|
1008
|
+
"log",
|
|
1009
|
+
"once_cell",
|
|
1010
|
+
"parking_lot",
|
|
1011
|
+
"pin-project-lite",
|
|
1012
|
+
"rand",
|
|
1013
|
+
"tokio",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "datafusion-sql"
|
|
1018
|
+
version = "39.0.0"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "7fa92bb1fd15e46ce5fb6f1c85f3ac054592560f294429a28e392b5f9cd4255e"
|
|
1021
|
+
dependencies = [
|
|
1022
|
+
"arrow",
|
|
1023
|
+
"arrow-array",
|
|
1024
|
+
"arrow-schema",
|
|
1025
|
+
"datafusion-common",
|
|
1026
|
+
"datafusion-expr",
|
|
1027
|
+
"log",
|
|
1028
|
+
"regex",
|
|
1029
|
+
"sqlparser",
|
|
1030
|
+
"strum",
|
|
1031
|
+
]
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "digest"
|
|
1035
|
+
version = "0.10.7"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1038
|
+
dependencies = [
|
|
1039
|
+
"block-buffer",
|
|
1040
|
+
"crypto-common",
|
|
1041
|
+
"subtle",
|
|
1042
|
+
]
|
|
1043
|
+
|
|
1044
|
+
[[package]]
|
|
1045
|
+
name = "doc-comment"
|
|
1046
|
+
version = "0.3.3"
|
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
+
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
1049
|
+
|
|
1050
|
+
[[package]]
|
|
1051
|
+
name = "either"
|
|
1052
|
+
version = "1.13.0"
|
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "equivalent"
|
|
1058
|
+
version = "1.0.1"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "errno"
|
|
1064
|
+
version = "0.3.9"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"libc",
|
|
1069
|
+
"windows-sys 0.52.0",
|
|
1070
|
+
]
|
|
1071
|
+
|
|
1072
|
+
[[package]]
|
|
1073
|
+
name = "fastrand"
|
|
1074
|
+
version = "2.1.0"
|
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
+
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "fixedbitset"
|
|
1080
|
+
version = "0.4.2"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "flatbuffers"
|
|
1086
|
+
version = "24.3.25"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "8add37afff2d4ffa83bc748a70b4b1370984f6980768554182424ef71447c35f"
|
|
1089
|
+
dependencies = [
|
|
1090
|
+
"bitflags 1.3.2",
|
|
1091
|
+
"rustc_version",
|
|
1092
|
+
]
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "flate2"
|
|
1096
|
+
version = "1.0.30"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
|
|
1099
|
+
dependencies = [
|
|
1100
|
+
"crc32fast",
|
|
1101
|
+
"miniz_oxide",
|
|
1102
|
+
]
|
|
1103
|
+
|
|
1104
|
+
[[package]]
|
|
1105
|
+
name = "fnv"
|
|
1106
|
+
version = "1.0.7"
|
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1109
|
+
|
|
1110
|
+
[[package]]
|
|
1111
|
+
name = "form_urlencoded"
|
|
1112
|
+
version = "1.2.1"
|
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
1115
|
+
dependencies = [
|
|
1116
|
+
"percent-encoding",
|
|
1117
|
+
]
|
|
1118
|
+
|
|
1119
|
+
[[package]]
|
|
1120
|
+
name = "futures"
|
|
1121
|
+
version = "0.3.30"
|
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
+
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
|
1124
|
+
dependencies = [
|
|
1125
|
+
"futures-channel",
|
|
1126
|
+
"futures-core",
|
|
1127
|
+
"futures-executor",
|
|
1128
|
+
"futures-io",
|
|
1129
|
+
"futures-sink",
|
|
1130
|
+
"futures-task",
|
|
1131
|
+
"futures-util",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "futures-channel"
|
|
1136
|
+
version = "0.3.30"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"futures-core",
|
|
1141
|
+
"futures-sink",
|
|
1142
|
+
]
|
|
1143
|
+
|
|
1144
|
+
[[package]]
|
|
1145
|
+
name = "futures-core"
|
|
1146
|
+
version = "0.3.30"
|
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
|
1149
|
+
|
|
1150
|
+
[[package]]
|
|
1151
|
+
name = "futures-executor"
|
|
1152
|
+
version = "0.3.30"
|
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
|
1155
|
+
dependencies = [
|
|
1156
|
+
"futures-core",
|
|
1157
|
+
"futures-task",
|
|
1158
|
+
"futures-util",
|
|
1159
|
+
]
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "futures-io"
|
|
1163
|
+
version = "0.3.30"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "futures-macro"
|
|
1169
|
+
version = "0.3.30"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
1172
|
+
dependencies = [
|
|
1173
|
+
"proc-macro2",
|
|
1174
|
+
"quote",
|
|
1175
|
+
"syn 2.0.71",
|
|
1176
|
+
]
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "futures-sink"
|
|
1180
|
+
version = "0.3.30"
|
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
|
1183
|
+
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "futures-task"
|
|
1186
|
+
version = "0.3.30"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "futures-util"
|
|
1192
|
+
version = "0.3.30"
|
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
|
1195
|
+
dependencies = [
|
|
1196
|
+
"futures-channel",
|
|
1197
|
+
"futures-core",
|
|
1198
|
+
"futures-io",
|
|
1199
|
+
"futures-macro",
|
|
1200
|
+
"futures-sink",
|
|
1201
|
+
"futures-task",
|
|
1202
|
+
"memchr",
|
|
1203
|
+
"pin-project-lite",
|
|
1204
|
+
"pin-utils",
|
|
1205
|
+
"slab",
|
|
1206
|
+
]
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "generic-array"
|
|
1210
|
+
version = "0.14.7"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"typenum",
|
|
1215
|
+
"version_check",
|
|
1216
|
+
]
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "getrandom"
|
|
1220
|
+
version = "0.2.15"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
1223
|
+
dependencies = [
|
|
1224
|
+
"cfg-if",
|
|
1225
|
+
"libc",
|
|
1226
|
+
"wasi",
|
|
1227
|
+
]
|
|
1228
|
+
|
|
1229
|
+
[[package]]
|
|
1230
|
+
name = "gimli"
|
|
1231
|
+
version = "0.29.0"
|
|
1232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1233
|
+
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "glob"
|
|
1237
|
+
version = "0.3.1"
|
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "h2"
|
|
1243
|
+
version = "0.4.5"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab"
|
|
1246
|
+
dependencies = [
|
|
1247
|
+
"atomic-waker",
|
|
1248
|
+
"bytes",
|
|
1249
|
+
"fnv",
|
|
1250
|
+
"futures-core",
|
|
1251
|
+
"futures-sink",
|
|
1252
|
+
"http",
|
|
1253
|
+
"indexmap",
|
|
1254
|
+
"slab",
|
|
1255
|
+
"tokio",
|
|
1256
|
+
"tokio-util",
|
|
1257
|
+
"tracing",
|
|
1258
|
+
]
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "half"
|
|
1262
|
+
version = "2.4.1"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
|
|
1265
|
+
dependencies = [
|
|
1266
|
+
"cfg-if",
|
|
1267
|
+
"crunchy",
|
|
1268
|
+
"num-traits",
|
|
1269
|
+
]
|
|
1270
|
+
|
|
1271
|
+
[[package]]
|
|
1272
|
+
name = "hashbrown"
|
|
1273
|
+
version = "0.14.5"
|
|
1274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1275
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1276
|
+
dependencies = [
|
|
1277
|
+
"ahash",
|
|
1278
|
+
"allocator-api2",
|
|
1279
|
+
]
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "heck"
|
|
1283
|
+
version = "0.4.1"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "heck"
|
|
1289
|
+
version = "0.5.0"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1292
|
+
|
|
1293
|
+
[[package]]
|
|
1294
|
+
name = "hermit-abi"
|
|
1295
|
+
version = "0.3.9"
|
|
1296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "hex"
|
|
1301
|
+
version = "0.4.3"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "hmac"
|
|
1307
|
+
version = "0.12.1"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
1310
|
+
dependencies = [
|
|
1311
|
+
"digest",
|
|
1312
|
+
]
|
|
1313
|
+
|
|
1314
|
+
[[package]]
|
|
1315
|
+
name = "http"
|
|
1316
|
+
version = "1.1.0"
|
|
1317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
+
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
|
|
1319
|
+
dependencies = [
|
|
1320
|
+
"bytes",
|
|
1321
|
+
"fnv",
|
|
1322
|
+
"itoa",
|
|
1323
|
+
]
|
|
1324
|
+
|
|
1325
|
+
[[package]]
|
|
1326
|
+
name = "http-body"
|
|
1327
|
+
version = "1.0.1"
|
|
1328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1330
|
+
dependencies = [
|
|
1331
|
+
"bytes",
|
|
1332
|
+
"http",
|
|
1333
|
+
]
|
|
1334
|
+
|
|
1335
|
+
[[package]]
|
|
1336
|
+
name = "http-body-util"
|
|
1337
|
+
version = "0.1.2"
|
|
1338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
+
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
|
|
1340
|
+
dependencies = [
|
|
1341
|
+
"bytes",
|
|
1342
|
+
"futures-util",
|
|
1343
|
+
"http",
|
|
1344
|
+
"http-body",
|
|
1345
|
+
"pin-project-lite",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "httparse"
|
|
1350
|
+
version = "1.9.4"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "hudi"
|
|
1356
|
+
version = "0.1.0"
|
|
1357
|
+
dependencies = [
|
|
1358
|
+
"hudi-core",
|
|
1359
|
+
"hudi-datafusion",
|
|
1360
|
+
"tokio",
|
|
1361
|
+
]
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "hudi-core"
|
|
1365
|
+
version = "0.1.0"
|
|
1366
|
+
dependencies = [
|
|
1367
|
+
"anyhow",
|
|
1368
|
+
"arrow",
|
|
1369
|
+
"arrow-arith",
|
|
1370
|
+
"arrow-array",
|
|
1371
|
+
"arrow-buffer",
|
|
1372
|
+
"arrow-cast",
|
|
1373
|
+
"arrow-ipc",
|
|
1374
|
+
"arrow-json",
|
|
1375
|
+
"arrow-ord",
|
|
1376
|
+
"arrow-row",
|
|
1377
|
+
"arrow-schema",
|
|
1378
|
+
"arrow-select",
|
|
1379
|
+
"async-recursion",
|
|
1380
|
+
"bytes",
|
|
1381
|
+
"dashmap 6.0.1",
|
|
1382
|
+
"futures",
|
|
1383
|
+
"hudi-tests",
|
|
1384
|
+
"object_store",
|
|
1385
|
+
"parquet",
|
|
1386
|
+
"serde",
|
|
1387
|
+
"serde_json",
|
|
1388
|
+
"strum",
|
|
1389
|
+
"strum_macros",
|
|
1390
|
+
"tokio",
|
|
1391
|
+
"url",
|
|
1392
|
+
]
|
|
1393
|
+
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "hudi-datafusion"
|
|
1396
|
+
version = "0.1.0"
|
|
1397
|
+
dependencies = [
|
|
1398
|
+
"arrow-schema",
|
|
1399
|
+
"async-trait",
|
|
1400
|
+
"datafusion",
|
|
1401
|
+
"datafusion-common",
|
|
1402
|
+
"datafusion-expr",
|
|
1403
|
+
"datafusion-physical-expr",
|
|
1404
|
+
"hudi-core",
|
|
1405
|
+
"hudi-tests",
|
|
1406
|
+
"tokio",
|
|
1407
|
+
"url",
|
|
1408
|
+
]
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "hudi-python"
|
|
1412
|
+
version = "0.1.0"
|
|
1413
|
+
dependencies = [
|
|
1414
|
+
"anyhow",
|
|
1415
|
+
"arrow",
|
|
1416
|
+
"arrow-schema",
|
|
1417
|
+
"futures",
|
|
1418
|
+
"hudi",
|
|
1419
|
+
"pyo3",
|
|
1420
|
+
"tokio",
|
|
1421
|
+
]
|
|
1422
|
+
|
|
1423
|
+
[[package]]
|
|
1424
|
+
name = "hudi-tests"
|
|
1425
|
+
version = "0.1.0"
|
|
1426
|
+
dependencies = [
|
|
1427
|
+
"arrow",
|
|
1428
|
+
"arrow-arith",
|
|
1429
|
+
"arrow-array",
|
|
1430
|
+
"arrow-buffer",
|
|
1431
|
+
"arrow-cast",
|
|
1432
|
+
"arrow-ipc",
|
|
1433
|
+
"arrow-json",
|
|
1434
|
+
"arrow-ord",
|
|
1435
|
+
"arrow-row",
|
|
1436
|
+
"arrow-schema",
|
|
1437
|
+
"arrow-select",
|
|
1438
|
+
"strum",
|
|
1439
|
+
"strum_macros",
|
|
1440
|
+
"tempfile",
|
|
1441
|
+
"url",
|
|
1442
|
+
"zip-extract",
|
|
1443
|
+
]
|
|
1444
|
+
|
|
1445
|
+
[[package]]
|
|
1446
|
+
name = "humantime"
|
|
1447
|
+
version = "2.1.0"
|
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
+
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
|
1450
|
+
|
|
1451
|
+
[[package]]
|
|
1452
|
+
name = "hyper"
|
|
1453
|
+
version = "1.4.1"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
+
checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05"
|
|
1456
|
+
dependencies = [
|
|
1457
|
+
"bytes",
|
|
1458
|
+
"futures-channel",
|
|
1459
|
+
"futures-util",
|
|
1460
|
+
"h2",
|
|
1461
|
+
"http",
|
|
1462
|
+
"http-body",
|
|
1463
|
+
"httparse",
|
|
1464
|
+
"itoa",
|
|
1465
|
+
"pin-project-lite",
|
|
1466
|
+
"smallvec",
|
|
1467
|
+
"tokio",
|
|
1468
|
+
"want",
|
|
1469
|
+
]
|
|
1470
|
+
|
|
1471
|
+
[[package]]
|
|
1472
|
+
name = "hyper-rustls"
|
|
1473
|
+
version = "0.27.2"
|
|
1474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1475
|
+
checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155"
|
|
1476
|
+
dependencies = [
|
|
1477
|
+
"futures-util",
|
|
1478
|
+
"http",
|
|
1479
|
+
"hyper",
|
|
1480
|
+
"hyper-util",
|
|
1481
|
+
"rustls",
|
|
1482
|
+
"rustls-native-certs",
|
|
1483
|
+
"rustls-pki-types",
|
|
1484
|
+
"tokio",
|
|
1485
|
+
"tokio-rustls",
|
|
1486
|
+
"tower-service",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "hyper-util"
|
|
1491
|
+
version = "0.1.6"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"bytes",
|
|
1496
|
+
"futures-channel",
|
|
1497
|
+
"futures-util",
|
|
1498
|
+
"http",
|
|
1499
|
+
"http-body",
|
|
1500
|
+
"hyper",
|
|
1501
|
+
"pin-project-lite",
|
|
1502
|
+
"socket2",
|
|
1503
|
+
"tokio",
|
|
1504
|
+
"tower",
|
|
1505
|
+
"tower-service",
|
|
1506
|
+
"tracing",
|
|
1507
|
+
]
|
|
1508
|
+
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "iana-time-zone"
|
|
1511
|
+
version = "0.1.60"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
|
|
1514
|
+
dependencies = [
|
|
1515
|
+
"android_system_properties",
|
|
1516
|
+
"core-foundation-sys",
|
|
1517
|
+
"iana-time-zone-haiku",
|
|
1518
|
+
"js-sys",
|
|
1519
|
+
"wasm-bindgen",
|
|
1520
|
+
"windows-core",
|
|
1521
|
+
]
|
|
1522
|
+
|
|
1523
|
+
[[package]]
|
|
1524
|
+
name = "iana-time-zone-haiku"
|
|
1525
|
+
version = "0.1.2"
|
|
1526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1528
|
+
dependencies = [
|
|
1529
|
+
"cc",
|
|
1530
|
+
]
|
|
1531
|
+
|
|
1532
|
+
[[package]]
|
|
1533
|
+
name = "idna"
|
|
1534
|
+
version = "0.5.0"
|
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
|
1537
|
+
dependencies = [
|
|
1538
|
+
"unicode-bidi",
|
|
1539
|
+
"unicode-normalization",
|
|
1540
|
+
]
|
|
1541
|
+
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "indexmap"
|
|
1544
|
+
version = "2.2.6"
|
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
|
1547
|
+
dependencies = [
|
|
1548
|
+
"equivalent",
|
|
1549
|
+
"hashbrown",
|
|
1550
|
+
]
|
|
1551
|
+
|
|
1552
|
+
[[package]]
|
|
1553
|
+
name = "indoc"
|
|
1554
|
+
version = "2.0.5"
|
|
1555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
1557
|
+
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "inout"
|
|
1560
|
+
version = "0.1.3"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
|
|
1563
|
+
dependencies = [
|
|
1564
|
+
"generic-array",
|
|
1565
|
+
]
|
|
1566
|
+
|
|
1567
|
+
[[package]]
|
|
1568
|
+
name = "instant"
|
|
1569
|
+
version = "0.1.13"
|
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
+
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
|
1572
|
+
dependencies = [
|
|
1573
|
+
"cfg-if",
|
|
1574
|
+
"js-sys",
|
|
1575
|
+
"wasm-bindgen",
|
|
1576
|
+
"web-sys",
|
|
1577
|
+
]
|
|
1578
|
+
|
|
1579
|
+
[[package]]
|
|
1580
|
+
name = "integer-encoding"
|
|
1581
|
+
version = "3.0.4"
|
|
1582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1583
|
+
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
|
1584
|
+
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "ipnet"
|
|
1587
|
+
version = "2.9.0"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
|
1590
|
+
|
|
1591
|
+
[[package]]
|
|
1592
|
+
name = "itertools"
|
|
1593
|
+
version = "0.12.1"
|
|
1594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
1596
|
+
dependencies = [
|
|
1597
|
+
"either",
|
|
1598
|
+
]
|
|
1599
|
+
|
|
1600
|
+
[[package]]
|
|
1601
|
+
name = "itoa"
|
|
1602
|
+
version = "1.0.11"
|
|
1603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1604
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
1605
|
+
|
|
1606
|
+
[[package]]
|
|
1607
|
+
name = "jobserver"
|
|
1608
|
+
version = "0.1.31"
|
|
1609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
+
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
|
|
1611
|
+
dependencies = [
|
|
1612
|
+
"libc",
|
|
1613
|
+
]
|
|
1614
|
+
|
|
1615
|
+
[[package]]
|
|
1616
|
+
name = "js-sys"
|
|
1617
|
+
version = "0.3.69"
|
|
1618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
+
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
|
|
1620
|
+
dependencies = [
|
|
1621
|
+
"wasm-bindgen",
|
|
1622
|
+
]
|
|
1623
|
+
|
|
1624
|
+
[[package]]
|
|
1625
|
+
name = "lazy_static"
|
|
1626
|
+
version = "1.5.0"
|
|
1627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1628
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1629
|
+
|
|
1630
|
+
[[package]]
|
|
1631
|
+
name = "lexical-core"
|
|
1632
|
+
version = "0.8.5"
|
|
1633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1634
|
+
checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
|
|
1635
|
+
dependencies = [
|
|
1636
|
+
"lexical-parse-float",
|
|
1637
|
+
"lexical-parse-integer",
|
|
1638
|
+
"lexical-util",
|
|
1639
|
+
"lexical-write-float",
|
|
1640
|
+
"lexical-write-integer",
|
|
1641
|
+
]
|
|
1642
|
+
|
|
1643
|
+
[[package]]
|
|
1644
|
+
name = "lexical-parse-float"
|
|
1645
|
+
version = "0.8.5"
|
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
+
checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
|
|
1648
|
+
dependencies = [
|
|
1649
|
+
"lexical-parse-integer",
|
|
1650
|
+
"lexical-util",
|
|
1651
|
+
"static_assertions",
|
|
1652
|
+
]
|
|
1653
|
+
|
|
1654
|
+
[[package]]
|
|
1655
|
+
name = "lexical-parse-integer"
|
|
1656
|
+
version = "0.8.6"
|
|
1657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
+
checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
|
|
1659
|
+
dependencies = [
|
|
1660
|
+
"lexical-util",
|
|
1661
|
+
"static_assertions",
|
|
1662
|
+
]
|
|
1663
|
+
|
|
1664
|
+
[[package]]
|
|
1665
|
+
name = "lexical-util"
|
|
1666
|
+
version = "0.8.5"
|
|
1667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
+
checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
|
|
1669
|
+
dependencies = [
|
|
1670
|
+
"static_assertions",
|
|
1671
|
+
]
|
|
1672
|
+
|
|
1673
|
+
[[package]]
|
|
1674
|
+
name = "lexical-write-float"
|
|
1675
|
+
version = "0.8.5"
|
|
1676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1677
|
+
checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
|
|
1678
|
+
dependencies = [
|
|
1679
|
+
"lexical-util",
|
|
1680
|
+
"lexical-write-integer",
|
|
1681
|
+
"static_assertions",
|
|
1682
|
+
]
|
|
1683
|
+
|
|
1684
|
+
[[package]]
|
|
1685
|
+
name = "lexical-write-integer"
|
|
1686
|
+
version = "0.8.5"
|
|
1687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
|
+
checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
|
|
1689
|
+
dependencies = [
|
|
1690
|
+
"lexical-util",
|
|
1691
|
+
"static_assertions",
|
|
1692
|
+
]
|
|
1693
|
+
|
|
1694
|
+
[[package]]
|
|
1695
|
+
name = "libc"
|
|
1696
|
+
version = "0.2.155"
|
|
1697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "libm"
|
|
1702
|
+
version = "0.2.8"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "linux-raw-sys"
|
|
1708
|
+
version = "0.4.14"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "lock_api"
|
|
1714
|
+
version = "0.4.12"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
1717
|
+
dependencies = [
|
|
1718
|
+
"autocfg",
|
|
1719
|
+
"scopeguard",
|
|
1720
|
+
]
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "log"
|
|
1724
|
+
version = "0.4.22"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
1727
|
+
|
|
1728
|
+
[[package]]
|
|
1729
|
+
name = "lz4_flex"
|
|
1730
|
+
version = "0.11.3"
|
|
1731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1732
|
+
checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
|
|
1733
|
+
dependencies = [
|
|
1734
|
+
"twox-hash",
|
|
1735
|
+
]
|
|
1736
|
+
|
|
1737
|
+
[[package]]
|
|
1738
|
+
name = "lzma-sys"
|
|
1739
|
+
version = "0.1.20"
|
|
1740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
+
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
1742
|
+
dependencies = [
|
|
1743
|
+
"cc",
|
|
1744
|
+
"libc",
|
|
1745
|
+
"pkg-config",
|
|
1746
|
+
]
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "md-5"
|
|
1750
|
+
version = "0.10.6"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
1753
|
+
dependencies = [
|
|
1754
|
+
"cfg-if",
|
|
1755
|
+
"digest",
|
|
1756
|
+
]
|
|
1757
|
+
|
|
1758
|
+
[[package]]
|
|
1759
|
+
name = "memchr"
|
|
1760
|
+
version = "2.7.4"
|
|
1761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
1763
|
+
|
|
1764
|
+
[[package]]
|
|
1765
|
+
name = "memoffset"
|
|
1766
|
+
version = "0.9.1"
|
|
1767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1769
|
+
dependencies = [
|
|
1770
|
+
"autocfg",
|
|
1771
|
+
]
|
|
1772
|
+
|
|
1773
|
+
[[package]]
|
|
1774
|
+
name = "mime"
|
|
1775
|
+
version = "0.3.17"
|
|
1776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1778
|
+
|
|
1779
|
+
[[package]]
|
|
1780
|
+
name = "miniz_oxide"
|
|
1781
|
+
version = "0.7.4"
|
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
+
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
|
1784
|
+
dependencies = [
|
|
1785
|
+
"adler",
|
|
1786
|
+
]
|
|
1787
|
+
|
|
1788
|
+
[[package]]
|
|
1789
|
+
name = "mio"
|
|
1790
|
+
version = "0.8.11"
|
|
1791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
+
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
1793
|
+
dependencies = [
|
|
1794
|
+
"libc",
|
|
1795
|
+
"wasi",
|
|
1796
|
+
"windows-sys 0.48.0",
|
|
1797
|
+
]
|
|
1798
|
+
|
|
1799
|
+
[[package]]
|
|
1800
|
+
name = "num"
|
|
1801
|
+
version = "0.4.3"
|
|
1802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
1804
|
+
dependencies = [
|
|
1805
|
+
"num-bigint",
|
|
1806
|
+
"num-complex",
|
|
1807
|
+
"num-integer",
|
|
1808
|
+
"num-iter",
|
|
1809
|
+
"num-rational",
|
|
1810
|
+
"num-traits",
|
|
1811
|
+
]
|
|
1812
|
+
|
|
1813
|
+
[[package]]
|
|
1814
|
+
name = "num-bigint"
|
|
1815
|
+
version = "0.4.6"
|
|
1816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1818
|
+
dependencies = [
|
|
1819
|
+
"num-integer",
|
|
1820
|
+
"num-traits",
|
|
1821
|
+
]
|
|
1822
|
+
|
|
1823
|
+
[[package]]
|
|
1824
|
+
name = "num-complex"
|
|
1825
|
+
version = "0.4.6"
|
|
1826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1828
|
+
dependencies = [
|
|
1829
|
+
"num-traits",
|
|
1830
|
+
]
|
|
1831
|
+
|
|
1832
|
+
[[package]]
|
|
1833
|
+
name = "num-integer"
|
|
1834
|
+
version = "0.1.46"
|
|
1835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1837
|
+
dependencies = [
|
|
1838
|
+
"num-traits",
|
|
1839
|
+
]
|
|
1840
|
+
|
|
1841
|
+
[[package]]
|
|
1842
|
+
name = "num-iter"
|
|
1843
|
+
version = "0.1.45"
|
|
1844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1845
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
1846
|
+
dependencies = [
|
|
1847
|
+
"autocfg",
|
|
1848
|
+
"num-integer",
|
|
1849
|
+
"num-traits",
|
|
1850
|
+
]
|
|
1851
|
+
|
|
1852
|
+
[[package]]
|
|
1853
|
+
name = "num-rational"
|
|
1854
|
+
version = "0.4.2"
|
|
1855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1857
|
+
dependencies = [
|
|
1858
|
+
"num-bigint",
|
|
1859
|
+
"num-integer",
|
|
1860
|
+
"num-traits",
|
|
1861
|
+
]
|
|
1862
|
+
|
|
1863
|
+
[[package]]
|
|
1864
|
+
name = "num-traits"
|
|
1865
|
+
version = "0.2.19"
|
|
1866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1868
|
+
dependencies = [
|
|
1869
|
+
"autocfg",
|
|
1870
|
+
"libm",
|
|
1871
|
+
]
|
|
1872
|
+
|
|
1873
|
+
[[package]]
|
|
1874
|
+
name = "num_cpus"
|
|
1875
|
+
version = "1.16.0"
|
|
1876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1877
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
1878
|
+
dependencies = [
|
|
1879
|
+
"hermit-abi",
|
|
1880
|
+
"libc",
|
|
1881
|
+
]
|
|
1882
|
+
|
|
1883
|
+
[[package]]
|
|
1884
|
+
name = "object"
|
|
1885
|
+
version = "0.36.1"
|
|
1886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1887
|
+
checksum = "081b846d1d56ddfc18fdf1a922e4f6e07a11768ea1b92dec44e42b72712ccfce"
|
|
1888
|
+
dependencies = [
|
|
1889
|
+
"memchr",
|
|
1890
|
+
]
|
|
1891
|
+
|
|
1892
|
+
[[package]]
|
|
1893
|
+
name = "object_store"
|
|
1894
|
+
version = "0.10.1"
|
|
1895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1896
|
+
checksum = "fbebfd32c213ba1907fa7a9c9138015a8de2b43e30c5aa45b18f7deb46786ad6"
|
|
1897
|
+
dependencies = [
|
|
1898
|
+
"async-trait",
|
|
1899
|
+
"base64",
|
|
1900
|
+
"bytes",
|
|
1901
|
+
"chrono",
|
|
1902
|
+
"futures",
|
|
1903
|
+
"humantime",
|
|
1904
|
+
"hyper",
|
|
1905
|
+
"itertools",
|
|
1906
|
+
"md-5",
|
|
1907
|
+
"parking_lot",
|
|
1908
|
+
"percent-encoding",
|
|
1909
|
+
"quick-xml",
|
|
1910
|
+
"rand",
|
|
1911
|
+
"reqwest",
|
|
1912
|
+
"ring",
|
|
1913
|
+
"rustls-pemfile",
|
|
1914
|
+
"serde",
|
|
1915
|
+
"serde_json",
|
|
1916
|
+
"snafu",
|
|
1917
|
+
"tokio",
|
|
1918
|
+
"tracing",
|
|
1919
|
+
"url",
|
|
1920
|
+
"walkdir",
|
|
1921
|
+
]
|
|
1922
|
+
|
|
1923
|
+
[[package]]
|
|
1924
|
+
name = "once_cell"
|
|
1925
|
+
version = "1.19.0"
|
|
1926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
1928
|
+
|
|
1929
|
+
[[package]]
|
|
1930
|
+
name = "openssl-probe"
|
|
1931
|
+
version = "0.1.5"
|
|
1932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
1934
|
+
|
|
1935
|
+
[[package]]
|
|
1936
|
+
name = "ordered-float"
|
|
1937
|
+
version = "2.10.1"
|
|
1938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
+
checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
|
|
1940
|
+
dependencies = [
|
|
1941
|
+
"num-traits",
|
|
1942
|
+
]
|
|
1943
|
+
|
|
1944
|
+
[[package]]
|
|
1945
|
+
name = "parking_lot"
|
|
1946
|
+
version = "0.12.3"
|
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
1949
|
+
dependencies = [
|
|
1950
|
+
"lock_api",
|
|
1951
|
+
"parking_lot_core",
|
|
1952
|
+
]
|
|
1953
|
+
|
|
1954
|
+
[[package]]
|
|
1955
|
+
name = "parking_lot_core"
|
|
1956
|
+
version = "0.9.10"
|
|
1957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
1959
|
+
dependencies = [
|
|
1960
|
+
"cfg-if",
|
|
1961
|
+
"libc",
|
|
1962
|
+
"redox_syscall",
|
|
1963
|
+
"smallvec",
|
|
1964
|
+
"windows-targets 0.52.6",
|
|
1965
|
+
]
|
|
1966
|
+
|
|
1967
|
+
[[package]]
|
|
1968
|
+
name = "parquet"
|
|
1969
|
+
version = "52.1.0"
|
|
1970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1971
|
+
checksum = "0f22ba0d95db56dde8685e3fadcb915cdaadda31ab8abbe3ff7f0ad1ef333267"
|
|
1972
|
+
dependencies = [
|
|
1973
|
+
"ahash",
|
|
1974
|
+
"arrow-array",
|
|
1975
|
+
"arrow-buffer",
|
|
1976
|
+
"arrow-cast",
|
|
1977
|
+
"arrow-data",
|
|
1978
|
+
"arrow-ipc",
|
|
1979
|
+
"arrow-schema",
|
|
1980
|
+
"arrow-select",
|
|
1981
|
+
"base64",
|
|
1982
|
+
"brotli",
|
|
1983
|
+
"bytes",
|
|
1984
|
+
"chrono",
|
|
1985
|
+
"flate2",
|
|
1986
|
+
"futures",
|
|
1987
|
+
"half",
|
|
1988
|
+
"hashbrown",
|
|
1989
|
+
"lz4_flex",
|
|
1990
|
+
"num",
|
|
1991
|
+
"num-bigint",
|
|
1992
|
+
"object_store",
|
|
1993
|
+
"paste",
|
|
1994
|
+
"seq-macro",
|
|
1995
|
+
"snap",
|
|
1996
|
+
"thrift",
|
|
1997
|
+
"tokio",
|
|
1998
|
+
"twox-hash",
|
|
1999
|
+
"zstd 0.13.2",
|
|
2000
|
+
"zstd-sys",
|
|
2001
|
+
]
|
|
2002
|
+
|
|
2003
|
+
[[package]]
|
|
2004
|
+
name = "parse-zoneinfo"
|
|
2005
|
+
version = "0.3.1"
|
|
2006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2007
|
+
checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
|
|
2008
|
+
dependencies = [
|
|
2009
|
+
"regex",
|
|
2010
|
+
]
|
|
2011
|
+
|
|
2012
|
+
[[package]]
|
|
2013
|
+
name = "password-hash"
|
|
2014
|
+
version = "0.4.2"
|
|
2015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
+
checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
|
|
2017
|
+
dependencies = [
|
|
2018
|
+
"base64ct",
|
|
2019
|
+
"rand_core",
|
|
2020
|
+
"subtle",
|
|
2021
|
+
]
|
|
2022
|
+
|
|
2023
|
+
[[package]]
|
|
2024
|
+
name = "paste"
|
|
2025
|
+
version = "1.0.15"
|
|
2026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2027
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2028
|
+
|
|
2029
|
+
[[package]]
|
|
2030
|
+
name = "pbkdf2"
|
|
2031
|
+
version = "0.11.0"
|
|
2032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2033
|
+
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
|
|
2034
|
+
dependencies = [
|
|
2035
|
+
"digest",
|
|
2036
|
+
"hmac",
|
|
2037
|
+
"password-hash",
|
|
2038
|
+
"sha2",
|
|
2039
|
+
]
|
|
2040
|
+
|
|
2041
|
+
[[package]]
|
|
2042
|
+
name = "percent-encoding"
|
|
2043
|
+
version = "2.3.1"
|
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
2046
|
+
|
|
2047
|
+
[[package]]
|
|
2048
|
+
name = "petgraph"
|
|
2049
|
+
version = "0.6.5"
|
|
2050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
2052
|
+
dependencies = [
|
|
2053
|
+
"fixedbitset",
|
|
2054
|
+
"indexmap",
|
|
2055
|
+
]
|
|
2056
|
+
|
|
2057
|
+
[[package]]
|
|
2058
|
+
name = "phf"
|
|
2059
|
+
version = "0.11.2"
|
|
2060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
|
2062
|
+
dependencies = [
|
|
2063
|
+
"phf_shared",
|
|
2064
|
+
]
|
|
2065
|
+
|
|
2066
|
+
[[package]]
|
|
2067
|
+
name = "phf_codegen"
|
|
2068
|
+
version = "0.11.2"
|
|
2069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2070
|
+
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
|
|
2071
|
+
dependencies = [
|
|
2072
|
+
"phf_generator",
|
|
2073
|
+
"phf_shared",
|
|
2074
|
+
]
|
|
2075
|
+
|
|
2076
|
+
[[package]]
|
|
2077
|
+
name = "phf_generator"
|
|
2078
|
+
version = "0.11.2"
|
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
|
2081
|
+
dependencies = [
|
|
2082
|
+
"phf_shared",
|
|
2083
|
+
"rand",
|
|
2084
|
+
]
|
|
2085
|
+
|
|
2086
|
+
[[package]]
|
|
2087
|
+
name = "phf_shared"
|
|
2088
|
+
version = "0.11.2"
|
|
2089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2090
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
|
2091
|
+
dependencies = [
|
|
2092
|
+
"siphasher",
|
|
2093
|
+
]
|
|
2094
|
+
|
|
2095
|
+
[[package]]
|
|
2096
|
+
name = "pin-project"
|
|
2097
|
+
version = "1.1.5"
|
|
2098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2099
|
+
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
|
|
2100
|
+
dependencies = [
|
|
2101
|
+
"pin-project-internal",
|
|
2102
|
+
]
|
|
2103
|
+
|
|
2104
|
+
[[package]]
|
|
2105
|
+
name = "pin-project-internal"
|
|
2106
|
+
version = "1.1.5"
|
|
2107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2108
|
+
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
|
|
2109
|
+
dependencies = [
|
|
2110
|
+
"proc-macro2",
|
|
2111
|
+
"quote",
|
|
2112
|
+
"syn 2.0.71",
|
|
2113
|
+
]
|
|
2114
|
+
|
|
2115
|
+
[[package]]
|
|
2116
|
+
name = "pin-project-lite"
|
|
2117
|
+
version = "0.2.14"
|
|
2118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
|
2120
|
+
|
|
2121
|
+
[[package]]
|
|
2122
|
+
name = "pin-utils"
|
|
2123
|
+
version = "0.1.0"
|
|
2124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2125
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2126
|
+
|
|
2127
|
+
[[package]]
|
|
2128
|
+
name = "pkg-config"
|
|
2129
|
+
version = "0.3.30"
|
|
2130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2131
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
|
2132
|
+
|
|
2133
|
+
[[package]]
|
|
2134
|
+
name = "portable-atomic"
|
|
2135
|
+
version = "1.6.0"
|
|
2136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
+
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
|
|
2138
|
+
|
|
2139
|
+
[[package]]
|
|
2140
|
+
name = "ppv-lite86"
|
|
2141
|
+
version = "0.2.17"
|
|
2142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
2144
|
+
|
|
2145
|
+
[[package]]
|
|
2146
|
+
name = "proc-macro2"
|
|
2147
|
+
version = "1.0.86"
|
|
2148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
|
2150
|
+
dependencies = [
|
|
2151
|
+
"unicode-ident",
|
|
2152
|
+
]
|
|
2153
|
+
|
|
2154
|
+
[[package]]
|
|
2155
|
+
name = "pyo3"
|
|
2156
|
+
version = "0.21.2"
|
|
2157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
+
checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
|
|
2159
|
+
dependencies = [
|
|
2160
|
+
"anyhow",
|
|
2161
|
+
"cfg-if",
|
|
2162
|
+
"indoc",
|
|
2163
|
+
"libc",
|
|
2164
|
+
"memoffset",
|
|
2165
|
+
"parking_lot",
|
|
2166
|
+
"portable-atomic",
|
|
2167
|
+
"pyo3-build-config",
|
|
2168
|
+
"pyo3-ffi",
|
|
2169
|
+
"pyo3-macros",
|
|
2170
|
+
"unindent",
|
|
2171
|
+
]
|
|
2172
|
+
|
|
2173
|
+
[[package]]
|
|
2174
|
+
name = "pyo3-build-config"
|
|
2175
|
+
version = "0.21.2"
|
|
2176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2177
|
+
checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
|
|
2178
|
+
dependencies = [
|
|
2179
|
+
"once_cell",
|
|
2180
|
+
"target-lexicon",
|
|
2181
|
+
]
|
|
2182
|
+
|
|
2183
|
+
[[package]]
|
|
2184
|
+
name = "pyo3-ffi"
|
|
2185
|
+
version = "0.21.2"
|
|
2186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2187
|
+
checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
|
|
2188
|
+
dependencies = [
|
|
2189
|
+
"libc",
|
|
2190
|
+
"pyo3-build-config",
|
|
2191
|
+
]
|
|
2192
|
+
|
|
2193
|
+
[[package]]
|
|
2194
|
+
name = "pyo3-macros"
|
|
2195
|
+
version = "0.21.2"
|
|
2196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2197
|
+
checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
|
|
2198
|
+
dependencies = [
|
|
2199
|
+
"proc-macro2",
|
|
2200
|
+
"pyo3-macros-backend",
|
|
2201
|
+
"quote",
|
|
2202
|
+
"syn 2.0.71",
|
|
2203
|
+
]
|
|
2204
|
+
|
|
2205
|
+
[[package]]
|
|
2206
|
+
name = "pyo3-macros-backend"
|
|
2207
|
+
version = "0.21.2"
|
|
2208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2209
|
+
checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
|
|
2210
|
+
dependencies = [
|
|
2211
|
+
"heck 0.4.1",
|
|
2212
|
+
"proc-macro2",
|
|
2213
|
+
"pyo3-build-config",
|
|
2214
|
+
"quote",
|
|
2215
|
+
"syn 2.0.71",
|
|
2216
|
+
]
|
|
2217
|
+
|
|
2218
|
+
[[package]]
|
|
2219
|
+
name = "quick-xml"
|
|
2220
|
+
version = "0.31.0"
|
|
2221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2222
|
+
checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
|
|
2223
|
+
dependencies = [
|
|
2224
|
+
"memchr",
|
|
2225
|
+
"serde",
|
|
2226
|
+
]
|
|
2227
|
+
|
|
2228
|
+
[[package]]
|
|
2229
|
+
name = "quinn"
|
|
2230
|
+
version = "0.11.2"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "e4ceeeeabace7857413798eb1ffa1e9c905a9946a57d81fb69b4b71c4d8eb3ad"
|
|
2233
|
+
dependencies = [
|
|
2234
|
+
"bytes",
|
|
2235
|
+
"pin-project-lite",
|
|
2236
|
+
"quinn-proto",
|
|
2237
|
+
"quinn-udp",
|
|
2238
|
+
"rustc-hash",
|
|
2239
|
+
"rustls",
|
|
2240
|
+
"thiserror",
|
|
2241
|
+
"tokio",
|
|
2242
|
+
"tracing",
|
|
2243
|
+
]
|
|
2244
|
+
|
|
2245
|
+
[[package]]
|
|
2246
|
+
name = "quinn-proto"
|
|
2247
|
+
version = "0.11.3"
|
|
2248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2249
|
+
checksum = "ddf517c03a109db8100448a4be38d498df8a210a99fe0e1b9eaf39e78c640efe"
|
|
2250
|
+
dependencies = [
|
|
2251
|
+
"bytes",
|
|
2252
|
+
"rand",
|
|
2253
|
+
"ring",
|
|
2254
|
+
"rustc-hash",
|
|
2255
|
+
"rustls",
|
|
2256
|
+
"slab",
|
|
2257
|
+
"thiserror",
|
|
2258
|
+
"tinyvec",
|
|
2259
|
+
"tracing",
|
|
2260
|
+
]
|
|
2261
|
+
|
|
2262
|
+
[[package]]
|
|
2263
|
+
name = "quinn-udp"
|
|
2264
|
+
version = "0.5.2"
|
|
2265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
+
checksum = "9096629c45860fc7fb143e125eb826b5e721e10be3263160c7d60ca832cf8c46"
|
|
2267
|
+
dependencies = [
|
|
2268
|
+
"libc",
|
|
2269
|
+
"once_cell",
|
|
2270
|
+
"socket2",
|
|
2271
|
+
"tracing",
|
|
2272
|
+
"windows-sys 0.52.0",
|
|
2273
|
+
]
|
|
2274
|
+
|
|
2275
|
+
[[package]]
|
|
2276
|
+
name = "quote"
|
|
2277
|
+
version = "1.0.36"
|
|
2278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2279
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
2280
|
+
dependencies = [
|
|
2281
|
+
"proc-macro2",
|
|
2282
|
+
]
|
|
2283
|
+
|
|
2284
|
+
[[package]]
|
|
2285
|
+
name = "rand"
|
|
2286
|
+
version = "0.8.5"
|
|
2287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2288
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2289
|
+
dependencies = [
|
|
2290
|
+
"libc",
|
|
2291
|
+
"rand_chacha",
|
|
2292
|
+
"rand_core",
|
|
2293
|
+
]
|
|
2294
|
+
|
|
2295
|
+
[[package]]
|
|
2296
|
+
name = "rand_chacha"
|
|
2297
|
+
version = "0.3.1"
|
|
2298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2299
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2300
|
+
dependencies = [
|
|
2301
|
+
"ppv-lite86",
|
|
2302
|
+
"rand_core",
|
|
2303
|
+
]
|
|
2304
|
+
|
|
2305
|
+
[[package]]
|
|
2306
|
+
name = "rand_core"
|
|
2307
|
+
version = "0.6.4"
|
|
2308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2309
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2310
|
+
dependencies = [
|
|
2311
|
+
"getrandom",
|
|
2312
|
+
]
|
|
2313
|
+
|
|
2314
|
+
[[package]]
|
|
2315
|
+
name = "redox_syscall"
|
|
2316
|
+
version = "0.5.2"
|
|
2317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2318
|
+
checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd"
|
|
2319
|
+
dependencies = [
|
|
2320
|
+
"bitflags 2.6.0",
|
|
2321
|
+
]
|
|
2322
|
+
|
|
2323
|
+
[[package]]
|
|
2324
|
+
name = "regex"
|
|
2325
|
+
version = "1.10.5"
|
|
2326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2327
|
+
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
|
|
2328
|
+
dependencies = [
|
|
2329
|
+
"aho-corasick",
|
|
2330
|
+
"memchr",
|
|
2331
|
+
"regex-automata",
|
|
2332
|
+
"regex-syntax",
|
|
2333
|
+
]
|
|
2334
|
+
|
|
2335
|
+
[[package]]
|
|
2336
|
+
name = "regex-automata"
|
|
2337
|
+
version = "0.4.7"
|
|
2338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2339
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
|
2340
|
+
dependencies = [
|
|
2341
|
+
"aho-corasick",
|
|
2342
|
+
"memchr",
|
|
2343
|
+
"regex-syntax",
|
|
2344
|
+
]
|
|
2345
|
+
|
|
2346
|
+
[[package]]
|
|
2347
|
+
name = "regex-syntax"
|
|
2348
|
+
version = "0.8.4"
|
|
2349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2350
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
|
2351
|
+
|
|
2352
|
+
[[package]]
|
|
2353
|
+
name = "reqwest"
|
|
2354
|
+
version = "0.12.5"
|
|
2355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2356
|
+
checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37"
|
|
2357
|
+
dependencies = [
|
|
2358
|
+
"base64",
|
|
2359
|
+
"bytes",
|
|
2360
|
+
"futures-core",
|
|
2361
|
+
"futures-util",
|
|
2362
|
+
"h2",
|
|
2363
|
+
"http",
|
|
2364
|
+
"http-body",
|
|
2365
|
+
"http-body-util",
|
|
2366
|
+
"hyper",
|
|
2367
|
+
"hyper-rustls",
|
|
2368
|
+
"hyper-util",
|
|
2369
|
+
"ipnet",
|
|
2370
|
+
"js-sys",
|
|
2371
|
+
"log",
|
|
2372
|
+
"mime",
|
|
2373
|
+
"once_cell",
|
|
2374
|
+
"percent-encoding",
|
|
2375
|
+
"pin-project-lite",
|
|
2376
|
+
"quinn",
|
|
2377
|
+
"rustls",
|
|
2378
|
+
"rustls-native-certs",
|
|
2379
|
+
"rustls-pemfile",
|
|
2380
|
+
"rustls-pki-types",
|
|
2381
|
+
"serde",
|
|
2382
|
+
"serde_json",
|
|
2383
|
+
"serde_urlencoded",
|
|
2384
|
+
"sync_wrapper",
|
|
2385
|
+
"tokio",
|
|
2386
|
+
"tokio-rustls",
|
|
2387
|
+
"tokio-util",
|
|
2388
|
+
"tower-service",
|
|
2389
|
+
"url",
|
|
2390
|
+
"wasm-bindgen",
|
|
2391
|
+
"wasm-bindgen-futures",
|
|
2392
|
+
"wasm-streams",
|
|
2393
|
+
"web-sys",
|
|
2394
|
+
"winreg",
|
|
2395
|
+
]
|
|
2396
|
+
|
|
2397
|
+
[[package]]
|
|
2398
|
+
name = "ring"
|
|
2399
|
+
version = "0.17.8"
|
|
2400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
|
+
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
|
|
2402
|
+
dependencies = [
|
|
2403
|
+
"cc",
|
|
2404
|
+
"cfg-if",
|
|
2405
|
+
"getrandom",
|
|
2406
|
+
"libc",
|
|
2407
|
+
"spin",
|
|
2408
|
+
"untrusted",
|
|
2409
|
+
"windows-sys 0.52.0",
|
|
2410
|
+
]
|
|
2411
|
+
|
|
2412
|
+
[[package]]
|
|
2413
|
+
name = "rustc-demangle"
|
|
2414
|
+
version = "0.1.24"
|
|
2415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2416
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
2417
|
+
|
|
2418
|
+
[[package]]
|
|
2419
|
+
name = "rustc-hash"
|
|
2420
|
+
version = "1.1.0"
|
|
2421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2422
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2423
|
+
|
|
2424
|
+
[[package]]
|
|
2425
|
+
name = "rustc_version"
|
|
2426
|
+
version = "0.4.0"
|
|
2427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2428
|
+
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
|
2429
|
+
dependencies = [
|
|
2430
|
+
"semver",
|
|
2431
|
+
]
|
|
2432
|
+
|
|
2433
|
+
[[package]]
|
|
2434
|
+
name = "rustix"
|
|
2435
|
+
version = "0.38.34"
|
|
2436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2437
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
2438
|
+
dependencies = [
|
|
2439
|
+
"bitflags 2.6.0",
|
|
2440
|
+
"errno",
|
|
2441
|
+
"libc",
|
|
2442
|
+
"linux-raw-sys",
|
|
2443
|
+
"windows-sys 0.52.0",
|
|
2444
|
+
]
|
|
2445
|
+
|
|
2446
|
+
[[package]]
|
|
2447
|
+
name = "rustls"
|
|
2448
|
+
version = "0.23.11"
|
|
2449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2450
|
+
checksum = "4828ea528154ae444e5a642dbb7d5623354030dc9822b83fd9bb79683c7399d0"
|
|
2451
|
+
dependencies = [
|
|
2452
|
+
"once_cell",
|
|
2453
|
+
"ring",
|
|
2454
|
+
"rustls-pki-types",
|
|
2455
|
+
"rustls-webpki",
|
|
2456
|
+
"subtle",
|
|
2457
|
+
"zeroize",
|
|
2458
|
+
]
|
|
2459
|
+
|
|
2460
|
+
[[package]]
|
|
2461
|
+
name = "rustls-native-certs"
|
|
2462
|
+
version = "0.7.1"
|
|
2463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2464
|
+
checksum = "a88d6d420651b496bdd98684116959239430022a115c1240e6c3993be0b15fba"
|
|
2465
|
+
dependencies = [
|
|
2466
|
+
"openssl-probe",
|
|
2467
|
+
"rustls-pemfile",
|
|
2468
|
+
"rustls-pki-types",
|
|
2469
|
+
"schannel",
|
|
2470
|
+
"security-framework",
|
|
2471
|
+
]
|
|
2472
|
+
|
|
2473
|
+
[[package]]
|
|
2474
|
+
name = "rustls-pemfile"
|
|
2475
|
+
version = "2.1.2"
|
|
2476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2477
|
+
checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
|
|
2478
|
+
dependencies = [
|
|
2479
|
+
"base64",
|
|
2480
|
+
"rustls-pki-types",
|
|
2481
|
+
]
|
|
2482
|
+
|
|
2483
|
+
[[package]]
|
|
2484
|
+
name = "rustls-pki-types"
|
|
2485
|
+
version = "1.7.0"
|
|
2486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2487
|
+
checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
|
|
2488
|
+
|
|
2489
|
+
[[package]]
|
|
2490
|
+
name = "rustls-webpki"
|
|
2491
|
+
version = "0.102.5"
|
|
2492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2493
|
+
checksum = "f9a6fccd794a42c2c105b513a2f62bc3fd8f3ba57a4593677ceb0bd035164d78"
|
|
2494
|
+
dependencies = [
|
|
2495
|
+
"ring",
|
|
2496
|
+
"rustls-pki-types",
|
|
2497
|
+
"untrusted",
|
|
2498
|
+
]
|
|
2499
|
+
|
|
2500
|
+
[[package]]
|
|
2501
|
+
name = "rustversion"
|
|
2502
|
+
version = "1.0.17"
|
|
2503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2504
|
+
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
|
|
2505
|
+
|
|
2506
|
+
[[package]]
|
|
2507
|
+
name = "ryu"
|
|
2508
|
+
version = "1.0.18"
|
|
2509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2510
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
2511
|
+
|
|
2512
|
+
[[package]]
|
|
2513
|
+
name = "same-file"
|
|
2514
|
+
version = "1.0.6"
|
|
2515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2516
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2517
|
+
dependencies = [
|
|
2518
|
+
"winapi-util",
|
|
2519
|
+
]
|
|
2520
|
+
|
|
2521
|
+
[[package]]
|
|
2522
|
+
name = "schannel"
|
|
2523
|
+
version = "0.1.23"
|
|
2524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2525
|
+
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
|
|
2526
|
+
dependencies = [
|
|
2527
|
+
"windows-sys 0.52.0",
|
|
2528
|
+
]
|
|
2529
|
+
|
|
2530
|
+
[[package]]
|
|
2531
|
+
name = "scopeguard"
|
|
2532
|
+
version = "1.2.0"
|
|
2533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2534
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2535
|
+
|
|
2536
|
+
[[package]]
|
|
2537
|
+
name = "security-framework"
|
|
2538
|
+
version = "2.11.1"
|
|
2539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2540
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
2541
|
+
dependencies = [
|
|
2542
|
+
"bitflags 2.6.0",
|
|
2543
|
+
"core-foundation",
|
|
2544
|
+
"core-foundation-sys",
|
|
2545
|
+
"libc",
|
|
2546
|
+
"security-framework-sys",
|
|
2547
|
+
]
|
|
2548
|
+
|
|
2549
|
+
[[package]]
|
|
2550
|
+
name = "security-framework-sys"
|
|
2551
|
+
version = "2.11.1"
|
|
2552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2553
|
+
checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf"
|
|
2554
|
+
dependencies = [
|
|
2555
|
+
"core-foundation-sys",
|
|
2556
|
+
"libc",
|
|
2557
|
+
]
|
|
2558
|
+
|
|
2559
|
+
[[package]]
|
|
2560
|
+
name = "semver"
|
|
2561
|
+
version = "1.0.23"
|
|
2562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2563
|
+
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
|
|
2564
|
+
|
|
2565
|
+
[[package]]
|
|
2566
|
+
name = "seq-macro"
|
|
2567
|
+
version = "0.3.5"
|
|
2568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2569
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
|
2570
|
+
|
|
2571
|
+
[[package]]
|
|
2572
|
+
name = "serde"
|
|
2573
|
+
version = "1.0.204"
|
|
2574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2575
|
+
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
|
|
2576
|
+
dependencies = [
|
|
2577
|
+
"serde_derive",
|
|
2578
|
+
]
|
|
2579
|
+
|
|
2580
|
+
[[package]]
|
|
2581
|
+
name = "serde_derive"
|
|
2582
|
+
version = "1.0.204"
|
|
2583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2584
|
+
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
|
|
2585
|
+
dependencies = [
|
|
2586
|
+
"proc-macro2",
|
|
2587
|
+
"quote",
|
|
2588
|
+
"syn 2.0.71",
|
|
2589
|
+
]
|
|
2590
|
+
|
|
2591
|
+
[[package]]
|
|
2592
|
+
name = "serde_json"
|
|
2593
|
+
version = "1.0.120"
|
|
2594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2595
|
+
checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5"
|
|
2596
|
+
dependencies = [
|
|
2597
|
+
"itoa",
|
|
2598
|
+
"ryu",
|
|
2599
|
+
"serde",
|
|
2600
|
+
]
|
|
2601
|
+
|
|
2602
|
+
[[package]]
|
|
2603
|
+
name = "serde_urlencoded"
|
|
2604
|
+
version = "0.7.1"
|
|
2605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2606
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2607
|
+
dependencies = [
|
|
2608
|
+
"form_urlencoded",
|
|
2609
|
+
"itoa",
|
|
2610
|
+
"ryu",
|
|
2611
|
+
"serde",
|
|
2612
|
+
]
|
|
2613
|
+
|
|
2614
|
+
[[package]]
|
|
2615
|
+
name = "sha1"
|
|
2616
|
+
version = "0.10.6"
|
|
2617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2618
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
2619
|
+
dependencies = [
|
|
2620
|
+
"cfg-if",
|
|
2621
|
+
"cpufeatures",
|
|
2622
|
+
"digest",
|
|
2623
|
+
]
|
|
2624
|
+
|
|
2625
|
+
[[package]]
|
|
2626
|
+
name = "sha2"
|
|
2627
|
+
version = "0.10.8"
|
|
2628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2629
|
+
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
|
2630
|
+
dependencies = [
|
|
2631
|
+
"cfg-if",
|
|
2632
|
+
"cpufeatures",
|
|
2633
|
+
"digest",
|
|
2634
|
+
]
|
|
2635
|
+
|
|
2636
|
+
[[package]]
|
|
2637
|
+
name = "siphasher"
|
|
2638
|
+
version = "0.3.11"
|
|
2639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
2641
|
+
|
|
2642
|
+
[[package]]
|
|
2643
|
+
name = "slab"
|
|
2644
|
+
version = "0.4.9"
|
|
2645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2646
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
2647
|
+
dependencies = [
|
|
2648
|
+
"autocfg",
|
|
2649
|
+
]
|
|
2650
|
+
|
|
2651
|
+
[[package]]
|
|
2652
|
+
name = "smallvec"
|
|
2653
|
+
version = "1.13.2"
|
|
2654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2655
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
2656
|
+
|
|
2657
|
+
[[package]]
|
|
2658
|
+
name = "snafu"
|
|
2659
|
+
version = "0.7.5"
|
|
2660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2661
|
+
checksum = "e4de37ad025c587a29e8f3f5605c00f70b98715ef90b9061a815b9e59e9042d6"
|
|
2662
|
+
dependencies = [
|
|
2663
|
+
"doc-comment",
|
|
2664
|
+
"snafu-derive",
|
|
2665
|
+
]
|
|
2666
|
+
|
|
2667
|
+
[[package]]
|
|
2668
|
+
name = "snafu-derive"
|
|
2669
|
+
version = "0.7.5"
|
|
2670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2671
|
+
checksum = "990079665f075b699031e9c08fd3ab99be5029b96f3b78dc0709e8f77e4efebf"
|
|
2672
|
+
dependencies = [
|
|
2673
|
+
"heck 0.4.1",
|
|
2674
|
+
"proc-macro2",
|
|
2675
|
+
"quote",
|
|
2676
|
+
"syn 1.0.109",
|
|
2677
|
+
]
|
|
2678
|
+
|
|
2679
|
+
[[package]]
|
|
2680
|
+
name = "snap"
|
|
2681
|
+
version = "1.1.1"
|
|
2682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2683
|
+
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
2684
|
+
|
|
2685
|
+
[[package]]
|
|
2686
|
+
name = "socket2"
|
|
2687
|
+
version = "0.5.7"
|
|
2688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2689
|
+
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
|
2690
|
+
dependencies = [
|
|
2691
|
+
"libc",
|
|
2692
|
+
"windows-sys 0.52.0",
|
|
2693
|
+
]
|
|
2694
|
+
|
|
2695
|
+
[[package]]
|
|
2696
|
+
name = "spin"
|
|
2697
|
+
version = "0.9.8"
|
|
2698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2699
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
2700
|
+
|
|
2701
|
+
[[package]]
|
|
2702
|
+
name = "sqlparser"
|
|
2703
|
+
version = "0.47.0"
|
|
2704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2705
|
+
checksum = "295e9930cd7a97e58ca2a070541a3ca502b17f5d1fa7157376d0fabd85324f25"
|
|
2706
|
+
dependencies = [
|
|
2707
|
+
"log",
|
|
2708
|
+
"sqlparser_derive",
|
|
2709
|
+
]
|
|
2710
|
+
|
|
2711
|
+
[[package]]
|
|
2712
|
+
name = "sqlparser_derive"
|
|
2713
|
+
version = "0.2.2"
|
|
2714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2715
|
+
checksum = "01b2e185515564f15375f593fb966b5718bc624ba77fe49fa4616ad619690554"
|
|
2716
|
+
dependencies = [
|
|
2717
|
+
"proc-macro2",
|
|
2718
|
+
"quote",
|
|
2719
|
+
"syn 2.0.71",
|
|
2720
|
+
]
|
|
2721
|
+
|
|
2722
|
+
[[package]]
|
|
2723
|
+
name = "static_assertions"
|
|
2724
|
+
version = "1.1.0"
|
|
2725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2726
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2727
|
+
|
|
2728
|
+
[[package]]
|
|
2729
|
+
name = "strum"
|
|
2730
|
+
version = "0.26.3"
|
|
2731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2732
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
2733
|
+
dependencies = [
|
|
2734
|
+
"strum_macros",
|
|
2735
|
+
]
|
|
2736
|
+
|
|
2737
|
+
[[package]]
|
|
2738
|
+
name = "strum_macros"
|
|
2739
|
+
version = "0.26.4"
|
|
2740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2741
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
2742
|
+
dependencies = [
|
|
2743
|
+
"heck 0.5.0",
|
|
2744
|
+
"proc-macro2",
|
|
2745
|
+
"quote",
|
|
2746
|
+
"rustversion",
|
|
2747
|
+
"syn 2.0.71",
|
|
2748
|
+
]
|
|
2749
|
+
|
|
2750
|
+
[[package]]
|
|
2751
|
+
name = "subtle"
|
|
2752
|
+
version = "2.6.1"
|
|
2753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2754
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2755
|
+
|
|
2756
|
+
[[package]]
|
|
2757
|
+
name = "syn"
|
|
2758
|
+
version = "1.0.109"
|
|
2759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2760
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
2761
|
+
dependencies = [
|
|
2762
|
+
"proc-macro2",
|
|
2763
|
+
"quote",
|
|
2764
|
+
"unicode-ident",
|
|
2765
|
+
]
|
|
2766
|
+
|
|
2767
|
+
[[package]]
|
|
2768
|
+
name = "syn"
|
|
2769
|
+
version = "2.0.71"
|
|
2770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2771
|
+
checksum = "b146dcf730474b4bcd16c311627b31ede9ab149045db4d6088b3becaea046462"
|
|
2772
|
+
dependencies = [
|
|
2773
|
+
"proc-macro2",
|
|
2774
|
+
"quote",
|
|
2775
|
+
"unicode-ident",
|
|
2776
|
+
]
|
|
2777
|
+
|
|
2778
|
+
[[package]]
|
|
2779
|
+
name = "sync_wrapper"
|
|
2780
|
+
version = "1.0.1"
|
|
2781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2782
|
+
checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
|
|
2783
|
+
|
|
2784
|
+
[[package]]
|
|
2785
|
+
name = "target-lexicon"
|
|
2786
|
+
version = "0.12.15"
|
|
2787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2788
|
+
checksum = "4873307b7c257eddcb50c9bedf158eb669578359fb28428bef438fec8e6ba7c2"
|
|
2789
|
+
|
|
2790
|
+
[[package]]
|
|
2791
|
+
name = "tempfile"
|
|
2792
|
+
version = "3.10.1"
|
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
+
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
|
2795
|
+
dependencies = [
|
|
2796
|
+
"cfg-if",
|
|
2797
|
+
"fastrand",
|
|
2798
|
+
"rustix",
|
|
2799
|
+
"windows-sys 0.52.0",
|
|
2800
|
+
]
|
|
2801
|
+
|
|
2802
|
+
[[package]]
|
|
2803
|
+
name = "thiserror"
|
|
2804
|
+
version = "1.0.62"
|
|
2805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2806
|
+
checksum = "f2675633b1499176c2dff06b0856a27976a8f9d436737b4cf4f312d4d91d8bbb"
|
|
2807
|
+
dependencies = [
|
|
2808
|
+
"thiserror-impl",
|
|
2809
|
+
]
|
|
2810
|
+
|
|
2811
|
+
[[package]]
|
|
2812
|
+
name = "thiserror-impl"
|
|
2813
|
+
version = "1.0.62"
|
|
2814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2815
|
+
checksum = "d20468752b09f49e909e55a5d338caa8bedf615594e9d80bc4c565d30faf798c"
|
|
2816
|
+
dependencies = [
|
|
2817
|
+
"proc-macro2",
|
|
2818
|
+
"quote",
|
|
2819
|
+
"syn 2.0.71",
|
|
2820
|
+
]
|
|
2821
|
+
|
|
2822
|
+
[[package]]
|
|
2823
|
+
name = "thrift"
|
|
2824
|
+
version = "0.17.0"
|
|
2825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2826
|
+
checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
|
|
2827
|
+
dependencies = [
|
|
2828
|
+
"byteorder",
|
|
2829
|
+
"integer-encoding",
|
|
2830
|
+
"ordered-float",
|
|
2831
|
+
]
|
|
2832
|
+
|
|
2833
|
+
[[package]]
|
|
2834
|
+
name = "tiny-keccak"
|
|
2835
|
+
version = "2.0.2"
|
|
2836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2837
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
2838
|
+
dependencies = [
|
|
2839
|
+
"crunchy",
|
|
2840
|
+
]
|
|
2841
|
+
|
|
2842
|
+
[[package]]
|
|
2843
|
+
name = "tinyvec"
|
|
2844
|
+
version = "1.8.0"
|
|
2845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2846
|
+
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
|
|
2847
|
+
dependencies = [
|
|
2848
|
+
"tinyvec_macros",
|
|
2849
|
+
]
|
|
2850
|
+
|
|
2851
|
+
[[package]]
|
|
2852
|
+
name = "tinyvec_macros"
|
|
2853
|
+
version = "0.1.1"
|
|
2854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2855
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2856
|
+
|
|
2857
|
+
[[package]]
|
|
2858
|
+
name = "tokio"
|
|
2859
|
+
version = "1.38.0"
|
|
2860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2861
|
+
checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a"
|
|
2862
|
+
dependencies = [
|
|
2863
|
+
"backtrace",
|
|
2864
|
+
"bytes",
|
|
2865
|
+
"libc",
|
|
2866
|
+
"mio",
|
|
2867
|
+
"num_cpus",
|
|
2868
|
+
"pin-project-lite",
|
|
2869
|
+
"socket2",
|
|
2870
|
+
"tokio-macros",
|
|
2871
|
+
"windows-sys 0.48.0",
|
|
2872
|
+
]
|
|
2873
|
+
|
|
2874
|
+
[[package]]
|
|
2875
|
+
name = "tokio-macros"
|
|
2876
|
+
version = "2.3.0"
|
|
2877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
+
checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a"
|
|
2879
|
+
dependencies = [
|
|
2880
|
+
"proc-macro2",
|
|
2881
|
+
"quote",
|
|
2882
|
+
"syn 2.0.71",
|
|
2883
|
+
]
|
|
2884
|
+
|
|
2885
|
+
[[package]]
|
|
2886
|
+
name = "tokio-rustls"
|
|
2887
|
+
version = "0.26.0"
|
|
2888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2889
|
+
checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
|
|
2890
|
+
dependencies = [
|
|
2891
|
+
"rustls",
|
|
2892
|
+
"rustls-pki-types",
|
|
2893
|
+
"tokio",
|
|
2894
|
+
]
|
|
2895
|
+
|
|
2896
|
+
[[package]]
|
|
2897
|
+
name = "tokio-util"
|
|
2898
|
+
version = "0.7.11"
|
|
2899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2900
|
+
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
|
|
2901
|
+
dependencies = [
|
|
2902
|
+
"bytes",
|
|
2903
|
+
"futures-core",
|
|
2904
|
+
"futures-sink",
|
|
2905
|
+
"pin-project-lite",
|
|
2906
|
+
"tokio",
|
|
2907
|
+
]
|
|
2908
|
+
|
|
2909
|
+
[[package]]
|
|
2910
|
+
name = "tower"
|
|
2911
|
+
version = "0.4.13"
|
|
2912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2913
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
2914
|
+
dependencies = [
|
|
2915
|
+
"futures-core",
|
|
2916
|
+
"futures-util",
|
|
2917
|
+
"pin-project",
|
|
2918
|
+
"pin-project-lite",
|
|
2919
|
+
"tokio",
|
|
2920
|
+
"tower-layer",
|
|
2921
|
+
"tower-service",
|
|
2922
|
+
]
|
|
2923
|
+
|
|
2924
|
+
[[package]]
|
|
2925
|
+
name = "tower-layer"
|
|
2926
|
+
version = "0.3.2"
|
|
2927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2928
|
+
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
|
|
2929
|
+
|
|
2930
|
+
[[package]]
|
|
2931
|
+
name = "tower-service"
|
|
2932
|
+
version = "0.3.2"
|
|
2933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2934
|
+
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
2935
|
+
|
|
2936
|
+
[[package]]
|
|
2937
|
+
name = "tracing"
|
|
2938
|
+
version = "0.1.40"
|
|
2939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2940
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
2941
|
+
dependencies = [
|
|
2942
|
+
"pin-project-lite",
|
|
2943
|
+
"tracing-attributes",
|
|
2944
|
+
"tracing-core",
|
|
2945
|
+
]
|
|
2946
|
+
|
|
2947
|
+
[[package]]
|
|
2948
|
+
name = "tracing-attributes"
|
|
2949
|
+
version = "0.1.27"
|
|
2950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2951
|
+
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
2952
|
+
dependencies = [
|
|
2953
|
+
"proc-macro2",
|
|
2954
|
+
"quote",
|
|
2955
|
+
"syn 2.0.71",
|
|
2956
|
+
]
|
|
2957
|
+
|
|
2958
|
+
[[package]]
|
|
2959
|
+
name = "tracing-core"
|
|
2960
|
+
version = "0.1.32"
|
|
2961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
2963
|
+
dependencies = [
|
|
2964
|
+
"once_cell",
|
|
2965
|
+
]
|
|
2966
|
+
|
|
2967
|
+
[[package]]
|
|
2968
|
+
name = "try-lock"
|
|
2969
|
+
version = "0.2.5"
|
|
2970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2971
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2972
|
+
|
|
2973
|
+
[[package]]
|
|
2974
|
+
name = "twox-hash"
|
|
2975
|
+
version = "1.6.3"
|
|
2976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2977
|
+
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
|
|
2978
|
+
dependencies = [
|
|
2979
|
+
"cfg-if",
|
|
2980
|
+
"static_assertions",
|
|
2981
|
+
]
|
|
2982
|
+
|
|
2983
|
+
[[package]]
|
|
2984
|
+
name = "typenum"
|
|
2985
|
+
version = "1.17.0"
|
|
2986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2987
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
2988
|
+
|
|
2989
|
+
[[package]]
|
|
2990
|
+
name = "unicode-bidi"
|
|
2991
|
+
version = "0.3.15"
|
|
2992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2993
|
+
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
|
2994
|
+
|
|
2995
|
+
[[package]]
|
|
2996
|
+
name = "unicode-ident"
|
|
2997
|
+
version = "1.0.12"
|
|
2998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2999
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
3000
|
+
|
|
3001
|
+
[[package]]
|
|
3002
|
+
name = "unicode-normalization"
|
|
3003
|
+
version = "0.1.23"
|
|
3004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3005
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
|
3006
|
+
dependencies = [
|
|
3007
|
+
"tinyvec",
|
|
3008
|
+
]
|
|
3009
|
+
|
|
3010
|
+
[[package]]
|
|
3011
|
+
name = "unicode-segmentation"
|
|
3012
|
+
version = "1.11.0"
|
|
3013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3014
|
+
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
|
|
3015
|
+
|
|
3016
|
+
[[package]]
|
|
3017
|
+
name = "unicode-width"
|
|
3018
|
+
version = "0.1.13"
|
|
3019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3020
|
+
checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
|
|
3021
|
+
|
|
3022
|
+
[[package]]
|
|
3023
|
+
name = "unindent"
|
|
3024
|
+
version = "0.2.3"
|
|
3025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3026
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
3027
|
+
|
|
3028
|
+
[[package]]
|
|
3029
|
+
name = "untrusted"
|
|
3030
|
+
version = "0.9.0"
|
|
3031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3032
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3033
|
+
|
|
3034
|
+
[[package]]
|
|
3035
|
+
name = "url"
|
|
3036
|
+
version = "2.5.2"
|
|
3037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3038
|
+
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
|
|
3039
|
+
dependencies = [
|
|
3040
|
+
"form_urlencoded",
|
|
3041
|
+
"idna",
|
|
3042
|
+
"percent-encoding",
|
|
3043
|
+
]
|
|
3044
|
+
|
|
3045
|
+
[[package]]
|
|
3046
|
+
name = "uuid"
|
|
3047
|
+
version = "1.10.0"
|
|
3048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3049
|
+
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
|
|
3050
|
+
dependencies = [
|
|
3051
|
+
"getrandom",
|
|
3052
|
+
]
|
|
3053
|
+
|
|
3054
|
+
[[package]]
|
|
3055
|
+
name = "version_check"
|
|
3056
|
+
version = "0.9.4"
|
|
3057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3058
|
+
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
|
3059
|
+
|
|
3060
|
+
[[package]]
|
|
3061
|
+
name = "walkdir"
|
|
3062
|
+
version = "2.5.0"
|
|
3063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3064
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3065
|
+
dependencies = [
|
|
3066
|
+
"same-file",
|
|
3067
|
+
"winapi-util",
|
|
3068
|
+
]
|
|
3069
|
+
|
|
3070
|
+
[[package]]
|
|
3071
|
+
name = "want"
|
|
3072
|
+
version = "0.3.1"
|
|
3073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3074
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3075
|
+
dependencies = [
|
|
3076
|
+
"try-lock",
|
|
3077
|
+
]
|
|
3078
|
+
|
|
3079
|
+
[[package]]
|
|
3080
|
+
name = "wasi"
|
|
3081
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
3082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3083
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3084
|
+
|
|
3085
|
+
[[package]]
|
|
3086
|
+
name = "wasm-bindgen"
|
|
3087
|
+
version = "0.2.92"
|
|
3088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3089
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
|
3090
|
+
dependencies = [
|
|
3091
|
+
"cfg-if",
|
|
3092
|
+
"wasm-bindgen-macro",
|
|
3093
|
+
]
|
|
3094
|
+
|
|
3095
|
+
[[package]]
|
|
3096
|
+
name = "wasm-bindgen-backend"
|
|
3097
|
+
version = "0.2.92"
|
|
3098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3099
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
|
3100
|
+
dependencies = [
|
|
3101
|
+
"bumpalo",
|
|
3102
|
+
"log",
|
|
3103
|
+
"once_cell",
|
|
3104
|
+
"proc-macro2",
|
|
3105
|
+
"quote",
|
|
3106
|
+
"syn 2.0.71",
|
|
3107
|
+
"wasm-bindgen-shared",
|
|
3108
|
+
]
|
|
3109
|
+
|
|
3110
|
+
[[package]]
|
|
3111
|
+
name = "wasm-bindgen-futures"
|
|
3112
|
+
version = "0.4.42"
|
|
3113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3114
|
+
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
|
|
3115
|
+
dependencies = [
|
|
3116
|
+
"cfg-if",
|
|
3117
|
+
"js-sys",
|
|
3118
|
+
"wasm-bindgen",
|
|
3119
|
+
"web-sys",
|
|
3120
|
+
]
|
|
3121
|
+
|
|
3122
|
+
[[package]]
|
|
3123
|
+
name = "wasm-bindgen-macro"
|
|
3124
|
+
version = "0.2.92"
|
|
3125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3126
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
|
3127
|
+
dependencies = [
|
|
3128
|
+
"quote",
|
|
3129
|
+
"wasm-bindgen-macro-support",
|
|
3130
|
+
]
|
|
3131
|
+
|
|
3132
|
+
[[package]]
|
|
3133
|
+
name = "wasm-bindgen-macro-support"
|
|
3134
|
+
version = "0.2.92"
|
|
3135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3136
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
3137
|
+
dependencies = [
|
|
3138
|
+
"proc-macro2",
|
|
3139
|
+
"quote",
|
|
3140
|
+
"syn 2.0.71",
|
|
3141
|
+
"wasm-bindgen-backend",
|
|
3142
|
+
"wasm-bindgen-shared",
|
|
3143
|
+
]
|
|
3144
|
+
|
|
3145
|
+
[[package]]
|
|
3146
|
+
name = "wasm-bindgen-shared"
|
|
3147
|
+
version = "0.2.92"
|
|
3148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3149
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
|
3150
|
+
|
|
3151
|
+
[[package]]
|
|
3152
|
+
name = "wasm-streams"
|
|
3153
|
+
version = "0.4.0"
|
|
3154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3155
|
+
checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129"
|
|
3156
|
+
dependencies = [
|
|
3157
|
+
"futures-util",
|
|
3158
|
+
"js-sys",
|
|
3159
|
+
"wasm-bindgen",
|
|
3160
|
+
"wasm-bindgen-futures",
|
|
3161
|
+
"web-sys",
|
|
3162
|
+
]
|
|
3163
|
+
|
|
3164
|
+
[[package]]
|
|
3165
|
+
name = "web-sys"
|
|
3166
|
+
version = "0.3.69"
|
|
3167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3168
|
+
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
|
|
3169
|
+
dependencies = [
|
|
3170
|
+
"js-sys",
|
|
3171
|
+
"wasm-bindgen",
|
|
3172
|
+
]
|
|
3173
|
+
|
|
3174
|
+
[[package]]
|
|
3175
|
+
name = "winapi-util"
|
|
3176
|
+
version = "0.1.8"
|
|
3177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3178
|
+
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
|
|
3179
|
+
dependencies = [
|
|
3180
|
+
"windows-sys 0.52.0",
|
|
3181
|
+
]
|
|
3182
|
+
|
|
3183
|
+
[[package]]
|
|
3184
|
+
name = "windows-core"
|
|
3185
|
+
version = "0.52.0"
|
|
3186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3187
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
3188
|
+
dependencies = [
|
|
3189
|
+
"windows-targets 0.52.6",
|
|
3190
|
+
]
|
|
3191
|
+
|
|
3192
|
+
[[package]]
|
|
3193
|
+
name = "windows-sys"
|
|
3194
|
+
version = "0.48.0"
|
|
3195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3196
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
3197
|
+
dependencies = [
|
|
3198
|
+
"windows-targets 0.48.5",
|
|
3199
|
+
]
|
|
3200
|
+
|
|
3201
|
+
[[package]]
|
|
3202
|
+
name = "windows-sys"
|
|
3203
|
+
version = "0.52.0"
|
|
3204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3205
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3206
|
+
dependencies = [
|
|
3207
|
+
"windows-targets 0.52.6",
|
|
3208
|
+
]
|
|
3209
|
+
|
|
3210
|
+
[[package]]
|
|
3211
|
+
name = "windows-targets"
|
|
3212
|
+
version = "0.48.5"
|
|
3213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3214
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
3215
|
+
dependencies = [
|
|
3216
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
3217
|
+
"windows_aarch64_msvc 0.48.5",
|
|
3218
|
+
"windows_i686_gnu 0.48.5",
|
|
3219
|
+
"windows_i686_msvc 0.48.5",
|
|
3220
|
+
"windows_x86_64_gnu 0.48.5",
|
|
3221
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
3222
|
+
"windows_x86_64_msvc 0.48.5",
|
|
3223
|
+
]
|
|
3224
|
+
|
|
3225
|
+
[[package]]
|
|
3226
|
+
name = "windows-targets"
|
|
3227
|
+
version = "0.52.6"
|
|
3228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3229
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3230
|
+
dependencies = [
|
|
3231
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3232
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3233
|
+
"windows_i686_gnu 0.52.6",
|
|
3234
|
+
"windows_i686_gnullvm",
|
|
3235
|
+
"windows_i686_msvc 0.52.6",
|
|
3236
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3237
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3238
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3239
|
+
]
|
|
3240
|
+
|
|
3241
|
+
[[package]]
|
|
3242
|
+
name = "windows_aarch64_gnullvm"
|
|
3243
|
+
version = "0.48.5"
|
|
3244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3245
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
3246
|
+
|
|
3247
|
+
[[package]]
|
|
3248
|
+
name = "windows_aarch64_gnullvm"
|
|
3249
|
+
version = "0.52.6"
|
|
3250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3251
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3252
|
+
|
|
3253
|
+
[[package]]
|
|
3254
|
+
name = "windows_aarch64_msvc"
|
|
3255
|
+
version = "0.48.5"
|
|
3256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3257
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
3258
|
+
|
|
3259
|
+
[[package]]
|
|
3260
|
+
name = "windows_aarch64_msvc"
|
|
3261
|
+
version = "0.52.6"
|
|
3262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3263
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3264
|
+
|
|
3265
|
+
[[package]]
|
|
3266
|
+
name = "windows_i686_gnu"
|
|
3267
|
+
version = "0.48.5"
|
|
3268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3269
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
3270
|
+
|
|
3271
|
+
[[package]]
|
|
3272
|
+
name = "windows_i686_gnu"
|
|
3273
|
+
version = "0.52.6"
|
|
3274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3275
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3276
|
+
|
|
3277
|
+
[[package]]
|
|
3278
|
+
name = "windows_i686_gnullvm"
|
|
3279
|
+
version = "0.52.6"
|
|
3280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3281
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3282
|
+
|
|
3283
|
+
[[package]]
|
|
3284
|
+
name = "windows_i686_msvc"
|
|
3285
|
+
version = "0.48.5"
|
|
3286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3287
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
3288
|
+
|
|
3289
|
+
[[package]]
|
|
3290
|
+
name = "windows_i686_msvc"
|
|
3291
|
+
version = "0.52.6"
|
|
3292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3293
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3294
|
+
|
|
3295
|
+
[[package]]
|
|
3296
|
+
name = "windows_x86_64_gnu"
|
|
3297
|
+
version = "0.48.5"
|
|
3298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3299
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
3300
|
+
|
|
3301
|
+
[[package]]
|
|
3302
|
+
name = "windows_x86_64_gnu"
|
|
3303
|
+
version = "0.52.6"
|
|
3304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3305
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3306
|
+
|
|
3307
|
+
[[package]]
|
|
3308
|
+
name = "windows_x86_64_gnullvm"
|
|
3309
|
+
version = "0.48.5"
|
|
3310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3311
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
3312
|
+
|
|
3313
|
+
[[package]]
|
|
3314
|
+
name = "windows_x86_64_gnullvm"
|
|
3315
|
+
version = "0.52.6"
|
|
3316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3317
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3318
|
+
|
|
3319
|
+
[[package]]
|
|
3320
|
+
name = "windows_x86_64_msvc"
|
|
3321
|
+
version = "0.48.5"
|
|
3322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3323
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
3324
|
+
|
|
3325
|
+
[[package]]
|
|
3326
|
+
name = "windows_x86_64_msvc"
|
|
3327
|
+
version = "0.52.6"
|
|
3328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3329
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3330
|
+
|
|
3331
|
+
[[package]]
|
|
3332
|
+
name = "winreg"
|
|
3333
|
+
version = "0.52.0"
|
|
3334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3335
|
+
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
|
|
3336
|
+
dependencies = [
|
|
3337
|
+
"cfg-if",
|
|
3338
|
+
"windows-sys 0.48.0",
|
|
3339
|
+
]
|
|
3340
|
+
|
|
3341
|
+
[[package]]
|
|
3342
|
+
name = "xz2"
|
|
3343
|
+
version = "0.1.7"
|
|
3344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3345
|
+
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
3346
|
+
dependencies = [
|
|
3347
|
+
"lzma-sys",
|
|
3348
|
+
]
|
|
3349
|
+
|
|
3350
|
+
[[package]]
|
|
3351
|
+
name = "zerocopy"
|
|
3352
|
+
version = "0.7.35"
|
|
3353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3354
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
3355
|
+
dependencies = [
|
|
3356
|
+
"zerocopy-derive",
|
|
3357
|
+
]
|
|
3358
|
+
|
|
3359
|
+
[[package]]
|
|
3360
|
+
name = "zerocopy-derive"
|
|
3361
|
+
version = "0.7.35"
|
|
3362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3363
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
3364
|
+
dependencies = [
|
|
3365
|
+
"proc-macro2",
|
|
3366
|
+
"quote",
|
|
3367
|
+
"syn 2.0.71",
|
|
3368
|
+
]
|
|
3369
|
+
|
|
3370
|
+
[[package]]
|
|
3371
|
+
name = "zeroize"
|
|
3372
|
+
version = "1.8.1"
|
|
3373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3374
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
3375
|
+
|
|
3376
|
+
[[package]]
|
|
3377
|
+
name = "zip"
|
|
3378
|
+
version = "0.6.6"
|
|
3379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3380
|
+
checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
|
|
3381
|
+
dependencies = [
|
|
3382
|
+
"aes",
|
|
3383
|
+
"byteorder",
|
|
3384
|
+
"bzip2",
|
|
3385
|
+
"constant_time_eq 0.1.5",
|
|
3386
|
+
"crc32fast",
|
|
3387
|
+
"crossbeam-utils",
|
|
3388
|
+
"flate2",
|
|
3389
|
+
"hmac",
|
|
3390
|
+
"pbkdf2",
|
|
3391
|
+
"sha1",
|
|
3392
|
+
"zstd 0.11.2+zstd.1.5.2",
|
|
3393
|
+
]
|
|
3394
|
+
|
|
3395
|
+
[[package]]
|
|
3396
|
+
name = "zip-extract"
|
|
3397
|
+
version = "0.1.3"
|
|
3398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3399
|
+
checksum = "e109e5a291403b4c1e514d39f8a22d3f98d257e691a52bb1f16051bb1ffed63e"
|
|
3400
|
+
dependencies = [
|
|
3401
|
+
"log",
|
|
3402
|
+
"thiserror",
|
|
3403
|
+
"zip",
|
|
3404
|
+
]
|
|
3405
|
+
|
|
3406
|
+
[[package]]
|
|
3407
|
+
name = "zstd"
|
|
3408
|
+
version = "0.11.2+zstd.1.5.2"
|
|
3409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3410
|
+
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
|
|
3411
|
+
dependencies = [
|
|
3412
|
+
"zstd-safe 5.0.2+zstd.1.5.2",
|
|
3413
|
+
]
|
|
3414
|
+
|
|
3415
|
+
[[package]]
|
|
3416
|
+
name = "zstd"
|
|
3417
|
+
version = "0.13.2"
|
|
3418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3419
|
+
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
|
3420
|
+
dependencies = [
|
|
3421
|
+
"zstd-safe 7.2.0",
|
|
3422
|
+
]
|
|
3423
|
+
|
|
3424
|
+
[[package]]
|
|
3425
|
+
name = "zstd-safe"
|
|
3426
|
+
version = "5.0.2+zstd.1.5.2"
|
|
3427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3428
|
+
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
|
|
3429
|
+
dependencies = [
|
|
3430
|
+
"libc",
|
|
3431
|
+
"zstd-sys",
|
|
3432
|
+
]
|
|
3433
|
+
|
|
3434
|
+
[[package]]
|
|
3435
|
+
name = "zstd-safe"
|
|
3436
|
+
version = "7.2.0"
|
|
3437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3438
|
+
checksum = "fa556e971e7b568dc775c136fc9de8c779b1c2fc3a63defaafadffdbd3181afa"
|
|
3439
|
+
dependencies = [
|
|
3440
|
+
"zstd-sys",
|
|
3441
|
+
]
|
|
3442
|
+
|
|
3443
|
+
[[package]]
|
|
3444
|
+
name = "zstd-sys"
|
|
3445
|
+
version = "2.0.11+zstd.1.5.6"
|
|
3446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3447
|
+
checksum = "75652c55c0b6f3e6f12eb786fe1bc960396bf05a1eb3bf1f3691c3610ac2e6d4"
|
|
3448
|
+
dependencies = [
|
|
3449
|
+
"cc",
|
|
3450
|
+
"pkg-config",
|
|
3451
|
+
]
|