bundlebase 0.1.2__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.
- bundlebase-0.1.2/Cargo.lock +4954 -0
- bundlebase-0.1.2/Cargo.toml +33 -0
- bundlebase-0.1.2/LICENSE +201 -0
- bundlebase-0.1.2/PKG-INFO +155 -0
- bundlebase-0.1.2/README.md +147 -0
- bundlebase-0.1.2/pyproject.toml +65 -0
- bundlebase-0.1.2/python/src/bundlebase/__init__.py +227 -0
- bundlebase-0.1.2/python/src/bundlebase/__init__.pyi +949 -0
- bundlebase-0.1.2/python/src/bundlebase/_loop_manager.py +129 -0
- bundlebase-0.1.2/python/src/bundlebase/chain.py +387 -0
- bundlebase-0.1.2/python/src/bundlebase/conversion.py +313 -0
- bundlebase-0.1.2/python/src/bundlebase/progress.py +220 -0
- bundlebase-0.1.2/python/src/bundlebase/sync.py +458 -0
- bundlebase-0.1.2/rust/bundlebase/Cargo.toml +41 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/builder.rs +1116 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/column_lineage.rs +182 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/commit.rs +737 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/facade.rs +60 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/init.rs +20 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/attach_block.rs +319 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/define_function.rs +140 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/define_index.rs +83 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/define_pack.rs +40 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/filter.rs +177 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/index_blocks.rs +282 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/join.rs +170 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/query.rs +301 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/rebuild_index.rs +130 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/remove_columns.rs +95 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/rename_column.rs +117 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/select.rs +128 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/serde_util.rs +887 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/set_description.rs +54 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation/set_name.rs +54 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/operation.rs +309 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle/sql.rs +580 -0
- bundlebase-0.1.2/rust/bundlebase/src/bundle.rs +595 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/data_block.rs +215 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/data_pack.rs +66 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/object_id.rs +186 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/pack_join.rs +47 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/plugin/csv_reader.rs +637 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/plugin/file_reader.rs +203 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/plugin/function_reader.rs +333 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/plugin/json_reader.rs +351 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/plugin/mock.rs +147 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/plugin/parquet_reader.rs +447 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/plugin.rs +36 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/reader_factory.rs +56 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/row_id.rs +258 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/rowid_batch.rs +79 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/rowid_offset_data_source.rs +553 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/rowid_provider.rs +63 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/rowid_stream.rs +103 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader/versioned_blockid.rs +87 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_reader.rs +101 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_storage/object_store_dir.rs +206 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_storage/object_store_file.rs +330 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_storage/util.rs +130 -0
- bundlebase-0.1.2/rust/bundlebase/src/data_storage.rs +205 -0
- bundlebase-0.1.2/rust/bundlebase/src/functions/function_batch_generator.rs +36 -0
- bundlebase-0.1.2/rust/bundlebase/src/functions/function_datasource.rs +136 -0
- bundlebase-0.1.2/rust/bundlebase/src/functions/function_impl.rs +13 -0
- bundlebase-0.1.2/rust/bundlebase/src/functions/function_registry.rs +251 -0
- bundlebase-0.1.2/rust/bundlebase/src/functions/static_impl.rs +47 -0
- bundlebase-0.1.2/rust/bundlebase/src/functions.rs +10 -0
- bundlebase-0.1.2/rust/bundlebase/src/index/column_index.rs +688 -0
- bundlebase-0.1.2/rust/bundlebase/src/index/filter_analyzer.rs +251 -0
- bundlebase-0.1.2/rust/bundlebase/src/index/index_definition.rs +44 -0
- bundlebase-0.1.2/rust/bundlebase/src/index/index_scan_exec.rs +109 -0
- bundlebase-0.1.2/rust/bundlebase/src/index/index_selector.rs +226 -0
- bundlebase-0.1.2/rust/bundlebase/src/index/indexed_blocks.rs +42 -0
- bundlebase-0.1.2/rust/bundlebase/src/index/rowid_index.rs +310 -0
- bundlebase-0.1.2/rust/bundlebase/src/index.rs +14 -0
- bundlebase-0.1.2/rust/bundlebase/src/lib.rs +35 -0
- bundlebase-0.1.2/rust/bundlebase/src/progress/logging.rs +147 -0
- bundlebase-0.1.2/rust/bundlebase/src/progress/mock.rs +258 -0
- bundlebase-0.1.2/rust/bundlebase/src/progress/registry.rs +227 -0
- bundlebase-0.1.2/rust/bundlebase/src/progress.rs +355 -0
- bundlebase-0.1.2/rust/bundlebase/src/schema_provider/block_schema_provider.rs +215 -0
- bundlebase-0.1.2/rust/bundlebase/src/schema_provider/bundle_schema_provider.rs +110 -0
- bundlebase-0.1.2/rust/bundlebase/src/schema_provider/pack_schema_provider.rs +241 -0
- bundlebase-0.1.2/rust/bundlebase/src/schema_provider/pack_union_table.rs +95 -0
- bundlebase-0.1.2/rust/bundlebase/src/schema_provider.rs +9 -0
- bundlebase-0.1.2/rust/bundlebase/src/test_utils.rs +129 -0
- bundlebase-0.1.2/rust/bundlebase/src/versioning.rs +150 -0
- bundlebase-0.1.2/rust/bundlebase/tests/basic_e2e.rs +656 -0
- bundlebase-0.1.2/rust/bundlebase/tests/blocks_e2e.rs +56 -0
- bundlebase-0.1.2/rust/bundlebase/tests/building_e2e.rs +152 -0
- bundlebase-0.1.2/rust/bundlebase/tests/bundle_schema_e2e.rs +79 -0
- bundlebase-0.1.2/rust/bundlebase/tests/common/mod.rs +43 -0
- bundlebase-0.1.2/rust/bundlebase/tests/filters_selects_e2e.rs +207 -0
- bundlebase-0.1.2/rust/bundlebase/tests/functions_e2e.rs +344 -0
- bundlebase-0.1.2/rust/bundlebase/tests/index_e2e.rs +201 -0
- bundlebase-0.1.2/rust/bundlebase/tests/join_e2e.rs +128 -0
- bundlebase-0.1.2/rust/bundlebase/tests/operations_e2e.rs +211 -0
- bundlebase-0.1.2/rust/bundlebase/tests/queries_e2e.rs +144 -0
- bundlebase-0.1.2/rust/bundlebase/tests/schema_e2e.rs +221 -0
- bundlebase-0.1.2/rust/bundlebase-python/Cargo.toml +38 -0
- bundlebase-0.1.2/rust/bundlebase-python/src/builder.rs +781 -0
- bundlebase-0.1.2/rust/bundlebase-python/src/bundle.rs +149 -0
- bundlebase-0.1.2/rust/bundlebase-python/src/commit.rs +72 -0
- bundlebase-0.1.2/rust/bundlebase-python/src/data_generator.rs +51 -0
- bundlebase-0.1.2/rust/bundlebase-python/src/function_impl.rs +38 -0
- bundlebase-0.1.2/rust/bundlebase-python/src/lib.rs +82 -0
- bundlebase-0.1.2/rust/bundlebase-python/src/operation.rs +51 -0
- bundlebase-0.1.2/rust/bundlebase-python/src/progress.rs +168 -0
- bundlebase-0.1.2/rust/bundlebase-python/src/record_batch_stream.rs +143 -0
- bundlebase-0.1.2/rust/bundlebase-python/src/schema.rs +135 -0
- bundlebase-0.1.2/rust/bundlebase-python/src/session_context.rs +38 -0
- bundlebase-0.1.2/rust/bundlebase-python/src/utils.rs +49 -0
|
@@ -0,0 +1,4954 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "ahash"
|
|
13
|
+
version = "0.8.12"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"const-random",
|
|
19
|
+
"getrandom 0.3.4",
|
|
20
|
+
"once_cell",
|
|
21
|
+
"version_check",
|
|
22
|
+
"zerocopy",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "aho-corasick"
|
|
27
|
+
version = "1.1.4"
|
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
30
|
+
dependencies = [
|
|
31
|
+
"memchr",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "alloc-no-stdlib"
|
|
36
|
+
version = "2.0.4"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "alloc-stdlib"
|
|
42
|
+
version = "0.2.2"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"alloc-no-stdlib",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "allocator-api2"
|
|
51
|
+
version = "0.2.21"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "android_system_properties"
|
|
57
|
+
version = "0.1.5"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
60
|
+
dependencies = [
|
|
61
|
+
"libc",
|
|
62
|
+
]
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "anstream"
|
|
66
|
+
version = "0.6.21"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
69
|
+
dependencies = [
|
|
70
|
+
"anstyle",
|
|
71
|
+
"anstyle-parse",
|
|
72
|
+
"anstyle-query",
|
|
73
|
+
"anstyle-wincon",
|
|
74
|
+
"colorchoice",
|
|
75
|
+
"is_terminal_polyfill",
|
|
76
|
+
"utf8parse",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "anstyle"
|
|
81
|
+
version = "1.0.13"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "anstyle-parse"
|
|
87
|
+
version = "0.2.7"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"utf8parse",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "anstyle-query"
|
|
96
|
+
version = "1.1.5"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"windows-sys 0.61.2",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "anstyle-wincon"
|
|
105
|
+
version = "3.0.11"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"anstyle",
|
|
110
|
+
"once_cell_polyfill",
|
|
111
|
+
"windows-sys 0.61.2",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "anyhow"
|
|
116
|
+
version = "1.0.100"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "apache-avro"
|
|
122
|
+
version = "0.20.0"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "3a033b4ced7c585199fb78ef50fca7fe2f444369ec48080c5fd072efa1a03cc7"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"bigdecimal",
|
|
127
|
+
"bon",
|
|
128
|
+
"bzip2 0.6.1",
|
|
129
|
+
"crc32fast",
|
|
130
|
+
"digest",
|
|
131
|
+
"log",
|
|
132
|
+
"miniz_oxide",
|
|
133
|
+
"num-bigint",
|
|
134
|
+
"quad-rand",
|
|
135
|
+
"rand",
|
|
136
|
+
"regex-lite",
|
|
137
|
+
"serde",
|
|
138
|
+
"serde_bytes",
|
|
139
|
+
"serde_json",
|
|
140
|
+
"snap",
|
|
141
|
+
"strum 0.27.2",
|
|
142
|
+
"strum_macros 0.27.2",
|
|
143
|
+
"thiserror 2.0.17",
|
|
144
|
+
"uuid",
|
|
145
|
+
"xz2",
|
|
146
|
+
"zstd",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "ar_archive_writer"
|
|
151
|
+
version = "0.2.0"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a"
|
|
154
|
+
dependencies = [
|
|
155
|
+
"object",
|
|
156
|
+
]
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "arc-swap"
|
|
160
|
+
version = "1.7.1"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "arrayref"
|
|
166
|
+
version = "0.3.9"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "arrayvec"
|
|
172
|
+
version = "0.7.6"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "arrow"
|
|
178
|
+
version = "57.1.0"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "cb372a7cbcac02a35d3fb7b3fc1f969ec078e871f9bb899bf00a2e1809bec8a3"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"arrow-arith",
|
|
183
|
+
"arrow-array",
|
|
184
|
+
"arrow-buffer",
|
|
185
|
+
"arrow-cast",
|
|
186
|
+
"arrow-csv",
|
|
187
|
+
"arrow-data",
|
|
188
|
+
"arrow-ipc",
|
|
189
|
+
"arrow-json",
|
|
190
|
+
"arrow-ord",
|
|
191
|
+
"arrow-pyarrow",
|
|
192
|
+
"arrow-row",
|
|
193
|
+
"arrow-schema",
|
|
194
|
+
"arrow-select",
|
|
195
|
+
"arrow-string",
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "arrow-arith"
|
|
200
|
+
version = "57.1.0"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "0f377dcd19e440174596d83deb49cd724886d91060c07fec4f67014ef9d54049"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"arrow-array",
|
|
205
|
+
"arrow-buffer",
|
|
206
|
+
"arrow-data",
|
|
207
|
+
"arrow-schema",
|
|
208
|
+
"chrono",
|
|
209
|
+
"num-traits",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "arrow-array"
|
|
214
|
+
version = "57.1.0"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "a23eaff85a44e9fa914660fb0d0bb00b79c4a3d888b5334adb3ea4330c84f002"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"ahash",
|
|
219
|
+
"arrow-buffer",
|
|
220
|
+
"arrow-data",
|
|
221
|
+
"arrow-schema",
|
|
222
|
+
"chrono",
|
|
223
|
+
"chrono-tz",
|
|
224
|
+
"half",
|
|
225
|
+
"hashbrown 0.16.1",
|
|
226
|
+
"num-complex",
|
|
227
|
+
"num-integer",
|
|
228
|
+
"num-traits",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "arrow-buffer"
|
|
233
|
+
version = "57.1.0"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "a2819d893750cb3380ab31ebdc8c68874dd4429f90fd09180f3c93538bd21626"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"bytes",
|
|
238
|
+
"half",
|
|
239
|
+
"num-bigint",
|
|
240
|
+
"num-traits",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "arrow-cast"
|
|
245
|
+
version = "57.1.0"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "e3d131abb183f80c450d4591dc784f8d7750c50c6e2bc3fcaad148afc8361271"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"arrow-array",
|
|
250
|
+
"arrow-buffer",
|
|
251
|
+
"arrow-data",
|
|
252
|
+
"arrow-ord",
|
|
253
|
+
"arrow-schema",
|
|
254
|
+
"arrow-select",
|
|
255
|
+
"atoi",
|
|
256
|
+
"base64",
|
|
257
|
+
"chrono",
|
|
258
|
+
"comfy-table",
|
|
259
|
+
"half",
|
|
260
|
+
"lexical-core",
|
|
261
|
+
"num-traits",
|
|
262
|
+
"ryu",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "arrow-csv"
|
|
267
|
+
version = "57.1.0"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "2275877a0e5e7e7c76954669366c2aa1a829e340ab1f612e647507860906fb6b"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"arrow-array",
|
|
272
|
+
"arrow-cast",
|
|
273
|
+
"arrow-schema",
|
|
274
|
+
"chrono",
|
|
275
|
+
"csv",
|
|
276
|
+
"csv-core",
|
|
277
|
+
"regex",
|
|
278
|
+
]
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "arrow-data"
|
|
282
|
+
version = "57.1.0"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "05738f3d42cb922b9096f7786f606fcb8669260c2640df8490533bb2fa38c9d3"
|
|
285
|
+
dependencies = [
|
|
286
|
+
"arrow-buffer",
|
|
287
|
+
"arrow-schema",
|
|
288
|
+
"half",
|
|
289
|
+
"num-integer",
|
|
290
|
+
"num-traits",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "arrow-flight"
|
|
295
|
+
version = "57.1.0"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "8b5f57c3d39d1b1b7c1376a772ea86a131e7da310aed54ebea9363124bb885e3"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"arrow-array",
|
|
300
|
+
"arrow-buffer",
|
|
301
|
+
"arrow-cast",
|
|
302
|
+
"arrow-ipc",
|
|
303
|
+
"arrow-schema",
|
|
304
|
+
"base64",
|
|
305
|
+
"bytes",
|
|
306
|
+
"futures",
|
|
307
|
+
"prost",
|
|
308
|
+
"prost-types",
|
|
309
|
+
"tonic",
|
|
310
|
+
"tonic-prost",
|
|
311
|
+
]
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "arrow-ipc"
|
|
315
|
+
version = "57.1.0"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "3d09446e8076c4b3f235603d9ea7c5494e73d441b01cd61fb33d7254c11964b3"
|
|
318
|
+
dependencies = [
|
|
319
|
+
"arrow-array",
|
|
320
|
+
"arrow-buffer",
|
|
321
|
+
"arrow-data",
|
|
322
|
+
"arrow-schema",
|
|
323
|
+
"arrow-select",
|
|
324
|
+
"flatbuffers",
|
|
325
|
+
"lz4_flex",
|
|
326
|
+
"zstd",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "arrow-json"
|
|
331
|
+
version = "57.1.0"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "371ffd66fa77f71d7628c63f209c9ca5341081051aa32f9c8020feb0def787c0"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"arrow-array",
|
|
336
|
+
"arrow-buffer",
|
|
337
|
+
"arrow-cast",
|
|
338
|
+
"arrow-data",
|
|
339
|
+
"arrow-schema",
|
|
340
|
+
"chrono",
|
|
341
|
+
"half",
|
|
342
|
+
"indexmap",
|
|
343
|
+
"itoa",
|
|
344
|
+
"lexical-core",
|
|
345
|
+
"memchr",
|
|
346
|
+
"num-traits",
|
|
347
|
+
"ryu",
|
|
348
|
+
"serde_core",
|
|
349
|
+
"serde_json",
|
|
350
|
+
"simdutf8",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "arrow-ord"
|
|
355
|
+
version = "57.1.0"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "cbc94fc7adec5d1ba9e8cd1b1e8d6f72423b33fe978bf1f46d970fafab787521"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"arrow-array",
|
|
360
|
+
"arrow-buffer",
|
|
361
|
+
"arrow-data",
|
|
362
|
+
"arrow-schema",
|
|
363
|
+
"arrow-select",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "arrow-pyarrow"
|
|
368
|
+
version = "57.1.0"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "fbd810e3997bae72f58cda57231ccb0a2fda07911ca1b0a5718cbf9379abb297"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"arrow-array",
|
|
373
|
+
"arrow-data",
|
|
374
|
+
"arrow-schema",
|
|
375
|
+
"pyo3",
|
|
376
|
+
]
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "arrow-row"
|
|
380
|
+
version = "57.1.0"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "169676f317157dc079cc5def6354d16db63d8861d61046d2f3883268ced6f99f"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"arrow-array",
|
|
385
|
+
"arrow-buffer",
|
|
386
|
+
"arrow-data",
|
|
387
|
+
"arrow-schema",
|
|
388
|
+
"half",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "arrow-schema"
|
|
393
|
+
version = "57.1.0"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "d27609cd7dd45f006abae27995c2729ef6f4b9361cde1ddd019dc31a5aa017e0"
|
|
396
|
+
dependencies = [
|
|
397
|
+
"bitflags",
|
|
398
|
+
"serde",
|
|
399
|
+
"serde_core",
|
|
400
|
+
"serde_json",
|
|
401
|
+
]
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "arrow-select"
|
|
405
|
+
version = "57.1.0"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "ae980d021879ea119dd6e2a13912d81e64abed372d53163e804dfe84639d8010"
|
|
408
|
+
dependencies = [
|
|
409
|
+
"ahash",
|
|
410
|
+
"arrow-array",
|
|
411
|
+
"arrow-buffer",
|
|
412
|
+
"arrow-data",
|
|
413
|
+
"arrow-schema",
|
|
414
|
+
"num-traits",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "arrow-string"
|
|
419
|
+
version = "57.1.0"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "cf35e8ef49dcf0c5f6d175edee6b8af7b45611805333129c541a8b89a0fc0534"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"arrow-array",
|
|
424
|
+
"arrow-buffer",
|
|
425
|
+
"arrow-data",
|
|
426
|
+
"arrow-schema",
|
|
427
|
+
"arrow-select",
|
|
428
|
+
"memchr",
|
|
429
|
+
"num-traits",
|
|
430
|
+
"regex",
|
|
431
|
+
"regex-syntax",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "async-compression"
|
|
436
|
+
version = "0.4.19"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "06575e6a9673580f52661c92107baabffbf41e2141373441cbcdc47cb733003c"
|
|
439
|
+
dependencies = [
|
|
440
|
+
"bzip2 0.5.2",
|
|
441
|
+
"flate2",
|
|
442
|
+
"futures-core",
|
|
443
|
+
"memchr",
|
|
444
|
+
"pin-project-lite",
|
|
445
|
+
"tokio",
|
|
446
|
+
"xz2",
|
|
447
|
+
"zstd",
|
|
448
|
+
"zstd-safe",
|
|
449
|
+
]
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "async-stream"
|
|
453
|
+
version = "0.3.6"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"async-stream-impl",
|
|
458
|
+
"futures-core",
|
|
459
|
+
"pin-project-lite",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "async-stream-impl"
|
|
464
|
+
version = "0.3.6"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"proc-macro2",
|
|
469
|
+
"quote",
|
|
470
|
+
"syn",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "async-trait"
|
|
475
|
+
version = "0.1.89"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"proc-macro2",
|
|
480
|
+
"quote",
|
|
481
|
+
"syn",
|
|
482
|
+
]
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "atoi"
|
|
486
|
+
version = "2.0.0"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"num-traits",
|
|
491
|
+
]
|
|
492
|
+
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "atomic-waker"
|
|
495
|
+
version = "1.1.2"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "autocfg"
|
|
501
|
+
version = "1.5.0"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
504
|
+
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "axum"
|
|
507
|
+
version = "0.8.8"
|
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
+
checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
|
|
510
|
+
dependencies = [
|
|
511
|
+
"axum-core",
|
|
512
|
+
"bytes",
|
|
513
|
+
"futures-util",
|
|
514
|
+
"http",
|
|
515
|
+
"http-body",
|
|
516
|
+
"http-body-util",
|
|
517
|
+
"itoa",
|
|
518
|
+
"matchit",
|
|
519
|
+
"memchr",
|
|
520
|
+
"mime",
|
|
521
|
+
"percent-encoding",
|
|
522
|
+
"pin-project-lite",
|
|
523
|
+
"serde_core",
|
|
524
|
+
"sync_wrapper",
|
|
525
|
+
"tower",
|
|
526
|
+
"tower-layer",
|
|
527
|
+
"tower-service",
|
|
528
|
+
]
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "axum-core"
|
|
532
|
+
version = "0.5.5"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"bytes",
|
|
537
|
+
"futures-core",
|
|
538
|
+
"http",
|
|
539
|
+
"http-body",
|
|
540
|
+
"http-body-util",
|
|
541
|
+
"mime",
|
|
542
|
+
"pin-project-lite",
|
|
543
|
+
"sync_wrapper",
|
|
544
|
+
"tower-layer",
|
|
545
|
+
"tower-service",
|
|
546
|
+
]
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "base64"
|
|
550
|
+
version = "0.22.1"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "bigdecimal"
|
|
556
|
+
version = "0.4.9"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "560f42649de9fa436b73517378a147ec21f6c997a546581df4b4b31677828934"
|
|
559
|
+
dependencies = [
|
|
560
|
+
"autocfg",
|
|
561
|
+
"libm",
|
|
562
|
+
"num-bigint",
|
|
563
|
+
"num-integer",
|
|
564
|
+
"num-traits",
|
|
565
|
+
"serde",
|
|
566
|
+
]
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "bitflags"
|
|
570
|
+
version = "2.10.0"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
573
|
+
dependencies = [
|
|
574
|
+
"serde_core",
|
|
575
|
+
]
|
|
576
|
+
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "blake2"
|
|
579
|
+
version = "0.10.6"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
|
582
|
+
dependencies = [
|
|
583
|
+
"digest",
|
|
584
|
+
]
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "blake3"
|
|
588
|
+
version = "1.8.2"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
|
|
591
|
+
dependencies = [
|
|
592
|
+
"arrayref",
|
|
593
|
+
"arrayvec",
|
|
594
|
+
"cc",
|
|
595
|
+
"cfg-if",
|
|
596
|
+
"constant_time_eq",
|
|
597
|
+
]
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "block-buffer"
|
|
601
|
+
version = "0.10.4"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
604
|
+
dependencies = [
|
|
605
|
+
"generic-array",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "bon"
|
|
610
|
+
version = "3.8.1"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "ebeb9aaf9329dff6ceb65c689ca3db33dbf15f324909c60e4e5eef5701ce31b1"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"bon-macros",
|
|
615
|
+
"rustversion",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "bon-macros"
|
|
620
|
+
version = "3.8.1"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "77e9d642a7e3a318e37c2c9427b5a6a48aa1ad55dcd986f3034ab2239045a645"
|
|
623
|
+
dependencies = [
|
|
624
|
+
"darling",
|
|
625
|
+
"ident_case",
|
|
626
|
+
"prettyplease",
|
|
627
|
+
"proc-macro2",
|
|
628
|
+
"quote",
|
|
629
|
+
"rustversion",
|
|
630
|
+
"syn",
|
|
631
|
+
]
|
|
632
|
+
|
|
633
|
+
[[package]]
|
|
634
|
+
name = "brotli"
|
|
635
|
+
version = "8.0.2"
|
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
+
checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
|
|
638
|
+
dependencies = [
|
|
639
|
+
"alloc-no-stdlib",
|
|
640
|
+
"alloc-stdlib",
|
|
641
|
+
"brotli-decompressor",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "brotli-decompressor"
|
|
646
|
+
version = "5.0.0"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"alloc-no-stdlib",
|
|
651
|
+
"alloc-stdlib",
|
|
652
|
+
]
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "bumpalo"
|
|
656
|
+
version = "3.19.1"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "bundlebase"
|
|
662
|
+
version = "0.1.2"
|
|
663
|
+
dependencies = [
|
|
664
|
+
"arrow",
|
|
665
|
+
"arrow-schema",
|
|
666
|
+
"async-trait",
|
|
667
|
+
"bytes",
|
|
668
|
+
"chrono",
|
|
669
|
+
"datafusion",
|
|
670
|
+
"env_logger",
|
|
671
|
+
"futures",
|
|
672
|
+
"hex",
|
|
673
|
+
"lazy_static",
|
|
674
|
+
"log",
|
|
675
|
+
"object_store",
|
|
676
|
+
"parking_lot",
|
|
677
|
+
"parquet",
|
|
678
|
+
"rand",
|
|
679
|
+
"regex",
|
|
680
|
+
"rstest",
|
|
681
|
+
"serde",
|
|
682
|
+
"serde_json",
|
|
683
|
+
"serde_yaml",
|
|
684
|
+
"sha2",
|
|
685
|
+
"tempfile",
|
|
686
|
+
"tokio",
|
|
687
|
+
"url",
|
|
688
|
+
"uuid",
|
|
689
|
+
]
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "bundlebase-cli"
|
|
693
|
+
version = "0.1.2"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"anyhow",
|
|
696
|
+
"arrow",
|
|
697
|
+
"arrow-flight",
|
|
698
|
+
"arrow-schema",
|
|
699
|
+
"async-stream",
|
|
700
|
+
"bundlebase",
|
|
701
|
+
"bytes",
|
|
702
|
+
"clap",
|
|
703
|
+
"comfy-table",
|
|
704
|
+
"datafusion",
|
|
705
|
+
"futures",
|
|
706
|
+
"indicatif",
|
|
707
|
+
"parking_lot",
|
|
708
|
+
"reedline",
|
|
709
|
+
"serde",
|
|
710
|
+
"serde_yaml",
|
|
711
|
+
"tokio",
|
|
712
|
+
"tonic",
|
|
713
|
+
"tracing",
|
|
714
|
+
"tracing-log",
|
|
715
|
+
"tracing-subscriber",
|
|
716
|
+
]
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "bundlebase-python"
|
|
720
|
+
version = "0.1.2"
|
|
721
|
+
dependencies = [
|
|
722
|
+
"arrow",
|
|
723
|
+
"arrow-schema",
|
|
724
|
+
"bundlebase",
|
|
725
|
+
"datafusion",
|
|
726
|
+
"futures",
|
|
727
|
+
"parking_lot",
|
|
728
|
+
"pyo3",
|
|
729
|
+
"pyo3-async-runtimes",
|
|
730
|
+
"pyo3-log",
|
|
731
|
+
"tokio",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "byteorder"
|
|
736
|
+
version = "1.5.0"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "bytes"
|
|
742
|
+
version = "1.11.0"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "bzip2"
|
|
748
|
+
version = "0.5.2"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
|
|
751
|
+
dependencies = [
|
|
752
|
+
"bzip2-sys",
|
|
753
|
+
]
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "bzip2"
|
|
757
|
+
version = "0.6.1"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c"
|
|
760
|
+
dependencies = [
|
|
761
|
+
"libbz2-rs-sys",
|
|
762
|
+
]
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "bzip2-sys"
|
|
766
|
+
version = "0.1.13+1.0.8"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
769
|
+
dependencies = [
|
|
770
|
+
"cc",
|
|
771
|
+
"pkg-config",
|
|
772
|
+
]
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "cc"
|
|
776
|
+
version = "1.2.50"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c"
|
|
779
|
+
dependencies = [
|
|
780
|
+
"find-msvc-tools",
|
|
781
|
+
"jobserver",
|
|
782
|
+
"libc",
|
|
783
|
+
"shlex",
|
|
784
|
+
]
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "cfg-if"
|
|
788
|
+
version = "1.0.4"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "cfg_aliases"
|
|
794
|
+
version = "0.2.1"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "chrono"
|
|
800
|
+
version = "0.4.42"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
803
|
+
dependencies = [
|
|
804
|
+
"iana-time-zone",
|
|
805
|
+
"js-sys",
|
|
806
|
+
"num-traits",
|
|
807
|
+
"serde",
|
|
808
|
+
"wasm-bindgen",
|
|
809
|
+
"windows-link",
|
|
810
|
+
]
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "chrono-tz"
|
|
814
|
+
version = "0.10.4"
|
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
+
checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
|
|
817
|
+
dependencies = [
|
|
818
|
+
"chrono",
|
|
819
|
+
"phf",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "clap"
|
|
824
|
+
version = "4.5.53"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
|
|
827
|
+
dependencies = [
|
|
828
|
+
"clap_builder",
|
|
829
|
+
"clap_derive",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "clap_builder"
|
|
834
|
+
version = "4.5.53"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
|
|
837
|
+
dependencies = [
|
|
838
|
+
"anstream",
|
|
839
|
+
"anstyle",
|
|
840
|
+
"clap_lex",
|
|
841
|
+
"strsim",
|
|
842
|
+
]
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "clap_derive"
|
|
846
|
+
version = "4.5.49"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
849
|
+
dependencies = [
|
|
850
|
+
"heck",
|
|
851
|
+
"proc-macro2",
|
|
852
|
+
"quote",
|
|
853
|
+
"syn",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "clap_lex"
|
|
858
|
+
version = "0.7.6"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "colorchoice"
|
|
864
|
+
version = "1.0.4"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "comfy-table"
|
|
870
|
+
version = "7.2.1"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b"
|
|
873
|
+
dependencies = [
|
|
874
|
+
"crossterm 0.29.0",
|
|
875
|
+
"unicode-segmentation",
|
|
876
|
+
"unicode-width 0.2.2",
|
|
877
|
+
]
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "console"
|
|
881
|
+
version = "0.15.11"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
884
|
+
dependencies = [
|
|
885
|
+
"encode_unicode",
|
|
886
|
+
"libc",
|
|
887
|
+
"once_cell",
|
|
888
|
+
"unicode-width 0.2.2",
|
|
889
|
+
"windows-sys 0.59.0",
|
|
890
|
+
]
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "const-random"
|
|
894
|
+
version = "0.1.18"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
897
|
+
dependencies = [
|
|
898
|
+
"const-random-macro",
|
|
899
|
+
]
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "const-random-macro"
|
|
903
|
+
version = "0.1.16"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"getrandom 0.2.16",
|
|
908
|
+
"once_cell",
|
|
909
|
+
"tiny-keccak",
|
|
910
|
+
]
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "constant_time_eq"
|
|
914
|
+
version = "0.3.1"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
917
|
+
|
|
918
|
+
[[package]]
|
|
919
|
+
name = "core-foundation"
|
|
920
|
+
version = "0.10.1"
|
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
923
|
+
dependencies = [
|
|
924
|
+
"core-foundation-sys",
|
|
925
|
+
"libc",
|
|
926
|
+
]
|
|
927
|
+
|
|
928
|
+
[[package]]
|
|
929
|
+
name = "core-foundation-sys"
|
|
930
|
+
version = "0.8.7"
|
|
931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "cpufeatures"
|
|
936
|
+
version = "0.2.17"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
939
|
+
dependencies = [
|
|
940
|
+
"libc",
|
|
941
|
+
]
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "crc32fast"
|
|
945
|
+
version = "1.5.0"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
948
|
+
dependencies = [
|
|
949
|
+
"cfg-if",
|
|
950
|
+
]
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "crossbeam-utils"
|
|
954
|
+
version = "0.8.21"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
957
|
+
|
|
958
|
+
[[package]]
|
|
959
|
+
name = "crossterm"
|
|
960
|
+
version = "0.28.1"
|
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
+
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
|
963
|
+
dependencies = [
|
|
964
|
+
"bitflags",
|
|
965
|
+
"crossterm_winapi",
|
|
966
|
+
"mio",
|
|
967
|
+
"parking_lot",
|
|
968
|
+
"rustix 0.38.44",
|
|
969
|
+
"serde",
|
|
970
|
+
"signal-hook",
|
|
971
|
+
"signal-hook-mio",
|
|
972
|
+
"winapi",
|
|
973
|
+
]
|
|
974
|
+
|
|
975
|
+
[[package]]
|
|
976
|
+
name = "crossterm"
|
|
977
|
+
version = "0.29.0"
|
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
+
checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
|
|
980
|
+
dependencies = [
|
|
981
|
+
"bitflags",
|
|
982
|
+
"crossterm_winapi",
|
|
983
|
+
"document-features",
|
|
984
|
+
"parking_lot",
|
|
985
|
+
"rustix 1.1.2",
|
|
986
|
+
"winapi",
|
|
987
|
+
]
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "crossterm_winapi"
|
|
991
|
+
version = "0.9.1"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
994
|
+
dependencies = [
|
|
995
|
+
"winapi",
|
|
996
|
+
]
|
|
997
|
+
|
|
998
|
+
[[package]]
|
|
999
|
+
name = "crunchy"
|
|
1000
|
+
version = "0.2.4"
|
|
1001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
1003
|
+
|
|
1004
|
+
[[package]]
|
|
1005
|
+
name = "crypto-common"
|
|
1006
|
+
version = "0.1.7"
|
|
1007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
1009
|
+
dependencies = [
|
|
1010
|
+
"generic-array",
|
|
1011
|
+
"typenum",
|
|
1012
|
+
]
|
|
1013
|
+
|
|
1014
|
+
[[package]]
|
|
1015
|
+
name = "csv"
|
|
1016
|
+
version = "1.4.0"
|
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
1019
|
+
dependencies = [
|
|
1020
|
+
"csv-core",
|
|
1021
|
+
"itoa",
|
|
1022
|
+
"ryu",
|
|
1023
|
+
"serde_core",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "csv-core"
|
|
1028
|
+
version = "0.1.13"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"memchr",
|
|
1033
|
+
]
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "darling"
|
|
1037
|
+
version = "0.21.3"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
1040
|
+
dependencies = [
|
|
1041
|
+
"darling_core",
|
|
1042
|
+
"darling_macro",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "darling_core"
|
|
1047
|
+
version = "0.21.3"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
1050
|
+
dependencies = [
|
|
1051
|
+
"fnv",
|
|
1052
|
+
"ident_case",
|
|
1053
|
+
"proc-macro2",
|
|
1054
|
+
"quote",
|
|
1055
|
+
"strsim",
|
|
1056
|
+
"syn",
|
|
1057
|
+
]
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "darling_macro"
|
|
1061
|
+
version = "0.21.3"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
1064
|
+
dependencies = [
|
|
1065
|
+
"darling_core",
|
|
1066
|
+
"quote",
|
|
1067
|
+
"syn",
|
|
1068
|
+
]
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "dashmap"
|
|
1072
|
+
version = "6.1.0"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
1075
|
+
dependencies = [
|
|
1076
|
+
"cfg-if",
|
|
1077
|
+
"crossbeam-utils",
|
|
1078
|
+
"hashbrown 0.14.5",
|
|
1079
|
+
"lock_api",
|
|
1080
|
+
"once_cell",
|
|
1081
|
+
"parking_lot_core",
|
|
1082
|
+
]
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "datafusion"
|
|
1086
|
+
version = "51.0.0"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "8ba7cb113e9c0bedf9e9765926031e132fa05a1b09ba6e93a6d1a4d7044457b8"
|
|
1089
|
+
dependencies = [
|
|
1090
|
+
"arrow",
|
|
1091
|
+
"arrow-schema",
|
|
1092
|
+
"async-trait",
|
|
1093
|
+
"bytes",
|
|
1094
|
+
"bzip2 0.6.1",
|
|
1095
|
+
"chrono",
|
|
1096
|
+
"datafusion-catalog",
|
|
1097
|
+
"datafusion-catalog-listing",
|
|
1098
|
+
"datafusion-common",
|
|
1099
|
+
"datafusion-common-runtime",
|
|
1100
|
+
"datafusion-datasource",
|
|
1101
|
+
"datafusion-datasource-arrow",
|
|
1102
|
+
"datafusion-datasource-avro",
|
|
1103
|
+
"datafusion-datasource-csv",
|
|
1104
|
+
"datafusion-datasource-json",
|
|
1105
|
+
"datafusion-datasource-parquet",
|
|
1106
|
+
"datafusion-execution",
|
|
1107
|
+
"datafusion-expr",
|
|
1108
|
+
"datafusion-expr-common",
|
|
1109
|
+
"datafusion-functions",
|
|
1110
|
+
"datafusion-functions-aggregate",
|
|
1111
|
+
"datafusion-functions-nested",
|
|
1112
|
+
"datafusion-functions-table",
|
|
1113
|
+
"datafusion-functions-window",
|
|
1114
|
+
"datafusion-optimizer",
|
|
1115
|
+
"datafusion-physical-expr",
|
|
1116
|
+
"datafusion-physical-expr-adapter",
|
|
1117
|
+
"datafusion-physical-expr-common",
|
|
1118
|
+
"datafusion-physical-optimizer",
|
|
1119
|
+
"datafusion-physical-plan",
|
|
1120
|
+
"datafusion-session",
|
|
1121
|
+
"datafusion-sql",
|
|
1122
|
+
"flate2",
|
|
1123
|
+
"futures",
|
|
1124
|
+
"itertools 0.14.0",
|
|
1125
|
+
"log",
|
|
1126
|
+
"object_store",
|
|
1127
|
+
"parking_lot",
|
|
1128
|
+
"parquet",
|
|
1129
|
+
"rand",
|
|
1130
|
+
"regex",
|
|
1131
|
+
"rstest",
|
|
1132
|
+
"sqlparser",
|
|
1133
|
+
"tempfile",
|
|
1134
|
+
"tokio",
|
|
1135
|
+
"url",
|
|
1136
|
+
"uuid",
|
|
1137
|
+
"xz2",
|
|
1138
|
+
"zstd",
|
|
1139
|
+
]
|
|
1140
|
+
|
|
1141
|
+
[[package]]
|
|
1142
|
+
name = "datafusion-catalog"
|
|
1143
|
+
version = "51.0.0"
|
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
+
checksum = "66a3a799f914a59b1ea343906a0486f17061f39509af74e874a866428951130d"
|
|
1146
|
+
dependencies = [
|
|
1147
|
+
"arrow",
|
|
1148
|
+
"async-trait",
|
|
1149
|
+
"dashmap",
|
|
1150
|
+
"datafusion-common",
|
|
1151
|
+
"datafusion-common-runtime",
|
|
1152
|
+
"datafusion-datasource",
|
|
1153
|
+
"datafusion-execution",
|
|
1154
|
+
"datafusion-expr",
|
|
1155
|
+
"datafusion-physical-expr",
|
|
1156
|
+
"datafusion-physical-plan",
|
|
1157
|
+
"datafusion-session",
|
|
1158
|
+
"futures",
|
|
1159
|
+
"itertools 0.14.0",
|
|
1160
|
+
"log",
|
|
1161
|
+
"object_store",
|
|
1162
|
+
"parking_lot",
|
|
1163
|
+
"tokio",
|
|
1164
|
+
]
|
|
1165
|
+
|
|
1166
|
+
[[package]]
|
|
1167
|
+
name = "datafusion-catalog-listing"
|
|
1168
|
+
version = "51.0.0"
|
|
1169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
+
checksum = "6db1b113c80d7a0febcd901476a57aef378e717c54517a163ed51417d87621b0"
|
|
1171
|
+
dependencies = [
|
|
1172
|
+
"arrow",
|
|
1173
|
+
"async-trait",
|
|
1174
|
+
"datafusion-catalog",
|
|
1175
|
+
"datafusion-common",
|
|
1176
|
+
"datafusion-datasource",
|
|
1177
|
+
"datafusion-execution",
|
|
1178
|
+
"datafusion-expr",
|
|
1179
|
+
"datafusion-physical-expr",
|
|
1180
|
+
"datafusion-physical-expr-adapter",
|
|
1181
|
+
"datafusion-physical-expr-common",
|
|
1182
|
+
"datafusion-physical-plan",
|
|
1183
|
+
"futures",
|
|
1184
|
+
"itertools 0.14.0",
|
|
1185
|
+
"log",
|
|
1186
|
+
"object_store",
|
|
1187
|
+
"tokio",
|
|
1188
|
+
]
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "datafusion-common"
|
|
1192
|
+
version = "51.0.0"
|
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
+
checksum = "7c10f7659e96127d25e8366be7c8be4109595d6a2c3eac70421f380a7006a1b0"
|
|
1195
|
+
dependencies = [
|
|
1196
|
+
"ahash",
|
|
1197
|
+
"apache-avro",
|
|
1198
|
+
"arrow",
|
|
1199
|
+
"arrow-ipc",
|
|
1200
|
+
"chrono",
|
|
1201
|
+
"half",
|
|
1202
|
+
"hashbrown 0.14.5",
|
|
1203
|
+
"indexmap",
|
|
1204
|
+
"libc",
|
|
1205
|
+
"log",
|
|
1206
|
+
"object_store",
|
|
1207
|
+
"parquet",
|
|
1208
|
+
"paste",
|
|
1209
|
+
"recursive",
|
|
1210
|
+
"sqlparser",
|
|
1211
|
+
"tokio",
|
|
1212
|
+
"web-time",
|
|
1213
|
+
]
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "datafusion-common-runtime"
|
|
1217
|
+
version = "51.0.0"
|
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
+
checksum = "b92065bbc6532c6651e2f7dd30b55cba0c7a14f860c7e1d15f165c41a1868d95"
|
|
1220
|
+
dependencies = [
|
|
1221
|
+
"futures",
|
|
1222
|
+
"log",
|
|
1223
|
+
"tokio",
|
|
1224
|
+
]
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "datafusion-datasource"
|
|
1228
|
+
version = "51.0.0"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "fde13794244bc7581cd82f6fff217068ed79cdc344cafe4ab2c3a1c3510b38d6"
|
|
1231
|
+
dependencies = [
|
|
1232
|
+
"arrow",
|
|
1233
|
+
"async-compression",
|
|
1234
|
+
"async-trait",
|
|
1235
|
+
"bytes",
|
|
1236
|
+
"bzip2 0.6.1",
|
|
1237
|
+
"chrono",
|
|
1238
|
+
"datafusion-common",
|
|
1239
|
+
"datafusion-common-runtime",
|
|
1240
|
+
"datafusion-execution",
|
|
1241
|
+
"datafusion-expr",
|
|
1242
|
+
"datafusion-physical-expr",
|
|
1243
|
+
"datafusion-physical-expr-adapter",
|
|
1244
|
+
"datafusion-physical-expr-common",
|
|
1245
|
+
"datafusion-physical-plan",
|
|
1246
|
+
"datafusion-session",
|
|
1247
|
+
"flate2",
|
|
1248
|
+
"futures",
|
|
1249
|
+
"glob",
|
|
1250
|
+
"itertools 0.14.0",
|
|
1251
|
+
"log",
|
|
1252
|
+
"object_store",
|
|
1253
|
+
"rand",
|
|
1254
|
+
"tokio",
|
|
1255
|
+
"tokio-util",
|
|
1256
|
+
"url",
|
|
1257
|
+
"xz2",
|
|
1258
|
+
"zstd",
|
|
1259
|
+
]
|
|
1260
|
+
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "datafusion-datasource-arrow"
|
|
1263
|
+
version = "51.0.0"
|
|
1264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
+
checksum = "804fa9b4ecf3157982021770617200ef7c1b2979d57bec9044748314775a9aea"
|
|
1266
|
+
dependencies = [
|
|
1267
|
+
"arrow",
|
|
1268
|
+
"arrow-ipc",
|
|
1269
|
+
"async-trait",
|
|
1270
|
+
"bytes",
|
|
1271
|
+
"datafusion-common",
|
|
1272
|
+
"datafusion-common-runtime",
|
|
1273
|
+
"datafusion-datasource",
|
|
1274
|
+
"datafusion-execution",
|
|
1275
|
+
"datafusion-expr",
|
|
1276
|
+
"datafusion-physical-expr-common",
|
|
1277
|
+
"datafusion-physical-plan",
|
|
1278
|
+
"datafusion-session",
|
|
1279
|
+
"futures",
|
|
1280
|
+
"itertools 0.14.0",
|
|
1281
|
+
"object_store",
|
|
1282
|
+
"tokio",
|
|
1283
|
+
]
|
|
1284
|
+
|
|
1285
|
+
[[package]]
|
|
1286
|
+
name = "datafusion-datasource-avro"
|
|
1287
|
+
version = "51.0.0"
|
|
1288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
+
checksum = "388ed8be535f562cc655b9c3d22edbfb0f1a50a25c242647a98b6d92a75b55a1"
|
|
1290
|
+
dependencies = [
|
|
1291
|
+
"apache-avro",
|
|
1292
|
+
"arrow",
|
|
1293
|
+
"async-trait",
|
|
1294
|
+
"bytes",
|
|
1295
|
+
"datafusion-common",
|
|
1296
|
+
"datafusion-datasource",
|
|
1297
|
+
"datafusion-physical-expr-common",
|
|
1298
|
+
"datafusion-physical-plan",
|
|
1299
|
+
"datafusion-session",
|
|
1300
|
+
"futures",
|
|
1301
|
+
"num-traits",
|
|
1302
|
+
"object_store",
|
|
1303
|
+
]
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "datafusion-datasource-csv"
|
|
1307
|
+
version = "51.0.0"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "61a1641a40b259bab38131c5e6f48fac0717bedb7dc93690e604142a849e0568"
|
|
1310
|
+
dependencies = [
|
|
1311
|
+
"arrow",
|
|
1312
|
+
"async-trait",
|
|
1313
|
+
"bytes",
|
|
1314
|
+
"datafusion-common",
|
|
1315
|
+
"datafusion-common-runtime",
|
|
1316
|
+
"datafusion-datasource",
|
|
1317
|
+
"datafusion-execution",
|
|
1318
|
+
"datafusion-expr",
|
|
1319
|
+
"datafusion-physical-expr-common",
|
|
1320
|
+
"datafusion-physical-plan",
|
|
1321
|
+
"datafusion-session",
|
|
1322
|
+
"futures",
|
|
1323
|
+
"object_store",
|
|
1324
|
+
"regex",
|
|
1325
|
+
"tokio",
|
|
1326
|
+
]
|
|
1327
|
+
|
|
1328
|
+
[[package]]
|
|
1329
|
+
name = "datafusion-datasource-json"
|
|
1330
|
+
version = "51.0.0"
|
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
+
checksum = "adeacdb00c1d37271176f8fb6a1d8ce096baba16ea7a4b2671840c5c9c64fe85"
|
|
1333
|
+
dependencies = [
|
|
1334
|
+
"arrow",
|
|
1335
|
+
"async-trait",
|
|
1336
|
+
"bytes",
|
|
1337
|
+
"datafusion-common",
|
|
1338
|
+
"datafusion-common-runtime",
|
|
1339
|
+
"datafusion-datasource",
|
|
1340
|
+
"datafusion-execution",
|
|
1341
|
+
"datafusion-expr",
|
|
1342
|
+
"datafusion-physical-expr-common",
|
|
1343
|
+
"datafusion-physical-plan",
|
|
1344
|
+
"datafusion-session",
|
|
1345
|
+
"futures",
|
|
1346
|
+
"object_store",
|
|
1347
|
+
"tokio",
|
|
1348
|
+
]
|
|
1349
|
+
|
|
1350
|
+
[[package]]
|
|
1351
|
+
name = "datafusion-datasource-parquet"
|
|
1352
|
+
version = "51.0.0"
|
|
1353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1354
|
+
checksum = "43d0b60ffd66f28bfb026565d62b0a6cbc416da09814766a3797bba7d85a3cd9"
|
|
1355
|
+
dependencies = [
|
|
1356
|
+
"arrow",
|
|
1357
|
+
"async-trait",
|
|
1358
|
+
"bytes",
|
|
1359
|
+
"datafusion-common",
|
|
1360
|
+
"datafusion-common-runtime",
|
|
1361
|
+
"datafusion-datasource",
|
|
1362
|
+
"datafusion-execution",
|
|
1363
|
+
"datafusion-expr",
|
|
1364
|
+
"datafusion-functions-aggregate-common",
|
|
1365
|
+
"datafusion-physical-expr",
|
|
1366
|
+
"datafusion-physical-expr-adapter",
|
|
1367
|
+
"datafusion-physical-expr-common",
|
|
1368
|
+
"datafusion-physical-plan",
|
|
1369
|
+
"datafusion-pruning",
|
|
1370
|
+
"datafusion-session",
|
|
1371
|
+
"futures",
|
|
1372
|
+
"itertools 0.14.0",
|
|
1373
|
+
"log",
|
|
1374
|
+
"object_store",
|
|
1375
|
+
"parking_lot",
|
|
1376
|
+
"parquet",
|
|
1377
|
+
"tokio",
|
|
1378
|
+
]
|
|
1379
|
+
|
|
1380
|
+
[[package]]
|
|
1381
|
+
name = "datafusion-doc"
|
|
1382
|
+
version = "51.0.0"
|
|
1383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
+
checksum = "2b99e13947667b36ad713549237362afb054b2d8f8cc447751e23ec61202db07"
|
|
1385
|
+
|
|
1386
|
+
[[package]]
|
|
1387
|
+
name = "datafusion-execution"
|
|
1388
|
+
version = "51.0.0"
|
|
1389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1390
|
+
checksum = "63695643190679037bc946ad46a263b62016931547bf119859c511f7ff2f5178"
|
|
1391
|
+
dependencies = [
|
|
1392
|
+
"arrow",
|
|
1393
|
+
"async-trait",
|
|
1394
|
+
"dashmap",
|
|
1395
|
+
"datafusion-common",
|
|
1396
|
+
"datafusion-expr",
|
|
1397
|
+
"futures",
|
|
1398
|
+
"log",
|
|
1399
|
+
"object_store",
|
|
1400
|
+
"parking_lot",
|
|
1401
|
+
"rand",
|
|
1402
|
+
"tempfile",
|
|
1403
|
+
"url",
|
|
1404
|
+
]
|
|
1405
|
+
|
|
1406
|
+
[[package]]
|
|
1407
|
+
name = "datafusion-expr"
|
|
1408
|
+
version = "51.0.0"
|
|
1409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
+
checksum = "f9a4787cbf5feb1ab351f789063398f67654a6df75c4d37d7f637dc96f951a91"
|
|
1411
|
+
dependencies = [
|
|
1412
|
+
"arrow",
|
|
1413
|
+
"async-trait",
|
|
1414
|
+
"chrono",
|
|
1415
|
+
"datafusion-common",
|
|
1416
|
+
"datafusion-doc",
|
|
1417
|
+
"datafusion-expr-common",
|
|
1418
|
+
"datafusion-functions-aggregate-common",
|
|
1419
|
+
"datafusion-functions-window-common",
|
|
1420
|
+
"datafusion-physical-expr-common",
|
|
1421
|
+
"indexmap",
|
|
1422
|
+
"itertools 0.14.0",
|
|
1423
|
+
"paste",
|
|
1424
|
+
"recursive",
|
|
1425
|
+
"serde_json",
|
|
1426
|
+
"sqlparser",
|
|
1427
|
+
]
|
|
1428
|
+
|
|
1429
|
+
[[package]]
|
|
1430
|
+
name = "datafusion-expr-common"
|
|
1431
|
+
version = "51.0.0"
|
|
1432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
+
checksum = "5ce2fb1b8c15c9ac45b0863c30b268c69dc9ee7a1ee13ecf5d067738338173dc"
|
|
1434
|
+
dependencies = [
|
|
1435
|
+
"arrow",
|
|
1436
|
+
"datafusion-common",
|
|
1437
|
+
"indexmap",
|
|
1438
|
+
"itertools 0.14.0",
|
|
1439
|
+
"paste",
|
|
1440
|
+
]
|
|
1441
|
+
|
|
1442
|
+
[[package]]
|
|
1443
|
+
name = "datafusion-functions"
|
|
1444
|
+
version = "51.0.0"
|
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
+
checksum = "794a9db7f7b96b3346fc007ff25e994f09b8f0511b4cf7dff651fadfe3ebb28f"
|
|
1447
|
+
dependencies = [
|
|
1448
|
+
"arrow",
|
|
1449
|
+
"arrow-buffer",
|
|
1450
|
+
"base64",
|
|
1451
|
+
"blake2",
|
|
1452
|
+
"blake3",
|
|
1453
|
+
"chrono",
|
|
1454
|
+
"datafusion-common",
|
|
1455
|
+
"datafusion-doc",
|
|
1456
|
+
"datafusion-execution",
|
|
1457
|
+
"datafusion-expr",
|
|
1458
|
+
"datafusion-expr-common",
|
|
1459
|
+
"datafusion-macros",
|
|
1460
|
+
"hex",
|
|
1461
|
+
"itertools 0.14.0",
|
|
1462
|
+
"log",
|
|
1463
|
+
"md-5",
|
|
1464
|
+
"num-traits",
|
|
1465
|
+
"rand",
|
|
1466
|
+
"regex",
|
|
1467
|
+
"sha2",
|
|
1468
|
+
"unicode-segmentation",
|
|
1469
|
+
"uuid",
|
|
1470
|
+
]
|
|
1471
|
+
|
|
1472
|
+
[[package]]
|
|
1473
|
+
name = "datafusion-functions-aggregate"
|
|
1474
|
+
version = "51.0.0"
|
|
1475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1476
|
+
checksum = "1c25210520a9dcf9c2b2cbbce31ebd4131ef5af7fc60ee92b266dc7d159cb305"
|
|
1477
|
+
dependencies = [
|
|
1478
|
+
"ahash",
|
|
1479
|
+
"arrow",
|
|
1480
|
+
"datafusion-common",
|
|
1481
|
+
"datafusion-doc",
|
|
1482
|
+
"datafusion-execution",
|
|
1483
|
+
"datafusion-expr",
|
|
1484
|
+
"datafusion-functions-aggregate-common",
|
|
1485
|
+
"datafusion-macros",
|
|
1486
|
+
"datafusion-physical-expr",
|
|
1487
|
+
"datafusion-physical-expr-common",
|
|
1488
|
+
"half",
|
|
1489
|
+
"log",
|
|
1490
|
+
"paste",
|
|
1491
|
+
]
|
|
1492
|
+
|
|
1493
|
+
[[package]]
|
|
1494
|
+
name = "datafusion-functions-aggregate-common"
|
|
1495
|
+
version = "51.0.0"
|
|
1496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1497
|
+
checksum = "62f4a66f3b87300bb70f4124b55434d2ae3fe80455f3574701d0348da040b55d"
|
|
1498
|
+
dependencies = [
|
|
1499
|
+
"ahash",
|
|
1500
|
+
"arrow",
|
|
1501
|
+
"datafusion-common",
|
|
1502
|
+
"datafusion-expr-common",
|
|
1503
|
+
"datafusion-physical-expr-common",
|
|
1504
|
+
]
|
|
1505
|
+
|
|
1506
|
+
[[package]]
|
|
1507
|
+
name = "datafusion-functions-nested"
|
|
1508
|
+
version = "51.0.0"
|
|
1509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1510
|
+
checksum = "ae5c06eed03918dc7fe7a9f082a284050f0e9ecf95d72f57712d1496da03b8c4"
|
|
1511
|
+
dependencies = [
|
|
1512
|
+
"arrow",
|
|
1513
|
+
"arrow-ord",
|
|
1514
|
+
"datafusion-common",
|
|
1515
|
+
"datafusion-doc",
|
|
1516
|
+
"datafusion-execution",
|
|
1517
|
+
"datafusion-expr",
|
|
1518
|
+
"datafusion-expr-common",
|
|
1519
|
+
"datafusion-functions",
|
|
1520
|
+
"datafusion-functions-aggregate",
|
|
1521
|
+
"datafusion-functions-aggregate-common",
|
|
1522
|
+
"datafusion-macros",
|
|
1523
|
+
"datafusion-physical-expr-common",
|
|
1524
|
+
"itertools 0.14.0",
|
|
1525
|
+
"log",
|
|
1526
|
+
"paste",
|
|
1527
|
+
]
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "datafusion-functions-table"
|
|
1531
|
+
version = "51.0.0"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "db4fed1d71738fbe22e2712d71396db04c25de4111f1ec252b8f4c6d3b25d7f5"
|
|
1534
|
+
dependencies = [
|
|
1535
|
+
"arrow",
|
|
1536
|
+
"async-trait",
|
|
1537
|
+
"datafusion-catalog",
|
|
1538
|
+
"datafusion-common",
|
|
1539
|
+
"datafusion-expr",
|
|
1540
|
+
"datafusion-physical-plan",
|
|
1541
|
+
"parking_lot",
|
|
1542
|
+
"paste",
|
|
1543
|
+
]
|
|
1544
|
+
|
|
1545
|
+
[[package]]
|
|
1546
|
+
name = "datafusion-functions-window"
|
|
1547
|
+
version = "51.0.0"
|
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
+
checksum = "1d92206aa5ae21892f1552b4d61758a862a70956e6fd7a95cb85db1de74bc6d1"
|
|
1550
|
+
dependencies = [
|
|
1551
|
+
"arrow",
|
|
1552
|
+
"datafusion-common",
|
|
1553
|
+
"datafusion-doc",
|
|
1554
|
+
"datafusion-expr",
|
|
1555
|
+
"datafusion-functions-window-common",
|
|
1556
|
+
"datafusion-macros",
|
|
1557
|
+
"datafusion-physical-expr",
|
|
1558
|
+
"datafusion-physical-expr-common",
|
|
1559
|
+
"log",
|
|
1560
|
+
"paste",
|
|
1561
|
+
]
|
|
1562
|
+
|
|
1563
|
+
[[package]]
|
|
1564
|
+
name = "datafusion-functions-window-common"
|
|
1565
|
+
version = "51.0.0"
|
|
1566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
+
checksum = "53ae9bcc39800820d53a22d758b3b8726ff84a5a3e24cecef04ef4e5fdf1c7cc"
|
|
1568
|
+
dependencies = [
|
|
1569
|
+
"datafusion-common",
|
|
1570
|
+
"datafusion-physical-expr-common",
|
|
1571
|
+
]
|
|
1572
|
+
|
|
1573
|
+
[[package]]
|
|
1574
|
+
name = "datafusion-macros"
|
|
1575
|
+
version = "51.0.0"
|
|
1576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1577
|
+
checksum = "1063ad4c9e094b3f798acee16d9a47bd7372d9699be2de21b05c3bd3f34ab848"
|
|
1578
|
+
dependencies = [
|
|
1579
|
+
"datafusion-doc",
|
|
1580
|
+
"quote",
|
|
1581
|
+
"syn",
|
|
1582
|
+
]
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "datafusion-optimizer"
|
|
1586
|
+
version = "51.0.0"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "9f35f9ec5d08b87fd1893a30c2929f2559c2f9806ca072d8fefca5009dc0f06a"
|
|
1589
|
+
dependencies = [
|
|
1590
|
+
"arrow",
|
|
1591
|
+
"chrono",
|
|
1592
|
+
"datafusion-common",
|
|
1593
|
+
"datafusion-expr",
|
|
1594
|
+
"datafusion-expr-common",
|
|
1595
|
+
"datafusion-physical-expr",
|
|
1596
|
+
"indexmap",
|
|
1597
|
+
"itertools 0.14.0",
|
|
1598
|
+
"log",
|
|
1599
|
+
"recursive",
|
|
1600
|
+
"regex",
|
|
1601
|
+
"regex-syntax",
|
|
1602
|
+
]
|
|
1603
|
+
|
|
1604
|
+
[[package]]
|
|
1605
|
+
name = "datafusion-physical-expr"
|
|
1606
|
+
version = "51.0.0"
|
|
1607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1608
|
+
checksum = "c30cc8012e9eedcb48bbe112c6eff4ae5ed19cf3003cb0f505662e88b7014c5d"
|
|
1609
|
+
dependencies = [
|
|
1610
|
+
"ahash",
|
|
1611
|
+
"arrow",
|
|
1612
|
+
"datafusion-common",
|
|
1613
|
+
"datafusion-expr",
|
|
1614
|
+
"datafusion-expr-common",
|
|
1615
|
+
"datafusion-functions-aggregate-common",
|
|
1616
|
+
"datafusion-physical-expr-common",
|
|
1617
|
+
"half",
|
|
1618
|
+
"hashbrown 0.14.5",
|
|
1619
|
+
"indexmap",
|
|
1620
|
+
"itertools 0.14.0",
|
|
1621
|
+
"parking_lot",
|
|
1622
|
+
"paste",
|
|
1623
|
+
"petgraph",
|
|
1624
|
+
]
|
|
1625
|
+
|
|
1626
|
+
[[package]]
|
|
1627
|
+
name = "datafusion-physical-expr-adapter"
|
|
1628
|
+
version = "51.0.0"
|
|
1629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1630
|
+
checksum = "7f9ff2dbd476221b1f67337699eff432781c4e6e1713d2aefdaa517dfbf79768"
|
|
1631
|
+
dependencies = [
|
|
1632
|
+
"arrow",
|
|
1633
|
+
"datafusion-common",
|
|
1634
|
+
"datafusion-expr",
|
|
1635
|
+
"datafusion-functions",
|
|
1636
|
+
"datafusion-physical-expr",
|
|
1637
|
+
"datafusion-physical-expr-common",
|
|
1638
|
+
"itertools 0.14.0",
|
|
1639
|
+
]
|
|
1640
|
+
|
|
1641
|
+
[[package]]
|
|
1642
|
+
name = "datafusion-physical-expr-common"
|
|
1643
|
+
version = "51.0.0"
|
|
1644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
+
checksum = "90da43e1ec550b172f34c87ec68161986ced70fd05c8d2a2add66eef9c276f03"
|
|
1646
|
+
dependencies = [
|
|
1647
|
+
"ahash",
|
|
1648
|
+
"arrow",
|
|
1649
|
+
"datafusion-common",
|
|
1650
|
+
"datafusion-expr-common",
|
|
1651
|
+
"hashbrown 0.14.5",
|
|
1652
|
+
"itertools 0.14.0",
|
|
1653
|
+
]
|
|
1654
|
+
|
|
1655
|
+
[[package]]
|
|
1656
|
+
name = "datafusion-physical-optimizer"
|
|
1657
|
+
version = "51.0.0"
|
|
1658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
+
checksum = "ce9804f799acd7daef3be7aaffe77c0033768ed8fdbf5fb82fc4c5f2e6bc14e6"
|
|
1660
|
+
dependencies = [
|
|
1661
|
+
"arrow",
|
|
1662
|
+
"datafusion-common",
|
|
1663
|
+
"datafusion-execution",
|
|
1664
|
+
"datafusion-expr",
|
|
1665
|
+
"datafusion-expr-common",
|
|
1666
|
+
"datafusion-physical-expr",
|
|
1667
|
+
"datafusion-physical-expr-common",
|
|
1668
|
+
"datafusion-physical-plan",
|
|
1669
|
+
"datafusion-pruning",
|
|
1670
|
+
"itertools 0.14.0",
|
|
1671
|
+
"recursive",
|
|
1672
|
+
]
|
|
1673
|
+
|
|
1674
|
+
[[package]]
|
|
1675
|
+
name = "datafusion-physical-plan"
|
|
1676
|
+
version = "51.0.0"
|
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
+
checksum = "0acf0ad6b6924c6b1aa7d213b181e012e2d3ec0a64ff5b10ee6282ab0f8532ac"
|
|
1679
|
+
dependencies = [
|
|
1680
|
+
"ahash",
|
|
1681
|
+
"arrow",
|
|
1682
|
+
"arrow-ord",
|
|
1683
|
+
"arrow-schema",
|
|
1684
|
+
"async-trait",
|
|
1685
|
+
"chrono",
|
|
1686
|
+
"datafusion-common",
|
|
1687
|
+
"datafusion-common-runtime",
|
|
1688
|
+
"datafusion-execution",
|
|
1689
|
+
"datafusion-expr",
|
|
1690
|
+
"datafusion-functions-aggregate-common",
|
|
1691
|
+
"datafusion-functions-window-common",
|
|
1692
|
+
"datafusion-physical-expr",
|
|
1693
|
+
"datafusion-physical-expr-common",
|
|
1694
|
+
"futures",
|
|
1695
|
+
"half",
|
|
1696
|
+
"hashbrown 0.14.5",
|
|
1697
|
+
"indexmap",
|
|
1698
|
+
"itertools 0.14.0",
|
|
1699
|
+
"log",
|
|
1700
|
+
"parking_lot",
|
|
1701
|
+
"pin-project-lite",
|
|
1702
|
+
"tokio",
|
|
1703
|
+
]
|
|
1704
|
+
|
|
1705
|
+
[[package]]
|
|
1706
|
+
name = "datafusion-pruning"
|
|
1707
|
+
version = "51.0.0"
|
|
1708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1709
|
+
checksum = "ac2c2498a1f134a9e11a9f5ed202a2a7d7e9774bd9249295593053ea3be999db"
|
|
1710
|
+
dependencies = [
|
|
1711
|
+
"arrow",
|
|
1712
|
+
"datafusion-common",
|
|
1713
|
+
"datafusion-datasource",
|
|
1714
|
+
"datafusion-expr-common",
|
|
1715
|
+
"datafusion-physical-expr",
|
|
1716
|
+
"datafusion-physical-expr-common",
|
|
1717
|
+
"datafusion-physical-plan",
|
|
1718
|
+
"itertools 0.14.0",
|
|
1719
|
+
"log",
|
|
1720
|
+
]
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "datafusion-session"
|
|
1724
|
+
version = "51.0.0"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "8f96eebd17555386f459037c65ab73aae8df09f464524c709d6a3134ad4f4776"
|
|
1727
|
+
dependencies = [
|
|
1728
|
+
"async-trait",
|
|
1729
|
+
"datafusion-common",
|
|
1730
|
+
"datafusion-execution",
|
|
1731
|
+
"datafusion-expr",
|
|
1732
|
+
"datafusion-physical-plan",
|
|
1733
|
+
"parking_lot",
|
|
1734
|
+
]
|
|
1735
|
+
|
|
1736
|
+
[[package]]
|
|
1737
|
+
name = "datafusion-sql"
|
|
1738
|
+
version = "51.0.0"
|
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
+
checksum = "3fc195fe60634b2c6ccfd131b487de46dc30eccae8a3c35a13f136e7f440414f"
|
|
1741
|
+
dependencies = [
|
|
1742
|
+
"arrow",
|
|
1743
|
+
"bigdecimal",
|
|
1744
|
+
"chrono",
|
|
1745
|
+
"datafusion-common",
|
|
1746
|
+
"datafusion-expr",
|
|
1747
|
+
"indexmap",
|
|
1748
|
+
"log",
|
|
1749
|
+
"recursive",
|
|
1750
|
+
"regex",
|
|
1751
|
+
"sqlparser",
|
|
1752
|
+
]
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "digest"
|
|
1756
|
+
version = "0.10.7"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1759
|
+
dependencies = [
|
|
1760
|
+
"block-buffer",
|
|
1761
|
+
"crypto-common",
|
|
1762
|
+
"subtle",
|
|
1763
|
+
]
|
|
1764
|
+
|
|
1765
|
+
[[package]]
|
|
1766
|
+
name = "displaydoc"
|
|
1767
|
+
version = "0.2.5"
|
|
1768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1769
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
1770
|
+
dependencies = [
|
|
1771
|
+
"proc-macro2",
|
|
1772
|
+
"quote",
|
|
1773
|
+
"syn",
|
|
1774
|
+
]
|
|
1775
|
+
|
|
1776
|
+
[[package]]
|
|
1777
|
+
name = "document-features"
|
|
1778
|
+
version = "0.2.12"
|
|
1779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1780
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
1781
|
+
dependencies = [
|
|
1782
|
+
"litrs",
|
|
1783
|
+
]
|
|
1784
|
+
|
|
1785
|
+
[[package]]
|
|
1786
|
+
name = "either"
|
|
1787
|
+
version = "1.15.0"
|
|
1788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
1790
|
+
|
|
1791
|
+
[[package]]
|
|
1792
|
+
name = "encode_unicode"
|
|
1793
|
+
version = "1.0.0"
|
|
1794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1795
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
1796
|
+
|
|
1797
|
+
[[package]]
|
|
1798
|
+
name = "env_filter"
|
|
1799
|
+
version = "0.1.4"
|
|
1800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
+
checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
|
|
1802
|
+
dependencies = [
|
|
1803
|
+
"log",
|
|
1804
|
+
"regex",
|
|
1805
|
+
]
|
|
1806
|
+
|
|
1807
|
+
[[package]]
|
|
1808
|
+
name = "env_logger"
|
|
1809
|
+
version = "0.11.8"
|
|
1810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1811
|
+
checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
|
|
1812
|
+
dependencies = [
|
|
1813
|
+
"anstream",
|
|
1814
|
+
"anstyle",
|
|
1815
|
+
"env_filter",
|
|
1816
|
+
"jiff",
|
|
1817
|
+
"log",
|
|
1818
|
+
]
|
|
1819
|
+
|
|
1820
|
+
[[package]]
|
|
1821
|
+
name = "equivalent"
|
|
1822
|
+
version = "1.0.2"
|
|
1823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1825
|
+
|
|
1826
|
+
[[package]]
|
|
1827
|
+
name = "errno"
|
|
1828
|
+
version = "0.3.14"
|
|
1829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1830
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1831
|
+
dependencies = [
|
|
1832
|
+
"libc",
|
|
1833
|
+
"windows-sys 0.61.2",
|
|
1834
|
+
]
|
|
1835
|
+
|
|
1836
|
+
[[package]]
|
|
1837
|
+
name = "fastrand"
|
|
1838
|
+
version = "2.3.0"
|
|
1839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1840
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
1841
|
+
|
|
1842
|
+
[[package]]
|
|
1843
|
+
name = "fd-lock"
|
|
1844
|
+
version = "4.0.4"
|
|
1845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
+
checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
|
|
1847
|
+
dependencies = [
|
|
1848
|
+
"cfg-if",
|
|
1849
|
+
"rustix 1.1.2",
|
|
1850
|
+
"windows-sys 0.59.0",
|
|
1851
|
+
]
|
|
1852
|
+
|
|
1853
|
+
[[package]]
|
|
1854
|
+
name = "find-msvc-tools"
|
|
1855
|
+
version = "0.1.5"
|
|
1856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
+
checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
|
|
1858
|
+
|
|
1859
|
+
[[package]]
|
|
1860
|
+
name = "fixedbitset"
|
|
1861
|
+
version = "0.5.7"
|
|
1862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1863
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
1864
|
+
|
|
1865
|
+
[[package]]
|
|
1866
|
+
name = "flatbuffers"
|
|
1867
|
+
version = "25.12.19"
|
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
+
checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
|
|
1870
|
+
dependencies = [
|
|
1871
|
+
"bitflags",
|
|
1872
|
+
"rustc_version",
|
|
1873
|
+
]
|
|
1874
|
+
|
|
1875
|
+
[[package]]
|
|
1876
|
+
name = "flate2"
|
|
1877
|
+
version = "1.1.5"
|
|
1878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1879
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
1880
|
+
dependencies = [
|
|
1881
|
+
"crc32fast",
|
|
1882
|
+
"libz-rs-sys",
|
|
1883
|
+
"miniz_oxide",
|
|
1884
|
+
]
|
|
1885
|
+
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "fnv"
|
|
1888
|
+
version = "1.0.7"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1891
|
+
|
|
1892
|
+
[[package]]
|
|
1893
|
+
name = "foldhash"
|
|
1894
|
+
version = "0.1.5"
|
|
1895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1896
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1897
|
+
|
|
1898
|
+
[[package]]
|
|
1899
|
+
name = "form_urlencoded"
|
|
1900
|
+
version = "1.2.2"
|
|
1901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
1903
|
+
dependencies = [
|
|
1904
|
+
"percent-encoding",
|
|
1905
|
+
]
|
|
1906
|
+
|
|
1907
|
+
[[package]]
|
|
1908
|
+
name = "futures"
|
|
1909
|
+
version = "0.3.31"
|
|
1910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1911
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
1912
|
+
dependencies = [
|
|
1913
|
+
"futures-channel",
|
|
1914
|
+
"futures-core",
|
|
1915
|
+
"futures-executor",
|
|
1916
|
+
"futures-io",
|
|
1917
|
+
"futures-sink",
|
|
1918
|
+
"futures-task",
|
|
1919
|
+
"futures-util",
|
|
1920
|
+
]
|
|
1921
|
+
|
|
1922
|
+
[[package]]
|
|
1923
|
+
name = "futures-channel"
|
|
1924
|
+
version = "0.3.31"
|
|
1925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
1927
|
+
dependencies = [
|
|
1928
|
+
"futures-core",
|
|
1929
|
+
"futures-sink",
|
|
1930
|
+
]
|
|
1931
|
+
|
|
1932
|
+
[[package]]
|
|
1933
|
+
name = "futures-core"
|
|
1934
|
+
version = "0.3.31"
|
|
1935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1936
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1937
|
+
|
|
1938
|
+
[[package]]
|
|
1939
|
+
name = "futures-executor"
|
|
1940
|
+
version = "0.3.31"
|
|
1941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1942
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
1943
|
+
dependencies = [
|
|
1944
|
+
"futures-core",
|
|
1945
|
+
"futures-task",
|
|
1946
|
+
"futures-util",
|
|
1947
|
+
]
|
|
1948
|
+
|
|
1949
|
+
[[package]]
|
|
1950
|
+
name = "futures-io"
|
|
1951
|
+
version = "0.3.31"
|
|
1952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1954
|
+
|
|
1955
|
+
[[package]]
|
|
1956
|
+
name = "futures-macro"
|
|
1957
|
+
version = "0.3.31"
|
|
1958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1960
|
+
dependencies = [
|
|
1961
|
+
"proc-macro2",
|
|
1962
|
+
"quote",
|
|
1963
|
+
"syn",
|
|
1964
|
+
]
|
|
1965
|
+
|
|
1966
|
+
[[package]]
|
|
1967
|
+
name = "futures-sink"
|
|
1968
|
+
version = "0.3.31"
|
|
1969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1970
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1971
|
+
|
|
1972
|
+
[[package]]
|
|
1973
|
+
name = "futures-task"
|
|
1974
|
+
version = "0.3.31"
|
|
1975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1976
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1977
|
+
|
|
1978
|
+
[[package]]
|
|
1979
|
+
name = "futures-timer"
|
|
1980
|
+
version = "3.0.3"
|
|
1981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
+
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
1983
|
+
|
|
1984
|
+
[[package]]
|
|
1985
|
+
name = "futures-util"
|
|
1986
|
+
version = "0.3.31"
|
|
1987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1989
|
+
dependencies = [
|
|
1990
|
+
"futures-channel",
|
|
1991
|
+
"futures-core",
|
|
1992
|
+
"futures-io",
|
|
1993
|
+
"futures-macro",
|
|
1994
|
+
"futures-sink",
|
|
1995
|
+
"futures-task",
|
|
1996
|
+
"memchr",
|
|
1997
|
+
"pin-project-lite",
|
|
1998
|
+
"pin-utils",
|
|
1999
|
+
"slab",
|
|
2000
|
+
]
|
|
2001
|
+
|
|
2002
|
+
[[package]]
|
|
2003
|
+
name = "generic-array"
|
|
2004
|
+
version = "0.14.7"
|
|
2005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2006
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
2007
|
+
dependencies = [
|
|
2008
|
+
"typenum",
|
|
2009
|
+
"version_check",
|
|
2010
|
+
]
|
|
2011
|
+
|
|
2012
|
+
[[package]]
|
|
2013
|
+
name = "getrandom"
|
|
2014
|
+
version = "0.2.16"
|
|
2015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
2017
|
+
dependencies = [
|
|
2018
|
+
"cfg-if",
|
|
2019
|
+
"js-sys",
|
|
2020
|
+
"libc",
|
|
2021
|
+
"wasi",
|
|
2022
|
+
"wasm-bindgen",
|
|
2023
|
+
]
|
|
2024
|
+
|
|
2025
|
+
[[package]]
|
|
2026
|
+
name = "getrandom"
|
|
2027
|
+
version = "0.3.4"
|
|
2028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2029
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
2030
|
+
dependencies = [
|
|
2031
|
+
"cfg-if",
|
|
2032
|
+
"js-sys",
|
|
2033
|
+
"libc",
|
|
2034
|
+
"r-efi",
|
|
2035
|
+
"wasip2",
|
|
2036
|
+
"wasm-bindgen",
|
|
2037
|
+
]
|
|
2038
|
+
|
|
2039
|
+
[[package]]
|
|
2040
|
+
name = "glob"
|
|
2041
|
+
version = "0.3.3"
|
|
2042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2043
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
2044
|
+
|
|
2045
|
+
[[package]]
|
|
2046
|
+
name = "h2"
|
|
2047
|
+
version = "0.4.12"
|
|
2048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2049
|
+
checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
|
|
2050
|
+
dependencies = [
|
|
2051
|
+
"atomic-waker",
|
|
2052
|
+
"bytes",
|
|
2053
|
+
"fnv",
|
|
2054
|
+
"futures-core",
|
|
2055
|
+
"futures-sink",
|
|
2056
|
+
"http",
|
|
2057
|
+
"indexmap",
|
|
2058
|
+
"slab",
|
|
2059
|
+
"tokio",
|
|
2060
|
+
"tokio-util",
|
|
2061
|
+
"tracing",
|
|
2062
|
+
]
|
|
2063
|
+
|
|
2064
|
+
[[package]]
|
|
2065
|
+
name = "half"
|
|
2066
|
+
version = "2.7.1"
|
|
2067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
2069
|
+
dependencies = [
|
|
2070
|
+
"cfg-if",
|
|
2071
|
+
"crunchy",
|
|
2072
|
+
"num-traits",
|
|
2073
|
+
"zerocopy",
|
|
2074
|
+
]
|
|
2075
|
+
|
|
2076
|
+
[[package]]
|
|
2077
|
+
name = "hashbrown"
|
|
2078
|
+
version = "0.14.5"
|
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
2081
|
+
dependencies = [
|
|
2082
|
+
"ahash",
|
|
2083
|
+
"allocator-api2",
|
|
2084
|
+
]
|
|
2085
|
+
|
|
2086
|
+
[[package]]
|
|
2087
|
+
name = "hashbrown"
|
|
2088
|
+
version = "0.15.5"
|
|
2089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2090
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
2091
|
+
dependencies = [
|
|
2092
|
+
"foldhash",
|
|
2093
|
+
]
|
|
2094
|
+
|
|
2095
|
+
[[package]]
|
|
2096
|
+
name = "hashbrown"
|
|
2097
|
+
version = "0.16.1"
|
|
2098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2099
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
2100
|
+
|
|
2101
|
+
[[package]]
|
|
2102
|
+
name = "heck"
|
|
2103
|
+
version = "0.5.0"
|
|
2104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
2106
|
+
|
|
2107
|
+
[[package]]
|
|
2108
|
+
name = "hex"
|
|
2109
|
+
version = "0.4.3"
|
|
2110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "http"
|
|
2115
|
+
version = "1.4.0"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
2118
|
+
dependencies = [
|
|
2119
|
+
"bytes",
|
|
2120
|
+
"itoa",
|
|
2121
|
+
]
|
|
2122
|
+
|
|
2123
|
+
[[package]]
|
|
2124
|
+
name = "http-body"
|
|
2125
|
+
version = "1.0.1"
|
|
2126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2127
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
2128
|
+
dependencies = [
|
|
2129
|
+
"bytes",
|
|
2130
|
+
"http",
|
|
2131
|
+
]
|
|
2132
|
+
|
|
2133
|
+
[[package]]
|
|
2134
|
+
name = "http-body-util"
|
|
2135
|
+
version = "0.1.3"
|
|
2136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
2138
|
+
dependencies = [
|
|
2139
|
+
"bytes",
|
|
2140
|
+
"futures-core",
|
|
2141
|
+
"http",
|
|
2142
|
+
"http-body",
|
|
2143
|
+
"pin-project-lite",
|
|
2144
|
+
]
|
|
2145
|
+
|
|
2146
|
+
[[package]]
|
|
2147
|
+
name = "httparse"
|
|
2148
|
+
version = "1.10.1"
|
|
2149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2150
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
2151
|
+
|
|
2152
|
+
[[package]]
|
|
2153
|
+
name = "httpdate"
|
|
2154
|
+
version = "1.0.3"
|
|
2155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2156
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
2157
|
+
|
|
2158
|
+
[[package]]
|
|
2159
|
+
name = "humantime"
|
|
2160
|
+
version = "2.3.0"
|
|
2161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2162
|
+
checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
|
|
2163
|
+
|
|
2164
|
+
[[package]]
|
|
2165
|
+
name = "hyper"
|
|
2166
|
+
version = "1.8.1"
|
|
2167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2168
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
2169
|
+
dependencies = [
|
|
2170
|
+
"atomic-waker",
|
|
2171
|
+
"bytes",
|
|
2172
|
+
"futures-channel",
|
|
2173
|
+
"futures-core",
|
|
2174
|
+
"h2",
|
|
2175
|
+
"http",
|
|
2176
|
+
"http-body",
|
|
2177
|
+
"httparse",
|
|
2178
|
+
"httpdate",
|
|
2179
|
+
"itoa",
|
|
2180
|
+
"pin-project-lite",
|
|
2181
|
+
"pin-utils",
|
|
2182
|
+
"smallvec",
|
|
2183
|
+
"tokio",
|
|
2184
|
+
"want",
|
|
2185
|
+
]
|
|
2186
|
+
|
|
2187
|
+
[[package]]
|
|
2188
|
+
name = "hyper-rustls"
|
|
2189
|
+
version = "0.27.7"
|
|
2190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2191
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
2192
|
+
dependencies = [
|
|
2193
|
+
"http",
|
|
2194
|
+
"hyper",
|
|
2195
|
+
"hyper-util",
|
|
2196
|
+
"rustls",
|
|
2197
|
+
"rustls-native-certs",
|
|
2198
|
+
"rustls-pki-types",
|
|
2199
|
+
"tokio",
|
|
2200
|
+
"tokio-rustls",
|
|
2201
|
+
"tower-service",
|
|
2202
|
+
]
|
|
2203
|
+
|
|
2204
|
+
[[package]]
|
|
2205
|
+
name = "hyper-timeout"
|
|
2206
|
+
version = "0.5.2"
|
|
2207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2208
|
+
checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
|
|
2209
|
+
dependencies = [
|
|
2210
|
+
"hyper",
|
|
2211
|
+
"hyper-util",
|
|
2212
|
+
"pin-project-lite",
|
|
2213
|
+
"tokio",
|
|
2214
|
+
"tower-service",
|
|
2215
|
+
]
|
|
2216
|
+
|
|
2217
|
+
[[package]]
|
|
2218
|
+
name = "hyper-util"
|
|
2219
|
+
version = "0.1.19"
|
|
2220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2221
|
+
checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
|
|
2222
|
+
dependencies = [
|
|
2223
|
+
"base64",
|
|
2224
|
+
"bytes",
|
|
2225
|
+
"futures-channel",
|
|
2226
|
+
"futures-core",
|
|
2227
|
+
"futures-util",
|
|
2228
|
+
"http",
|
|
2229
|
+
"http-body",
|
|
2230
|
+
"hyper",
|
|
2231
|
+
"ipnet",
|
|
2232
|
+
"libc",
|
|
2233
|
+
"percent-encoding",
|
|
2234
|
+
"pin-project-lite",
|
|
2235
|
+
"socket2",
|
|
2236
|
+
"tokio",
|
|
2237
|
+
"tower-service",
|
|
2238
|
+
"tracing",
|
|
2239
|
+
]
|
|
2240
|
+
|
|
2241
|
+
[[package]]
|
|
2242
|
+
name = "iana-time-zone"
|
|
2243
|
+
version = "0.1.64"
|
|
2244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2245
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
2246
|
+
dependencies = [
|
|
2247
|
+
"android_system_properties",
|
|
2248
|
+
"core-foundation-sys",
|
|
2249
|
+
"iana-time-zone-haiku",
|
|
2250
|
+
"js-sys",
|
|
2251
|
+
"log",
|
|
2252
|
+
"wasm-bindgen",
|
|
2253
|
+
"windows-core",
|
|
2254
|
+
]
|
|
2255
|
+
|
|
2256
|
+
[[package]]
|
|
2257
|
+
name = "iana-time-zone-haiku"
|
|
2258
|
+
version = "0.1.2"
|
|
2259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
2261
|
+
dependencies = [
|
|
2262
|
+
"cc",
|
|
2263
|
+
]
|
|
2264
|
+
|
|
2265
|
+
[[package]]
|
|
2266
|
+
name = "icu_collections"
|
|
2267
|
+
version = "2.1.1"
|
|
2268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2269
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
2270
|
+
dependencies = [
|
|
2271
|
+
"displaydoc",
|
|
2272
|
+
"potential_utf",
|
|
2273
|
+
"yoke",
|
|
2274
|
+
"zerofrom",
|
|
2275
|
+
"zerovec",
|
|
2276
|
+
]
|
|
2277
|
+
|
|
2278
|
+
[[package]]
|
|
2279
|
+
name = "icu_locale_core"
|
|
2280
|
+
version = "2.1.1"
|
|
2281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2282
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
2283
|
+
dependencies = [
|
|
2284
|
+
"displaydoc",
|
|
2285
|
+
"litemap",
|
|
2286
|
+
"tinystr",
|
|
2287
|
+
"writeable",
|
|
2288
|
+
"zerovec",
|
|
2289
|
+
]
|
|
2290
|
+
|
|
2291
|
+
[[package]]
|
|
2292
|
+
name = "icu_normalizer"
|
|
2293
|
+
version = "2.1.1"
|
|
2294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2295
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
2296
|
+
dependencies = [
|
|
2297
|
+
"icu_collections",
|
|
2298
|
+
"icu_normalizer_data",
|
|
2299
|
+
"icu_properties",
|
|
2300
|
+
"icu_provider",
|
|
2301
|
+
"smallvec",
|
|
2302
|
+
"zerovec",
|
|
2303
|
+
]
|
|
2304
|
+
|
|
2305
|
+
[[package]]
|
|
2306
|
+
name = "icu_normalizer_data"
|
|
2307
|
+
version = "2.1.1"
|
|
2308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2309
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
2310
|
+
|
|
2311
|
+
[[package]]
|
|
2312
|
+
name = "icu_properties"
|
|
2313
|
+
version = "2.1.2"
|
|
2314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2315
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
2316
|
+
dependencies = [
|
|
2317
|
+
"icu_collections",
|
|
2318
|
+
"icu_locale_core",
|
|
2319
|
+
"icu_properties_data",
|
|
2320
|
+
"icu_provider",
|
|
2321
|
+
"zerotrie",
|
|
2322
|
+
"zerovec",
|
|
2323
|
+
]
|
|
2324
|
+
|
|
2325
|
+
[[package]]
|
|
2326
|
+
name = "icu_properties_data"
|
|
2327
|
+
version = "2.1.2"
|
|
2328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2329
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
2330
|
+
|
|
2331
|
+
[[package]]
|
|
2332
|
+
name = "icu_provider"
|
|
2333
|
+
version = "2.1.1"
|
|
2334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
2336
|
+
dependencies = [
|
|
2337
|
+
"displaydoc",
|
|
2338
|
+
"icu_locale_core",
|
|
2339
|
+
"writeable",
|
|
2340
|
+
"yoke",
|
|
2341
|
+
"zerofrom",
|
|
2342
|
+
"zerotrie",
|
|
2343
|
+
"zerovec",
|
|
2344
|
+
]
|
|
2345
|
+
|
|
2346
|
+
[[package]]
|
|
2347
|
+
name = "ident_case"
|
|
2348
|
+
version = "1.0.1"
|
|
2349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2350
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
2351
|
+
|
|
2352
|
+
[[package]]
|
|
2353
|
+
name = "idna"
|
|
2354
|
+
version = "1.1.0"
|
|
2355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2356
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
2357
|
+
dependencies = [
|
|
2358
|
+
"idna_adapter",
|
|
2359
|
+
"smallvec",
|
|
2360
|
+
"utf8_iter",
|
|
2361
|
+
]
|
|
2362
|
+
|
|
2363
|
+
[[package]]
|
|
2364
|
+
name = "idna_adapter"
|
|
2365
|
+
version = "1.2.1"
|
|
2366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2367
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
2368
|
+
dependencies = [
|
|
2369
|
+
"icu_normalizer",
|
|
2370
|
+
"icu_properties",
|
|
2371
|
+
]
|
|
2372
|
+
|
|
2373
|
+
[[package]]
|
|
2374
|
+
name = "indexmap"
|
|
2375
|
+
version = "2.12.1"
|
|
2376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2377
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
2378
|
+
dependencies = [
|
|
2379
|
+
"equivalent",
|
|
2380
|
+
"hashbrown 0.16.1",
|
|
2381
|
+
]
|
|
2382
|
+
|
|
2383
|
+
[[package]]
|
|
2384
|
+
name = "indicatif"
|
|
2385
|
+
version = "0.17.11"
|
|
2386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2387
|
+
checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
|
|
2388
|
+
dependencies = [
|
|
2389
|
+
"console",
|
|
2390
|
+
"number_prefix",
|
|
2391
|
+
"portable-atomic",
|
|
2392
|
+
"unicode-width 0.2.2",
|
|
2393
|
+
"web-time",
|
|
2394
|
+
]
|
|
2395
|
+
|
|
2396
|
+
[[package]]
|
|
2397
|
+
name = "indoc"
|
|
2398
|
+
version = "2.0.7"
|
|
2399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2400
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
2401
|
+
dependencies = [
|
|
2402
|
+
"rustversion",
|
|
2403
|
+
]
|
|
2404
|
+
|
|
2405
|
+
[[package]]
|
|
2406
|
+
name = "integer-encoding"
|
|
2407
|
+
version = "3.0.4"
|
|
2408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2409
|
+
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
|
2410
|
+
|
|
2411
|
+
[[package]]
|
|
2412
|
+
name = "ipnet"
|
|
2413
|
+
version = "2.11.0"
|
|
2414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2415
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
2416
|
+
|
|
2417
|
+
[[package]]
|
|
2418
|
+
name = "iri-string"
|
|
2419
|
+
version = "0.7.9"
|
|
2420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2421
|
+
checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
|
|
2422
|
+
dependencies = [
|
|
2423
|
+
"memchr",
|
|
2424
|
+
"serde",
|
|
2425
|
+
]
|
|
2426
|
+
|
|
2427
|
+
[[package]]
|
|
2428
|
+
name = "is_terminal_polyfill"
|
|
2429
|
+
version = "1.70.2"
|
|
2430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2431
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
2432
|
+
|
|
2433
|
+
[[package]]
|
|
2434
|
+
name = "itertools"
|
|
2435
|
+
version = "0.12.1"
|
|
2436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2437
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
2438
|
+
dependencies = [
|
|
2439
|
+
"either",
|
|
2440
|
+
]
|
|
2441
|
+
|
|
2442
|
+
[[package]]
|
|
2443
|
+
name = "itertools"
|
|
2444
|
+
version = "0.14.0"
|
|
2445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2446
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
2447
|
+
dependencies = [
|
|
2448
|
+
"either",
|
|
2449
|
+
]
|
|
2450
|
+
|
|
2451
|
+
[[package]]
|
|
2452
|
+
name = "itoa"
|
|
2453
|
+
version = "1.0.16"
|
|
2454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
|
+
checksum = "7ee5b5339afb4c41626dde77b7a611bd4f2c202b897852b4bcf5d03eddc61010"
|
|
2456
|
+
|
|
2457
|
+
[[package]]
|
|
2458
|
+
name = "jiff"
|
|
2459
|
+
version = "0.2.16"
|
|
2460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
+
checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35"
|
|
2462
|
+
dependencies = [
|
|
2463
|
+
"jiff-static",
|
|
2464
|
+
"log",
|
|
2465
|
+
"portable-atomic",
|
|
2466
|
+
"portable-atomic-util",
|
|
2467
|
+
"serde_core",
|
|
2468
|
+
]
|
|
2469
|
+
|
|
2470
|
+
[[package]]
|
|
2471
|
+
name = "jiff-static"
|
|
2472
|
+
version = "0.2.16"
|
|
2473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2474
|
+
checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69"
|
|
2475
|
+
dependencies = [
|
|
2476
|
+
"proc-macro2",
|
|
2477
|
+
"quote",
|
|
2478
|
+
"syn",
|
|
2479
|
+
]
|
|
2480
|
+
|
|
2481
|
+
[[package]]
|
|
2482
|
+
name = "jobserver"
|
|
2483
|
+
version = "0.1.34"
|
|
2484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2485
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
2486
|
+
dependencies = [
|
|
2487
|
+
"getrandom 0.3.4",
|
|
2488
|
+
"libc",
|
|
2489
|
+
]
|
|
2490
|
+
|
|
2491
|
+
[[package]]
|
|
2492
|
+
name = "js-sys"
|
|
2493
|
+
version = "0.3.83"
|
|
2494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2495
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
2496
|
+
dependencies = [
|
|
2497
|
+
"once_cell",
|
|
2498
|
+
"wasm-bindgen",
|
|
2499
|
+
]
|
|
2500
|
+
|
|
2501
|
+
[[package]]
|
|
2502
|
+
name = "lazy_static"
|
|
2503
|
+
version = "1.5.0"
|
|
2504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2505
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
2506
|
+
|
|
2507
|
+
[[package]]
|
|
2508
|
+
name = "lexical-core"
|
|
2509
|
+
version = "1.0.6"
|
|
2510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2511
|
+
checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
|
|
2512
|
+
dependencies = [
|
|
2513
|
+
"lexical-parse-float",
|
|
2514
|
+
"lexical-parse-integer",
|
|
2515
|
+
"lexical-util",
|
|
2516
|
+
"lexical-write-float",
|
|
2517
|
+
"lexical-write-integer",
|
|
2518
|
+
]
|
|
2519
|
+
|
|
2520
|
+
[[package]]
|
|
2521
|
+
name = "lexical-parse-float"
|
|
2522
|
+
version = "1.0.6"
|
|
2523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2524
|
+
checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
|
|
2525
|
+
dependencies = [
|
|
2526
|
+
"lexical-parse-integer",
|
|
2527
|
+
"lexical-util",
|
|
2528
|
+
]
|
|
2529
|
+
|
|
2530
|
+
[[package]]
|
|
2531
|
+
name = "lexical-parse-integer"
|
|
2532
|
+
version = "1.0.6"
|
|
2533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2534
|
+
checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
|
|
2535
|
+
dependencies = [
|
|
2536
|
+
"lexical-util",
|
|
2537
|
+
]
|
|
2538
|
+
|
|
2539
|
+
[[package]]
|
|
2540
|
+
name = "lexical-util"
|
|
2541
|
+
version = "1.0.7"
|
|
2542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2543
|
+
checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
2544
|
+
|
|
2545
|
+
[[package]]
|
|
2546
|
+
name = "lexical-write-float"
|
|
2547
|
+
version = "1.0.6"
|
|
2548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2549
|
+
checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
|
|
2550
|
+
dependencies = [
|
|
2551
|
+
"lexical-util",
|
|
2552
|
+
"lexical-write-integer",
|
|
2553
|
+
]
|
|
2554
|
+
|
|
2555
|
+
[[package]]
|
|
2556
|
+
name = "lexical-write-integer"
|
|
2557
|
+
version = "1.0.6"
|
|
2558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2559
|
+
checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
|
|
2560
|
+
dependencies = [
|
|
2561
|
+
"lexical-util",
|
|
2562
|
+
]
|
|
2563
|
+
|
|
2564
|
+
[[package]]
|
|
2565
|
+
name = "libbz2-rs-sys"
|
|
2566
|
+
version = "0.2.2"
|
|
2567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2568
|
+
checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
|
|
2569
|
+
|
|
2570
|
+
[[package]]
|
|
2571
|
+
name = "libc"
|
|
2572
|
+
version = "0.2.178"
|
|
2573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2574
|
+
checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
|
|
2575
|
+
|
|
2576
|
+
[[package]]
|
|
2577
|
+
name = "libm"
|
|
2578
|
+
version = "0.2.15"
|
|
2579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2580
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
2581
|
+
|
|
2582
|
+
[[package]]
|
|
2583
|
+
name = "libz-rs-sys"
|
|
2584
|
+
version = "0.5.4"
|
|
2585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2586
|
+
checksum = "15413ef615ad868d4d65dce091cb233b229419c7c0c4bcaa746c0901c49ff39c"
|
|
2587
|
+
dependencies = [
|
|
2588
|
+
"zlib-rs",
|
|
2589
|
+
]
|
|
2590
|
+
|
|
2591
|
+
[[package]]
|
|
2592
|
+
name = "linux-raw-sys"
|
|
2593
|
+
version = "0.4.15"
|
|
2594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2595
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
2596
|
+
|
|
2597
|
+
[[package]]
|
|
2598
|
+
name = "linux-raw-sys"
|
|
2599
|
+
version = "0.11.0"
|
|
2600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2601
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
2602
|
+
|
|
2603
|
+
[[package]]
|
|
2604
|
+
name = "litemap"
|
|
2605
|
+
version = "0.8.1"
|
|
2606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2607
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
2608
|
+
|
|
2609
|
+
[[package]]
|
|
2610
|
+
name = "litrs"
|
|
2611
|
+
version = "1.0.0"
|
|
2612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
2614
|
+
|
|
2615
|
+
[[package]]
|
|
2616
|
+
name = "lock_api"
|
|
2617
|
+
version = "0.4.14"
|
|
2618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2619
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
2620
|
+
dependencies = [
|
|
2621
|
+
"scopeguard",
|
|
2622
|
+
]
|
|
2623
|
+
|
|
2624
|
+
[[package]]
|
|
2625
|
+
name = "log"
|
|
2626
|
+
version = "0.4.29"
|
|
2627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2628
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
2629
|
+
|
|
2630
|
+
[[package]]
|
|
2631
|
+
name = "lru-slab"
|
|
2632
|
+
version = "0.1.2"
|
|
2633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2634
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
2635
|
+
|
|
2636
|
+
[[package]]
|
|
2637
|
+
name = "lz4_flex"
|
|
2638
|
+
version = "0.12.0"
|
|
2639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
+
checksum = "ab6473172471198271ff72e9379150e9dfd70d8e533e0752a27e515b48dd375e"
|
|
2641
|
+
dependencies = [
|
|
2642
|
+
"twox-hash",
|
|
2643
|
+
]
|
|
2644
|
+
|
|
2645
|
+
[[package]]
|
|
2646
|
+
name = "lzma-sys"
|
|
2647
|
+
version = "0.1.20"
|
|
2648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2649
|
+
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
2650
|
+
dependencies = [
|
|
2651
|
+
"cc",
|
|
2652
|
+
"libc",
|
|
2653
|
+
"pkg-config",
|
|
2654
|
+
]
|
|
2655
|
+
|
|
2656
|
+
[[package]]
|
|
2657
|
+
name = "matchers"
|
|
2658
|
+
version = "0.2.0"
|
|
2659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
2661
|
+
dependencies = [
|
|
2662
|
+
"regex-automata",
|
|
2663
|
+
]
|
|
2664
|
+
|
|
2665
|
+
[[package]]
|
|
2666
|
+
name = "matchit"
|
|
2667
|
+
version = "0.8.4"
|
|
2668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2669
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
2670
|
+
|
|
2671
|
+
[[package]]
|
|
2672
|
+
name = "md-5"
|
|
2673
|
+
version = "0.10.6"
|
|
2674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2675
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
2676
|
+
dependencies = [
|
|
2677
|
+
"cfg-if",
|
|
2678
|
+
"digest",
|
|
2679
|
+
]
|
|
2680
|
+
|
|
2681
|
+
[[package]]
|
|
2682
|
+
name = "memchr"
|
|
2683
|
+
version = "2.7.6"
|
|
2684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2685
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
2686
|
+
|
|
2687
|
+
[[package]]
|
|
2688
|
+
name = "memoffset"
|
|
2689
|
+
version = "0.9.1"
|
|
2690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2691
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
2692
|
+
dependencies = [
|
|
2693
|
+
"autocfg",
|
|
2694
|
+
]
|
|
2695
|
+
|
|
2696
|
+
[[package]]
|
|
2697
|
+
name = "mime"
|
|
2698
|
+
version = "0.3.17"
|
|
2699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2700
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
2701
|
+
|
|
2702
|
+
[[package]]
|
|
2703
|
+
name = "miniz_oxide"
|
|
2704
|
+
version = "0.8.9"
|
|
2705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2706
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
2707
|
+
dependencies = [
|
|
2708
|
+
"adler2",
|
|
2709
|
+
"simd-adler32",
|
|
2710
|
+
]
|
|
2711
|
+
|
|
2712
|
+
[[package]]
|
|
2713
|
+
name = "mio"
|
|
2714
|
+
version = "1.1.1"
|
|
2715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2716
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
2717
|
+
dependencies = [
|
|
2718
|
+
"libc",
|
|
2719
|
+
"log",
|
|
2720
|
+
"wasi",
|
|
2721
|
+
"windows-sys 0.61.2",
|
|
2722
|
+
]
|
|
2723
|
+
|
|
2724
|
+
[[package]]
|
|
2725
|
+
name = "nu-ansi-term"
|
|
2726
|
+
version = "0.50.3"
|
|
2727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2728
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
2729
|
+
dependencies = [
|
|
2730
|
+
"windows-sys 0.61.2",
|
|
2731
|
+
]
|
|
2732
|
+
|
|
2733
|
+
[[package]]
|
|
2734
|
+
name = "num-bigint"
|
|
2735
|
+
version = "0.4.6"
|
|
2736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2737
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
2738
|
+
dependencies = [
|
|
2739
|
+
"num-integer",
|
|
2740
|
+
"num-traits",
|
|
2741
|
+
"serde",
|
|
2742
|
+
]
|
|
2743
|
+
|
|
2744
|
+
[[package]]
|
|
2745
|
+
name = "num-complex"
|
|
2746
|
+
version = "0.4.6"
|
|
2747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2748
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
2749
|
+
dependencies = [
|
|
2750
|
+
"num-traits",
|
|
2751
|
+
]
|
|
2752
|
+
|
|
2753
|
+
[[package]]
|
|
2754
|
+
name = "num-integer"
|
|
2755
|
+
version = "0.1.46"
|
|
2756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2757
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
2758
|
+
dependencies = [
|
|
2759
|
+
"num-traits",
|
|
2760
|
+
]
|
|
2761
|
+
|
|
2762
|
+
[[package]]
|
|
2763
|
+
name = "num-traits"
|
|
2764
|
+
version = "0.2.19"
|
|
2765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2766
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2767
|
+
dependencies = [
|
|
2768
|
+
"autocfg",
|
|
2769
|
+
"libm",
|
|
2770
|
+
]
|
|
2771
|
+
|
|
2772
|
+
[[package]]
|
|
2773
|
+
name = "number_prefix"
|
|
2774
|
+
version = "0.4.0"
|
|
2775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2776
|
+
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
2777
|
+
|
|
2778
|
+
[[package]]
|
|
2779
|
+
name = "object"
|
|
2780
|
+
version = "0.32.2"
|
|
2781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2782
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
|
2783
|
+
dependencies = [
|
|
2784
|
+
"memchr",
|
|
2785
|
+
]
|
|
2786
|
+
|
|
2787
|
+
[[package]]
|
|
2788
|
+
name = "object_store"
|
|
2789
|
+
version = "0.12.4"
|
|
2790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2791
|
+
checksum = "4c1be0c6c22ec0817cdc77d3842f721a17fd30ab6965001415b5402a74e6b740"
|
|
2792
|
+
dependencies = [
|
|
2793
|
+
"async-trait",
|
|
2794
|
+
"base64",
|
|
2795
|
+
"bytes",
|
|
2796
|
+
"chrono",
|
|
2797
|
+
"form_urlencoded",
|
|
2798
|
+
"futures",
|
|
2799
|
+
"http",
|
|
2800
|
+
"http-body-util",
|
|
2801
|
+
"humantime",
|
|
2802
|
+
"hyper",
|
|
2803
|
+
"itertools 0.14.0",
|
|
2804
|
+
"md-5",
|
|
2805
|
+
"parking_lot",
|
|
2806
|
+
"percent-encoding",
|
|
2807
|
+
"quick-xml",
|
|
2808
|
+
"rand",
|
|
2809
|
+
"reqwest",
|
|
2810
|
+
"ring",
|
|
2811
|
+
"serde",
|
|
2812
|
+
"serde_json",
|
|
2813
|
+
"serde_urlencoded",
|
|
2814
|
+
"thiserror 2.0.17",
|
|
2815
|
+
"tokio",
|
|
2816
|
+
"tracing",
|
|
2817
|
+
"url",
|
|
2818
|
+
"walkdir",
|
|
2819
|
+
"wasm-bindgen-futures",
|
|
2820
|
+
"web-time",
|
|
2821
|
+
]
|
|
2822
|
+
|
|
2823
|
+
[[package]]
|
|
2824
|
+
name = "once_cell"
|
|
2825
|
+
version = "1.21.3"
|
|
2826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2827
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
2828
|
+
|
|
2829
|
+
[[package]]
|
|
2830
|
+
name = "once_cell_polyfill"
|
|
2831
|
+
version = "1.70.2"
|
|
2832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2833
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
2834
|
+
|
|
2835
|
+
[[package]]
|
|
2836
|
+
name = "openssl-probe"
|
|
2837
|
+
version = "0.1.6"
|
|
2838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2839
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
2840
|
+
|
|
2841
|
+
[[package]]
|
|
2842
|
+
name = "ordered-float"
|
|
2843
|
+
version = "2.10.1"
|
|
2844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2845
|
+
checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
|
|
2846
|
+
dependencies = [
|
|
2847
|
+
"num-traits",
|
|
2848
|
+
]
|
|
2849
|
+
|
|
2850
|
+
[[package]]
|
|
2851
|
+
name = "parking_lot"
|
|
2852
|
+
version = "0.12.5"
|
|
2853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2854
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2855
|
+
dependencies = [
|
|
2856
|
+
"lock_api",
|
|
2857
|
+
"parking_lot_core",
|
|
2858
|
+
]
|
|
2859
|
+
|
|
2860
|
+
[[package]]
|
|
2861
|
+
name = "parking_lot_core"
|
|
2862
|
+
version = "0.9.12"
|
|
2863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2864
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2865
|
+
dependencies = [
|
|
2866
|
+
"cfg-if",
|
|
2867
|
+
"libc",
|
|
2868
|
+
"redox_syscall",
|
|
2869
|
+
"smallvec",
|
|
2870
|
+
"windows-link",
|
|
2871
|
+
]
|
|
2872
|
+
|
|
2873
|
+
[[package]]
|
|
2874
|
+
name = "parquet"
|
|
2875
|
+
version = "57.1.0"
|
|
2876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2877
|
+
checksum = "be3e4f6d320dd92bfa7d612e265d7d08bba0a240bab86af3425e1d255a511d89"
|
|
2878
|
+
dependencies = [
|
|
2879
|
+
"ahash",
|
|
2880
|
+
"arrow-array",
|
|
2881
|
+
"arrow-buffer",
|
|
2882
|
+
"arrow-cast",
|
|
2883
|
+
"arrow-data",
|
|
2884
|
+
"arrow-ipc",
|
|
2885
|
+
"arrow-schema",
|
|
2886
|
+
"arrow-select",
|
|
2887
|
+
"base64",
|
|
2888
|
+
"brotli",
|
|
2889
|
+
"bytes",
|
|
2890
|
+
"chrono",
|
|
2891
|
+
"flate2",
|
|
2892
|
+
"futures",
|
|
2893
|
+
"half",
|
|
2894
|
+
"hashbrown 0.16.1",
|
|
2895
|
+
"lz4_flex",
|
|
2896
|
+
"num-bigint",
|
|
2897
|
+
"num-integer",
|
|
2898
|
+
"num-traits",
|
|
2899
|
+
"object_store",
|
|
2900
|
+
"paste",
|
|
2901
|
+
"seq-macro",
|
|
2902
|
+
"simdutf8",
|
|
2903
|
+
"snap",
|
|
2904
|
+
"thrift",
|
|
2905
|
+
"tokio",
|
|
2906
|
+
"twox-hash",
|
|
2907
|
+
"zstd",
|
|
2908
|
+
]
|
|
2909
|
+
|
|
2910
|
+
[[package]]
|
|
2911
|
+
name = "paste"
|
|
2912
|
+
version = "1.0.15"
|
|
2913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2915
|
+
|
|
2916
|
+
[[package]]
|
|
2917
|
+
name = "percent-encoding"
|
|
2918
|
+
version = "2.3.2"
|
|
2919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2920
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2921
|
+
|
|
2922
|
+
[[package]]
|
|
2923
|
+
name = "petgraph"
|
|
2924
|
+
version = "0.8.3"
|
|
2925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2926
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
2927
|
+
dependencies = [
|
|
2928
|
+
"fixedbitset",
|
|
2929
|
+
"hashbrown 0.15.5",
|
|
2930
|
+
"indexmap",
|
|
2931
|
+
"serde",
|
|
2932
|
+
]
|
|
2933
|
+
|
|
2934
|
+
[[package]]
|
|
2935
|
+
name = "phf"
|
|
2936
|
+
version = "0.12.1"
|
|
2937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2938
|
+
checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
|
|
2939
|
+
dependencies = [
|
|
2940
|
+
"phf_shared",
|
|
2941
|
+
]
|
|
2942
|
+
|
|
2943
|
+
[[package]]
|
|
2944
|
+
name = "phf_shared"
|
|
2945
|
+
version = "0.12.1"
|
|
2946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2947
|
+
checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
|
|
2948
|
+
dependencies = [
|
|
2949
|
+
"siphasher",
|
|
2950
|
+
]
|
|
2951
|
+
|
|
2952
|
+
[[package]]
|
|
2953
|
+
name = "pin-project"
|
|
2954
|
+
version = "1.1.10"
|
|
2955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2956
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
2957
|
+
dependencies = [
|
|
2958
|
+
"pin-project-internal",
|
|
2959
|
+
]
|
|
2960
|
+
|
|
2961
|
+
[[package]]
|
|
2962
|
+
name = "pin-project-internal"
|
|
2963
|
+
version = "1.1.10"
|
|
2964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2965
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
2966
|
+
dependencies = [
|
|
2967
|
+
"proc-macro2",
|
|
2968
|
+
"quote",
|
|
2969
|
+
"syn",
|
|
2970
|
+
]
|
|
2971
|
+
|
|
2972
|
+
[[package]]
|
|
2973
|
+
name = "pin-project-lite"
|
|
2974
|
+
version = "0.2.16"
|
|
2975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2976
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2977
|
+
|
|
2978
|
+
[[package]]
|
|
2979
|
+
name = "pin-utils"
|
|
2980
|
+
version = "0.1.0"
|
|
2981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2982
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2983
|
+
|
|
2984
|
+
[[package]]
|
|
2985
|
+
name = "pkg-config"
|
|
2986
|
+
version = "0.3.32"
|
|
2987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2988
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2989
|
+
|
|
2990
|
+
[[package]]
|
|
2991
|
+
name = "portable-atomic"
|
|
2992
|
+
version = "1.12.0"
|
|
2993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2994
|
+
checksum = "f59e70c4aef1e55797c2e8fd94a4f2a973fc972cfde0e0b05f683667b0cd39dd"
|
|
2995
|
+
|
|
2996
|
+
[[package]]
|
|
2997
|
+
name = "portable-atomic-util"
|
|
2998
|
+
version = "0.2.4"
|
|
2999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3000
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
3001
|
+
dependencies = [
|
|
3002
|
+
"portable-atomic",
|
|
3003
|
+
]
|
|
3004
|
+
|
|
3005
|
+
[[package]]
|
|
3006
|
+
name = "potential_utf"
|
|
3007
|
+
version = "0.1.4"
|
|
3008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3009
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
3010
|
+
dependencies = [
|
|
3011
|
+
"zerovec",
|
|
3012
|
+
]
|
|
3013
|
+
|
|
3014
|
+
[[package]]
|
|
3015
|
+
name = "ppv-lite86"
|
|
3016
|
+
version = "0.2.21"
|
|
3017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3018
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
3019
|
+
dependencies = [
|
|
3020
|
+
"zerocopy",
|
|
3021
|
+
]
|
|
3022
|
+
|
|
3023
|
+
[[package]]
|
|
3024
|
+
name = "prettyplease"
|
|
3025
|
+
version = "0.2.37"
|
|
3026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3027
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
3028
|
+
dependencies = [
|
|
3029
|
+
"proc-macro2",
|
|
3030
|
+
"syn",
|
|
3031
|
+
]
|
|
3032
|
+
|
|
3033
|
+
[[package]]
|
|
3034
|
+
name = "proc-macro-crate"
|
|
3035
|
+
version = "3.4.0"
|
|
3036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3037
|
+
checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
|
|
3038
|
+
dependencies = [
|
|
3039
|
+
"toml_edit",
|
|
3040
|
+
]
|
|
3041
|
+
|
|
3042
|
+
[[package]]
|
|
3043
|
+
name = "proc-macro2"
|
|
3044
|
+
version = "1.0.103"
|
|
3045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3046
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
3047
|
+
dependencies = [
|
|
3048
|
+
"unicode-ident",
|
|
3049
|
+
]
|
|
3050
|
+
|
|
3051
|
+
[[package]]
|
|
3052
|
+
name = "prost"
|
|
3053
|
+
version = "0.14.1"
|
|
3054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3055
|
+
checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d"
|
|
3056
|
+
dependencies = [
|
|
3057
|
+
"bytes",
|
|
3058
|
+
"prost-derive",
|
|
3059
|
+
]
|
|
3060
|
+
|
|
3061
|
+
[[package]]
|
|
3062
|
+
name = "prost-derive"
|
|
3063
|
+
version = "0.14.1"
|
|
3064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3065
|
+
checksum = "9120690fafc389a67ba3803df527d0ec9cbbc9cc45e4cc20b332996dfb672425"
|
|
3066
|
+
dependencies = [
|
|
3067
|
+
"anyhow",
|
|
3068
|
+
"itertools 0.14.0",
|
|
3069
|
+
"proc-macro2",
|
|
3070
|
+
"quote",
|
|
3071
|
+
"syn",
|
|
3072
|
+
]
|
|
3073
|
+
|
|
3074
|
+
[[package]]
|
|
3075
|
+
name = "prost-types"
|
|
3076
|
+
version = "0.14.1"
|
|
3077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3078
|
+
checksum = "b9b4db3d6da204ed77bb26ba83b6122a73aeb2e87e25fbf7ad2e84c4ccbf8f72"
|
|
3079
|
+
dependencies = [
|
|
3080
|
+
"prost",
|
|
3081
|
+
]
|
|
3082
|
+
|
|
3083
|
+
[[package]]
|
|
3084
|
+
name = "psm"
|
|
3085
|
+
version = "0.1.28"
|
|
3086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3087
|
+
checksum = "d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01"
|
|
3088
|
+
dependencies = [
|
|
3089
|
+
"ar_archive_writer",
|
|
3090
|
+
"cc",
|
|
3091
|
+
]
|
|
3092
|
+
|
|
3093
|
+
[[package]]
|
|
3094
|
+
name = "pyo3"
|
|
3095
|
+
version = "0.26.0"
|
|
3096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3097
|
+
checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
|
|
3098
|
+
dependencies = [
|
|
3099
|
+
"indoc",
|
|
3100
|
+
"libc",
|
|
3101
|
+
"memoffset",
|
|
3102
|
+
"once_cell",
|
|
3103
|
+
"portable-atomic",
|
|
3104
|
+
"pyo3-build-config",
|
|
3105
|
+
"pyo3-ffi",
|
|
3106
|
+
"pyo3-macros",
|
|
3107
|
+
"unindent",
|
|
3108
|
+
]
|
|
3109
|
+
|
|
3110
|
+
[[package]]
|
|
3111
|
+
name = "pyo3-async-runtimes"
|
|
3112
|
+
version = "0.26.0"
|
|
3113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3114
|
+
checksum = "e6ee6d4cb3e8d5b925f5cdb38da183e0ff18122eb2048d4041c9e7034d026e23"
|
|
3115
|
+
dependencies = [
|
|
3116
|
+
"futures",
|
|
3117
|
+
"once_cell",
|
|
3118
|
+
"pin-project-lite",
|
|
3119
|
+
"pyo3",
|
|
3120
|
+
"tokio",
|
|
3121
|
+
]
|
|
3122
|
+
|
|
3123
|
+
[[package]]
|
|
3124
|
+
name = "pyo3-build-config"
|
|
3125
|
+
version = "0.26.0"
|
|
3126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3127
|
+
checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
|
|
3128
|
+
dependencies = [
|
|
3129
|
+
"target-lexicon",
|
|
3130
|
+
]
|
|
3131
|
+
|
|
3132
|
+
[[package]]
|
|
3133
|
+
name = "pyo3-ffi"
|
|
3134
|
+
version = "0.26.0"
|
|
3135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3136
|
+
checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
|
|
3137
|
+
dependencies = [
|
|
3138
|
+
"libc",
|
|
3139
|
+
"pyo3-build-config",
|
|
3140
|
+
]
|
|
3141
|
+
|
|
3142
|
+
[[package]]
|
|
3143
|
+
name = "pyo3-log"
|
|
3144
|
+
version = "0.13.2"
|
|
3145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3146
|
+
checksum = "2f8bae9ad5ba08b0b0ed2bb9c2bdbaeccc69cafca96d78cf0fbcea0d45d122bb"
|
|
3147
|
+
dependencies = [
|
|
3148
|
+
"arc-swap",
|
|
3149
|
+
"log",
|
|
3150
|
+
"pyo3",
|
|
3151
|
+
]
|
|
3152
|
+
|
|
3153
|
+
[[package]]
|
|
3154
|
+
name = "pyo3-macros"
|
|
3155
|
+
version = "0.26.0"
|
|
3156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3157
|
+
checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
|
|
3158
|
+
dependencies = [
|
|
3159
|
+
"proc-macro2",
|
|
3160
|
+
"pyo3-macros-backend",
|
|
3161
|
+
"quote",
|
|
3162
|
+
"syn",
|
|
3163
|
+
]
|
|
3164
|
+
|
|
3165
|
+
[[package]]
|
|
3166
|
+
name = "pyo3-macros-backend"
|
|
3167
|
+
version = "0.26.0"
|
|
3168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3169
|
+
checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
|
|
3170
|
+
dependencies = [
|
|
3171
|
+
"heck",
|
|
3172
|
+
"proc-macro2",
|
|
3173
|
+
"pyo3-build-config",
|
|
3174
|
+
"quote",
|
|
3175
|
+
"syn",
|
|
3176
|
+
]
|
|
3177
|
+
|
|
3178
|
+
[[package]]
|
|
3179
|
+
name = "quad-rand"
|
|
3180
|
+
version = "0.2.3"
|
|
3181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3182
|
+
checksum = "5a651516ddc9168ebd67b24afd085a718be02f8858fe406591b013d101ce2f40"
|
|
3183
|
+
|
|
3184
|
+
[[package]]
|
|
3185
|
+
name = "quick-xml"
|
|
3186
|
+
version = "0.38.4"
|
|
3187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3188
|
+
checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
|
|
3189
|
+
dependencies = [
|
|
3190
|
+
"memchr",
|
|
3191
|
+
"serde",
|
|
3192
|
+
]
|
|
3193
|
+
|
|
3194
|
+
[[package]]
|
|
3195
|
+
name = "quinn"
|
|
3196
|
+
version = "0.11.9"
|
|
3197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3198
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
3199
|
+
dependencies = [
|
|
3200
|
+
"bytes",
|
|
3201
|
+
"cfg_aliases",
|
|
3202
|
+
"pin-project-lite",
|
|
3203
|
+
"quinn-proto",
|
|
3204
|
+
"quinn-udp",
|
|
3205
|
+
"rustc-hash",
|
|
3206
|
+
"rustls",
|
|
3207
|
+
"socket2",
|
|
3208
|
+
"thiserror 2.0.17",
|
|
3209
|
+
"tokio",
|
|
3210
|
+
"tracing",
|
|
3211
|
+
"web-time",
|
|
3212
|
+
]
|
|
3213
|
+
|
|
3214
|
+
[[package]]
|
|
3215
|
+
name = "quinn-proto"
|
|
3216
|
+
version = "0.11.13"
|
|
3217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3218
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
3219
|
+
dependencies = [
|
|
3220
|
+
"bytes",
|
|
3221
|
+
"getrandom 0.3.4",
|
|
3222
|
+
"lru-slab",
|
|
3223
|
+
"rand",
|
|
3224
|
+
"ring",
|
|
3225
|
+
"rustc-hash",
|
|
3226
|
+
"rustls",
|
|
3227
|
+
"rustls-pki-types",
|
|
3228
|
+
"slab",
|
|
3229
|
+
"thiserror 2.0.17",
|
|
3230
|
+
"tinyvec",
|
|
3231
|
+
"tracing",
|
|
3232
|
+
"web-time",
|
|
3233
|
+
]
|
|
3234
|
+
|
|
3235
|
+
[[package]]
|
|
3236
|
+
name = "quinn-udp"
|
|
3237
|
+
version = "0.5.14"
|
|
3238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3239
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
3240
|
+
dependencies = [
|
|
3241
|
+
"cfg_aliases",
|
|
3242
|
+
"libc",
|
|
3243
|
+
"once_cell",
|
|
3244
|
+
"socket2",
|
|
3245
|
+
"tracing",
|
|
3246
|
+
"windows-sys 0.60.2",
|
|
3247
|
+
]
|
|
3248
|
+
|
|
3249
|
+
[[package]]
|
|
3250
|
+
name = "quote"
|
|
3251
|
+
version = "1.0.42"
|
|
3252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3253
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
3254
|
+
dependencies = [
|
|
3255
|
+
"proc-macro2",
|
|
3256
|
+
]
|
|
3257
|
+
|
|
3258
|
+
[[package]]
|
|
3259
|
+
name = "r-efi"
|
|
3260
|
+
version = "5.3.0"
|
|
3261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3262
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
3263
|
+
|
|
3264
|
+
[[package]]
|
|
3265
|
+
name = "rand"
|
|
3266
|
+
version = "0.9.2"
|
|
3267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3268
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
3269
|
+
dependencies = [
|
|
3270
|
+
"rand_chacha",
|
|
3271
|
+
"rand_core",
|
|
3272
|
+
]
|
|
3273
|
+
|
|
3274
|
+
[[package]]
|
|
3275
|
+
name = "rand_chacha"
|
|
3276
|
+
version = "0.9.0"
|
|
3277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3278
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
3279
|
+
dependencies = [
|
|
3280
|
+
"ppv-lite86",
|
|
3281
|
+
"rand_core",
|
|
3282
|
+
]
|
|
3283
|
+
|
|
3284
|
+
[[package]]
|
|
3285
|
+
name = "rand_core"
|
|
3286
|
+
version = "0.9.3"
|
|
3287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3288
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
3289
|
+
dependencies = [
|
|
3290
|
+
"getrandom 0.3.4",
|
|
3291
|
+
]
|
|
3292
|
+
|
|
3293
|
+
[[package]]
|
|
3294
|
+
name = "recursive"
|
|
3295
|
+
version = "0.1.1"
|
|
3296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3297
|
+
checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
|
|
3298
|
+
dependencies = [
|
|
3299
|
+
"recursive-proc-macro-impl",
|
|
3300
|
+
"stacker",
|
|
3301
|
+
]
|
|
3302
|
+
|
|
3303
|
+
[[package]]
|
|
3304
|
+
name = "recursive-proc-macro-impl"
|
|
3305
|
+
version = "0.1.1"
|
|
3306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3307
|
+
checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
|
|
3308
|
+
dependencies = [
|
|
3309
|
+
"quote",
|
|
3310
|
+
"syn",
|
|
3311
|
+
]
|
|
3312
|
+
|
|
3313
|
+
[[package]]
|
|
3314
|
+
name = "redox_syscall"
|
|
3315
|
+
version = "0.5.18"
|
|
3316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3317
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
3318
|
+
dependencies = [
|
|
3319
|
+
"bitflags",
|
|
3320
|
+
]
|
|
3321
|
+
|
|
3322
|
+
[[package]]
|
|
3323
|
+
name = "reedline"
|
|
3324
|
+
version = "0.37.0"
|
|
3325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3326
|
+
checksum = "9834765acaa2deedf29197f2da3d309801683beb20e25775bc0249f97a7b9a74"
|
|
3327
|
+
dependencies = [
|
|
3328
|
+
"chrono",
|
|
3329
|
+
"crossterm 0.28.1",
|
|
3330
|
+
"fd-lock",
|
|
3331
|
+
"itertools 0.12.1",
|
|
3332
|
+
"nu-ansi-term",
|
|
3333
|
+
"serde",
|
|
3334
|
+
"strip-ansi-escapes",
|
|
3335
|
+
"strum 0.26.3",
|
|
3336
|
+
"strum_macros 0.26.4",
|
|
3337
|
+
"thiserror 1.0.69",
|
|
3338
|
+
"unicode-segmentation",
|
|
3339
|
+
"unicode-width 0.1.14",
|
|
3340
|
+
]
|
|
3341
|
+
|
|
3342
|
+
[[package]]
|
|
3343
|
+
name = "regex"
|
|
3344
|
+
version = "1.12.2"
|
|
3345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3346
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
3347
|
+
dependencies = [
|
|
3348
|
+
"aho-corasick",
|
|
3349
|
+
"memchr",
|
|
3350
|
+
"regex-automata",
|
|
3351
|
+
"regex-syntax",
|
|
3352
|
+
]
|
|
3353
|
+
|
|
3354
|
+
[[package]]
|
|
3355
|
+
name = "regex-automata"
|
|
3356
|
+
version = "0.4.13"
|
|
3357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3358
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
3359
|
+
dependencies = [
|
|
3360
|
+
"aho-corasick",
|
|
3361
|
+
"memchr",
|
|
3362
|
+
"regex-syntax",
|
|
3363
|
+
]
|
|
3364
|
+
|
|
3365
|
+
[[package]]
|
|
3366
|
+
name = "regex-lite"
|
|
3367
|
+
version = "0.1.8"
|
|
3368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3369
|
+
checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
|
|
3370
|
+
|
|
3371
|
+
[[package]]
|
|
3372
|
+
name = "regex-syntax"
|
|
3373
|
+
version = "0.8.8"
|
|
3374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3375
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
3376
|
+
|
|
3377
|
+
[[package]]
|
|
3378
|
+
name = "relative-path"
|
|
3379
|
+
version = "1.9.3"
|
|
3380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3381
|
+
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
|
3382
|
+
|
|
3383
|
+
[[package]]
|
|
3384
|
+
name = "reqwest"
|
|
3385
|
+
version = "0.12.26"
|
|
3386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3387
|
+
checksum = "3b4c14b2d9afca6a60277086b0cc6a6ae0b568f6f7916c943a8cdc79f8be240f"
|
|
3388
|
+
dependencies = [
|
|
3389
|
+
"base64",
|
|
3390
|
+
"bytes",
|
|
3391
|
+
"futures-core",
|
|
3392
|
+
"futures-util",
|
|
3393
|
+
"h2",
|
|
3394
|
+
"http",
|
|
3395
|
+
"http-body",
|
|
3396
|
+
"http-body-util",
|
|
3397
|
+
"hyper",
|
|
3398
|
+
"hyper-rustls",
|
|
3399
|
+
"hyper-util",
|
|
3400
|
+
"js-sys",
|
|
3401
|
+
"log",
|
|
3402
|
+
"percent-encoding",
|
|
3403
|
+
"pin-project-lite",
|
|
3404
|
+
"quinn",
|
|
3405
|
+
"rustls",
|
|
3406
|
+
"rustls-native-certs",
|
|
3407
|
+
"rustls-pki-types",
|
|
3408
|
+
"serde",
|
|
3409
|
+
"serde_json",
|
|
3410
|
+
"serde_urlencoded",
|
|
3411
|
+
"sync_wrapper",
|
|
3412
|
+
"tokio",
|
|
3413
|
+
"tokio-rustls",
|
|
3414
|
+
"tokio-util",
|
|
3415
|
+
"tower",
|
|
3416
|
+
"tower-http",
|
|
3417
|
+
"tower-service",
|
|
3418
|
+
"url",
|
|
3419
|
+
"wasm-bindgen",
|
|
3420
|
+
"wasm-bindgen-futures",
|
|
3421
|
+
"wasm-streams",
|
|
3422
|
+
"web-sys",
|
|
3423
|
+
]
|
|
3424
|
+
|
|
3425
|
+
[[package]]
|
|
3426
|
+
name = "ring"
|
|
3427
|
+
version = "0.17.14"
|
|
3428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3429
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
3430
|
+
dependencies = [
|
|
3431
|
+
"cc",
|
|
3432
|
+
"cfg-if",
|
|
3433
|
+
"getrandom 0.2.16",
|
|
3434
|
+
"libc",
|
|
3435
|
+
"untrusted",
|
|
3436
|
+
"windows-sys 0.52.0",
|
|
3437
|
+
]
|
|
3438
|
+
|
|
3439
|
+
[[package]]
|
|
3440
|
+
name = "rstest"
|
|
3441
|
+
version = "0.26.1"
|
|
3442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3443
|
+
checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
|
|
3444
|
+
dependencies = [
|
|
3445
|
+
"futures-timer",
|
|
3446
|
+
"futures-util",
|
|
3447
|
+
"rstest_macros",
|
|
3448
|
+
]
|
|
3449
|
+
|
|
3450
|
+
[[package]]
|
|
3451
|
+
name = "rstest_macros"
|
|
3452
|
+
version = "0.26.1"
|
|
3453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3454
|
+
checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
|
|
3455
|
+
dependencies = [
|
|
3456
|
+
"cfg-if",
|
|
3457
|
+
"glob",
|
|
3458
|
+
"proc-macro-crate",
|
|
3459
|
+
"proc-macro2",
|
|
3460
|
+
"quote",
|
|
3461
|
+
"regex",
|
|
3462
|
+
"relative-path",
|
|
3463
|
+
"rustc_version",
|
|
3464
|
+
"syn",
|
|
3465
|
+
"unicode-ident",
|
|
3466
|
+
]
|
|
3467
|
+
|
|
3468
|
+
[[package]]
|
|
3469
|
+
name = "rustc-hash"
|
|
3470
|
+
version = "2.1.1"
|
|
3471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3472
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
3473
|
+
|
|
3474
|
+
[[package]]
|
|
3475
|
+
name = "rustc_version"
|
|
3476
|
+
version = "0.4.1"
|
|
3477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3478
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
3479
|
+
dependencies = [
|
|
3480
|
+
"semver",
|
|
3481
|
+
]
|
|
3482
|
+
|
|
3483
|
+
[[package]]
|
|
3484
|
+
name = "rustix"
|
|
3485
|
+
version = "0.38.44"
|
|
3486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3487
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
3488
|
+
dependencies = [
|
|
3489
|
+
"bitflags",
|
|
3490
|
+
"errno",
|
|
3491
|
+
"libc",
|
|
3492
|
+
"linux-raw-sys 0.4.15",
|
|
3493
|
+
"windows-sys 0.59.0",
|
|
3494
|
+
]
|
|
3495
|
+
|
|
3496
|
+
[[package]]
|
|
3497
|
+
name = "rustix"
|
|
3498
|
+
version = "1.1.2"
|
|
3499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3500
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
3501
|
+
dependencies = [
|
|
3502
|
+
"bitflags",
|
|
3503
|
+
"errno",
|
|
3504
|
+
"libc",
|
|
3505
|
+
"linux-raw-sys 0.11.0",
|
|
3506
|
+
"windows-sys 0.61.2",
|
|
3507
|
+
]
|
|
3508
|
+
|
|
3509
|
+
[[package]]
|
|
3510
|
+
name = "rustls"
|
|
3511
|
+
version = "0.23.35"
|
|
3512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3513
|
+
checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
|
|
3514
|
+
dependencies = [
|
|
3515
|
+
"once_cell",
|
|
3516
|
+
"ring",
|
|
3517
|
+
"rustls-pki-types",
|
|
3518
|
+
"rustls-webpki",
|
|
3519
|
+
"subtle",
|
|
3520
|
+
"zeroize",
|
|
3521
|
+
]
|
|
3522
|
+
|
|
3523
|
+
[[package]]
|
|
3524
|
+
name = "rustls-native-certs"
|
|
3525
|
+
version = "0.8.2"
|
|
3526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3527
|
+
checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923"
|
|
3528
|
+
dependencies = [
|
|
3529
|
+
"openssl-probe",
|
|
3530
|
+
"rustls-pki-types",
|
|
3531
|
+
"schannel",
|
|
3532
|
+
"security-framework",
|
|
3533
|
+
]
|
|
3534
|
+
|
|
3535
|
+
[[package]]
|
|
3536
|
+
name = "rustls-pki-types"
|
|
3537
|
+
version = "1.13.2"
|
|
3538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3539
|
+
checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
|
|
3540
|
+
dependencies = [
|
|
3541
|
+
"web-time",
|
|
3542
|
+
"zeroize",
|
|
3543
|
+
]
|
|
3544
|
+
|
|
3545
|
+
[[package]]
|
|
3546
|
+
name = "rustls-webpki"
|
|
3547
|
+
version = "0.103.8"
|
|
3548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3549
|
+
checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
|
|
3550
|
+
dependencies = [
|
|
3551
|
+
"ring",
|
|
3552
|
+
"rustls-pki-types",
|
|
3553
|
+
"untrusted",
|
|
3554
|
+
]
|
|
3555
|
+
|
|
3556
|
+
[[package]]
|
|
3557
|
+
name = "rustversion"
|
|
3558
|
+
version = "1.0.22"
|
|
3559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3560
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
3561
|
+
|
|
3562
|
+
[[package]]
|
|
3563
|
+
name = "ryu"
|
|
3564
|
+
version = "1.0.21"
|
|
3565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3566
|
+
checksum = "62049b2877bf12821e8f9ad256ee38fdc31db7387ec2d3b3f403024de2034aea"
|
|
3567
|
+
|
|
3568
|
+
[[package]]
|
|
3569
|
+
name = "same-file"
|
|
3570
|
+
version = "1.0.6"
|
|
3571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3572
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
3573
|
+
dependencies = [
|
|
3574
|
+
"winapi-util",
|
|
3575
|
+
]
|
|
3576
|
+
|
|
3577
|
+
[[package]]
|
|
3578
|
+
name = "schannel"
|
|
3579
|
+
version = "0.1.28"
|
|
3580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3581
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
3582
|
+
dependencies = [
|
|
3583
|
+
"windows-sys 0.61.2",
|
|
3584
|
+
]
|
|
3585
|
+
|
|
3586
|
+
[[package]]
|
|
3587
|
+
name = "scopeguard"
|
|
3588
|
+
version = "1.2.0"
|
|
3589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3590
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
3591
|
+
|
|
3592
|
+
[[package]]
|
|
3593
|
+
name = "security-framework"
|
|
3594
|
+
version = "3.5.1"
|
|
3595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3596
|
+
checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
|
|
3597
|
+
dependencies = [
|
|
3598
|
+
"bitflags",
|
|
3599
|
+
"core-foundation",
|
|
3600
|
+
"core-foundation-sys",
|
|
3601
|
+
"libc",
|
|
3602
|
+
"security-framework-sys",
|
|
3603
|
+
]
|
|
3604
|
+
|
|
3605
|
+
[[package]]
|
|
3606
|
+
name = "security-framework-sys"
|
|
3607
|
+
version = "2.15.0"
|
|
3608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3609
|
+
checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
|
3610
|
+
dependencies = [
|
|
3611
|
+
"core-foundation-sys",
|
|
3612
|
+
"libc",
|
|
3613
|
+
]
|
|
3614
|
+
|
|
3615
|
+
[[package]]
|
|
3616
|
+
name = "semver"
|
|
3617
|
+
version = "1.0.27"
|
|
3618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3619
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
3620
|
+
|
|
3621
|
+
[[package]]
|
|
3622
|
+
name = "seq-macro"
|
|
3623
|
+
version = "0.3.6"
|
|
3624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3625
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
3626
|
+
|
|
3627
|
+
[[package]]
|
|
3628
|
+
name = "serde"
|
|
3629
|
+
version = "1.0.228"
|
|
3630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3631
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
3632
|
+
dependencies = [
|
|
3633
|
+
"serde_core",
|
|
3634
|
+
"serde_derive",
|
|
3635
|
+
]
|
|
3636
|
+
|
|
3637
|
+
[[package]]
|
|
3638
|
+
name = "serde_bytes"
|
|
3639
|
+
version = "0.11.19"
|
|
3640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3641
|
+
checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
|
|
3642
|
+
dependencies = [
|
|
3643
|
+
"serde",
|
|
3644
|
+
"serde_core",
|
|
3645
|
+
]
|
|
3646
|
+
|
|
3647
|
+
[[package]]
|
|
3648
|
+
name = "serde_core"
|
|
3649
|
+
version = "1.0.228"
|
|
3650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3651
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
3652
|
+
dependencies = [
|
|
3653
|
+
"serde_derive",
|
|
3654
|
+
]
|
|
3655
|
+
|
|
3656
|
+
[[package]]
|
|
3657
|
+
name = "serde_derive"
|
|
3658
|
+
version = "1.0.228"
|
|
3659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3660
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
3661
|
+
dependencies = [
|
|
3662
|
+
"proc-macro2",
|
|
3663
|
+
"quote",
|
|
3664
|
+
"syn",
|
|
3665
|
+
]
|
|
3666
|
+
|
|
3667
|
+
[[package]]
|
|
3668
|
+
name = "serde_json"
|
|
3669
|
+
version = "1.0.145"
|
|
3670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3671
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
3672
|
+
dependencies = [
|
|
3673
|
+
"itoa",
|
|
3674
|
+
"memchr",
|
|
3675
|
+
"ryu",
|
|
3676
|
+
"serde",
|
|
3677
|
+
"serde_core",
|
|
3678
|
+
]
|
|
3679
|
+
|
|
3680
|
+
[[package]]
|
|
3681
|
+
name = "serde_urlencoded"
|
|
3682
|
+
version = "0.7.1"
|
|
3683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3684
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
3685
|
+
dependencies = [
|
|
3686
|
+
"form_urlencoded",
|
|
3687
|
+
"itoa",
|
|
3688
|
+
"ryu",
|
|
3689
|
+
"serde",
|
|
3690
|
+
]
|
|
3691
|
+
|
|
3692
|
+
[[package]]
|
|
3693
|
+
name = "serde_yaml"
|
|
3694
|
+
version = "0.9.34+deprecated"
|
|
3695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3696
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
3697
|
+
dependencies = [
|
|
3698
|
+
"indexmap",
|
|
3699
|
+
"itoa",
|
|
3700
|
+
"ryu",
|
|
3701
|
+
"serde",
|
|
3702
|
+
"unsafe-libyaml",
|
|
3703
|
+
]
|
|
3704
|
+
|
|
3705
|
+
[[package]]
|
|
3706
|
+
name = "sha2"
|
|
3707
|
+
version = "0.10.9"
|
|
3708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3709
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3710
|
+
dependencies = [
|
|
3711
|
+
"cfg-if",
|
|
3712
|
+
"cpufeatures",
|
|
3713
|
+
"digest",
|
|
3714
|
+
]
|
|
3715
|
+
|
|
3716
|
+
[[package]]
|
|
3717
|
+
name = "sharded-slab"
|
|
3718
|
+
version = "0.1.7"
|
|
3719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3720
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
3721
|
+
dependencies = [
|
|
3722
|
+
"lazy_static",
|
|
3723
|
+
]
|
|
3724
|
+
|
|
3725
|
+
[[package]]
|
|
3726
|
+
name = "shlex"
|
|
3727
|
+
version = "1.3.0"
|
|
3728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3729
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3730
|
+
|
|
3731
|
+
[[package]]
|
|
3732
|
+
name = "signal-hook"
|
|
3733
|
+
version = "0.3.18"
|
|
3734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3735
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
|
3736
|
+
dependencies = [
|
|
3737
|
+
"libc",
|
|
3738
|
+
"signal-hook-registry",
|
|
3739
|
+
]
|
|
3740
|
+
|
|
3741
|
+
[[package]]
|
|
3742
|
+
name = "signal-hook-mio"
|
|
3743
|
+
version = "0.2.5"
|
|
3744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3745
|
+
checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
|
|
3746
|
+
dependencies = [
|
|
3747
|
+
"libc",
|
|
3748
|
+
"mio",
|
|
3749
|
+
"signal-hook",
|
|
3750
|
+
]
|
|
3751
|
+
|
|
3752
|
+
[[package]]
|
|
3753
|
+
name = "signal-hook-registry"
|
|
3754
|
+
version = "1.4.7"
|
|
3755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3756
|
+
checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad"
|
|
3757
|
+
dependencies = [
|
|
3758
|
+
"libc",
|
|
3759
|
+
]
|
|
3760
|
+
|
|
3761
|
+
[[package]]
|
|
3762
|
+
name = "simd-adler32"
|
|
3763
|
+
version = "0.3.8"
|
|
3764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3765
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
3766
|
+
|
|
3767
|
+
[[package]]
|
|
3768
|
+
name = "simdutf8"
|
|
3769
|
+
version = "0.1.5"
|
|
3770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3771
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
3772
|
+
|
|
3773
|
+
[[package]]
|
|
3774
|
+
name = "siphasher"
|
|
3775
|
+
version = "1.0.1"
|
|
3776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3777
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
3778
|
+
|
|
3779
|
+
[[package]]
|
|
3780
|
+
name = "slab"
|
|
3781
|
+
version = "0.4.11"
|
|
3782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3783
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
3784
|
+
|
|
3785
|
+
[[package]]
|
|
3786
|
+
name = "smallvec"
|
|
3787
|
+
version = "1.15.1"
|
|
3788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3789
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
3790
|
+
|
|
3791
|
+
[[package]]
|
|
3792
|
+
name = "snap"
|
|
3793
|
+
version = "1.1.1"
|
|
3794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3795
|
+
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
3796
|
+
|
|
3797
|
+
[[package]]
|
|
3798
|
+
name = "socket2"
|
|
3799
|
+
version = "0.6.1"
|
|
3800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3801
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
3802
|
+
dependencies = [
|
|
3803
|
+
"libc",
|
|
3804
|
+
"windows-sys 0.60.2",
|
|
3805
|
+
]
|
|
3806
|
+
|
|
3807
|
+
[[package]]
|
|
3808
|
+
name = "sqlparser"
|
|
3809
|
+
version = "0.59.0"
|
|
3810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3811
|
+
checksum = "4591acadbcf52f0af60eafbb2c003232b2b4cd8de5f0e9437cb8b1b59046cc0f"
|
|
3812
|
+
dependencies = [
|
|
3813
|
+
"log",
|
|
3814
|
+
"recursive",
|
|
3815
|
+
"sqlparser_derive",
|
|
3816
|
+
]
|
|
3817
|
+
|
|
3818
|
+
[[package]]
|
|
3819
|
+
name = "sqlparser_derive"
|
|
3820
|
+
version = "0.3.0"
|
|
3821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3822
|
+
checksum = "da5fc6819faabb412da764b99d3b713bb55083c11e7e0c00144d386cd6a1939c"
|
|
3823
|
+
dependencies = [
|
|
3824
|
+
"proc-macro2",
|
|
3825
|
+
"quote",
|
|
3826
|
+
"syn",
|
|
3827
|
+
]
|
|
3828
|
+
|
|
3829
|
+
[[package]]
|
|
3830
|
+
name = "stable_deref_trait"
|
|
3831
|
+
version = "1.2.1"
|
|
3832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3833
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
3834
|
+
|
|
3835
|
+
[[package]]
|
|
3836
|
+
name = "stacker"
|
|
3837
|
+
version = "0.1.22"
|
|
3838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3839
|
+
checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59"
|
|
3840
|
+
dependencies = [
|
|
3841
|
+
"cc",
|
|
3842
|
+
"cfg-if",
|
|
3843
|
+
"libc",
|
|
3844
|
+
"psm",
|
|
3845
|
+
"windows-sys 0.59.0",
|
|
3846
|
+
]
|
|
3847
|
+
|
|
3848
|
+
[[package]]
|
|
3849
|
+
name = "strip-ansi-escapes"
|
|
3850
|
+
version = "0.2.1"
|
|
3851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3852
|
+
checksum = "2a8f8038e7e7969abb3f1b7c2a811225e9296da208539e0f79c5251d6cac0025"
|
|
3853
|
+
dependencies = [
|
|
3854
|
+
"vte",
|
|
3855
|
+
]
|
|
3856
|
+
|
|
3857
|
+
[[package]]
|
|
3858
|
+
name = "strsim"
|
|
3859
|
+
version = "0.11.1"
|
|
3860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3861
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3862
|
+
|
|
3863
|
+
[[package]]
|
|
3864
|
+
name = "strum"
|
|
3865
|
+
version = "0.26.3"
|
|
3866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3867
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
3868
|
+
|
|
3869
|
+
[[package]]
|
|
3870
|
+
name = "strum"
|
|
3871
|
+
version = "0.27.2"
|
|
3872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3873
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
3874
|
+
|
|
3875
|
+
[[package]]
|
|
3876
|
+
name = "strum_macros"
|
|
3877
|
+
version = "0.26.4"
|
|
3878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3879
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
3880
|
+
dependencies = [
|
|
3881
|
+
"heck",
|
|
3882
|
+
"proc-macro2",
|
|
3883
|
+
"quote",
|
|
3884
|
+
"rustversion",
|
|
3885
|
+
"syn",
|
|
3886
|
+
]
|
|
3887
|
+
|
|
3888
|
+
[[package]]
|
|
3889
|
+
name = "strum_macros"
|
|
3890
|
+
version = "0.27.2"
|
|
3891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3892
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
3893
|
+
dependencies = [
|
|
3894
|
+
"heck",
|
|
3895
|
+
"proc-macro2",
|
|
3896
|
+
"quote",
|
|
3897
|
+
"syn",
|
|
3898
|
+
]
|
|
3899
|
+
|
|
3900
|
+
[[package]]
|
|
3901
|
+
name = "subtle"
|
|
3902
|
+
version = "2.6.1"
|
|
3903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3904
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
3905
|
+
|
|
3906
|
+
[[package]]
|
|
3907
|
+
name = "syn"
|
|
3908
|
+
version = "2.0.111"
|
|
3909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3910
|
+
checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
|
|
3911
|
+
dependencies = [
|
|
3912
|
+
"proc-macro2",
|
|
3913
|
+
"quote",
|
|
3914
|
+
"unicode-ident",
|
|
3915
|
+
]
|
|
3916
|
+
|
|
3917
|
+
[[package]]
|
|
3918
|
+
name = "sync_wrapper"
|
|
3919
|
+
version = "1.0.2"
|
|
3920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3921
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
3922
|
+
dependencies = [
|
|
3923
|
+
"futures-core",
|
|
3924
|
+
]
|
|
3925
|
+
|
|
3926
|
+
[[package]]
|
|
3927
|
+
name = "synstructure"
|
|
3928
|
+
version = "0.13.2"
|
|
3929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3930
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3931
|
+
dependencies = [
|
|
3932
|
+
"proc-macro2",
|
|
3933
|
+
"quote",
|
|
3934
|
+
"syn",
|
|
3935
|
+
]
|
|
3936
|
+
|
|
3937
|
+
[[package]]
|
|
3938
|
+
name = "target-lexicon"
|
|
3939
|
+
version = "0.13.4"
|
|
3940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3941
|
+
checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
|
|
3942
|
+
|
|
3943
|
+
[[package]]
|
|
3944
|
+
name = "tempfile"
|
|
3945
|
+
version = "3.23.0"
|
|
3946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3947
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
3948
|
+
dependencies = [
|
|
3949
|
+
"fastrand",
|
|
3950
|
+
"getrandom 0.3.4",
|
|
3951
|
+
"once_cell",
|
|
3952
|
+
"rustix 1.1.2",
|
|
3953
|
+
"windows-sys 0.61.2",
|
|
3954
|
+
]
|
|
3955
|
+
|
|
3956
|
+
[[package]]
|
|
3957
|
+
name = "thiserror"
|
|
3958
|
+
version = "1.0.69"
|
|
3959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3960
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3961
|
+
dependencies = [
|
|
3962
|
+
"thiserror-impl 1.0.69",
|
|
3963
|
+
]
|
|
3964
|
+
|
|
3965
|
+
[[package]]
|
|
3966
|
+
name = "thiserror"
|
|
3967
|
+
version = "2.0.17"
|
|
3968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3969
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
3970
|
+
dependencies = [
|
|
3971
|
+
"thiserror-impl 2.0.17",
|
|
3972
|
+
]
|
|
3973
|
+
|
|
3974
|
+
[[package]]
|
|
3975
|
+
name = "thiserror-impl"
|
|
3976
|
+
version = "1.0.69"
|
|
3977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3978
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3979
|
+
dependencies = [
|
|
3980
|
+
"proc-macro2",
|
|
3981
|
+
"quote",
|
|
3982
|
+
"syn",
|
|
3983
|
+
]
|
|
3984
|
+
|
|
3985
|
+
[[package]]
|
|
3986
|
+
name = "thiserror-impl"
|
|
3987
|
+
version = "2.0.17"
|
|
3988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3989
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
3990
|
+
dependencies = [
|
|
3991
|
+
"proc-macro2",
|
|
3992
|
+
"quote",
|
|
3993
|
+
"syn",
|
|
3994
|
+
]
|
|
3995
|
+
|
|
3996
|
+
[[package]]
|
|
3997
|
+
name = "thread_local"
|
|
3998
|
+
version = "1.1.9"
|
|
3999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4000
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
4001
|
+
dependencies = [
|
|
4002
|
+
"cfg-if",
|
|
4003
|
+
]
|
|
4004
|
+
|
|
4005
|
+
[[package]]
|
|
4006
|
+
name = "thrift"
|
|
4007
|
+
version = "0.17.0"
|
|
4008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4009
|
+
checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
|
|
4010
|
+
dependencies = [
|
|
4011
|
+
"byteorder",
|
|
4012
|
+
"integer-encoding",
|
|
4013
|
+
"ordered-float",
|
|
4014
|
+
]
|
|
4015
|
+
|
|
4016
|
+
[[package]]
|
|
4017
|
+
name = "tiny-keccak"
|
|
4018
|
+
version = "2.0.2"
|
|
4019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4020
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
4021
|
+
dependencies = [
|
|
4022
|
+
"crunchy",
|
|
4023
|
+
]
|
|
4024
|
+
|
|
4025
|
+
[[package]]
|
|
4026
|
+
name = "tinystr"
|
|
4027
|
+
version = "0.8.2"
|
|
4028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4029
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
4030
|
+
dependencies = [
|
|
4031
|
+
"displaydoc",
|
|
4032
|
+
"zerovec",
|
|
4033
|
+
]
|
|
4034
|
+
|
|
4035
|
+
[[package]]
|
|
4036
|
+
name = "tinyvec"
|
|
4037
|
+
version = "1.10.0"
|
|
4038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4039
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
4040
|
+
dependencies = [
|
|
4041
|
+
"tinyvec_macros",
|
|
4042
|
+
]
|
|
4043
|
+
|
|
4044
|
+
[[package]]
|
|
4045
|
+
name = "tinyvec_macros"
|
|
4046
|
+
version = "0.1.1"
|
|
4047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4048
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
4049
|
+
|
|
4050
|
+
[[package]]
|
|
4051
|
+
name = "tokio"
|
|
4052
|
+
version = "1.48.0"
|
|
4053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4054
|
+
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
4055
|
+
dependencies = [
|
|
4056
|
+
"bytes",
|
|
4057
|
+
"libc",
|
|
4058
|
+
"mio",
|
|
4059
|
+
"parking_lot",
|
|
4060
|
+
"pin-project-lite",
|
|
4061
|
+
"signal-hook-registry",
|
|
4062
|
+
"socket2",
|
|
4063
|
+
"tokio-macros",
|
|
4064
|
+
"windows-sys 0.61.2",
|
|
4065
|
+
]
|
|
4066
|
+
|
|
4067
|
+
[[package]]
|
|
4068
|
+
name = "tokio-macros"
|
|
4069
|
+
version = "2.6.0"
|
|
4070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4071
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
4072
|
+
dependencies = [
|
|
4073
|
+
"proc-macro2",
|
|
4074
|
+
"quote",
|
|
4075
|
+
"syn",
|
|
4076
|
+
]
|
|
4077
|
+
|
|
4078
|
+
[[package]]
|
|
4079
|
+
name = "tokio-rustls"
|
|
4080
|
+
version = "0.26.4"
|
|
4081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4082
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
4083
|
+
dependencies = [
|
|
4084
|
+
"rustls",
|
|
4085
|
+
"tokio",
|
|
4086
|
+
]
|
|
4087
|
+
|
|
4088
|
+
[[package]]
|
|
4089
|
+
name = "tokio-stream"
|
|
4090
|
+
version = "0.1.17"
|
|
4091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4092
|
+
checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
|
|
4093
|
+
dependencies = [
|
|
4094
|
+
"futures-core",
|
|
4095
|
+
"pin-project-lite",
|
|
4096
|
+
"tokio",
|
|
4097
|
+
]
|
|
4098
|
+
|
|
4099
|
+
[[package]]
|
|
4100
|
+
name = "tokio-util"
|
|
4101
|
+
version = "0.7.17"
|
|
4102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4103
|
+
checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
|
|
4104
|
+
dependencies = [
|
|
4105
|
+
"bytes",
|
|
4106
|
+
"futures-core",
|
|
4107
|
+
"futures-sink",
|
|
4108
|
+
"pin-project-lite",
|
|
4109
|
+
"tokio",
|
|
4110
|
+
]
|
|
4111
|
+
|
|
4112
|
+
[[package]]
|
|
4113
|
+
name = "toml_datetime"
|
|
4114
|
+
version = "0.7.5+spec-1.1.0"
|
|
4115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4116
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
4117
|
+
dependencies = [
|
|
4118
|
+
"serde_core",
|
|
4119
|
+
]
|
|
4120
|
+
|
|
4121
|
+
[[package]]
|
|
4122
|
+
name = "toml_edit"
|
|
4123
|
+
version = "0.23.10+spec-1.0.0"
|
|
4124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4125
|
+
checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
|
|
4126
|
+
dependencies = [
|
|
4127
|
+
"indexmap",
|
|
4128
|
+
"toml_datetime",
|
|
4129
|
+
"toml_parser",
|
|
4130
|
+
"winnow",
|
|
4131
|
+
]
|
|
4132
|
+
|
|
4133
|
+
[[package]]
|
|
4134
|
+
name = "toml_parser"
|
|
4135
|
+
version = "1.0.6+spec-1.1.0"
|
|
4136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4137
|
+
checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
|
|
4138
|
+
dependencies = [
|
|
4139
|
+
"winnow",
|
|
4140
|
+
]
|
|
4141
|
+
|
|
4142
|
+
[[package]]
|
|
4143
|
+
name = "tonic"
|
|
4144
|
+
version = "0.14.2"
|
|
4145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4146
|
+
checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203"
|
|
4147
|
+
dependencies = [
|
|
4148
|
+
"async-trait",
|
|
4149
|
+
"axum",
|
|
4150
|
+
"base64",
|
|
4151
|
+
"bytes",
|
|
4152
|
+
"h2",
|
|
4153
|
+
"http",
|
|
4154
|
+
"http-body",
|
|
4155
|
+
"http-body-util",
|
|
4156
|
+
"hyper",
|
|
4157
|
+
"hyper-timeout",
|
|
4158
|
+
"hyper-util",
|
|
4159
|
+
"percent-encoding",
|
|
4160
|
+
"pin-project",
|
|
4161
|
+
"socket2",
|
|
4162
|
+
"sync_wrapper",
|
|
4163
|
+
"tokio",
|
|
4164
|
+
"tokio-stream",
|
|
4165
|
+
"tower",
|
|
4166
|
+
"tower-layer",
|
|
4167
|
+
"tower-service",
|
|
4168
|
+
"tracing",
|
|
4169
|
+
]
|
|
4170
|
+
|
|
4171
|
+
[[package]]
|
|
4172
|
+
name = "tonic-prost"
|
|
4173
|
+
version = "0.14.2"
|
|
4174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4175
|
+
checksum = "66bd50ad6ce1252d87ef024b3d64fe4c3cf54a86fb9ef4c631fdd0ded7aeaa67"
|
|
4176
|
+
dependencies = [
|
|
4177
|
+
"bytes",
|
|
4178
|
+
"prost",
|
|
4179
|
+
"tonic",
|
|
4180
|
+
]
|
|
4181
|
+
|
|
4182
|
+
[[package]]
|
|
4183
|
+
name = "tower"
|
|
4184
|
+
version = "0.5.2"
|
|
4185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4186
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
4187
|
+
dependencies = [
|
|
4188
|
+
"futures-core",
|
|
4189
|
+
"futures-util",
|
|
4190
|
+
"indexmap",
|
|
4191
|
+
"pin-project-lite",
|
|
4192
|
+
"slab",
|
|
4193
|
+
"sync_wrapper",
|
|
4194
|
+
"tokio",
|
|
4195
|
+
"tokio-util",
|
|
4196
|
+
"tower-layer",
|
|
4197
|
+
"tower-service",
|
|
4198
|
+
"tracing",
|
|
4199
|
+
]
|
|
4200
|
+
|
|
4201
|
+
[[package]]
|
|
4202
|
+
name = "tower-http"
|
|
4203
|
+
version = "0.6.8"
|
|
4204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4205
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
4206
|
+
dependencies = [
|
|
4207
|
+
"bitflags",
|
|
4208
|
+
"bytes",
|
|
4209
|
+
"futures-util",
|
|
4210
|
+
"http",
|
|
4211
|
+
"http-body",
|
|
4212
|
+
"iri-string",
|
|
4213
|
+
"pin-project-lite",
|
|
4214
|
+
"tower",
|
|
4215
|
+
"tower-layer",
|
|
4216
|
+
"tower-service",
|
|
4217
|
+
]
|
|
4218
|
+
|
|
4219
|
+
[[package]]
|
|
4220
|
+
name = "tower-layer"
|
|
4221
|
+
version = "0.3.3"
|
|
4222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4223
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
4224
|
+
|
|
4225
|
+
[[package]]
|
|
4226
|
+
name = "tower-service"
|
|
4227
|
+
version = "0.3.3"
|
|
4228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4229
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
4230
|
+
|
|
4231
|
+
[[package]]
|
|
4232
|
+
name = "tracing"
|
|
4233
|
+
version = "0.1.44"
|
|
4234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4235
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
4236
|
+
dependencies = [
|
|
4237
|
+
"pin-project-lite",
|
|
4238
|
+
"tracing-attributes",
|
|
4239
|
+
"tracing-core",
|
|
4240
|
+
]
|
|
4241
|
+
|
|
4242
|
+
[[package]]
|
|
4243
|
+
name = "tracing-attributes"
|
|
4244
|
+
version = "0.1.31"
|
|
4245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4246
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
4247
|
+
dependencies = [
|
|
4248
|
+
"proc-macro2",
|
|
4249
|
+
"quote",
|
|
4250
|
+
"syn",
|
|
4251
|
+
]
|
|
4252
|
+
|
|
4253
|
+
[[package]]
|
|
4254
|
+
name = "tracing-core"
|
|
4255
|
+
version = "0.1.36"
|
|
4256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4257
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
4258
|
+
dependencies = [
|
|
4259
|
+
"once_cell",
|
|
4260
|
+
"valuable",
|
|
4261
|
+
]
|
|
4262
|
+
|
|
4263
|
+
[[package]]
|
|
4264
|
+
name = "tracing-log"
|
|
4265
|
+
version = "0.2.0"
|
|
4266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4267
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
4268
|
+
dependencies = [
|
|
4269
|
+
"log",
|
|
4270
|
+
"once_cell",
|
|
4271
|
+
"tracing-core",
|
|
4272
|
+
]
|
|
4273
|
+
|
|
4274
|
+
[[package]]
|
|
4275
|
+
name = "tracing-subscriber"
|
|
4276
|
+
version = "0.3.22"
|
|
4277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4278
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
4279
|
+
dependencies = [
|
|
4280
|
+
"matchers",
|
|
4281
|
+
"nu-ansi-term",
|
|
4282
|
+
"once_cell",
|
|
4283
|
+
"regex-automata",
|
|
4284
|
+
"sharded-slab",
|
|
4285
|
+
"smallvec",
|
|
4286
|
+
"thread_local",
|
|
4287
|
+
"tracing",
|
|
4288
|
+
"tracing-core",
|
|
4289
|
+
"tracing-log",
|
|
4290
|
+
]
|
|
4291
|
+
|
|
4292
|
+
[[package]]
|
|
4293
|
+
name = "try-lock"
|
|
4294
|
+
version = "0.2.5"
|
|
4295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4296
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
4297
|
+
|
|
4298
|
+
[[package]]
|
|
4299
|
+
name = "twox-hash"
|
|
4300
|
+
version = "2.1.2"
|
|
4301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4302
|
+
checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
|
|
4303
|
+
|
|
4304
|
+
[[package]]
|
|
4305
|
+
name = "typenum"
|
|
4306
|
+
version = "1.19.0"
|
|
4307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4308
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
4309
|
+
|
|
4310
|
+
[[package]]
|
|
4311
|
+
name = "unicode-ident"
|
|
4312
|
+
version = "1.0.22"
|
|
4313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4314
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
4315
|
+
|
|
4316
|
+
[[package]]
|
|
4317
|
+
name = "unicode-segmentation"
|
|
4318
|
+
version = "1.12.0"
|
|
4319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4320
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
4321
|
+
|
|
4322
|
+
[[package]]
|
|
4323
|
+
name = "unicode-width"
|
|
4324
|
+
version = "0.1.14"
|
|
4325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4326
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
4327
|
+
|
|
4328
|
+
[[package]]
|
|
4329
|
+
name = "unicode-width"
|
|
4330
|
+
version = "0.2.2"
|
|
4331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4332
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
4333
|
+
|
|
4334
|
+
[[package]]
|
|
4335
|
+
name = "unindent"
|
|
4336
|
+
version = "0.2.4"
|
|
4337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4338
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
4339
|
+
|
|
4340
|
+
[[package]]
|
|
4341
|
+
name = "unsafe-libyaml"
|
|
4342
|
+
version = "0.2.11"
|
|
4343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4344
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
4345
|
+
|
|
4346
|
+
[[package]]
|
|
4347
|
+
name = "untrusted"
|
|
4348
|
+
version = "0.9.0"
|
|
4349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4350
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
4351
|
+
|
|
4352
|
+
[[package]]
|
|
4353
|
+
name = "url"
|
|
4354
|
+
version = "2.5.7"
|
|
4355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4356
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
4357
|
+
dependencies = [
|
|
4358
|
+
"form_urlencoded",
|
|
4359
|
+
"idna",
|
|
4360
|
+
"percent-encoding",
|
|
4361
|
+
"serde",
|
|
4362
|
+
]
|
|
4363
|
+
|
|
4364
|
+
[[package]]
|
|
4365
|
+
name = "utf8_iter"
|
|
4366
|
+
version = "1.0.4"
|
|
4367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4368
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
4369
|
+
|
|
4370
|
+
[[package]]
|
|
4371
|
+
name = "utf8parse"
|
|
4372
|
+
version = "0.2.2"
|
|
4373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4374
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
4375
|
+
|
|
4376
|
+
[[package]]
|
|
4377
|
+
name = "uuid"
|
|
4378
|
+
version = "1.19.0"
|
|
4379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4380
|
+
checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
4381
|
+
dependencies = [
|
|
4382
|
+
"getrandom 0.3.4",
|
|
4383
|
+
"js-sys",
|
|
4384
|
+
"serde_core",
|
|
4385
|
+
"wasm-bindgen",
|
|
4386
|
+
]
|
|
4387
|
+
|
|
4388
|
+
[[package]]
|
|
4389
|
+
name = "valuable"
|
|
4390
|
+
version = "0.1.1"
|
|
4391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4392
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
4393
|
+
|
|
4394
|
+
[[package]]
|
|
4395
|
+
name = "version_check"
|
|
4396
|
+
version = "0.9.5"
|
|
4397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4398
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
4399
|
+
|
|
4400
|
+
[[package]]
|
|
4401
|
+
name = "vte"
|
|
4402
|
+
version = "0.14.1"
|
|
4403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4404
|
+
checksum = "231fdcd7ef3037e8330d8e17e61011a2c244126acc0a982f4040ac3f9f0bc077"
|
|
4405
|
+
dependencies = [
|
|
4406
|
+
"memchr",
|
|
4407
|
+
]
|
|
4408
|
+
|
|
4409
|
+
[[package]]
|
|
4410
|
+
name = "walkdir"
|
|
4411
|
+
version = "2.5.0"
|
|
4412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4413
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
4414
|
+
dependencies = [
|
|
4415
|
+
"same-file",
|
|
4416
|
+
"winapi-util",
|
|
4417
|
+
]
|
|
4418
|
+
|
|
4419
|
+
[[package]]
|
|
4420
|
+
name = "want"
|
|
4421
|
+
version = "0.3.1"
|
|
4422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4423
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
4424
|
+
dependencies = [
|
|
4425
|
+
"try-lock",
|
|
4426
|
+
]
|
|
4427
|
+
|
|
4428
|
+
[[package]]
|
|
4429
|
+
name = "wasi"
|
|
4430
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
4431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4432
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
4433
|
+
|
|
4434
|
+
[[package]]
|
|
4435
|
+
name = "wasip2"
|
|
4436
|
+
version = "1.0.1+wasi-0.2.4"
|
|
4437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4438
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
4439
|
+
dependencies = [
|
|
4440
|
+
"wit-bindgen",
|
|
4441
|
+
]
|
|
4442
|
+
|
|
4443
|
+
[[package]]
|
|
4444
|
+
name = "wasm-bindgen"
|
|
4445
|
+
version = "0.2.106"
|
|
4446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4447
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
4448
|
+
dependencies = [
|
|
4449
|
+
"cfg-if",
|
|
4450
|
+
"once_cell",
|
|
4451
|
+
"rustversion",
|
|
4452
|
+
"wasm-bindgen-macro",
|
|
4453
|
+
"wasm-bindgen-shared",
|
|
4454
|
+
]
|
|
4455
|
+
|
|
4456
|
+
[[package]]
|
|
4457
|
+
name = "wasm-bindgen-futures"
|
|
4458
|
+
version = "0.4.56"
|
|
4459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4460
|
+
checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
|
|
4461
|
+
dependencies = [
|
|
4462
|
+
"cfg-if",
|
|
4463
|
+
"js-sys",
|
|
4464
|
+
"once_cell",
|
|
4465
|
+
"wasm-bindgen",
|
|
4466
|
+
"web-sys",
|
|
4467
|
+
]
|
|
4468
|
+
|
|
4469
|
+
[[package]]
|
|
4470
|
+
name = "wasm-bindgen-macro"
|
|
4471
|
+
version = "0.2.106"
|
|
4472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4473
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
4474
|
+
dependencies = [
|
|
4475
|
+
"quote",
|
|
4476
|
+
"wasm-bindgen-macro-support",
|
|
4477
|
+
]
|
|
4478
|
+
|
|
4479
|
+
[[package]]
|
|
4480
|
+
name = "wasm-bindgen-macro-support"
|
|
4481
|
+
version = "0.2.106"
|
|
4482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4483
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
4484
|
+
dependencies = [
|
|
4485
|
+
"bumpalo",
|
|
4486
|
+
"proc-macro2",
|
|
4487
|
+
"quote",
|
|
4488
|
+
"syn",
|
|
4489
|
+
"wasm-bindgen-shared",
|
|
4490
|
+
]
|
|
4491
|
+
|
|
4492
|
+
[[package]]
|
|
4493
|
+
name = "wasm-bindgen-shared"
|
|
4494
|
+
version = "0.2.106"
|
|
4495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4496
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
4497
|
+
dependencies = [
|
|
4498
|
+
"unicode-ident",
|
|
4499
|
+
]
|
|
4500
|
+
|
|
4501
|
+
[[package]]
|
|
4502
|
+
name = "wasm-streams"
|
|
4503
|
+
version = "0.4.2"
|
|
4504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4505
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
4506
|
+
dependencies = [
|
|
4507
|
+
"futures-util",
|
|
4508
|
+
"js-sys",
|
|
4509
|
+
"wasm-bindgen",
|
|
4510
|
+
"wasm-bindgen-futures",
|
|
4511
|
+
"web-sys",
|
|
4512
|
+
]
|
|
4513
|
+
|
|
4514
|
+
[[package]]
|
|
4515
|
+
name = "web-sys"
|
|
4516
|
+
version = "0.3.83"
|
|
4517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4518
|
+
checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
|
|
4519
|
+
dependencies = [
|
|
4520
|
+
"js-sys",
|
|
4521
|
+
"wasm-bindgen",
|
|
4522
|
+
]
|
|
4523
|
+
|
|
4524
|
+
[[package]]
|
|
4525
|
+
name = "web-time"
|
|
4526
|
+
version = "1.1.0"
|
|
4527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4528
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
4529
|
+
dependencies = [
|
|
4530
|
+
"js-sys",
|
|
4531
|
+
"wasm-bindgen",
|
|
4532
|
+
]
|
|
4533
|
+
|
|
4534
|
+
[[package]]
|
|
4535
|
+
name = "winapi"
|
|
4536
|
+
version = "0.3.9"
|
|
4537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4538
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
4539
|
+
dependencies = [
|
|
4540
|
+
"winapi-i686-pc-windows-gnu",
|
|
4541
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
4542
|
+
]
|
|
4543
|
+
|
|
4544
|
+
[[package]]
|
|
4545
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
4546
|
+
version = "0.4.0"
|
|
4547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4548
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
4549
|
+
|
|
4550
|
+
[[package]]
|
|
4551
|
+
name = "winapi-util"
|
|
4552
|
+
version = "0.1.11"
|
|
4553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4554
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
4555
|
+
dependencies = [
|
|
4556
|
+
"windows-sys 0.61.2",
|
|
4557
|
+
]
|
|
4558
|
+
|
|
4559
|
+
[[package]]
|
|
4560
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
4561
|
+
version = "0.4.0"
|
|
4562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4563
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
4564
|
+
|
|
4565
|
+
[[package]]
|
|
4566
|
+
name = "windows-core"
|
|
4567
|
+
version = "0.62.2"
|
|
4568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4569
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4570
|
+
dependencies = [
|
|
4571
|
+
"windows-implement",
|
|
4572
|
+
"windows-interface",
|
|
4573
|
+
"windows-link",
|
|
4574
|
+
"windows-result",
|
|
4575
|
+
"windows-strings",
|
|
4576
|
+
]
|
|
4577
|
+
|
|
4578
|
+
[[package]]
|
|
4579
|
+
name = "windows-implement"
|
|
4580
|
+
version = "0.60.2"
|
|
4581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4582
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
4583
|
+
dependencies = [
|
|
4584
|
+
"proc-macro2",
|
|
4585
|
+
"quote",
|
|
4586
|
+
"syn",
|
|
4587
|
+
]
|
|
4588
|
+
|
|
4589
|
+
[[package]]
|
|
4590
|
+
name = "windows-interface"
|
|
4591
|
+
version = "0.59.3"
|
|
4592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4593
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
4594
|
+
dependencies = [
|
|
4595
|
+
"proc-macro2",
|
|
4596
|
+
"quote",
|
|
4597
|
+
"syn",
|
|
4598
|
+
]
|
|
4599
|
+
|
|
4600
|
+
[[package]]
|
|
4601
|
+
name = "windows-link"
|
|
4602
|
+
version = "0.2.1"
|
|
4603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4604
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
4605
|
+
|
|
4606
|
+
[[package]]
|
|
4607
|
+
name = "windows-result"
|
|
4608
|
+
version = "0.4.1"
|
|
4609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4610
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
4611
|
+
dependencies = [
|
|
4612
|
+
"windows-link",
|
|
4613
|
+
]
|
|
4614
|
+
|
|
4615
|
+
[[package]]
|
|
4616
|
+
name = "windows-strings"
|
|
4617
|
+
version = "0.5.1"
|
|
4618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4619
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
4620
|
+
dependencies = [
|
|
4621
|
+
"windows-link",
|
|
4622
|
+
]
|
|
4623
|
+
|
|
4624
|
+
[[package]]
|
|
4625
|
+
name = "windows-sys"
|
|
4626
|
+
version = "0.52.0"
|
|
4627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4628
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4629
|
+
dependencies = [
|
|
4630
|
+
"windows-targets 0.52.6",
|
|
4631
|
+
]
|
|
4632
|
+
|
|
4633
|
+
[[package]]
|
|
4634
|
+
name = "windows-sys"
|
|
4635
|
+
version = "0.59.0"
|
|
4636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4637
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
4638
|
+
dependencies = [
|
|
4639
|
+
"windows-targets 0.52.6",
|
|
4640
|
+
]
|
|
4641
|
+
|
|
4642
|
+
[[package]]
|
|
4643
|
+
name = "windows-sys"
|
|
4644
|
+
version = "0.60.2"
|
|
4645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4646
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
4647
|
+
dependencies = [
|
|
4648
|
+
"windows-targets 0.53.5",
|
|
4649
|
+
]
|
|
4650
|
+
|
|
4651
|
+
[[package]]
|
|
4652
|
+
name = "windows-sys"
|
|
4653
|
+
version = "0.61.2"
|
|
4654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4655
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
4656
|
+
dependencies = [
|
|
4657
|
+
"windows-link",
|
|
4658
|
+
]
|
|
4659
|
+
|
|
4660
|
+
[[package]]
|
|
4661
|
+
name = "windows-targets"
|
|
4662
|
+
version = "0.52.6"
|
|
4663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4664
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
4665
|
+
dependencies = [
|
|
4666
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
4667
|
+
"windows_aarch64_msvc 0.52.6",
|
|
4668
|
+
"windows_i686_gnu 0.52.6",
|
|
4669
|
+
"windows_i686_gnullvm 0.52.6",
|
|
4670
|
+
"windows_i686_msvc 0.52.6",
|
|
4671
|
+
"windows_x86_64_gnu 0.52.6",
|
|
4672
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
4673
|
+
"windows_x86_64_msvc 0.52.6",
|
|
4674
|
+
]
|
|
4675
|
+
|
|
4676
|
+
[[package]]
|
|
4677
|
+
name = "windows-targets"
|
|
4678
|
+
version = "0.53.5"
|
|
4679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4680
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
4681
|
+
dependencies = [
|
|
4682
|
+
"windows-link",
|
|
4683
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
4684
|
+
"windows_aarch64_msvc 0.53.1",
|
|
4685
|
+
"windows_i686_gnu 0.53.1",
|
|
4686
|
+
"windows_i686_gnullvm 0.53.1",
|
|
4687
|
+
"windows_i686_msvc 0.53.1",
|
|
4688
|
+
"windows_x86_64_gnu 0.53.1",
|
|
4689
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
4690
|
+
"windows_x86_64_msvc 0.53.1",
|
|
4691
|
+
]
|
|
4692
|
+
|
|
4693
|
+
[[package]]
|
|
4694
|
+
name = "windows_aarch64_gnullvm"
|
|
4695
|
+
version = "0.52.6"
|
|
4696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4697
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4698
|
+
|
|
4699
|
+
[[package]]
|
|
4700
|
+
name = "windows_aarch64_gnullvm"
|
|
4701
|
+
version = "0.53.1"
|
|
4702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4703
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
4704
|
+
|
|
4705
|
+
[[package]]
|
|
4706
|
+
name = "windows_aarch64_msvc"
|
|
4707
|
+
version = "0.52.6"
|
|
4708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4709
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4710
|
+
|
|
4711
|
+
[[package]]
|
|
4712
|
+
name = "windows_aarch64_msvc"
|
|
4713
|
+
version = "0.53.1"
|
|
4714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4715
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
4716
|
+
|
|
4717
|
+
[[package]]
|
|
4718
|
+
name = "windows_i686_gnu"
|
|
4719
|
+
version = "0.52.6"
|
|
4720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4721
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4722
|
+
|
|
4723
|
+
[[package]]
|
|
4724
|
+
name = "windows_i686_gnu"
|
|
4725
|
+
version = "0.53.1"
|
|
4726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4727
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
4728
|
+
|
|
4729
|
+
[[package]]
|
|
4730
|
+
name = "windows_i686_gnullvm"
|
|
4731
|
+
version = "0.52.6"
|
|
4732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4733
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4734
|
+
|
|
4735
|
+
[[package]]
|
|
4736
|
+
name = "windows_i686_gnullvm"
|
|
4737
|
+
version = "0.53.1"
|
|
4738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4739
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
4740
|
+
|
|
4741
|
+
[[package]]
|
|
4742
|
+
name = "windows_i686_msvc"
|
|
4743
|
+
version = "0.52.6"
|
|
4744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4745
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4746
|
+
|
|
4747
|
+
[[package]]
|
|
4748
|
+
name = "windows_i686_msvc"
|
|
4749
|
+
version = "0.53.1"
|
|
4750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4751
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
4752
|
+
|
|
4753
|
+
[[package]]
|
|
4754
|
+
name = "windows_x86_64_gnu"
|
|
4755
|
+
version = "0.52.6"
|
|
4756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4757
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4758
|
+
|
|
4759
|
+
[[package]]
|
|
4760
|
+
name = "windows_x86_64_gnu"
|
|
4761
|
+
version = "0.53.1"
|
|
4762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4763
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
4764
|
+
|
|
4765
|
+
[[package]]
|
|
4766
|
+
name = "windows_x86_64_gnullvm"
|
|
4767
|
+
version = "0.52.6"
|
|
4768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4769
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4770
|
+
|
|
4771
|
+
[[package]]
|
|
4772
|
+
name = "windows_x86_64_gnullvm"
|
|
4773
|
+
version = "0.53.1"
|
|
4774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4775
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
4776
|
+
|
|
4777
|
+
[[package]]
|
|
4778
|
+
name = "windows_x86_64_msvc"
|
|
4779
|
+
version = "0.52.6"
|
|
4780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4781
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4782
|
+
|
|
4783
|
+
[[package]]
|
|
4784
|
+
name = "windows_x86_64_msvc"
|
|
4785
|
+
version = "0.53.1"
|
|
4786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4787
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
4788
|
+
|
|
4789
|
+
[[package]]
|
|
4790
|
+
name = "winnow"
|
|
4791
|
+
version = "0.7.14"
|
|
4792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4793
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
4794
|
+
dependencies = [
|
|
4795
|
+
"memchr",
|
|
4796
|
+
]
|
|
4797
|
+
|
|
4798
|
+
[[package]]
|
|
4799
|
+
name = "wit-bindgen"
|
|
4800
|
+
version = "0.46.0"
|
|
4801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4802
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
4803
|
+
|
|
4804
|
+
[[package]]
|
|
4805
|
+
name = "writeable"
|
|
4806
|
+
version = "0.6.2"
|
|
4807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4808
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
4809
|
+
|
|
4810
|
+
[[package]]
|
|
4811
|
+
name = "xz2"
|
|
4812
|
+
version = "0.1.7"
|
|
4813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4814
|
+
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
4815
|
+
dependencies = [
|
|
4816
|
+
"lzma-sys",
|
|
4817
|
+
]
|
|
4818
|
+
|
|
4819
|
+
[[package]]
|
|
4820
|
+
name = "yoke"
|
|
4821
|
+
version = "0.8.1"
|
|
4822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4823
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
4824
|
+
dependencies = [
|
|
4825
|
+
"stable_deref_trait",
|
|
4826
|
+
"yoke-derive",
|
|
4827
|
+
"zerofrom",
|
|
4828
|
+
]
|
|
4829
|
+
|
|
4830
|
+
[[package]]
|
|
4831
|
+
name = "yoke-derive"
|
|
4832
|
+
version = "0.8.1"
|
|
4833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4834
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
4835
|
+
dependencies = [
|
|
4836
|
+
"proc-macro2",
|
|
4837
|
+
"quote",
|
|
4838
|
+
"syn",
|
|
4839
|
+
"synstructure",
|
|
4840
|
+
]
|
|
4841
|
+
|
|
4842
|
+
[[package]]
|
|
4843
|
+
name = "zerocopy"
|
|
4844
|
+
version = "0.8.31"
|
|
4845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4846
|
+
checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
|
|
4847
|
+
dependencies = [
|
|
4848
|
+
"zerocopy-derive",
|
|
4849
|
+
]
|
|
4850
|
+
|
|
4851
|
+
[[package]]
|
|
4852
|
+
name = "zerocopy-derive"
|
|
4853
|
+
version = "0.8.31"
|
|
4854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4855
|
+
checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
|
|
4856
|
+
dependencies = [
|
|
4857
|
+
"proc-macro2",
|
|
4858
|
+
"quote",
|
|
4859
|
+
"syn",
|
|
4860
|
+
]
|
|
4861
|
+
|
|
4862
|
+
[[package]]
|
|
4863
|
+
name = "zerofrom"
|
|
4864
|
+
version = "0.1.6"
|
|
4865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4866
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4867
|
+
dependencies = [
|
|
4868
|
+
"zerofrom-derive",
|
|
4869
|
+
]
|
|
4870
|
+
|
|
4871
|
+
[[package]]
|
|
4872
|
+
name = "zerofrom-derive"
|
|
4873
|
+
version = "0.1.6"
|
|
4874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4875
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4876
|
+
dependencies = [
|
|
4877
|
+
"proc-macro2",
|
|
4878
|
+
"quote",
|
|
4879
|
+
"syn",
|
|
4880
|
+
"synstructure",
|
|
4881
|
+
]
|
|
4882
|
+
|
|
4883
|
+
[[package]]
|
|
4884
|
+
name = "zeroize"
|
|
4885
|
+
version = "1.8.2"
|
|
4886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4887
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
4888
|
+
|
|
4889
|
+
[[package]]
|
|
4890
|
+
name = "zerotrie"
|
|
4891
|
+
version = "0.2.3"
|
|
4892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4893
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
4894
|
+
dependencies = [
|
|
4895
|
+
"displaydoc",
|
|
4896
|
+
"yoke",
|
|
4897
|
+
"zerofrom",
|
|
4898
|
+
]
|
|
4899
|
+
|
|
4900
|
+
[[package]]
|
|
4901
|
+
name = "zerovec"
|
|
4902
|
+
version = "0.11.5"
|
|
4903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4904
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
4905
|
+
dependencies = [
|
|
4906
|
+
"yoke",
|
|
4907
|
+
"zerofrom",
|
|
4908
|
+
"zerovec-derive",
|
|
4909
|
+
]
|
|
4910
|
+
|
|
4911
|
+
[[package]]
|
|
4912
|
+
name = "zerovec-derive"
|
|
4913
|
+
version = "0.11.2"
|
|
4914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4915
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
4916
|
+
dependencies = [
|
|
4917
|
+
"proc-macro2",
|
|
4918
|
+
"quote",
|
|
4919
|
+
"syn",
|
|
4920
|
+
]
|
|
4921
|
+
|
|
4922
|
+
[[package]]
|
|
4923
|
+
name = "zlib-rs"
|
|
4924
|
+
version = "0.5.4"
|
|
4925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4926
|
+
checksum = "51f936044d677be1a1168fae1d03b583a285a5dd9d8cbf7b24c23aa1fc775235"
|
|
4927
|
+
|
|
4928
|
+
[[package]]
|
|
4929
|
+
name = "zstd"
|
|
4930
|
+
version = "0.13.3"
|
|
4931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4932
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
4933
|
+
dependencies = [
|
|
4934
|
+
"zstd-safe",
|
|
4935
|
+
]
|
|
4936
|
+
|
|
4937
|
+
[[package]]
|
|
4938
|
+
name = "zstd-safe"
|
|
4939
|
+
version = "7.2.4"
|
|
4940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4941
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
4942
|
+
dependencies = [
|
|
4943
|
+
"zstd-sys",
|
|
4944
|
+
]
|
|
4945
|
+
|
|
4946
|
+
[[package]]
|
|
4947
|
+
name = "zstd-sys"
|
|
4948
|
+
version = "2.0.16+zstd.1.5.7"
|
|
4949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4950
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
4951
|
+
dependencies = [
|
|
4952
|
+
"cc",
|
|
4953
|
+
"pkg-config",
|
|
4954
|
+
]
|