bundlebase 0.2.0__tar.gz → 0.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bundlebase-0.2.0 → bundlebase-0.3.0}/Cargo.lock +2051 -289
- {bundlebase-0.2.0 → bundlebase-0.3.0}/Cargo.toml +6 -5
- {bundlebase-0.2.0 → bundlebase-0.3.0}/PKG-INFO +2 -2
- {bundlebase-0.2.0 → bundlebase-0.3.0}/README.md +1 -1
- {bundlebase-0.2.0 → bundlebase-0.3.0}/pyproject.toml +5 -3
- {bundlebase-0.2.0 → bundlebase-0.3.0}/python/src/bundlebase/__init__.py +34 -11
- {bundlebase-0.2.0 → bundlebase-0.3.0}/python/src/bundlebase/__init__.pyi +552 -39
- {bundlebase-0.2.0 → bundlebase-0.3.0}/python/src/bundlebase/chain.py +68 -93
- {bundlebase-0.2.0 → bundlebase-0.3.0}/python/src/bundlebase/progress.py +1 -1
- {bundlebase-0.2.0 → bundlebase-0.3.0}/python/src/bundlebase/sync.py +141 -17
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/Cargo.toml +15 -4
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/builder.rs +689 -152
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/column_lineage.rs +1 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/command/commands.pest +63 -18
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/command/parser.rs +2 -10
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/command/parser_pest.rs +333 -114
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/command.rs +155 -26
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/commit.rs +25 -21
- {bundlebase-0.2.0/rust/bundlebase/src/data → bundlebase-0.3.0/rust/bundlebase/src/bundle}/data_block.rs +20 -16
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/facade.rs +29 -0
- {bundlebase-0.2.0/rust/bundlebase/src/index → bundlebase-0.3.0/rust/bundlebase/src/bundle}/indexed_blocks.rs +0 -10
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/operation/attach_block.rs +164 -31
- bundlebase-0.2.0/rust/bundlebase/src/bundle/operation/define_function.rs → bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/create_function.rs +16 -16
- bundlebase-0.2.0/rust/bundlebase/src/bundle/operation/define_index.rs → bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/create_index.rs +4 -4
- bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/create_join.rs +95 -0
- bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/create_source.rs +198 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/operation/create_view.rs +10 -10
- bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/detach_block.rs +138 -0
- bundlebase-0.2.0/rust/bundlebase/src/bundle/operation/remove_columns.rs → bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/drop_column.rs +11 -11
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/operation/drop_index.rs +11 -15
- bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/drop_join.rs +100 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/operation/drop_view.rs +15 -20
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/operation/filter.rs +1 -41
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/operation/index_blocks.rs +47 -27
- bundlebase-0.2.0/rust/bundlebase/src/bundle/operation/select.rs → bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/parameter_value.rs +30 -152
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/operation/rebuild_index.rs +1 -0
- bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/rename_join.rs +161 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/operation/rename_view.rs +15 -16
- bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/replace_block.rs +335 -0
- bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/select.rs +155 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/operation/serde_util.rs +2 -2
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/operation/set_config.rs +1 -1
- bundlebase-0.3.0/rust/bundlebase/src/bundle/operation.rs +226 -0
- bundlebase-0.3.0/rust/bundlebase/src/bundle/pack.rs +230 -0
- bundlebase-0.3.0/rust/bundlebase/src/bundle/source.rs +222 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/sql.rs +34 -200
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle.rs +290 -109
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle_config.rs +2 -2
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/catalog/block_schema_provider.rs +17 -14
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/catalog/bundle_schema_provider.rs +5 -4
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/catalog/pack_schema_provider.rs +33 -29
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/catalog/pack_union_table.rs +10 -12
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/catalog.rs +1 -1
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/data/plugin/csv_reader.rs +20 -27
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/data/plugin/file_reader.rs +10 -14
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/data/plugin/function_reader.rs +5 -3
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/data/plugin/json_reader.rs +16 -21
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/data/plugin/mock.rs +5 -5
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/data/plugin/parquet_reader.rs +12 -17
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/data/plugin.rs +1 -1
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/data/reader_factory.rs +4 -4
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/data/rowid_offset_data_source.rs +32 -60
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/data/rowid_provider.rs +3 -2
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/data/rowid_stream.rs +0 -1
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/data.rs +6 -17
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/functions/function_batch_generator.rs +5 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/functions/function_datasource.rs +11 -3
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/functions/function_registry.rs +5 -5
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/index/column_index.rs +6 -4
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/index/filter_analyzer.rs +12 -12
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/index/index_definition.rs +4 -2
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/index/index_scan_exec.rs +2 -0
- bundlebase-0.3.0/rust/bundlebase/src/index/index_selector.rs +52 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/index/rowid_cache.rs +7 -1
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/index/rowid_index.rs +33 -36
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/index.rs +0 -2
- bundlebase-0.3.0/rust/bundlebase/src/io/dir.rs +242 -0
- bundlebase-0.3.0/rust/bundlebase/src/io/file.rs +114 -0
- bundlebase-0.3.0/rust/bundlebase/src/io/file_info.rs +96 -0
- bundlebase-0.3.0/rust/bundlebase/src/io/plugin/ftp.rs +539 -0
- bundlebase-0.3.0/rust/bundlebase/src/io/plugin/object_store.rs +769 -0
- bundlebase-0.3.0/rust/bundlebase/src/io/plugin/sftp.rs +626 -0
- bundlebase-0.3.0/rust/bundlebase/src/io/plugin/tar.rs +1102 -0
- bundlebase-0.3.0/rust/bundlebase/src/io/plugin.rs +36 -0
- bundlebase-0.3.0/rust/bundlebase/src/io/registry.rs +352 -0
- bundlebase-0.3.0/rust/bundlebase/src/io/util.rs +95 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/io.rs +128 -7
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/lib.rs +6 -1
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/metrics/logging.rs +58 -20
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/metrics.rs +1 -7
- {bundlebase-0.2.0/rust/bundlebase/src/data → bundlebase-0.3.0/rust/bundlebase/src}/object_id.rs +5 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/progress/registry.rs +0 -4
- {bundlebase-0.2.0/rust/bundlebase/src/data → bundlebase-0.3.0/rust/bundlebase/src}/row_id.rs +78 -1
- bundlebase-0.3.0/rust/bundlebase/src/source/postgres.rs +720 -0
- bundlebase-0.3.0/rust/bundlebase/src/source/remote_dir.rs +438 -0
- bundlebase-0.3.0/rust/bundlebase/src/source/source_function.rs +614 -0
- bundlebase-0.3.0/rust/bundlebase/src/source/source_utils.rs +498 -0
- bundlebase-0.3.0/rust/bundlebase/src/source/web_scrape.rs +464 -0
- bundlebase-0.3.0/rust/bundlebase/src/source.rs +15 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/test_utils.rs +17 -5
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/versioning.rs +1 -1
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/tests/basic_e2e.rs +53 -66
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/tests/blocks_e2e.rs +2 -4
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/tests/building_e2e.rs +49 -55
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/tests/bundle_schema_e2e.rs +4 -4
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/tests/common/mod.rs +17 -13
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/tests/filters_selects_e2e.rs +9 -9
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/tests/functions_e2e.rs +38 -36
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/tests/index_e2e.rs +20 -21
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/tests/join_e2e.rs +39 -11
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/tests/operations_e2e.rs +13 -13
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/tests/schema_e2e.rs +11 -11
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/tests/select_e2e.rs +12 -12
- bundlebase-0.3.0/rust/bundlebase/tests/source_e2e.rs +799 -0
- bundlebase-0.3.0/rust/bundlebase/tests/tar_e2e.rs +351 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/tests/views_e2e.rs +62 -70
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase-python/src/builder.rs +409 -31
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase-python/src/bundle.rs +60 -1
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase-python/src/lib.rs +10 -1
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase-python/src/operation.rs +9 -5
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase-python/src/progress.rs +3 -3
- bundlebase-0.2.0/rust/bundlebase/src/bundle/operation/define_pack.rs +0 -44
- bundlebase-0.2.0/rust/bundlebase/src/bundle/operation/join.rs +0 -170
- bundlebase-0.2.0/rust/bundlebase/src/bundle/operation.rs +0 -395
- bundlebase-0.2.0/rust/bundlebase/src/data/data_pack.rs +0 -66
- bundlebase-0.2.0/rust/bundlebase/src/data/pack_join.rs +0 -47
- bundlebase-0.2.0/rust/bundlebase/src/data/rowid_batch.rs +0 -79
- bundlebase-0.2.0/rust/bundlebase/src/index/index_selector.rs +0 -218
- bundlebase-0.2.0/rust/bundlebase/src/io/object_store_dir.rs +0 -234
- bundlebase-0.2.0/rust/bundlebase/src/io/object_store_file.rs +0 -351
- bundlebase-0.2.0/rust/bundlebase/src/io/util.rs +0 -197
- {bundlebase-0.2.0 → bundlebase-0.3.0}/LICENSE +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/python/src/bundlebase/_loop_manager.py +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/python/src/bundlebase/conversion.py +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/init.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/operation/rename_column.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/operation/set_description.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/bundle/operation/set_name.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/data/versioned_blockid.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/functions/function_impl.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/functions/static_impl.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/functions.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/metrics/progress.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/progress/logging.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/progress/mock.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase/src/progress.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase-python/Cargo.toml +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase-python/src/bundle_config.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase-python/src/commit.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase-python/src/data_generator.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase-python/src/function_impl.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase-python/src/record_batch_stream.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase-python/src/schema.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase-python/src/session_context.rs +0 -0
- {bundlebase-0.2.0 → bundlebase-0.3.0}/rust/bundlebase-python/src/utils.rs +0 -0
|
@@ -8,6 +8,41 @@ version = "2.0.1"
|
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
9
|
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
10
|
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aead"
|
|
13
|
+
version = "0.5.2"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"crypto-common",
|
|
18
|
+
"generic-array",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[[package]]
|
|
22
|
+
name = "aes"
|
|
23
|
+
version = "0.8.4"
|
|
24
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
26
|
+
dependencies = [
|
|
27
|
+
"cfg-if",
|
|
28
|
+
"cipher",
|
|
29
|
+
"cpufeatures",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "aes-gcm"
|
|
34
|
+
version = "0.10.3"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"aead",
|
|
39
|
+
"aes",
|
|
40
|
+
"cipher",
|
|
41
|
+
"ctr",
|
|
42
|
+
"ghash",
|
|
43
|
+
"subtle",
|
|
44
|
+
]
|
|
45
|
+
|
|
11
46
|
[[package]]
|
|
12
47
|
name = "ahash"
|
|
13
48
|
version = "0.8.12"
|
|
@@ -119,15 +154,16 @@ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
|
119
154
|
|
|
120
155
|
[[package]]
|
|
121
156
|
name = "apache-avro"
|
|
122
|
-
version = "0.
|
|
157
|
+
version = "0.21.0"
|
|
123
158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
-
checksum = "
|
|
159
|
+
checksum = "36fa98bc79671c7981272d91a8753a928ff6a1cd8e4f20a44c45bd5d313840bf"
|
|
125
160
|
dependencies = [
|
|
126
161
|
"bigdecimal",
|
|
127
162
|
"bon",
|
|
128
|
-
"bzip2
|
|
163
|
+
"bzip2",
|
|
129
164
|
"crc32fast",
|
|
130
165
|
"digest",
|
|
166
|
+
"liblzma",
|
|
131
167
|
"log",
|
|
132
168
|
"miniz_oxide",
|
|
133
169
|
"num-bigint",
|
|
@@ -142,7 +178,6 @@ dependencies = [
|
|
|
142
178
|
"strum_macros 0.27.2",
|
|
143
179
|
"thiserror 2.0.17",
|
|
144
180
|
"uuid",
|
|
145
|
-
"xz2",
|
|
146
181
|
"zstd",
|
|
147
182
|
]
|
|
148
183
|
|
|
@@ -178,9 +213,9 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
|
178
213
|
|
|
179
214
|
[[package]]
|
|
180
215
|
name = "arrow"
|
|
181
|
-
version = "57.
|
|
216
|
+
version = "57.2.0"
|
|
182
217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
-
checksum = "
|
|
218
|
+
checksum = "2a2b10dcb159faf30d3f81f6d56c1211a5bea2ca424eabe477648a44b993320e"
|
|
184
219
|
dependencies = [
|
|
185
220
|
"arrow-arith",
|
|
186
221
|
"arrow-array",
|
|
@@ -200,9 +235,9 @@ dependencies = [
|
|
|
200
235
|
|
|
201
236
|
[[package]]
|
|
202
237
|
name = "arrow-arith"
|
|
203
|
-
version = "57.
|
|
238
|
+
version = "57.2.0"
|
|
204
239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
-
checksum = "
|
|
240
|
+
checksum = "288015089e7931843c80ed4032c5274f02b37bcb720c4a42096d50b390e70372"
|
|
206
241
|
dependencies = [
|
|
207
242
|
"arrow-array",
|
|
208
243
|
"arrow-buffer",
|
|
@@ -214,9 +249,9 @@ dependencies = [
|
|
|
214
249
|
|
|
215
250
|
[[package]]
|
|
216
251
|
name = "arrow-array"
|
|
217
|
-
version = "57.
|
|
252
|
+
version = "57.2.0"
|
|
218
253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
-
checksum = "
|
|
254
|
+
checksum = "65ca404ea6191e06bf30956394173337fa9c35f445bd447fe6c21ab944e1a23c"
|
|
220
255
|
dependencies = [
|
|
221
256
|
"ahash",
|
|
222
257
|
"arrow-buffer",
|
|
@@ -233,9 +268,9 @@ dependencies = [
|
|
|
233
268
|
|
|
234
269
|
[[package]]
|
|
235
270
|
name = "arrow-buffer"
|
|
236
|
-
version = "57.
|
|
271
|
+
version = "57.2.0"
|
|
237
272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
-
checksum = "
|
|
273
|
+
checksum = "36356383099be0151dacc4245309895f16ba7917d79bdb71a7148659c9206c56"
|
|
239
274
|
dependencies = [
|
|
240
275
|
"bytes",
|
|
241
276
|
"half",
|
|
@@ -245,9 +280,9 @@ dependencies = [
|
|
|
245
280
|
|
|
246
281
|
[[package]]
|
|
247
282
|
name = "arrow-cast"
|
|
248
|
-
version = "57.
|
|
283
|
+
version = "57.2.0"
|
|
249
284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
-
checksum = "
|
|
285
|
+
checksum = "9c8e372ed52bd4ee88cc1e6c3859aa7ecea204158ac640b10e187936e7e87074"
|
|
251
286
|
dependencies = [
|
|
252
287
|
"arrow-array",
|
|
253
288
|
"arrow-buffer",
|
|
@@ -267,9 +302,9 @@ dependencies = [
|
|
|
267
302
|
|
|
268
303
|
[[package]]
|
|
269
304
|
name = "arrow-csv"
|
|
270
|
-
version = "57.
|
|
305
|
+
version = "57.2.0"
|
|
271
306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
-
checksum = "
|
|
307
|
+
checksum = "8e4100b729fe656f2e4fb32bc5884f14acf9118d4ad532b7b33c1132e4dce896"
|
|
273
308
|
dependencies = [
|
|
274
309
|
"arrow-array",
|
|
275
310
|
"arrow-cast",
|
|
@@ -282,9 +317,9 @@ dependencies = [
|
|
|
282
317
|
|
|
283
318
|
[[package]]
|
|
284
319
|
name = "arrow-data"
|
|
285
|
-
version = "57.
|
|
320
|
+
version = "57.2.0"
|
|
286
321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
-
checksum = "
|
|
322
|
+
checksum = "bf87f4ff5fc13290aa47e499a8b669a82c5977c6a1fedce22c7f542c1fd5a597"
|
|
288
323
|
dependencies = [
|
|
289
324
|
"arrow-buffer",
|
|
290
325
|
"arrow-schema",
|
|
@@ -295,9 +330,9 @@ dependencies = [
|
|
|
295
330
|
|
|
296
331
|
[[package]]
|
|
297
332
|
name = "arrow-flight"
|
|
298
|
-
version = "57.
|
|
333
|
+
version = "57.2.0"
|
|
299
334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
-
checksum = "
|
|
335
|
+
checksum = "f63654f21676be802d446c6c4bc54f6a47e18d55f9ae6f7195a6f6faf2ecdbeb"
|
|
301
336
|
dependencies = [
|
|
302
337
|
"arrow-array",
|
|
303
338
|
"arrow-buffer",
|
|
@@ -315,9 +350,9 @@ dependencies = [
|
|
|
315
350
|
|
|
316
351
|
[[package]]
|
|
317
352
|
name = "arrow-ipc"
|
|
318
|
-
version = "57.
|
|
353
|
+
version = "57.2.0"
|
|
319
354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
-
checksum = "
|
|
355
|
+
checksum = "eb3ca63edd2073fcb42ba112f8ae165df1de935627ead6e203d07c99445f2081"
|
|
321
356
|
dependencies = [
|
|
322
357
|
"arrow-array",
|
|
323
358
|
"arrow-buffer",
|
|
@@ -331,9 +366,9 @@ dependencies = [
|
|
|
331
366
|
|
|
332
367
|
[[package]]
|
|
333
368
|
name = "arrow-json"
|
|
334
|
-
version = "57.
|
|
369
|
+
version = "57.2.0"
|
|
335
370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
-
checksum = "
|
|
371
|
+
checksum = "a36b2332559d3310ebe3e173f75b29989b4412df4029a26a30cc3f7da0869297"
|
|
337
372
|
dependencies = [
|
|
338
373
|
"arrow-array",
|
|
339
374
|
"arrow-buffer",
|
|
@@ -355,9 +390,9 @@ dependencies = [
|
|
|
355
390
|
|
|
356
391
|
[[package]]
|
|
357
392
|
name = "arrow-ord"
|
|
358
|
-
version = "57.
|
|
393
|
+
version = "57.2.0"
|
|
359
394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
-
checksum = "
|
|
395
|
+
checksum = "13c4e0530272ca755d6814218dffd04425c5b7854b87fa741d5ff848bf50aa39"
|
|
361
396
|
dependencies = [
|
|
362
397
|
"arrow-array",
|
|
363
398
|
"arrow-buffer",
|
|
@@ -368,9 +403,9 @@ dependencies = [
|
|
|
368
403
|
|
|
369
404
|
[[package]]
|
|
370
405
|
name = "arrow-pyarrow"
|
|
371
|
-
version = "57.
|
|
406
|
+
version = "57.2.0"
|
|
372
407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
|
-
checksum = "
|
|
408
|
+
checksum = "f45c7989cb70214b2f362eaa10266d15e1a433692f2ea1514018be3aace679f4"
|
|
374
409
|
dependencies = [
|
|
375
410
|
"arrow-array",
|
|
376
411
|
"arrow-data",
|
|
@@ -380,9 +415,9 @@ dependencies = [
|
|
|
380
415
|
|
|
381
416
|
[[package]]
|
|
382
417
|
name = "arrow-row"
|
|
383
|
-
version = "57.
|
|
418
|
+
version = "57.2.0"
|
|
384
419
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
-
checksum = "
|
|
420
|
+
checksum = "b07f52788744cc71c4628567ad834cadbaeb9f09026ff1d7a4120f69edf7abd3"
|
|
386
421
|
dependencies = [
|
|
387
422
|
"arrow-array",
|
|
388
423
|
"arrow-buffer",
|
|
@@ -393,9 +428,9 @@ dependencies = [
|
|
|
393
428
|
|
|
394
429
|
[[package]]
|
|
395
430
|
name = "arrow-schema"
|
|
396
|
-
version = "57.
|
|
431
|
+
version = "57.2.0"
|
|
397
432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
-
checksum = "
|
|
433
|
+
checksum = "6bb63203e8e0e54b288d0d8043ca8fa1013820822a27692ef1b78a977d879f2c"
|
|
399
434
|
dependencies = [
|
|
400
435
|
"bitflags",
|
|
401
436
|
"serde",
|
|
@@ -405,9 +440,9 @@ dependencies = [
|
|
|
405
440
|
|
|
406
441
|
[[package]]
|
|
407
442
|
name = "arrow-select"
|
|
408
|
-
version = "57.
|
|
443
|
+
version = "57.2.0"
|
|
409
444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
-
checksum = "
|
|
445
|
+
checksum = "c96d8a1c180b44ecf2e66c9a2f2bbcb8b1b6f14e165ce46ac8bde211a363411b"
|
|
411
446
|
dependencies = [
|
|
412
447
|
"ahash",
|
|
413
448
|
"arrow-array",
|
|
@@ -419,9 +454,9 @@ dependencies = [
|
|
|
419
454
|
|
|
420
455
|
[[package]]
|
|
421
456
|
name = "arrow-string"
|
|
422
|
-
version = "57.
|
|
457
|
+
version = "57.2.0"
|
|
423
458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
-
checksum = "
|
|
459
|
+
checksum = "a8ad6a81add9d3ea30bf8374ee8329992c7fd246ffd8b7e2f48a3cea5aa0cc9a"
|
|
425
460
|
dependencies = [
|
|
426
461
|
"arrow-array",
|
|
427
462
|
"arrow-buffer",
|
|
@@ -436,19 +471,14 @@ dependencies = [
|
|
|
436
471
|
|
|
437
472
|
[[package]]
|
|
438
473
|
name = "async-compression"
|
|
439
|
-
version = "0.4.
|
|
474
|
+
version = "0.4.37"
|
|
440
475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
-
checksum = "
|
|
476
|
+
checksum = "d10e4f991a553474232bc0a31799f6d24b034a84c0971d80d2e2f78b2e576e40"
|
|
442
477
|
dependencies = [
|
|
443
|
-
"
|
|
444
|
-
"
|
|
445
|
-
"futures-core",
|
|
446
|
-
"memchr",
|
|
478
|
+
"compression-codecs",
|
|
479
|
+
"compression-core",
|
|
447
480
|
"pin-project-lite",
|
|
448
481
|
"tokio",
|
|
449
|
-
"xz2",
|
|
450
|
-
"zstd",
|
|
451
|
-
"zstd-safe",
|
|
452
482
|
]
|
|
453
483
|
|
|
454
484
|
[[package]]
|
|
@@ -505,6 +535,28 @@ version = "1.5.0"
|
|
|
505
535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
536
|
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
507
537
|
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "aws-lc-rs"
|
|
540
|
+
version = "1.15.3"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "e84ce723ab67259cfeb9877c6a639ee9eb7a27b28123abd71db7f0d5d0cc9d86"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"aws-lc-sys",
|
|
545
|
+
"zeroize",
|
|
546
|
+
]
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "aws-lc-sys"
|
|
550
|
+
version = "0.36.0"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "43a442ece363113bd4bd4c8b18977a7798dd4d3c3383f34fb61936960e8f4ad8"
|
|
553
|
+
dependencies = [
|
|
554
|
+
"cc",
|
|
555
|
+
"cmake",
|
|
556
|
+
"dunce",
|
|
557
|
+
"fs_extra",
|
|
558
|
+
]
|
|
559
|
+
|
|
508
560
|
[[package]]
|
|
509
561
|
name = "axum"
|
|
510
562
|
version = "0.8.8"
|
|
@@ -548,12 +600,35 @@ dependencies = [
|
|
|
548
600
|
"tower-service",
|
|
549
601
|
]
|
|
550
602
|
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "base16ct"
|
|
605
|
+
version = "0.2.0"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
608
|
+
|
|
551
609
|
[[package]]
|
|
552
610
|
name = "base64"
|
|
553
611
|
version = "0.22.1"
|
|
554
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
613
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
556
614
|
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "base64ct"
|
|
617
|
+
version = "1.8.3"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "bcrypt-pbkdf"
|
|
623
|
+
version = "0.10.0"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2"
|
|
626
|
+
dependencies = [
|
|
627
|
+
"blowfish",
|
|
628
|
+
"pbkdf2",
|
|
629
|
+
"sha2",
|
|
630
|
+
]
|
|
631
|
+
|
|
557
632
|
[[package]]
|
|
558
633
|
name = "bigdecimal"
|
|
559
634
|
version = "0.4.10"
|
|
@@ -588,15 +663,16 @@ dependencies = [
|
|
|
588
663
|
|
|
589
664
|
[[package]]
|
|
590
665
|
name = "blake3"
|
|
591
|
-
version = "1.8.
|
|
666
|
+
version = "1.8.3"
|
|
592
667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
-
checksum = "
|
|
668
|
+
checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d"
|
|
594
669
|
dependencies = [
|
|
595
670
|
"arrayref",
|
|
596
671
|
"arrayvec",
|
|
597
672
|
"cc",
|
|
598
673
|
"cfg-if",
|
|
599
674
|
"constant_time_eq",
|
|
675
|
+
"cpufeatures",
|
|
600
676
|
]
|
|
601
677
|
|
|
602
678
|
[[package]]
|
|
@@ -608,11 +684,30 @@ dependencies = [
|
|
|
608
684
|
"generic-array",
|
|
609
685
|
]
|
|
610
686
|
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "block-padding"
|
|
689
|
+
version = "0.3.3"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"generic-array",
|
|
694
|
+
]
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "blowfish"
|
|
698
|
+
version = "0.9.1"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"byteorder",
|
|
703
|
+
"cipher",
|
|
704
|
+
]
|
|
705
|
+
|
|
611
706
|
[[package]]
|
|
612
707
|
name = "bon"
|
|
613
|
-
version = "3.8.
|
|
708
|
+
version = "3.8.2"
|
|
614
709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
-
checksum = "
|
|
710
|
+
checksum = "234655ec178edd82b891e262ea7cf71f6584bcd09eff94db786be23f1821825c"
|
|
616
711
|
dependencies = [
|
|
617
712
|
"bon-macros",
|
|
618
713
|
"rustversion",
|
|
@@ -620,9 +715,9 @@ dependencies = [
|
|
|
620
715
|
|
|
621
716
|
[[package]]
|
|
622
717
|
name = "bon-macros"
|
|
623
|
-
version = "3.8.
|
|
718
|
+
version = "3.8.2"
|
|
624
719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
-
checksum = "
|
|
720
|
+
checksum = "89ec27229c38ed0eb3c0feee3d2c1d6a4379ae44f418a29a658890e062d8f365"
|
|
626
721
|
dependencies = [
|
|
627
722
|
"darling",
|
|
628
723
|
"ident_case",
|
|
@@ -662,7 +757,7 @@ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
|
662
757
|
|
|
663
758
|
[[package]]
|
|
664
759
|
name = "bundlebase"
|
|
665
|
-
version = "0.
|
|
760
|
+
version = "0.3.0"
|
|
666
761
|
dependencies = [
|
|
667
762
|
"arrow",
|
|
668
763
|
"arrow-schema",
|
|
@@ -672,6 +767,7 @@ dependencies = [
|
|
|
672
767
|
"datafusion",
|
|
673
768
|
"env_logger",
|
|
674
769
|
"futures",
|
|
770
|
+
"glob",
|
|
675
771
|
"hex",
|
|
676
772
|
"lazy_static",
|
|
677
773
|
"log",
|
|
@@ -684,24 +780,34 @@ dependencies = [
|
|
|
684
780
|
"parquet",
|
|
685
781
|
"pest",
|
|
686
782
|
"pest_derive",
|
|
783
|
+
"postgres-types",
|
|
687
784
|
"rand 0.9.2",
|
|
688
785
|
"regex",
|
|
786
|
+
"reqwest 0.13.1",
|
|
689
787
|
"rstest",
|
|
788
|
+
"russh",
|
|
789
|
+
"russh-keys",
|
|
790
|
+
"russh-sftp",
|
|
791
|
+
"scraper",
|
|
690
792
|
"serde",
|
|
691
793
|
"serde_json",
|
|
692
794
|
"serde_yaml",
|
|
693
795
|
"serial_test",
|
|
694
796
|
"sha2",
|
|
695
|
-
"
|
|
797
|
+
"shellexpand",
|
|
798
|
+
"sqlparser 0.60.0",
|
|
799
|
+
"suppaftp",
|
|
800
|
+
"tar",
|
|
696
801
|
"tempfile",
|
|
697
802
|
"tokio",
|
|
803
|
+
"tokio-postgres",
|
|
698
804
|
"url",
|
|
699
805
|
"uuid",
|
|
700
806
|
]
|
|
701
807
|
|
|
702
808
|
[[package]]
|
|
703
809
|
name = "bundlebase-cli"
|
|
704
|
-
version = "0.
|
|
810
|
+
version = "0.3.0"
|
|
705
811
|
dependencies = [
|
|
706
812
|
"anyhow",
|
|
707
813
|
"arrow",
|
|
@@ -728,7 +834,7 @@ dependencies = [
|
|
|
728
834
|
|
|
729
835
|
[[package]]
|
|
730
836
|
name = "bundlebase-python"
|
|
731
|
-
version = "0.
|
|
837
|
+
version = "0.3.0"
|
|
732
838
|
dependencies = [
|
|
733
839
|
"arrow",
|
|
734
840
|
"arrow-schema",
|
|
@@ -754,15 +860,6 @@ version = "1.11.0"
|
|
|
754
860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
861
|
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
756
862
|
|
|
757
|
-
[[package]]
|
|
758
|
-
name = "bzip2"
|
|
759
|
-
version = "0.5.2"
|
|
760
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
-
checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
|
|
762
|
-
dependencies = [
|
|
763
|
-
"bzip2-sys",
|
|
764
|
-
]
|
|
765
|
-
|
|
766
863
|
[[package]]
|
|
767
864
|
name = "bzip2"
|
|
768
865
|
version = "0.6.1"
|
|
@@ -773,20 +870,19 @@ dependencies = [
|
|
|
773
870
|
]
|
|
774
871
|
|
|
775
872
|
[[package]]
|
|
776
|
-
name = "
|
|
777
|
-
version = "0.1.
|
|
873
|
+
name = "cbc"
|
|
874
|
+
version = "0.1.2"
|
|
778
875
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
-
checksum = "
|
|
876
|
+
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
|
|
780
877
|
dependencies = [
|
|
781
|
-
"
|
|
782
|
-
"pkg-config",
|
|
878
|
+
"cipher",
|
|
783
879
|
]
|
|
784
880
|
|
|
785
881
|
[[package]]
|
|
786
882
|
name = "cc"
|
|
787
|
-
version = "1.2.
|
|
883
|
+
version = "1.2.53"
|
|
788
884
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
-
checksum = "
|
|
885
|
+
checksum = "755d2fce177175ffca841e9a06afdb2c4ab0f593d53b4dee48147dfaade85932"
|
|
790
886
|
dependencies = [
|
|
791
887
|
"find-msvc-tools",
|
|
792
888
|
"jobserver",
|
|
@@ -794,6 +890,12 @@ dependencies = [
|
|
|
794
890
|
"shlex",
|
|
795
891
|
]
|
|
796
892
|
|
|
893
|
+
[[package]]
|
|
894
|
+
name = "cesu8"
|
|
895
|
+
version = "1.1.0"
|
|
896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
897
|
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
898
|
+
|
|
797
899
|
[[package]]
|
|
798
900
|
name = "cfg-if"
|
|
799
901
|
version = "1.0.4"
|
|
@@ -806,11 +908,22 @@ version = "0.2.1"
|
|
|
806
908
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
909
|
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
808
910
|
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "chacha20"
|
|
913
|
+
version = "0.9.1"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
|
|
916
|
+
dependencies = [
|
|
917
|
+
"cfg-if",
|
|
918
|
+
"cipher",
|
|
919
|
+
"cpufeatures",
|
|
920
|
+
]
|
|
921
|
+
|
|
809
922
|
[[package]]
|
|
810
923
|
name = "chrono"
|
|
811
|
-
version = "0.4.
|
|
924
|
+
version = "0.4.43"
|
|
812
925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
-
checksum = "
|
|
926
|
+
checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
|
|
814
927
|
dependencies = [
|
|
815
928
|
"iana-time-zone",
|
|
816
929
|
"js-sys",
|
|
@@ -827,7 +940,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
827
940
|
checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
|
|
828
941
|
dependencies = [
|
|
829
942
|
"chrono",
|
|
830
|
-
"phf",
|
|
943
|
+
"phf 0.12.1",
|
|
944
|
+
]
|
|
945
|
+
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "cipher"
|
|
948
|
+
version = "0.4.4"
|
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
951
|
+
dependencies = [
|
|
952
|
+
"crypto-common",
|
|
953
|
+
"inout",
|
|
831
954
|
]
|
|
832
955
|
|
|
833
956
|
[[package]]
|
|
@@ -866,9 +989,18 @@ dependencies = [
|
|
|
866
989
|
|
|
867
990
|
[[package]]
|
|
868
991
|
name = "clap_lex"
|
|
869
|
-
version = "0.7.
|
|
992
|
+
version = "0.7.7"
|
|
870
993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
-
checksum = "
|
|
994
|
+
checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "cmake"
|
|
998
|
+
version = "0.1.57"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
|
|
1001
|
+
dependencies = [
|
|
1002
|
+
"cc",
|
|
1003
|
+
]
|
|
872
1004
|
|
|
873
1005
|
[[package]]
|
|
874
1006
|
name = "colorchoice"
|
|
@@ -876,17 +1008,48 @@ version = "1.0.4"
|
|
|
876
1008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
1009
|
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
878
1010
|
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "combine"
|
|
1013
|
+
version = "4.6.7"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
1016
|
+
dependencies = [
|
|
1017
|
+
"bytes",
|
|
1018
|
+
"memchr",
|
|
1019
|
+
]
|
|
1020
|
+
|
|
879
1021
|
[[package]]
|
|
880
1022
|
name = "comfy-table"
|
|
881
|
-
version = "7.2.
|
|
1023
|
+
version = "7.2.2"
|
|
882
1024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
-
checksum = "
|
|
1025
|
+
checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
|
|
884
1026
|
dependencies = [
|
|
885
1027
|
"crossterm 0.29.0",
|
|
886
1028
|
"unicode-segmentation",
|
|
887
1029
|
"unicode-width 0.2.2",
|
|
888
1030
|
]
|
|
889
1031
|
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "compression-codecs"
|
|
1034
|
+
version = "0.4.36"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "00828ba6fd27b45a448e57dbfe84f1029d4c9f26b368157e9a448a5f49a2ec2a"
|
|
1037
|
+
dependencies = [
|
|
1038
|
+
"bzip2",
|
|
1039
|
+
"compression-core",
|
|
1040
|
+
"flate2",
|
|
1041
|
+
"liblzma",
|
|
1042
|
+
"memchr",
|
|
1043
|
+
"zstd",
|
|
1044
|
+
"zstd-safe",
|
|
1045
|
+
]
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "compression-core"
|
|
1049
|
+
version = "0.4.31"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d"
|
|
1052
|
+
|
|
890
1053
|
[[package]]
|
|
891
1054
|
name = "console"
|
|
892
1055
|
version = "0.15.11"
|
|
@@ -900,6 +1063,12 @@ dependencies = [
|
|
|
900
1063
|
"windows-sys 0.59.0",
|
|
901
1064
|
]
|
|
902
1065
|
|
|
1066
|
+
[[package]]
|
|
1067
|
+
name = "const-oid"
|
|
1068
|
+
version = "0.9.6"
|
|
1069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1070
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
1071
|
+
|
|
903
1072
|
[[package]]
|
|
904
1073
|
name = "const-random"
|
|
905
1074
|
version = "0.1.18"
|
|
@@ -915,16 +1084,16 @@ version = "0.1.16"
|
|
|
915
1084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
1085
|
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
917
1086
|
dependencies = [
|
|
918
|
-
"getrandom 0.2.
|
|
1087
|
+
"getrandom 0.2.17",
|
|
919
1088
|
"once_cell",
|
|
920
1089
|
"tiny-keccak",
|
|
921
1090
|
]
|
|
922
1091
|
|
|
923
1092
|
[[package]]
|
|
924
1093
|
name = "constant_time_eq"
|
|
925
|
-
version = "0.
|
|
1094
|
+
version = "0.4.2"
|
|
926
1095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
-
checksum = "
|
|
1096
|
+
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
|
928
1097
|
|
|
929
1098
|
[[package]]
|
|
930
1099
|
name = "core-foundation"
|
|
@@ -1012,6 +1181,18 @@ version = "0.2.4"
|
|
|
1012
1181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
1182
|
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
1014
1183
|
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "crypto-bigint"
|
|
1186
|
+
version = "0.5.5"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
|
1189
|
+
dependencies = [
|
|
1190
|
+
"generic-array",
|
|
1191
|
+
"rand_core 0.6.4",
|
|
1192
|
+
"subtle",
|
|
1193
|
+
"zeroize",
|
|
1194
|
+
]
|
|
1195
|
+
|
|
1015
1196
|
[[package]]
|
|
1016
1197
|
name = "crypto-common"
|
|
1017
1198
|
version = "0.1.7"
|
|
@@ -1019,9 +1200,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1019
1200
|
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
1020
1201
|
dependencies = [
|
|
1021
1202
|
"generic-array",
|
|
1203
|
+
"rand_core 0.6.4",
|
|
1022
1204
|
"typenum",
|
|
1023
1205
|
]
|
|
1024
1206
|
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "cssparser"
|
|
1209
|
+
version = "0.34.0"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "b7c66d1cd8ed61bf80b38432613a7a2f09401ab8d0501110655f8b341484a3e3"
|
|
1212
|
+
dependencies = [
|
|
1213
|
+
"cssparser-macros",
|
|
1214
|
+
"dtoa-short",
|
|
1215
|
+
"itoa",
|
|
1216
|
+
"phf 0.11.3",
|
|
1217
|
+
"smallvec",
|
|
1218
|
+
]
|
|
1219
|
+
|
|
1220
|
+
[[package]]
|
|
1221
|
+
name = "cssparser-macros"
|
|
1222
|
+
version = "0.6.1"
|
|
1223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
+
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
|
1225
|
+
dependencies = [
|
|
1226
|
+
"quote",
|
|
1227
|
+
"syn",
|
|
1228
|
+
]
|
|
1229
|
+
|
|
1025
1230
|
[[package]]
|
|
1026
1231
|
name = "csv"
|
|
1027
1232
|
version = "1.4.0"
|
|
@@ -1043,11 +1248,47 @@ dependencies = [
|
|
|
1043
1248
|
"memchr",
|
|
1044
1249
|
]
|
|
1045
1250
|
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "ctr"
|
|
1253
|
+
version = "0.9.2"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
|
|
1256
|
+
dependencies = [
|
|
1257
|
+
"cipher",
|
|
1258
|
+
]
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "curve25519-dalek"
|
|
1262
|
+
version = "4.1.3"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
|
1265
|
+
dependencies = [
|
|
1266
|
+
"cfg-if",
|
|
1267
|
+
"cpufeatures",
|
|
1268
|
+
"curve25519-dalek-derive",
|
|
1269
|
+
"digest",
|
|
1270
|
+
"fiat-crypto",
|
|
1271
|
+
"rustc_version",
|
|
1272
|
+
"subtle",
|
|
1273
|
+
"zeroize",
|
|
1274
|
+
]
|
|
1275
|
+
|
|
1276
|
+
[[package]]
|
|
1277
|
+
name = "curve25519-dalek-derive"
|
|
1278
|
+
version = "0.1.1"
|
|
1279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
1281
|
+
dependencies = [
|
|
1282
|
+
"proc-macro2",
|
|
1283
|
+
"quote",
|
|
1284
|
+
"syn",
|
|
1285
|
+
]
|
|
1286
|
+
|
|
1046
1287
|
[[package]]
|
|
1047
1288
|
name = "darling"
|
|
1048
|
-
version = "0.
|
|
1289
|
+
version = "0.23.0"
|
|
1049
1290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
-
checksum = "
|
|
1291
|
+
checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
|
|
1051
1292
|
dependencies = [
|
|
1052
1293
|
"darling_core",
|
|
1053
1294
|
"darling_macro",
|
|
@@ -1055,11 +1296,10 @@ dependencies = [
|
|
|
1055
1296
|
|
|
1056
1297
|
[[package]]
|
|
1057
1298
|
name = "darling_core"
|
|
1058
|
-
version = "0.
|
|
1299
|
+
version = "0.23.0"
|
|
1059
1300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
-
checksum = "
|
|
1301
|
+
checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
|
|
1061
1302
|
dependencies = [
|
|
1062
|
-
"fnv",
|
|
1063
1303
|
"ident_case",
|
|
1064
1304
|
"proc-macro2",
|
|
1065
1305
|
"quote",
|
|
@@ -1069,9 +1309,9 @@ dependencies = [
|
|
|
1069
1309
|
|
|
1070
1310
|
[[package]]
|
|
1071
1311
|
name = "darling_macro"
|
|
1072
|
-
version = "0.
|
|
1312
|
+
version = "0.23.0"
|
|
1073
1313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
-
checksum = "
|
|
1314
|
+
checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
1075
1315
|
dependencies = [
|
|
1076
1316
|
"darling_core",
|
|
1077
1317
|
"quote",
|
|
@@ -1092,17 +1332,23 @@ dependencies = [
|
|
|
1092
1332
|
"parking_lot_core",
|
|
1093
1333
|
]
|
|
1094
1334
|
|
|
1335
|
+
[[package]]
|
|
1336
|
+
name = "data-encoding"
|
|
1337
|
+
version = "2.10.0"
|
|
1338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
+
checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
|
|
1340
|
+
|
|
1095
1341
|
[[package]]
|
|
1096
1342
|
name = "datafusion"
|
|
1097
|
-
version = "
|
|
1343
|
+
version = "52.0.0"
|
|
1098
1344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
-
checksum = "
|
|
1345
|
+
checksum = "f02e9a7e70f214e5282db11c8effba173f4e25a00977e520c6b811817e3a082b"
|
|
1100
1346
|
dependencies = [
|
|
1101
1347
|
"arrow",
|
|
1102
1348
|
"arrow-schema",
|
|
1103
1349
|
"async-trait",
|
|
1104
1350
|
"bytes",
|
|
1105
|
-
"bzip2
|
|
1351
|
+
"bzip2",
|
|
1106
1352
|
"chrono",
|
|
1107
1353
|
"datafusion-catalog",
|
|
1108
1354
|
"datafusion-catalog-listing",
|
|
@@ -1133,27 +1379,26 @@ dependencies = [
|
|
|
1133
1379
|
"flate2",
|
|
1134
1380
|
"futures",
|
|
1135
1381
|
"itertools 0.14.0",
|
|
1382
|
+
"liblzma",
|
|
1136
1383
|
"log",
|
|
1137
1384
|
"object_store",
|
|
1138
1385
|
"parking_lot",
|
|
1139
1386
|
"parquet",
|
|
1140
1387
|
"rand 0.9.2",
|
|
1141
1388
|
"regex",
|
|
1142
|
-
"
|
|
1143
|
-
"sqlparser",
|
|
1389
|
+
"sqlparser 0.59.0",
|
|
1144
1390
|
"tempfile",
|
|
1145
1391
|
"tokio",
|
|
1146
1392
|
"url",
|
|
1147
1393
|
"uuid",
|
|
1148
|
-
"xz2",
|
|
1149
1394
|
"zstd",
|
|
1150
1395
|
]
|
|
1151
1396
|
|
|
1152
1397
|
[[package]]
|
|
1153
1398
|
name = "datafusion-catalog"
|
|
1154
|
-
version = "
|
|
1399
|
+
version = "52.0.0"
|
|
1155
1400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
-
checksum = "
|
|
1401
|
+
checksum = "f3e91b2603f906cf8cb8be84ba4e34f9d8fe6dbdfdd6916d55f22317074d1fdf"
|
|
1157
1402
|
dependencies = [
|
|
1158
1403
|
"arrow",
|
|
1159
1404
|
"async-trait",
|
|
@@ -1176,9 +1421,9 @@ dependencies = [
|
|
|
1176
1421
|
|
|
1177
1422
|
[[package]]
|
|
1178
1423
|
name = "datafusion-catalog-listing"
|
|
1179
|
-
version = "
|
|
1424
|
+
version = "52.0.0"
|
|
1180
1425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
-
checksum = "
|
|
1426
|
+
checksum = "919d20cdebddee4d8dca651aa0291a44c8104824d1ac288996a325c319ce31ba"
|
|
1182
1427
|
dependencies = [
|
|
1183
1428
|
"arrow",
|
|
1184
1429
|
"async-trait",
|
|
@@ -1195,14 +1440,13 @@ dependencies = [
|
|
|
1195
1440
|
"itertools 0.14.0",
|
|
1196
1441
|
"log",
|
|
1197
1442
|
"object_store",
|
|
1198
|
-
"tokio",
|
|
1199
1443
|
]
|
|
1200
1444
|
|
|
1201
1445
|
[[package]]
|
|
1202
1446
|
name = "datafusion-common"
|
|
1203
|
-
version = "
|
|
1447
|
+
version = "52.0.0"
|
|
1204
1448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
-
checksum = "
|
|
1449
|
+
checksum = "31ff2c4e95be40ad954de93862167b165a6fb49248bb882dea8aef4f888bc767"
|
|
1206
1450
|
dependencies = [
|
|
1207
1451
|
"ahash",
|
|
1208
1452
|
"apache-avro",
|
|
@@ -1210,7 +1454,7 @@ dependencies = [
|
|
|
1210
1454
|
"arrow-ipc",
|
|
1211
1455
|
"chrono",
|
|
1212
1456
|
"half",
|
|
1213
|
-
"hashbrown 0.
|
|
1457
|
+
"hashbrown 0.16.1",
|
|
1214
1458
|
"indexmap",
|
|
1215
1459
|
"libc",
|
|
1216
1460
|
"log",
|
|
@@ -1218,16 +1462,16 @@ dependencies = [
|
|
|
1218
1462
|
"parquet",
|
|
1219
1463
|
"paste",
|
|
1220
1464
|
"recursive",
|
|
1221
|
-
"sqlparser",
|
|
1465
|
+
"sqlparser 0.59.0",
|
|
1222
1466
|
"tokio",
|
|
1223
1467
|
"web-time",
|
|
1224
1468
|
]
|
|
1225
1469
|
|
|
1226
1470
|
[[package]]
|
|
1227
1471
|
name = "datafusion-common-runtime"
|
|
1228
|
-
version = "
|
|
1472
|
+
version = "52.0.0"
|
|
1229
1473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
-
checksum = "
|
|
1474
|
+
checksum = "0dd9f820fe58c2600b6c33a14432228dbaaf233b96c83a1fd61f16d073d5c3c5"
|
|
1231
1475
|
dependencies = [
|
|
1232
1476
|
"futures",
|
|
1233
1477
|
"log",
|
|
@@ -1236,15 +1480,15 @@ dependencies = [
|
|
|
1236
1480
|
|
|
1237
1481
|
[[package]]
|
|
1238
1482
|
name = "datafusion-datasource"
|
|
1239
|
-
version = "
|
|
1483
|
+
version = "52.0.0"
|
|
1240
1484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
-
checksum = "
|
|
1485
|
+
checksum = "86b32b7b12645805d20b70aba6ba846cd262d7b073f7f617640c3294af108d44"
|
|
1242
1486
|
dependencies = [
|
|
1243
1487
|
"arrow",
|
|
1244
1488
|
"async-compression",
|
|
1245
1489
|
"async-trait",
|
|
1246
1490
|
"bytes",
|
|
1247
|
-
"bzip2
|
|
1491
|
+
"bzip2",
|
|
1248
1492
|
"chrono",
|
|
1249
1493
|
"datafusion-common",
|
|
1250
1494
|
"datafusion-common-runtime",
|
|
@@ -1259,21 +1503,21 @@ dependencies = [
|
|
|
1259
1503
|
"futures",
|
|
1260
1504
|
"glob",
|
|
1261
1505
|
"itertools 0.14.0",
|
|
1506
|
+
"liblzma",
|
|
1262
1507
|
"log",
|
|
1263
1508
|
"object_store",
|
|
1264
1509
|
"rand 0.9.2",
|
|
1265
1510
|
"tokio",
|
|
1266
1511
|
"tokio-util",
|
|
1267
1512
|
"url",
|
|
1268
|
-
"xz2",
|
|
1269
1513
|
"zstd",
|
|
1270
1514
|
]
|
|
1271
1515
|
|
|
1272
1516
|
[[package]]
|
|
1273
1517
|
name = "datafusion-datasource-arrow"
|
|
1274
|
-
version = "
|
|
1518
|
+
version = "52.0.0"
|
|
1275
1519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
-
checksum = "
|
|
1520
|
+
checksum = "597695c8ebb723ee927b286139d43a3fbed6de7ad9210bd1a9fed5c721ac6fb1"
|
|
1277
1521
|
dependencies = [
|
|
1278
1522
|
"arrow",
|
|
1279
1523
|
"arrow-ipc",
|
|
@@ -1295,9 +1539,9 @@ dependencies = [
|
|
|
1295
1539
|
|
|
1296
1540
|
[[package]]
|
|
1297
1541
|
name = "datafusion-datasource-avro"
|
|
1298
|
-
version = "
|
|
1542
|
+
version = "52.0.0"
|
|
1299
1543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
-
checksum = "
|
|
1544
|
+
checksum = "1c94347a431bac4bcb8408abb1cb5d40dab41f8d59c39db32f8f59e08144875f"
|
|
1301
1545
|
dependencies = [
|
|
1302
1546
|
"apache-avro",
|
|
1303
1547
|
"arrow",
|
|
@@ -1315,9 +1559,9 @@ dependencies = [
|
|
|
1315
1559
|
|
|
1316
1560
|
[[package]]
|
|
1317
1561
|
name = "datafusion-datasource-csv"
|
|
1318
|
-
version = "
|
|
1562
|
+
version = "52.0.0"
|
|
1319
1563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
-
checksum = "
|
|
1564
|
+
checksum = "6bb493d07d8da6d00a89ea9cc3e74a56795076d9faed5ac30284bd9ef37929e9"
|
|
1321
1565
|
dependencies = [
|
|
1322
1566
|
"arrow",
|
|
1323
1567
|
"async-trait",
|
|
@@ -1338,9 +1582,9 @@ dependencies = [
|
|
|
1338
1582
|
|
|
1339
1583
|
[[package]]
|
|
1340
1584
|
name = "datafusion-datasource-json"
|
|
1341
|
-
version = "
|
|
1585
|
+
version = "52.0.0"
|
|
1342
1586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
-
checksum = "
|
|
1587
|
+
checksum = "5e9806521c4d3632f53b9a664041813c267c670232efa1452ef29faee71c3749"
|
|
1344
1588
|
dependencies = [
|
|
1345
1589
|
"arrow",
|
|
1346
1590
|
"async-trait",
|
|
@@ -1360,9 +1604,9 @@ dependencies = [
|
|
|
1360
1604
|
|
|
1361
1605
|
[[package]]
|
|
1362
1606
|
name = "datafusion-datasource-parquet"
|
|
1363
|
-
version = "
|
|
1607
|
+
version = "52.0.0"
|
|
1364
1608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1365
|
-
checksum = "
|
|
1609
|
+
checksum = "f6a3ccd48d5034f8461f522114d0e46dfb3a9f0ce01a4d53a721024ace95d60d"
|
|
1366
1610
|
dependencies = [
|
|
1367
1611
|
"arrow",
|
|
1368
1612
|
"async-trait",
|
|
@@ -1390,18 +1634,19 @@ dependencies = [
|
|
|
1390
1634
|
|
|
1391
1635
|
[[package]]
|
|
1392
1636
|
name = "datafusion-doc"
|
|
1393
|
-
version = "
|
|
1637
|
+
version = "52.0.0"
|
|
1394
1638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
-
checksum = "
|
|
1639
|
+
checksum = "ff69a18418e9878d4840f35e2ad7f2a6386beedf192e9f065e628a7295ff5fbf"
|
|
1396
1640
|
|
|
1397
1641
|
[[package]]
|
|
1398
1642
|
name = "datafusion-execution"
|
|
1399
|
-
version = "
|
|
1643
|
+
version = "52.0.0"
|
|
1400
1644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
-
checksum = "
|
|
1645
|
+
checksum = "ccbc5e469b35d87c0b115327be83d68356ef9154684d32566315b5c071577e23"
|
|
1402
1646
|
dependencies = [
|
|
1403
1647
|
"arrow",
|
|
1404
1648
|
"async-trait",
|
|
1649
|
+
"chrono",
|
|
1405
1650
|
"dashmap",
|
|
1406
1651
|
"datafusion-common",
|
|
1407
1652
|
"datafusion-expr",
|
|
@@ -1416,9 +1661,9 @@ dependencies = [
|
|
|
1416
1661
|
|
|
1417
1662
|
[[package]]
|
|
1418
1663
|
name = "datafusion-expr"
|
|
1419
|
-
version = "
|
|
1664
|
+
version = "52.0.0"
|
|
1420
1665
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1421
|
-
checksum = "
|
|
1666
|
+
checksum = "81ed3c02a3faf4e09356d5a314471703f440f0a6a14ca6addaf6cfb44ab14de5"
|
|
1422
1667
|
dependencies = [
|
|
1423
1668
|
"arrow",
|
|
1424
1669
|
"async-trait",
|
|
@@ -1434,14 +1679,14 @@ dependencies = [
|
|
|
1434
1679
|
"paste",
|
|
1435
1680
|
"recursive",
|
|
1436
1681
|
"serde_json",
|
|
1437
|
-
"sqlparser",
|
|
1682
|
+
"sqlparser 0.59.0",
|
|
1438
1683
|
]
|
|
1439
1684
|
|
|
1440
1685
|
[[package]]
|
|
1441
1686
|
name = "datafusion-expr-common"
|
|
1442
|
-
version = "
|
|
1687
|
+
version = "52.0.0"
|
|
1443
1688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
-
checksum = "
|
|
1689
|
+
checksum = "1567e60d21c372ca766dc9dde98efabe2b06d98f008d988fed00d93546bf5be7"
|
|
1445
1690
|
dependencies = [
|
|
1446
1691
|
"arrow",
|
|
1447
1692
|
"datafusion-common",
|
|
@@ -1452,9 +1697,9 @@ dependencies = [
|
|
|
1452
1697
|
|
|
1453
1698
|
[[package]]
|
|
1454
1699
|
name = "datafusion-functions"
|
|
1455
|
-
version = "
|
|
1700
|
+
version = "52.0.0"
|
|
1456
1701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
-
checksum = "
|
|
1702
|
+
checksum = "c4593538abd95c27eeeb2f86b7ad827cce07d0c474eae9b122f4f9675f8c20ad"
|
|
1458
1703
|
dependencies = [
|
|
1459
1704
|
"arrow",
|
|
1460
1705
|
"arrow-buffer",
|
|
@@ -1462,6 +1707,7 @@ dependencies = [
|
|
|
1462
1707
|
"blake2",
|
|
1463
1708
|
"blake3",
|
|
1464
1709
|
"chrono",
|
|
1710
|
+
"chrono-tz",
|
|
1465
1711
|
"datafusion-common",
|
|
1466
1712
|
"datafusion-doc",
|
|
1467
1713
|
"datafusion-execution",
|
|
@@ -1482,9 +1728,9 @@ dependencies = [
|
|
|
1482
1728
|
|
|
1483
1729
|
[[package]]
|
|
1484
1730
|
name = "datafusion-functions-aggregate"
|
|
1485
|
-
version = "
|
|
1731
|
+
version = "52.0.0"
|
|
1486
1732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
-
checksum = "
|
|
1733
|
+
checksum = "f81cdf609f43cd26156934fd81beb7215d60dda40a776c2e1b83d73df69434f2"
|
|
1488
1734
|
dependencies = [
|
|
1489
1735
|
"ahash",
|
|
1490
1736
|
"arrow",
|
|
@@ -1503,9 +1749,9 @@ dependencies = [
|
|
|
1503
1749
|
|
|
1504
1750
|
[[package]]
|
|
1505
1751
|
name = "datafusion-functions-aggregate-common"
|
|
1506
|
-
version = "
|
|
1752
|
+
version = "52.0.0"
|
|
1507
1753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
-
checksum = "
|
|
1754
|
+
checksum = "9173f1bcea2ede4a5c23630a48469f06c9db9a408eb5fd140d1ff9a5e0c40ebf"
|
|
1509
1755
|
dependencies = [
|
|
1510
1756
|
"ahash",
|
|
1511
1757
|
"arrow",
|
|
@@ -1516,9 +1762,9 @@ dependencies = [
|
|
|
1516
1762
|
|
|
1517
1763
|
[[package]]
|
|
1518
1764
|
name = "datafusion-functions-nested"
|
|
1519
|
-
version = "
|
|
1765
|
+
version = "52.0.0"
|
|
1520
1766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
-
checksum = "
|
|
1767
|
+
checksum = "1d0b9f32e7735a3b94ae8b9596d89080dc63dd139029a91133be370da099490d"
|
|
1522
1768
|
dependencies = [
|
|
1523
1769
|
"arrow",
|
|
1524
1770
|
"arrow-ord",
|
|
@@ -1539,9 +1785,9 @@ dependencies = [
|
|
|
1539
1785
|
|
|
1540
1786
|
[[package]]
|
|
1541
1787
|
name = "datafusion-functions-table"
|
|
1542
|
-
version = "
|
|
1788
|
+
version = "52.0.0"
|
|
1543
1789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
-
checksum = "
|
|
1790
|
+
checksum = "57a29e8a6201b3b9fb2be17d88e287c6d427948d64220cd5ea72ced614a1aee5"
|
|
1545
1791
|
dependencies = [
|
|
1546
1792
|
"arrow",
|
|
1547
1793
|
"async-trait",
|
|
@@ -1555,9 +1801,9 @@ dependencies = [
|
|
|
1555
1801
|
|
|
1556
1802
|
[[package]]
|
|
1557
1803
|
name = "datafusion-functions-window"
|
|
1558
|
-
version = "
|
|
1804
|
+
version = "52.0.0"
|
|
1559
1805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
-
checksum = "
|
|
1806
|
+
checksum = "cd412754964a31c515e5a814e5ce0edaf30f0ea975f3691e800eff115ee76dfb"
|
|
1561
1807
|
dependencies = [
|
|
1562
1808
|
"arrow",
|
|
1563
1809
|
"datafusion-common",
|
|
@@ -1573,9 +1819,9 @@ dependencies = [
|
|
|
1573
1819
|
|
|
1574
1820
|
[[package]]
|
|
1575
1821
|
name = "datafusion-functions-window-common"
|
|
1576
|
-
version = "
|
|
1822
|
+
version = "52.0.0"
|
|
1577
1823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
-
checksum = "
|
|
1824
|
+
checksum = "d49be73a5ac0797398927a543118bd68e58e80bf95ebdabc77336bcd9c38a711"
|
|
1579
1825
|
dependencies = [
|
|
1580
1826
|
"datafusion-common",
|
|
1581
1827
|
"datafusion-physical-expr-common",
|
|
@@ -1583,9 +1829,9 @@ dependencies = [
|
|
|
1583
1829
|
|
|
1584
1830
|
[[package]]
|
|
1585
1831
|
name = "datafusion-macros"
|
|
1586
|
-
version = "
|
|
1832
|
+
version = "52.0.0"
|
|
1587
1833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
-
checksum = "
|
|
1834
|
+
checksum = "439ff5489dcac4d34ed7a49a93310c3345018c4469e34726fa471cdda725346d"
|
|
1589
1835
|
dependencies = [
|
|
1590
1836
|
"datafusion-doc",
|
|
1591
1837
|
"quote",
|
|
@@ -1594,9 +1840,9 @@ dependencies = [
|
|
|
1594
1840
|
|
|
1595
1841
|
[[package]]
|
|
1596
1842
|
name = "datafusion-optimizer"
|
|
1597
|
-
version = "
|
|
1843
|
+
version = "52.0.0"
|
|
1598
1844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
-
checksum = "
|
|
1845
|
+
checksum = "a80bb7de8ff5a9948799bc7749c292eac5c629385cdb582893ef2d80b6e718c4"
|
|
1600
1846
|
dependencies = [
|
|
1601
1847
|
"arrow",
|
|
1602
1848
|
"chrono",
|
|
@@ -1614,9 +1860,9 @@ dependencies = [
|
|
|
1614
1860
|
|
|
1615
1861
|
[[package]]
|
|
1616
1862
|
name = "datafusion-physical-expr"
|
|
1617
|
-
version = "
|
|
1863
|
+
version = "52.0.0"
|
|
1618
1864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
-
checksum = "
|
|
1865
|
+
checksum = "83480008f66691a0047c5a88990bd76b7c1117dd8a49ca79959e214948b81f0a"
|
|
1620
1866
|
dependencies = [
|
|
1621
1867
|
"ahash",
|
|
1622
1868
|
"arrow",
|
|
@@ -1626,19 +1872,21 @@ dependencies = [
|
|
|
1626
1872
|
"datafusion-functions-aggregate-common",
|
|
1627
1873
|
"datafusion-physical-expr-common",
|
|
1628
1874
|
"half",
|
|
1629
|
-
"hashbrown 0.
|
|
1875
|
+
"hashbrown 0.16.1",
|
|
1630
1876
|
"indexmap",
|
|
1631
1877
|
"itertools 0.14.0",
|
|
1632
1878
|
"parking_lot",
|
|
1633
1879
|
"paste",
|
|
1634
1880
|
"petgraph",
|
|
1881
|
+
"recursive",
|
|
1882
|
+
"tokio",
|
|
1635
1883
|
]
|
|
1636
1884
|
|
|
1637
1885
|
[[package]]
|
|
1638
1886
|
name = "datafusion-physical-expr-adapter"
|
|
1639
|
-
version = "
|
|
1887
|
+
version = "52.0.0"
|
|
1640
1888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1641
|
-
checksum = "
|
|
1889
|
+
checksum = "6b438306446646b359666a658cc29d5494b1e9873bc7a57707689760666fc82c"
|
|
1642
1890
|
dependencies = [
|
|
1643
1891
|
"arrow",
|
|
1644
1892
|
"datafusion-common",
|
|
@@ -1651,23 +1899,26 @@ dependencies = [
|
|
|
1651
1899
|
|
|
1652
1900
|
[[package]]
|
|
1653
1901
|
name = "datafusion-physical-expr-common"
|
|
1654
|
-
version = "
|
|
1902
|
+
version = "52.0.0"
|
|
1655
1903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
|
-
checksum = "
|
|
1904
|
+
checksum = "95b1fbf739038e0b313473588331c5bf79985d1b842b9937c1f10b170665cae1"
|
|
1657
1905
|
dependencies = [
|
|
1658
1906
|
"ahash",
|
|
1659
1907
|
"arrow",
|
|
1908
|
+
"chrono",
|
|
1660
1909
|
"datafusion-common",
|
|
1661
1910
|
"datafusion-expr-common",
|
|
1662
|
-
"hashbrown 0.
|
|
1911
|
+
"hashbrown 0.16.1",
|
|
1912
|
+
"indexmap",
|
|
1663
1913
|
"itertools 0.14.0",
|
|
1914
|
+
"parking_lot",
|
|
1664
1915
|
]
|
|
1665
1916
|
|
|
1666
1917
|
[[package]]
|
|
1667
1918
|
name = "datafusion-physical-optimizer"
|
|
1668
|
-
version = "
|
|
1919
|
+
version = "52.0.0"
|
|
1669
1920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
-
checksum = "
|
|
1921
|
+
checksum = "fc4cd3a170faa0f1de04bd4365ccfe309056746dd802ed276e8787ccb8e8a0d4"
|
|
1671
1922
|
dependencies = [
|
|
1672
1923
|
"arrow",
|
|
1673
1924
|
"datafusion-common",
|
|
@@ -1684,27 +1935,27 @@ dependencies = [
|
|
|
1684
1935
|
|
|
1685
1936
|
[[package]]
|
|
1686
1937
|
name = "datafusion-physical-plan"
|
|
1687
|
-
version = "
|
|
1938
|
+
version = "52.0.0"
|
|
1688
1939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
-
checksum = "
|
|
1940
|
+
checksum = "a616a72b4ddf550652b36d5a7c0386eac4accea3ffc6c29a7b16c45f237e9882"
|
|
1690
1941
|
dependencies = [
|
|
1691
1942
|
"ahash",
|
|
1692
1943
|
"arrow",
|
|
1693
1944
|
"arrow-ord",
|
|
1694
1945
|
"arrow-schema",
|
|
1695
1946
|
"async-trait",
|
|
1696
|
-
"chrono",
|
|
1697
1947
|
"datafusion-common",
|
|
1698
1948
|
"datafusion-common-runtime",
|
|
1699
1949
|
"datafusion-execution",
|
|
1700
1950
|
"datafusion-expr",
|
|
1951
|
+
"datafusion-functions",
|
|
1701
1952
|
"datafusion-functions-aggregate-common",
|
|
1702
1953
|
"datafusion-functions-window-common",
|
|
1703
1954
|
"datafusion-physical-expr",
|
|
1704
1955
|
"datafusion-physical-expr-common",
|
|
1705
1956
|
"futures",
|
|
1706
1957
|
"half",
|
|
1707
|
-
"hashbrown 0.
|
|
1958
|
+
"hashbrown 0.16.1",
|
|
1708
1959
|
"indexmap",
|
|
1709
1960
|
"itertools 0.14.0",
|
|
1710
1961
|
"log",
|
|
@@ -1715,9 +1966,9 @@ dependencies = [
|
|
|
1715
1966
|
|
|
1716
1967
|
[[package]]
|
|
1717
1968
|
name = "datafusion-pruning"
|
|
1718
|
-
version = "
|
|
1969
|
+
version = "52.0.0"
|
|
1719
1970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1720
|
-
checksum = "
|
|
1971
|
+
checksum = "4bf4b50be3ab65650452993eda4baf81edb245fb039b8714476b0f4c8801a527"
|
|
1721
1972
|
dependencies = [
|
|
1722
1973
|
"arrow",
|
|
1723
1974
|
"datafusion-common",
|
|
@@ -1732,9 +1983,9 @@ dependencies = [
|
|
|
1732
1983
|
|
|
1733
1984
|
[[package]]
|
|
1734
1985
|
name = "datafusion-session"
|
|
1735
|
-
version = "
|
|
1986
|
+
version = "52.0.0"
|
|
1736
1987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
-
checksum = "
|
|
1988
|
+
checksum = "66e080e2c105284460580c18e751b2133cc306df298181e4349b5b134632811a"
|
|
1738
1989
|
dependencies = [
|
|
1739
1990
|
"async-trait",
|
|
1740
1991
|
"datafusion-common",
|
|
@@ -1746,9 +1997,9 @@ dependencies = [
|
|
|
1746
1997
|
|
|
1747
1998
|
[[package]]
|
|
1748
1999
|
name = "datafusion-sql"
|
|
1749
|
-
version = "
|
|
2000
|
+
version = "52.0.0"
|
|
1750
2001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
-
checksum = "
|
|
2002
|
+
checksum = "3dac502db772ff9bffc2ceae321963091982e8d5f5dfcb877e8dc66fc9a093cc"
|
|
1752
2003
|
dependencies = [
|
|
1753
2004
|
"arrow",
|
|
1754
2005
|
"bigdecimal",
|
|
@@ -1759,7 +2010,49 @@ dependencies = [
|
|
|
1759
2010
|
"log",
|
|
1760
2011
|
"recursive",
|
|
1761
2012
|
"regex",
|
|
1762
|
-
"sqlparser",
|
|
2013
|
+
"sqlparser 0.59.0",
|
|
2014
|
+
]
|
|
2015
|
+
|
|
2016
|
+
[[package]]
|
|
2017
|
+
name = "delegate"
|
|
2018
|
+
version = "0.13.5"
|
|
2019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
+
checksum = "780eb241654bf097afb00fc5f054a09b687dad862e485fdcf8399bb056565370"
|
|
2021
|
+
dependencies = [
|
|
2022
|
+
"proc-macro2",
|
|
2023
|
+
"quote",
|
|
2024
|
+
"syn",
|
|
2025
|
+
]
|
|
2026
|
+
|
|
2027
|
+
[[package]]
|
|
2028
|
+
name = "der"
|
|
2029
|
+
version = "0.7.10"
|
|
2030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2031
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
2032
|
+
dependencies = [
|
|
2033
|
+
"const-oid",
|
|
2034
|
+
"pem-rfc7468",
|
|
2035
|
+
"zeroize",
|
|
2036
|
+
]
|
|
2037
|
+
|
|
2038
|
+
[[package]]
|
|
2039
|
+
name = "derive_more"
|
|
2040
|
+
version = "0.99.20"
|
|
2041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2042
|
+
checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f"
|
|
2043
|
+
dependencies = [
|
|
2044
|
+
"proc-macro2",
|
|
2045
|
+
"quote",
|
|
2046
|
+
"syn",
|
|
2047
|
+
]
|
|
2048
|
+
|
|
2049
|
+
[[package]]
|
|
2050
|
+
name = "des"
|
|
2051
|
+
version = "0.8.1"
|
|
2052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2053
|
+
checksum = "ffdd80ce8ce993de27e9f063a444a4d53ce8e8db4c1f00cc03af5ad5a9867a1e"
|
|
2054
|
+
dependencies = [
|
|
2055
|
+
"cipher",
|
|
1763
2056
|
]
|
|
1764
2057
|
|
|
1765
2058
|
[[package]]
|
|
@@ -1769,10 +2062,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1769
2062
|
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1770
2063
|
dependencies = [
|
|
1771
2064
|
"block-buffer",
|
|
2065
|
+
"const-oid",
|
|
1772
2066
|
"crypto-common",
|
|
1773
2067
|
"subtle",
|
|
1774
2068
|
]
|
|
1775
2069
|
|
|
2070
|
+
[[package]]
|
|
2071
|
+
name = "dirs"
|
|
2072
|
+
version = "6.0.0"
|
|
2073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2074
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
2075
|
+
dependencies = [
|
|
2076
|
+
"dirs-sys",
|
|
2077
|
+
]
|
|
2078
|
+
|
|
2079
|
+
[[package]]
|
|
2080
|
+
name = "dirs-sys"
|
|
2081
|
+
version = "0.5.0"
|
|
2082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2083
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
2084
|
+
dependencies = [
|
|
2085
|
+
"libc",
|
|
2086
|
+
"option-ext",
|
|
2087
|
+
"redox_users",
|
|
2088
|
+
"windows-sys 0.61.2",
|
|
2089
|
+
]
|
|
2090
|
+
|
|
1776
2091
|
[[package]]
|
|
1777
2092
|
name = "displaydoc"
|
|
1778
2093
|
version = "0.2.5"
|
|
@@ -1794,13 +2109,100 @@ dependencies = [
|
|
|
1794
2109
|
]
|
|
1795
2110
|
|
|
1796
2111
|
[[package]]
|
|
1797
|
-
name = "
|
|
1798
|
-
version = "1.
|
|
2112
|
+
name = "dtoa"
|
|
2113
|
+
version = "1.0.11"
|
|
1799
2114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
-
checksum = "
|
|
2115
|
+
checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
|
|
1801
2116
|
|
|
1802
2117
|
[[package]]
|
|
1803
|
-
name = "
|
|
2118
|
+
name = "dtoa-short"
|
|
2119
|
+
version = "0.3.5"
|
|
2120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2121
|
+
checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
|
|
2122
|
+
dependencies = [
|
|
2123
|
+
"dtoa",
|
|
2124
|
+
]
|
|
2125
|
+
|
|
2126
|
+
[[package]]
|
|
2127
|
+
name = "dunce"
|
|
2128
|
+
version = "1.0.5"
|
|
2129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2130
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
2131
|
+
|
|
2132
|
+
[[package]]
|
|
2133
|
+
name = "ecdsa"
|
|
2134
|
+
version = "0.16.9"
|
|
2135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
+
checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
|
|
2137
|
+
dependencies = [
|
|
2138
|
+
"der",
|
|
2139
|
+
"digest",
|
|
2140
|
+
"elliptic-curve",
|
|
2141
|
+
"rfc6979",
|
|
2142
|
+
"signature",
|
|
2143
|
+
"spki",
|
|
2144
|
+
]
|
|
2145
|
+
|
|
2146
|
+
[[package]]
|
|
2147
|
+
name = "ed25519"
|
|
2148
|
+
version = "2.2.3"
|
|
2149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2150
|
+
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
|
2151
|
+
dependencies = [
|
|
2152
|
+
"pkcs8",
|
|
2153
|
+
"signature",
|
|
2154
|
+
]
|
|
2155
|
+
|
|
2156
|
+
[[package]]
|
|
2157
|
+
name = "ed25519-dalek"
|
|
2158
|
+
version = "2.2.0"
|
|
2159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2160
|
+
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
|
2161
|
+
dependencies = [
|
|
2162
|
+
"curve25519-dalek",
|
|
2163
|
+
"ed25519",
|
|
2164
|
+
"rand_core 0.6.4",
|
|
2165
|
+
"serde",
|
|
2166
|
+
"sha2",
|
|
2167
|
+
"subtle",
|
|
2168
|
+
"zeroize",
|
|
2169
|
+
]
|
|
2170
|
+
|
|
2171
|
+
[[package]]
|
|
2172
|
+
name = "ego-tree"
|
|
2173
|
+
version = "0.10.0"
|
|
2174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2175
|
+
checksum = "b2972feb8dffe7bc8c5463b1dacda1b0dfbed3710e50f977d965429692d74cd8"
|
|
2176
|
+
|
|
2177
|
+
[[package]]
|
|
2178
|
+
name = "either"
|
|
2179
|
+
version = "1.15.0"
|
|
2180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2181
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
2182
|
+
|
|
2183
|
+
[[package]]
|
|
2184
|
+
name = "elliptic-curve"
|
|
2185
|
+
version = "0.13.8"
|
|
2186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2187
|
+
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
|
|
2188
|
+
dependencies = [
|
|
2189
|
+
"base16ct",
|
|
2190
|
+
"crypto-bigint",
|
|
2191
|
+
"digest",
|
|
2192
|
+
"ff",
|
|
2193
|
+
"generic-array",
|
|
2194
|
+
"group",
|
|
2195
|
+
"hkdf",
|
|
2196
|
+
"pem-rfc7468",
|
|
2197
|
+
"pkcs8",
|
|
2198
|
+
"rand_core 0.6.4",
|
|
2199
|
+
"sec1",
|
|
2200
|
+
"subtle",
|
|
2201
|
+
"zeroize",
|
|
2202
|
+
]
|
|
2203
|
+
|
|
2204
|
+
[[package]]
|
|
2205
|
+
name = "encode_unicode"
|
|
1804
2206
|
version = "1.0.0"
|
|
1805
2207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
2208
|
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
@@ -1844,6 +2246,12 @@ dependencies = [
|
|
|
1844
2246
|
"windows-sys 0.61.2",
|
|
1845
2247
|
]
|
|
1846
2248
|
|
|
2249
|
+
[[package]]
|
|
2250
|
+
name = "fallible-iterator"
|
|
2251
|
+
version = "0.2.0"
|
|
2252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2253
|
+
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
|
2254
|
+
|
|
1847
2255
|
[[package]]
|
|
1848
2256
|
name = "fastrand"
|
|
1849
2257
|
version = "2.3.0"
|
|
@@ -1861,11 +2269,39 @@ dependencies = [
|
|
|
1861
2269
|
"windows-sys 0.59.0",
|
|
1862
2270
|
]
|
|
1863
2271
|
|
|
2272
|
+
[[package]]
|
|
2273
|
+
name = "ff"
|
|
2274
|
+
version = "0.13.1"
|
|
2275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2276
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
2277
|
+
dependencies = [
|
|
2278
|
+
"rand_core 0.6.4",
|
|
2279
|
+
"subtle",
|
|
2280
|
+
]
|
|
2281
|
+
|
|
2282
|
+
[[package]]
|
|
2283
|
+
name = "fiat-crypto"
|
|
2284
|
+
version = "0.2.9"
|
|
2285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2286
|
+
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
2287
|
+
|
|
2288
|
+
[[package]]
|
|
2289
|
+
name = "filetime"
|
|
2290
|
+
version = "0.2.26"
|
|
2291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2292
|
+
checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
|
|
2293
|
+
dependencies = [
|
|
2294
|
+
"cfg-if",
|
|
2295
|
+
"libc",
|
|
2296
|
+
"libredox",
|
|
2297
|
+
"windows-sys 0.60.2",
|
|
2298
|
+
]
|
|
2299
|
+
|
|
1864
2300
|
[[package]]
|
|
1865
2301
|
name = "find-msvc-tools"
|
|
1866
|
-
version = "0.1.
|
|
2302
|
+
version = "0.1.8"
|
|
1867
2303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1868
|
-
checksum = "
|
|
2304
|
+
checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
|
|
1869
2305
|
|
|
1870
2306
|
[[package]]
|
|
1871
2307
|
name = "fixedbitset"
|
|
@@ -1885,13 +2321,25 @@ dependencies = [
|
|
|
1885
2321
|
|
|
1886
2322
|
[[package]]
|
|
1887
2323
|
name = "flate2"
|
|
1888
|
-
version = "1.1.
|
|
2324
|
+
version = "1.1.8"
|
|
1889
2325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
-
checksum = "
|
|
2326
|
+
checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369"
|
|
1891
2327
|
dependencies = [
|
|
1892
2328
|
"crc32fast",
|
|
1893
|
-
"libz-rs-sys",
|
|
1894
2329
|
"miniz_oxide",
|
|
2330
|
+
"zlib-rs",
|
|
2331
|
+
]
|
|
2332
|
+
|
|
2333
|
+
[[package]]
|
|
2334
|
+
name = "flurry"
|
|
2335
|
+
version = "0.5.2"
|
|
2336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2337
|
+
checksum = "cf5efcf77a4da27927d3ab0509dec5b0954bb3bc59da5a1de9e52642ebd4cdf9"
|
|
2338
|
+
dependencies = [
|
|
2339
|
+
"ahash",
|
|
2340
|
+
"num_cpus",
|
|
2341
|
+
"parking_lot",
|
|
2342
|
+
"seize",
|
|
1895
2343
|
]
|
|
1896
2344
|
|
|
1897
2345
|
[[package]]
|
|
@@ -1906,6 +2354,12 @@ version = "0.1.5"
|
|
|
1906
2354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
2355
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1908
2356
|
|
|
2357
|
+
[[package]]
|
|
2358
|
+
name = "foldhash"
|
|
2359
|
+
version = "0.2.0"
|
|
2360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2361
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
2362
|
+
|
|
1909
2363
|
[[package]]
|
|
1910
2364
|
name = "form_urlencoded"
|
|
1911
2365
|
version = "1.2.2"
|
|
@@ -1915,6 +2369,22 @@ dependencies = [
|
|
|
1915
2369
|
"percent-encoding",
|
|
1916
2370
|
]
|
|
1917
2371
|
|
|
2372
|
+
[[package]]
|
|
2373
|
+
name = "fs_extra"
|
|
2374
|
+
version = "1.3.0"
|
|
2375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2376
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
2377
|
+
|
|
2378
|
+
[[package]]
|
|
2379
|
+
name = "futf"
|
|
2380
|
+
version = "0.1.5"
|
|
2381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2382
|
+
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
|
|
2383
|
+
dependencies = [
|
|
2384
|
+
"mac",
|
|
2385
|
+
"new_debug_unreachable",
|
|
2386
|
+
]
|
|
2387
|
+
|
|
1918
2388
|
[[package]]
|
|
1919
2389
|
name = "futures"
|
|
1920
2390
|
version = "0.3.31"
|
|
@@ -1963,6 +2433,19 @@ version = "0.3.31"
|
|
|
1963
2433
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
2434
|
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1965
2435
|
|
|
2436
|
+
[[package]]
|
|
2437
|
+
name = "futures-lite"
|
|
2438
|
+
version = "2.6.1"
|
|
2439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2440
|
+
checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
|
|
2441
|
+
dependencies = [
|
|
2442
|
+
"fastrand",
|
|
2443
|
+
"futures-core",
|
|
2444
|
+
"futures-io",
|
|
2445
|
+
"parking",
|
|
2446
|
+
"pin-project-lite",
|
|
2447
|
+
]
|
|
2448
|
+
|
|
1966
2449
|
[[package]]
|
|
1967
2450
|
name = "futures-macro"
|
|
1968
2451
|
version = "0.3.31"
|
|
@@ -2010,6 +2493,15 @@ dependencies = [
|
|
|
2010
2493
|
"slab",
|
|
2011
2494
|
]
|
|
2012
2495
|
|
|
2496
|
+
[[package]]
|
|
2497
|
+
name = "fxhash"
|
|
2498
|
+
version = "0.2.1"
|
|
2499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2500
|
+
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
|
2501
|
+
dependencies = [
|
|
2502
|
+
"byteorder",
|
|
2503
|
+
]
|
|
2504
|
+
|
|
2013
2505
|
[[package]]
|
|
2014
2506
|
name = "generic-array"
|
|
2015
2507
|
version = "0.14.7"
|
|
@@ -2018,18 +2510,28 @@ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
|
2018
2510
|
dependencies = [
|
|
2019
2511
|
"typenum",
|
|
2020
2512
|
"version_check",
|
|
2513
|
+
"zeroize",
|
|
2514
|
+
]
|
|
2515
|
+
|
|
2516
|
+
[[package]]
|
|
2517
|
+
name = "getopts"
|
|
2518
|
+
version = "0.2.24"
|
|
2519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2520
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
2521
|
+
dependencies = [
|
|
2522
|
+
"unicode-width 0.2.2",
|
|
2021
2523
|
]
|
|
2022
2524
|
|
|
2023
2525
|
[[package]]
|
|
2024
2526
|
name = "getrandom"
|
|
2025
|
-
version = "0.2.
|
|
2527
|
+
version = "0.2.17"
|
|
2026
2528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2027
|
-
checksum = "
|
|
2529
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
2028
2530
|
dependencies = [
|
|
2029
2531
|
"cfg-if",
|
|
2030
2532
|
"js-sys",
|
|
2031
2533
|
"libc",
|
|
2032
|
-
"wasi",
|
|
2534
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
2033
2535
|
"wasm-bindgen",
|
|
2034
2536
|
]
|
|
2035
2537
|
|
|
@@ -2047,17 +2549,38 @@ dependencies = [
|
|
|
2047
2549
|
"wasm-bindgen",
|
|
2048
2550
|
]
|
|
2049
2551
|
|
|
2552
|
+
[[package]]
|
|
2553
|
+
name = "ghash"
|
|
2554
|
+
version = "0.5.1"
|
|
2555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2556
|
+
checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
|
|
2557
|
+
dependencies = [
|
|
2558
|
+
"opaque-debug",
|
|
2559
|
+
"polyval",
|
|
2560
|
+
]
|
|
2561
|
+
|
|
2050
2562
|
[[package]]
|
|
2051
2563
|
name = "glob"
|
|
2052
2564
|
version = "0.3.3"
|
|
2053
2565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2054
2566
|
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
2055
2567
|
|
|
2568
|
+
[[package]]
|
|
2569
|
+
name = "group"
|
|
2570
|
+
version = "0.13.0"
|
|
2571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2572
|
+
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
|
|
2573
|
+
dependencies = [
|
|
2574
|
+
"ff",
|
|
2575
|
+
"rand_core 0.6.4",
|
|
2576
|
+
"subtle",
|
|
2577
|
+
]
|
|
2578
|
+
|
|
2056
2579
|
[[package]]
|
|
2057
2580
|
name = "h2"
|
|
2058
|
-
version = "0.4.
|
|
2581
|
+
version = "0.4.13"
|
|
2059
2582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2060
|
-
checksum = "
|
|
2583
|
+
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
|
|
2061
2584
|
dependencies = [
|
|
2062
2585
|
"atomic-waker",
|
|
2063
2586
|
"bytes",
|
|
@@ -2089,10 +2612,6 @@ name = "hashbrown"
|
|
|
2089
2612
|
version = "0.14.5"
|
|
2090
2613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2091
2614
|
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
2092
|
-
dependencies = [
|
|
2093
|
-
"ahash",
|
|
2094
|
-
"allocator-api2",
|
|
2095
|
-
]
|
|
2096
2615
|
|
|
2097
2616
|
[[package]]
|
|
2098
2617
|
name = "hashbrown"
|
|
@@ -2102,7 +2621,7 @@ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
|
2102
2621
|
dependencies = [
|
|
2103
2622
|
"allocator-api2",
|
|
2104
2623
|
"equivalent",
|
|
2105
|
-
"foldhash",
|
|
2624
|
+
"foldhash 0.1.5",
|
|
2106
2625
|
]
|
|
2107
2626
|
|
|
2108
2627
|
[[package]]
|
|
@@ -2110,6 +2629,11 @@ name = "hashbrown"
|
|
|
2110
2629
|
version = "0.16.1"
|
|
2111
2630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2112
2631
|
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
2632
|
+
dependencies = [
|
|
2633
|
+
"allocator-api2",
|
|
2634
|
+
"equivalent",
|
|
2635
|
+
"foldhash 0.2.0",
|
|
2636
|
+
]
|
|
2113
2637
|
|
|
2114
2638
|
[[package]]
|
|
2115
2639
|
name = "heck"
|
|
@@ -2117,12 +2641,63 @@ version = "0.5.0"
|
|
|
2117
2641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2118
2642
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
2119
2643
|
|
|
2644
|
+
[[package]]
|
|
2645
|
+
name = "hermit-abi"
|
|
2646
|
+
version = "0.5.2"
|
|
2647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2648
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
2649
|
+
|
|
2120
2650
|
[[package]]
|
|
2121
2651
|
name = "hex"
|
|
2122
2652
|
version = "0.4.3"
|
|
2123
2653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2124
2654
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
2125
2655
|
|
|
2656
|
+
[[package]]
|
|
2657
|
+
name = "hex-literal"
|
|
2658
|
+
version = "0.4.1"
|
|
2659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
+
checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
|
|
2661
|
+
|
|
2662
|
+
[[package]]
|
|
2663
|
+
name = "hkdf"
|
|
2664
|
+
version = "0.12.4"
|
|
2665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2666
|
+
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
|
2667
|
+
dependencies = [
|
|
2668
|
+
"hmac",
|
|
2669
|
+
]
|
|
2670
|
+
|
|
2671
|
+
[[package]]
|
|
2672
|
+
name = "hmac"
|
|
2673
|
+
version = "0.12.1"
|
|
2674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2675
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
2676
|
+
dependencies = [
|
|
2677
|
+
"digest",
|
|
2678
|
+
]
|
|
2679
|
+
|
|
2680
|
+
[[package]]
|
|
2681
|
+
name = "home"
|
|
2682
|
+
version = "0.5.12"
|
|
2683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2684
|
+
checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
|
|
2685
|
+
dependencies = [
|
|
2686
|
+
"windows-sys 0.61.2",
|
|
2687
|
+
]
|
|
2688
|
+
|
|
2689
|
+
[[package]]
|
|
2690
|
+
name = "html5ever"
|
|
2691
|
+
version = "0.29.1"
|
|
2692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2693
|
+
checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c"
|
|
2694
|
+
dependencies = [
|
|
2695
|
+
"log",
|
|
2696
|
+
"mac",
|
|
2697
|
+
"markup5ever",
|
|
2698
|
+
"match_token",
|
|
2699
|
+
]
|
|
2700
|
+
|
|
2126
2701
|
[[package]]
|
|
2127
2702
|
name = "http"
|
|
2128
2703
|
version = "1.4.0"
|
|
@@ -2263,7 +2838,7 @@ dependencies = [
|
|
|
2263
2838
|
"js-sys",
|
|
2264
2839
|
"log",
|
|
2265
2840
|
"wasm-bindgen",
|
|
2266
|
-
"windows-core",
|
|
2841
|
+
"windows-core 0.62.2",
|
|
2267
2842
|
]
|
|
2268
2843
|
|
|
2269
2844
|
[[package]]
|
|
@@ -2385,9 +2960,9 @@ dependencies = [
|
|
|
2385
2960
|
|
|
2386
2961
|
[[package]]
|
|
2387
2962
|
name = "indexmap"
|
|
2388
|
-
version = "2.
|
|
2963
|
+
version = "2.13.0"
|
|
2389
2964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2390
|
-
checksum = "
|
|
2965
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
2391
2966
|
dependencies = [
|
|
2392
2967
|
"equivalent",
|
|
2393
2968
|
"hashbrown 0.16.1",
|
|
@@ -2415,6 +2990,16 @@ dependencies = [
|
|
|
2415
2990
|
"rustversion",
|
|
2416
2991
|
]
|
|
2417
2992
|
|
|
2993
|
+
[[package]]
|
|
2994
|
+
name = "inout"
|
|
2995
|
+
version = "0.1.4"
|
|
2996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2997
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
2998
|
+
dependencies = [
|
|
2999
|
+
"block-padding",
|
|
3000
|
+
"generic-array",
|
|
3001
|
+
]
|
|
3002
|
+
|
|
2418
3003
|
[[package]]
|
|
2419
3004
|
name = "integer-encoding"
|
|
2420
3005
|
version = "3.0.4"
|
|
@@ -2469,9 +3054,9 @@ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
|
2469
3054
|
|
|
2470
3055
|
[[package]]
|
|
2471
3056
|
name = "jiff"
|
|
2472
|
-
version = "0.2.
|
|
3057
|
+
version = "0.2.18"
|
|
2473
3058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2474
|
-
checksum = "
|
|
3059
|
+
checksum = "e67e8da4c49d6d9909fe03361f9b620f58898859f5c7aded68351e85e71ecf50"
|
|
2475
3060
|
dependencies = [
|
|
2476
3061
|
"jiff-static",
|
|
2477
3062
|
"log",
|
|
@@ -2482,15 +3067,37 @@ dependencies = [
|
|
|
2482
3067
|
|
|
2483
3068
|
[[package]]
|
|
2484
3069
|
name = "jiff-static"
|
|
2485
|
-
version = "0.2.
|
|
3070
|
+
version = "0.2.18"
|
|
2486
3071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2487
|
-
checksum = "
|
|
3072
|
+
checksum = "e0c84ee7f197eca9a86c6fd6cb771e55eb991632f15f2bc3ca6ec838929e6e78"
|
|
2488
3073
|
dependencies = [
|
|
2489
3074
|
"proc-macro2",
|
|
2490
3075
|
"quote",
|
|
2491
3076
|
"syn",
|
|
2492
3077
|
]
|
|
2493
3078
|
|
|
3079
|
+
[[package]]
|
|
3080
|
+
name = "jni"
|
|
3081
|
+
version = "0.21.1"
|
|
3082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3083
|
+
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
3084
|
+
dependencies = [
|
|
3085
|
+
"cesu8",
|
|
3086
|
+
"cfg-if",
|
|
3087
|
+
"combine",
|
|
3088
|
+
"jni-sys",
|
|
3089
|
+
"log",
|
|
3090
|
+
"thiserror 1.0.69",
|
|
3091
|
+
"walkdir",
|
|
3092
|
+
"windows-sys 0.45.0",
|
|
3093
|
+
]
|
|
3094
|
+
|
|
3095
|
+
[[package]]
|
|
3096
|
+
name = "jni-sys"
|
|
3097
|
+
version = "0.3.0"
|
|
3098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3099
|
+
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
3100
|
+
|
|
2494
3101
|
[[package]]
|
|
2495
3102
|
name = "jobserver"
|
|
2496
3103
|
version = "0.1.34"
|
|
@@ -2503,19 +3110,45 @@ dependencies = [
|
|
|
2503
3110
|
|
|
2504
3111
|
[[package]]
|
|
2505
3112
|
name = "js-sys"
|
|
2506
|
-
version = "0.3.
|
|
3113
|
+
version = "0.3.85"
|
|
2507
3114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2508
|
-
checksum = "
|
|
3115
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
2509
3116
|
dependencies = [
|
|
2510
3117
|
"once_cell",
|
|
2511
3118
|
"wasm-bindgen",
|
|
2512
3119
|
]
|
|
2513
3120
|
|
|
3121
|
+
[[package]]
|
|
3122
|
+
name = "lazy-regex"
|
|
3123
|
+
version = "3.5.1"
|
|
3124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3125
|
+
checksum = "c5c13b6857ade4c8ee05c3c3dc97d2ab5415d691213825b90d3211c425c1f907"
|
|
3126
|
+
dependencies = [
|
|
3127
|
+
"lazy-regex-proc_macros",
|
|
3128
|
+
"once_cell",
|
|
3129
|
+
"regex",
|
|
3130
|
+
]
|
|
3131
|
+
|
|
3132
|
+
[[package]]
|
|
3133
|
+
name = "lazy-regex-proc_macros"
|
|
3134
|
+
version = "3.5.1"
|
|
3135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3136
|
+
checksum = "32a95c68db5d41694cea563c86a4ba4dc02141c16ef64814108cb23def4d5438"
|
|
3137
|
+
dependencies = [
|
|
3138
|
+
"proc-macro2",
|
|
3139
|
+
"quote",
|
|
3140
|
+
"regex",
|
|
3141
|
+
"syn",
|
|
3142
|
+
]
|
|
3143
|
+
|
|
2514
3144
|
[[package]]
|
|
2515
3145
|
name = "lazy_static"
|
|
2516
3146
|
version = "1.5.0"
|
|
2517
3147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2518
3148
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
3149
|
+
dependencies = [
|
|
3150
|
+
"spin",
|
|
3151
|
+
]
|
|
2519
3152
|
|
|
2520
3153
|
[[package]]
|
|
2521
3154
|
name = "lexical-core"
|
|
@@ -2582,9 +3215,29 @@ checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
|
|
|
2582
3215
|
|
|
2583
3216
|
[[package]]
|
|
2584
3217
|
name = "libc"
|
|
2585
|
-
version = "0.2.
|
|
3218
|
+
version = "0.2.180"
|
|
3219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3220
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
3221
|
+
|
|
3222
|
+
[[package]]
|
|
3223
|
+
name = "liblzma"
|
|
3224
|
+
version = "0.4.5"
|
|
3225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3226
|
+
checksum = "73c36d08cad03a3fbe2c4e7bb3a9e84c57e4ee4135ed0b065cade3d98480c648"
|
|
3227
|
+
dependencies = [
|
|
3228
|
+
"liblzma-sys",
|
|
3229
|
+
]
|
|
3230
|
+
|
|
3231
|
+
[[package]]
|
|
3232
|
+
name = "liblzma-sys"
|
|
3233
|
+
version = "0.4.4"
|
|
2586
3234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2587
|
-
checksum = "
|
|
3235
|
+
checksum = "01b9596486f6d60c3bbe644c0e1be1aa6ccc472ad630fe8927b456973d7cb736"
|
|
3236
|
+
dependencies = [
|
|
3237
|
+
"cc",
|
|
3238
|
+
"libc",
|
|
3239
|
+
"pkg-config",
|
|
3240
|
+
]
|
|
2588
3241
|
|
|
2589
3242
|
[[package]]
|
|
2590
3243
|
name = "libm"
|
|
@@ -2593,12 +3246,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2593
3246
|
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
2594
3247
|
|
|
2595
3248
|
[[package]]
|
|
2596
|
-
name = "
|
|
2597
|
-
version = "0.
|
|
3249
|
+
name = "libredox"
|
|
3250
|
+
version = "0.1.12"
|
|
2598
3251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2599
|
-
checksum = "
|
|
3252
|
+
checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
|
|
2600
3253
|
dependencies = [
|
|
2601
|
-
"
|
|
3254
|
+
"bitflags",
|
|
3255
|
+
"libc",
|
|
3256
|
+
"redox_syscall 0.7.0",
|
|
2602
3257
|
]
|
|
2603
3258
|
|
|
2604
3259
|
[[package]]
|
|
@@ -2665,23 +3320,43 @@ dependencies = [
|
|
|
2665
3320
|
]
|
|
2666
3321
|
|
|
2667
3322
|
[[package]]
|
|
2668
|
-
name = "
|
|
2669
|
-
version = "0.1.
|
|
3323
|
+
name = "mac"
|
|
3324
|
+
version = "0.1.1"
|
|
3325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3326
|
+
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
|
3327
|
+
|
|
3328
|
+
[[package]]
|
|
3329
|
+
name = "markup5ever"
|
|
3330
|
+
version = "0.14.1"
|
|
2670
3331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2671
|
-
checksum = "
|
|
3332
|
+
checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18"
|
|
2672
3333
|
dependencies = [
|
|
2673
|
-
"
|
|
2674
|
-
"
|
|
2675
|
-
"
|
|
3334
|
+
"log",
|
|
3335
|
+
"phf 0.11.3",
|
|
3336
|
+
"phf_codegen",
|
|
3337
|
+
"string_cache",
|
|
3338
|
+
"string_cache_codegen",
|
|
3339
|
+
"tendril",
|
|
2676
3340
|
]
|
|
2677
3341
|
|
|
2678
3342
|
[[package]]
|
|
2679
|
-
name = "
|
|
2680
|
-
version = "0.
|
|
3343
|
+
name = "match_token"
|
|
3344
|
+
version = "0.1.0"
|
|
2681
3345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2682
|
-
checksum = "
|
|
3346
|
+
checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b"
|
|
2683
3347
|
dependencies = [
|
|
2684
|
-
"
|
|
3348
|
+
"proc-macro2",
|
|
3349
|
+
"quote",
|
|
3350
|
+
"syn",
|
|
3351
|
+
]
|
|
3352
|
+
|
|
3353
|
+
[[package]]
|
|
3354
|
+
name = "matchers"
|
|
3355
|
+
version = "0.2.0"
|
|
3356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3357
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
3358
|
+
dependencies = [
|
|
3359
|
+
"regex-automata",
|
|
2685
3360
|
]
|
|
2686
3361
|
|
|
2687
3362
|
[[package]]
|
|
@@ -2700,6 +3375,12 @@ dependencies = [
|
|
|
2700
3375
|
"digest",
|
|
2701
3376
|
]
|
|
2702
3377
|
|
|
3378
|
+
[[package]]
|
|
3379
|
+
name = "md5"
|
|
3380
|
+
version = "0.7.0"
|
|
3381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3382
|
+
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
|
|
3383
|
+
|
|
2703
3384
|
[[package]]
|
|
2704
3385
|
name = "memchr"
|
|
2705
3386
|
version = "2.7.6"
|
|
@@ -2739,10 +3420,16 @@ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
|
2739
3420
|
dependencies = [
|
|
2740
3421
|
"libc",
|
|
2741
3422
|
"log",
|
|
2742
|
-
"wasi",
|
|
3423
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
2743
3424
|
"windows-sys 0.61.2",
|
|
2744
3425
|
]
|
|
2745
3426
|
|
|
3427
|
+
[[package]]
|
|
3428
|
+
name = "new_debug_unreachable"
|
|
3429
|
+
version = "1.0.6"
|
|
3430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3431
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
3432
|
+
|
|
2746
3433
|
[[package]]
|
|
2747
3434
|
name = "nu-ansi-term"
|
|
2748
3435
|
version = "0.50.3"
|
|
@@ -2760,9 +3447,26 @@ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
|
2760
3447
|
dependencies = [
|
|
2761
3448
|
"num-integer",
|
|
2762
3449
|
"num-traits",
|
|
3450
|
+
"rand 0.8.5",
|
|
2763
3451
|
"serde",
|
|
2764
3452
|
]
|
|
2765
3453
|
|
|
3454
|
+
[[package]]
|
|
3455
|
+
name = "num-bigint-dig"
|
|
3456
|
+
version = "0.8.6"
|
|
3457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3458
|
+
checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
|
|
3459
|
+
dependencies = [
|
|
3460
|
+
"lazy_static",
|
|
3461
|
+
"libm",
|
|
3462
|
+
"num-integer",
|
|
3463
|
+
"num-iter",
|
|
3464
|
+
"num-traits",
|
|
3465
|
+
"rand 0.8.5",
|
|
3466
|
+
"smallvec",
|
|
3467
|
+
"zeroize",
|
|
3468
|
+
]
|
|
3469
|
+
|
|
2766
3470
|
[[package]]
|
|
2767
3471
|
name = "num-complex"
|
|
2768
3472
|
version = "0.4.6"
|
|
@@ -2781,6 +3485,17 @@ dependencies = [
|
|
|
2781
3485
|
"num-traits",
|
|
2782
3486
|
]
|
|
2783
3487
|
|
|
3488
|
+
[[package]]
|
|
3489
|
+
name = "num-iter"
|
|
3490
|
+
version = "0.1.45"
|
|
3491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3492
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
3493
|
+
dependencies = [
|
|
3494
|
+
"autocfg",
|
|
3495
|
+
"num-integer",
|
|
3496
|
+
"num-traits",
|
|
3497
|
+
]
|
|
3498
|
+
|
|
2784
3499
|
[[package]]
|
|
2785
3500
|
name = "num-traits"
|
|
2786
3501
|
version = "0.2.19"
|
|
@@ -2791,6 +3506,16 @@ dependencies = [
|
|
|
2791
3506
|
"libm",
|
|
2792
3507
|
]
|
|
2793
3508
|
|
|
3509
|
+
[[package]]
|
|
3510
|
+
name = "num_cpus"
|
|
3511
|
+
version = "1.17.0"
|
|
3512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3513
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
3514
|
+
dependencies = [
|
|
3515
|
+
"hermit-abi",
|
|
3516
|
+
"libc",
|
|
3517
|
+
]
|
|
3518
|
+
|
|
2794
3519
|
[[package]]
|
|
2795
3520
|
name = "number_prefix"
|
|
2796
3521
|
version = "0.4.0"
|
|
@@ -2829,7 +3554,7 @@ dependencies = [
|
|
|
2829
3554
|
"percent-encoding",
|
|
2830
3555
|
"quick-xml",
|
|
2831
3556
|
"rand 0.9.2",
|
|
2832
|
-
"reqwest",
|
|
3557
|
+
"reqwest 0.12.28",
|
|
2833
3558
|
"ring",
|
|
2834
3559
|
"rustls-pemfile",
|
|
2835
3560
|
"serde",
|
|
@@ -2856,6 +3581,12 @@ version = "1.70.2"
|
|
|
2856
3581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2857
3582
|
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
2858
3583
|
|
|
3584
|
+
[[package]]
|
|
3585
|
+
name = "opaque-debug"
|
|
3586
|
+
version = "0.3.1"
|
|
3587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3588
|
+
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
3589
|
+
|
|
2859
3590
|
[[package]]
|
|
2860
3591
|
name = "openssl-probe"
|
|
2861
3592
|
version = "0.2.0"
|
|
@@ -2914,6 +3645,12 @@ dependencies = [
|
|
|
2914
3645
|
"tokio-stream",
|
|
2915
3646
|
]
|
|
2916
3647
|
|
|
3648
|
+
[[package]]
|
|
3649
|
+
name = "option-ext"
|
|
3650
|
+
version = "0.2.0"
|
|
3651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3652
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
3653
|
+
|
|
2917
3654
|
[[package]]
|
|
2918
3655
|
name = "ordered-float"
|
|
2919
3656
|
version = "2.10.1"
|
|
@@ -2932,6 +3669,65 @@ dependencies = [
|
|
|
2932
3669
|
"num-traits",
|
|
2933
3670
|
]
|
|
2934
3671
|
|
|
3672
|
+
[[package]]
|
|
3673
|
+
name = "p256"
|
|
3674
|
+
version = "0.13.2"
|
|
3675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3676
|
+
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
|
|
3677
|
+
dependencies = [
|
|
3678
|
+
"ecdsa",
|
|
3679
|
+
"elliptic-curve",
|
|
3680
|
+
"primeorder",
|
|
3681
|
+
"sha2",
|
|
3682
|
+
]
|
|
3683
|
+
|
|
3684
|
+
[[package]]
|
|
3685
|
+
name = "p384"
|
|
3686
|
+
version = "0.13.1"
|
|
3687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3688
|
+
checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
|
|
3689
|
+
dependencies = [
|
|
3690
|
+
"ecdsa",
|
|
3691
|
+
"elliptic-curve",
|
|
3692
|
+
"primeorder",
|
|
3693
|
+
"sha2",
|
|
3694
|
+
]
|
|
3695
|
+
|
|
3696
|
+
[[package]]
|
|
3697
|
+
name = "p521"
|
|
3698
|
+
version = "0.13.3"
|
|
3699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3700
|
+
checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
|
|
3701
|
+
dependencies = [
|
|
3702
|
+
"base16ct",
|
|
3703
|
+
"ecdsa",
|
|
3704
|
+
"elliptic-curve",
|
|
3705
|
+
"primeorder",
|
|
3706
|
+
"rand_core 0.6.4",
|
|
3707
|
+
"sha2",
|
|
3708
|
+
]
|
|
3709
|
+
|
|
3710
|
+
[[package]]
|
|
3711
|
+
name = "pageant"
|
|
3712
|
+
version = "0.0.1"
|
|
3713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3714
|
+
checksum = "032d6201d2fb765158455ae0d5a510c016bb6da7232e5040e39e9c8db12b0afc"
|
|
3715
|
+
dependencies = [
|
|
3716
|
+
"bytes",
|
|
3717
|
+
"delegate",
|
|
3718
|
+
"futures",
|
|
3719
|
+
"rand 0.8.5",
|
|
3720
|
+
"thiserror 1.0.69",
|
|
3721
|
+
"tokio",
|
|
3722
|
+
"windows",
|
|
3723
|
+
]
|
|
3724
|
+
|
|
3725
|
+
[[package]]
|
|
3726
|
+
name = "parking"
|
|
3727
|
+
version = "2.2.1"
|
|
3728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3729
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
3730
|
+
|
|
2935
3731
|
[[package]]
|
|
2936
3732
|
name = "parking_lot"
|
|
2937
3733
|
version = "0.12.5"
|
|
@@ -2950,16 +3746,16 @@ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
|
2950
3746
|
dependencies = [
|
|
2951
3747
|
"cfg-if",
|
|
2952
3748
|
"libc",
|
|
2953
|
-
"redox_syscall",
|
|
3749
|
+
"redox_syscall 0.5.18",
|
|
2954
3750
|
"smallvec",
|
|
2955
3751
|
"windows-link",
|
|
2956
3752
|
]
|
|
2957
3753
|
|
|
2958
3754
|
[[package]]
|
|
2959
3755
|
name = "parquet"
|
|
2960
|
-
version = "57.
|
|
3756
|
+
version = "57.2.0"
|
|
2961
3757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
-
checksum = "
|
|
3758
|
+
checksum = "5f6a2926a30477c0b95fea6c28c3072712b139337a242c2cc64817bdc20a8854"
|
|
2963
3759
|
dependencies = [
|
|
2964
3760
|
"ahash",
|
|
2965
3761
|
"arrow-array",
|
|
@@ -2998,6 +3794,25 @@ version = "1.0.15"
|
|
|
2998
3794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2999
3795
|
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
3000
3796
|
|
|
3797
|
+
[[package]]
|
|
3798
|
+
name = "pbkdf2"
|
|
3799
|
+
version = "0.12.2"
|
|
3800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3801
|
+
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
|
|
3802
|
+
dependencies = [
|
|
3803
|
+
"digest",
|
|
3804
|
+
"hmac",
|
|
3805
|
+
]
|
|
3806
|
+
|
|
3807
|
+
[[package]]
|
|
3808
|
+
name = "pem-rfc7468"
|
|
3809
|
+
version = "0.7.0"
|
|
3810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3811
|
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
|
3812
|
+
dependencies = [
|
|
3813
|
+
"base64ct",
|
|
3814
|
+
]
|
|
3815
|
+
|
|
3001
3816
|
[[package]]
|
|
3002
3817
|
name = "percent-encoding"
|
|
3003
3818
|
version = "2.3.2"
|
|
@@ -3059,13 +3874,75 @@ dependencies = [
|
|
|
3059
3874
|
"serde",
|
|
3060
3875
|
]
|
|
3061
3876
|
|
|
3877
|
+
[[package]]
|
|
3878
|
+
name = "phf"
|
|
3879
|
+
version = "0.11.3"
|
|
3880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3881
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
3882
|
+
dependencies = [
|
|
3883
|
+
"phf_macros",
|
|
3884
|
+
"phf_shared 0.11.3",
|
|
3885
|
+
]
|
|
3886
|
+
|
|
3062
3887
|
[[package]]
|
|
3063
3888
|
name = "phf"
|
|
3064
3889
|
version = "0.12.1"
|
|
3065
3890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3066
3891
|
checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
|
|
3067
3892
|
dependencies = [
|
|
3068
|
-
"phf_shared",
|
|
3893
|
+
"phf_shared 0.12.1",
|
|
3894
|
+
]
|
|
3895
|
+
|
|
3896
|
+
[[package]]
|
|
3897
|
+
name = "phf"
|
|
3898
|
+
version = "0.13.1"
|
|
3899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3900
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
3901
|
+
dependencies = [
|
|
3902
|
+
"phf_shared 0.13.1",
|
|
3903
|
+
"serde",
|
|
3904
|
+
]
|
|
3905
|
+
|
|
3906
|
+
[[package]]
|
|
3907
|
+
name = "phf_codegen"
|
|
3908
|
+
version = "0.11.3"
|
|
3909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3910
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
3911
|
+
dependencies = [
|
|
3912
|
+
"phf_generator",
|
|
3913
|
+
"phf_shared 0.11.3",
|
|
3914
|
+
]
|
|
3915
|
+
|
|
3916
|
+
[[package]]
|
|
3917
|
+
name = "phf_generator"
|
|
3918
|
+
version = "0.11.3"
|
|
3919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3920
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
3921
|
+
dependencies = [
|
|
3922
|
+
"phf_shared 0.11.3",
|
|
3923
|
+
"rand 0.8.5",
|
|
3924
|
+
]
|
|
3925
|
+
|
|
3926
|
+
[[package]]
|
|
3927
|
+
name = "phf_macros"
|
|
3928
|
+
version = "0.11.3"
|
|
3929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3930
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
3931
|
+
dependencies = [
|
|
3932
|
+
"phf_generator",
|
|
3933
|
+
"phf_shared 0.11.3",
|
|
3934
|
+
"proc-macro2",
|
|
3935
|
+
"quote",
|
|
3936
|
+
"syn",
|
|
3937
|
+
]
|
|
3938
|
+
|
|
3939
|
+
[[package]]
|
|
3940
|
+
name = "phf_shared"
|
|
3941
|
+
version = "0.11.3"
|
|
3942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3943
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
3944
|
+
dependencies = [
|
|
3945
|
+
"siphasher",
|
|
3069
3946
|
]
|
|
3070
3947
|
|
|
3071
3948
|
[[package]]
|
|
@@ -3077,6 +3954,15 @@ dependencies = [
|
|
|
3077
3954
|
"siphasher",
|
|
3078
3955
|
]
|
|
3079
3956
|
|
|
3957
|
+
[[package]]
|
|
3958
|
+
name = "phf_shared"
|
|
3959
|
+
version = "0.13.1"
|
|
3960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3961
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
3962
|
+
dependencies = [
|
|
3963
|
+
"siphasher",
|
|
3964
|
+
]
|
|
3965
|
+
|
|
3080
3966
|
[[package]]
|
|
3081
3967
|
name = "pin-project"
|
|
3082
3968
|
version = "1.1.10"
|
|
@@ -3109,12 +3995,73 @@ version = "0.1.0"
|
|
|
3109
3995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3110
3996
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
3111
3997
|
|
|
3998
|
+
[[package]]
|
|
3999
|
+
name = "pkcs1"
|
|
4000
|
+
version = "0.7.5"
|
|
4001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4002
|
+
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
|
|
4003
|
+
dependencies = [
|
|
4004
|
+
"der",
|
|
4005
|
+
"pkcs8",
|
|
4006
|
+
"spki",
|
|
4007
|
+
]
|
|
4008
|
+
|
|
4009
|
+
[[package]]
|
|
4010
|
+
name = "pkcs5"
|
|
4011
|
+
version = "0.7.1"
|
|
4012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4013
|
+
checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6"
|
|
4014
|
+
dependencies = [
|
|
4015
|
+
"aes",
|
|
4016
|
+
"cbc",
|
|
4017
|
+
"der",
|
|
4018
|
+
"pbkdf2",
|
|
4019
|
+
"scrypt",
|
|
4020
|
+
"sha2",
|
|
4021
|
+
"spki",
|
|
4022
|
+
]
|
|
4023
|
+
|
|
4024
|
+
[[package]]
|
|
4025
|
+
name = "pkcs8"
|
|
4026
|
+
version = "0.10.2"
|
|
4027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4028
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
4029
|
+
dependencies = [
|
|
4030
|
+
"der",
|
|
4031
|
+
"pkcs5",
|
|
4032
|
+
"rand_core 0.6.4",
|
|
4033
|
+
"spki",
|
|
4034
|
+
]
|
|
4035
|
+
|
|
3112
4036
|
[[package]]
|
|
3113
4037
|
name = "pkg-config"
|
|
3114
4038
|
version = "0.3.32"
|
|
3115
4039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
4040
|
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
3117
4041
|
|
|
4042
|
+
[[package]]
|
|
4043
|
+
name = "poly1305"
|
|
4044
|
+
version = "0.8.0"
|
|
4045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4046
|
+
checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
|
|
4047
|
+
dependencies = [
|
|
4048
|
+
"cpufeatures",
|
|
4049
|
+
"opaque-debug",
|
|
4050
|
+
"universal-hash",
|
|
4051
|
+
]
|
|
4052
|
+
|
|
4053
|
+
[[package]]
|
|
4054
|
+
name = "polyval"
|
|
4055
|
+
version = "0.6.2"
|
|
4056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4057
|
+
checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
|
|
4058
|
+
dependencies = [
|
|
4059
|
+
"cfg-if",
|
|
4060
|
+
"cpufeatures",
|
|
4061
|
+
"opaque-debug",
|
|
4062
|
+
"universal-hash",
|
|
4063
|
+
]
|
|
4064
|
+
|
|
3118
4065
|
[[package]]
|
|
3119
4066
|
name = "portable-atomic"
|
|
3120
4067
|
version = "1.13.0"
|
|
@@ -3130,6 +4077,49 @@ dependencies = [
|
|
|
3130
4077
|
"portable-atomic",
|
|
3131
4078
|
]
|
|
3132
4079
|
|
|
4080
|
+
[[package]]
|
|
4081
|
+
name = "postgres-derive"
|
|
4082
|
+
version = "0.4.7"
|
|
4083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4084
|
+
checksum = "56df96f5394370d1b20e49de146f9e6c25aa9ae750f449c9d665eafecb3ccae6"
|
|
4085
|
+
dependencies = [
|
|
4086
|
+
"heck",
|
|
4087
|
+
"proc-macro2",
|
|
4088
|
+
"quote",
|
|
4089
|
+
"syn",
|
|
4090
|
+
]
|
|
4091
|
+
|
|
4092
|
+
[[package]]
|
|
4093
|
+
name = "postgres-protocol"
|
|
4094
|
+
version = "0.6.10"
|
|
4095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4096
|
+
checksum = "3ee9dd5fe15055d2b6806f4736aa0c9637217074e224bbec46d4041b91bb9491"
|
|
4097
|
+
dependencies = [
|
|
4098
|
+
"base64",
|
|
4099
|
+
"byteorder",
|
|
4100
|
+
"bytes",
|
|
4101
|
+
"fallible-iterator",
|
|
4102
|
+
"hmac",
|
|
4103
|
+
"md-5",
|
|
4104
|
+
"memchr",
|
|
4105
|
+
"rand 0.9.2",
|
|
4106
|
+
"sha2",
|
|
4107
|
+
"stringprep",
|
|
4108
|
+
]
|
|
4109
|
+
|
|
4110
|
+
[[package]]
|
|
4111
|
+
name = "postgres-types"
|
|
4112
|
+
version = "0.2.12"
|
|
4113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4114
|
+
checksum = "54b858f82211e84682fecd373f68e1ceae642d8d751a1ebd13f33de6257b3e20"
|
|
4115
|
+
dependencies = [
|
|
4116
|
+
"bytes",
|
|
4117
|
+
"chrono",
|
|
4118
|
+
"fallible-iterator",
|
|
4119
|
+
"postgres-derive",
|
|
4120
|
+
"postgres-protocol",
|
|
4121
|
+
]
|
|
4122
|
+
|
|
3133
4123
|
[[package]]
|
|
3134
4124
|
name = "potential_utf"
|
|
3135
4125
|
version = "0.1.4"
|
|
@@ -3148,6 +4138,12 @@ dependencies = [
|
|
|
3148
4138
|
"zerocopy",
|
|
3149
4139
|
]
|
|
3150
4140
|
|
|
4141
|
+
[[package]]
|
|
4142
|
+
name = "precomputed-hash"
|
|
4143
|
+
version = "0.1.1"
|
|
4144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4145
|
+
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
4146
|
+
|
|
3151
4147
|
[[package]]
|
|
3152
4148
|
name = "prettyplease"
|
|
3153
4149
|
version = "0.2.37"
|
|
@@ -3158,6 +4154,15 @@ dependencies = [
|
|
|
3158
4154
|
"syn",
|
|
3159
4155
|
]
|
|
3160
4156
|
|
|
4157
|
+
[[package]]
|
|
4158
|
+
name = "primeorder"
|
|
4159
|
+
version = "0.13.6"
|
|
4160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4161
|
+
checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
|
|
4162
|
+
dependencies = [
|
|
4163
|
+
"elliptic-curve",
|
|
4164
|
+
]
|
|
4165
|
+
|
|
3161
4166
|
[[package]]
|
|
3162
4167
|
name = "proc-macro-crate"
|
|
3163
4168
|
version = "3.4.0"
|
|
@@ -3169,18 +4174,18 @@ dependencies = [
|
|
|
3169
4174
|
|
|
3170
4175
|
[[package]]
|
|
3171
4176
|
name = "proc-macro2"
|
|
3172
|
-
version = "1.0.
|
|
4177
|
+
version = "1.0.105"
|
|
3173
4178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
-
checksum = "
|
|
4179
|
+
checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
|
|
3175
4180
|
dependencies = [
|
|
3176
4181
|
"unicode-ident",
|
|
3177
4182
|
]
|
|
3178
4183
|
|
|
3179
4184
|
[[package]]
|
|
3180
4185
|
name = "prost"
|
|
3181
|
-
version = "0.14.
|
|
4186
|
+
version = "0.14.3"
|
|
3182
4187
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3183
|
-
checksum = "
|
|
4188
|
+
checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
|
|
3184
4189
|
dependencies = [
|
|
3185
4190
|
"bytes",
|
|
3186
4191
|
"prost-derive",
|
|
@@ -3188,9 +4193,9 @@ dependencies = [
|
|
|
3188
4193
|
|
|
3189
4194
|
[[package]]
|
|
3190
4195
|
name = "prost-derive"
|
|
3191
|
-
version = "0.14.
|
|
4196
|
+
version = "0.14.3"
|
|
3192
4197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3193
|
-
checksum = "
|
|
4198
|
+
checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
|
|
3194
4199
|
dependencies = [
|
|
3195
4200
|
"anyhow",
|
|
3196
4201
|
"itertools 0.14.0",
|
|
@@ -3201,9 +4206,9 @@ dependencies = [
|
|
|
3201
4206
|
|
|
3202
4207
|
[[package]]
|
|
3203
4208
|
name = "prost-types"
|
|
3204
|
-
version = "0.14.
|
|
4209
|
+
version = "0.14.3"
|
|
3205
4210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3206
|
-
checksum = "
|
|
4211
|
+
checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
|
|
3207
4212
|
dependencies = [
|
|
3208
4213
|
"prost",
|
|
3209
4214
|
]
|
|
@@ -3345,6 +4350,7 @@ version = "0.11.13"
|
|
|
3345
4350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3346
4351
|
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
3347
4352
|
dependencies = [
|
|
4353
|
+
"aws-lc-rs",
|
|
3348
4354
|
"bytes",
|
|
3349
4355
|
"getrandom 0.3.4",
|
|
3350
4356
|
"lru-slab",
|
|
@@ -3376,9 +4382,9 @@ dependencies = [
|
|
|
3376
4382
|
|
|
3377
4383
|
[[package]]
|
|
3378
4384
|
name = "quote"
|
|
3379
|
-
version = "1.0.
|
|
4385
|
+
version = "1.0.43"
|
|
3380
4386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3381
|
-
checksum = "
|
|
4387
|
+
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
3382
4388
|
dependencies = [
|
|
3383
4389
|
"proc-macro2",
|
|
3384
4390
|
]
|
|
@@ -3407,7 +4413,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3407
4413
|
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
3408
4414
|
dependencies = [
|
|
3409
4415
|
"rand_chacha 0.9.0",
|
|
3410
|
-
"rand_core 0.9.
|
|
4416
|
+
"rand_core 0.9.5",
|
|
3411
4417
|
]
|
|
3412
4418
|
|
|
3413
4419
|
[[package]]
|
|
@@ -3427,7 +4433,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3427
4433
|
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
3428
4434
|
dependencies = [
|
|
3429
4435
|
"ppv-lite86",
|
|
3430
|
-
"rand_core 0.9.
|
|
4436
|
+
"rand_core 0.9.5",
|
|
3431
4437
|
]
|
|
3432
4438
|
|
|
3433
4439
|
[[package]]
|
|
@@ -3436,14 +4442,14 @@ version = "0.6.4"
|
|
|
3436
4442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3437
4443
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
3438
4444
|
dependencies = [
|
|
3439
|
-
"getrandom 0.2.
|
|
4445
|
+
"getrandom 0.2.17",
|
|
3440
4446
|
]
|
|
3441
4447
|
|
|
3442
4448
|
[[package]]
|
|
3443
4449
|
name = "rand_core"
|
|
3444
|
-
version = "0.9.
|
|
4450
|
+
version = "0.9.5"
|
|
3445
4451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3446
|
-
checksum = "
|
|
4452
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
3447
4453
|
dependencies = [
|
|
3448
4454
|
"getrandom 0.3.4",
|
|
3449
4455
|
]
|
|
@@ -3477,6 +4483,26 @@ dependencies = [
|
|
|
3477
4483
|
"bitflags",
|
|
3478
4484
|
]
|
|
3479
4485
|
|
|
4486
|
+
[[package]]
|
|
4487
|
+
name = "redox_syscall"
|
|
4488
|
+
version = "0.7.0"
|
|
4489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4490
|
+
checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27"
|
|
4491
|
+
dependencies = [
|
|
4492
|
+
"bitflags",
|
|
4493
|
+
]
|
|
4494
|
+
|
|
4495
|
+
[[package]]
|
|
4496
|
+
name = "redox_users"
|
|
4497
|
+
version = "0.5.2"
|
|
4498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4499
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
4500
|
+
dependencies = [
|
|
4501
|
+
"getrandom 0.2.17",
|
|
4502
|
+
"libredox",
|
|
4503
|
+
"thiserror 2.0.17",
|
|
4504
|
+
]
|
|
4505
|
+
|
|
3480
4506
|
[[package]]
|
|
3481
4507
|
name = "reedline"
|
|
3482
4508
|
version = "0.37.0"
|
|
@@ -3580,6 +4606,54 @@ dependencies = [
|
|
|
3580
4606
|
"web-sys",
|
|
3581
4607
|
]
|
|
3582
4608
|
|
|
4609
|
+
[[package]]
|
|
4610
|
+
name = "reqwest"
|
|
4611
|
+
version = "0.13.1"
|
|
4612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4613
|
+
checksum = "04e9018c9d814e5f30cc16a0f03271aeab3571e609612d9fe78c1aa8d11c2f62"
|
|
4614
|
+
dependencies = [
|
|
4615
|
+
"base64",
|
|
4616
|
+
"bytes",
|
|
4617
|
+
"futures-core",
|
|
4618
|
+
"futures-util",
|
|
4619
|
+
"http",
|
|
4620
|
+
"http-body",
|
|
4621
|
+
"http-body-util",
|
|
4622
|
+
"hyper",
|
|
4623
|
+
"hyper-rustls",
|
|
4624
|
+
"hyper-util",
|
|
4625
|
+
"js-sys",
|
|
4626
|
+
"log",
|
|
4627
|
+
"percent-encoding",
|
|
4628
|
+
"pin-project-lite",
|
|
4629
|
+
"quinn",
|
|
4630
|
+
"rustls",
|
|
4631
|
+
"rustls-pki-types",
|
|
4632
|
+
"rustls-platform-verifier",
|
|
4633
|
+
"sync_wrapper",
|
|
4634
|
+
"tokio",
|
|
4635
|
+
"tokio-rustls",
|
|
4636
|
+
"tokio-util",
|
|
4637
|
+
"tower",
|
|
4638
|
+
"tower-http",
|
|
4639
|
+
"tower-service",
|
|
4640
|
+
"url",
|
|
4641
|
+
"wasm-bindgen",
|
|
4642
|
+
"wasm-bindgen-futures",
|
|
4643
|
+
"wasm-streams",
|
|
4644
|
+
"web-sys",
|
|
4645
|
+
]
|
|
4646
|
+
|
|
4647
|
+
[[package]]
|
|
4648
|
+
name = "rfc6979"
|
|
4649
|
+
version = "0.4.0"
|
|
4650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4651
|
+
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
|
|
4652
|
+
dependencies = [
|
|
4653
|
+
"hmac",
|
|
4654
|
+
"subtle",
|
|
4655
|
+
]
|
|
4656
|
+
|
|
3583
4657
|
[[package]]
|
|
3584
4658
|
name = "ring"
|
|
3585
4659
|
version = "0.17.14"
|
|
@@ -3588,12 +4662,33 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
|
3588
4662
|
dependencies = [
|
|
3589
4663
|
"cc",
|
|
3590
4664
|
"cfg-if",
|
|
3591
|
-
"getrandom 0.2.
|
|
4665
|
+
"getrandom 0.2.17",
|
|
3592
4666
|
"libc",
|
|
3593
4667
|
"untrusted",
|
|
3594
4668
|
"windows-sys 0.52.0",
|
|
3595
4669
|
]
|
|
3596
4670
|
|
|
4671
|
+
[[package]]
|
|
4672
|
+
name = "rsa"
|
|
4673
|
+
version = "0.9.10"
|
|
4674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4675
|
+
checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
|
|
4676
|
+
dependencies = [
|
|
4677
|
+
"const-oid",
|
|
4678
|
+
"digest",
|
|
4679
|
+
"num-bigint-dig",
|
|
4680
|
+
"num-integer",
|
|
4681
|
+
"num-traits",
|
|
4682
|
+
"pkcs1",
|
|
4683
|
+
"pkcs8",
|
|
4684
|
+
"rand_core 0.6.4",
|
|
4685
|
+
"sha2",
|
|
4686
|
+
"signature",
|
|
4687
|
+
"spki",
|
|
4688
|
+
"subtle",
|
|
4689
|
+
"zeroize",
|
|
4690
|
+
]
|
|
4691
|
+
|
|
3597
4692
|
[[package]]
|
|
3598
4693
|
name = "rstest"
|
|
3599
4694
|
version = "0.26.1"
|
|
@@ -3623,6 +4718,144 @@ dependencies = [
|
|
|
3623
4718
|
"unicode-ident",
|
|
3624
4719
|
]
|
|
3625
4720
|
|
|
4721
|
+
[[package]]
|
|
4722
|
+
name = "russh"
|
|
4723
|
+
version = "0.46.0"
|
|
4724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4725
|
+
checksum = "c536b90d8e2468d8dedc8de2369383c101325e23fffa3a30de713032862a11d4"
|
|
4726
|
+
dependencies = [
|
|
4727
|
+
"aes",
|
|
4728
|
+
"aes-gcm",
|
|
4729
|
+
"async-trait",
|
|
4730
|
+
"bitflags",
|
|
4731
|
+
"byteorder",
|
|
4732
|
+
"cbc",
|
|
4733
|
+
"chacha20",
|
|
4734
|
+
"ctr",
|
|
4735
|
+
"curve25519-dalek",
|
|
4736
|
+
"des",
|
|
4737
|
+
"digest",
|
|
4738
|
+
"elliptic-curve",
|
|
4739
|
+
"flate2",
|
|
4740
|
+
"futures",
|
|
4741
|
+
"generic-array",
|
|
4742
|
+
"hex-literal",
|
|
4743
|
+
"hmac",
|
|
4744
|
+
"log",
|
|
4745
|
+
"num-bigint",
|
|
4746
|
+
"once_cell",
|
|
4747
|
+
"p256",
|
|
4748
|
+
"p384",
|
|
4749
|
+
"p521",
|
|
4750
|
+
"poly1305",
|
|
4751
|
+
"rand 0.8.5",
|
|
4752
|
+
"rand_core 0.6.4",
|
|
4753
|
+
"russh-cryptovec",
|
|
4754
|
+
"russh-keys",
|
|
4755
|
+
"russh-sftp",
|
|
4756
|
+
"russh-util",
|
|
4757
|
+
"sha1",
|
|
4758
|
+
"sha2",
|
|
4759
|
+
"ssh-encoding",
|
|
4760
|
+
"ssh-key",
|
|
4761
|
+
"subtle",
|
|
4762
|
+
"thiserror 1.0.69",
|
|
4763
|
+
"tokio",
|
|
4764
|
+
]
|
|
4765
|
+
|
|
4766
|
+
[[package]]
|
|
4767
|
+
name = "russh-cryptovec"
|
|
4768
|
+
version = "0.7.3"
|
|
4769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4770
|
+
checksum = "fadd2c0ab350e21c66556f94ee06f766d8bdae3213857ba7610bfd8e10e51880"
|
|
4771
|
+
dependencies = [
|
|
4772
|
+
"libc",
|
|
4773
|
+
"winapi",
|
|
4774
|
+
]
|
|
4775
|
+
|
|
4776
|
+
[[package]]
|
|
4777
|
+
name = "russh-keys"
|
|
4778
|
+
version = "0.46.0"
|
|
4779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4780
|
+
checksum = "6e3db166c8678c824627c2c46f619ed5ce4ae33f38a35403c62f6ab8f3985867"
|
|
4781
|
+
dependencies = [
|
|
4782
|
+
"aes",
|
|
4783
|
+
"async-trait",
|
|
4784
|
+
"bcrypt-pbkdf",
|
|
4785
|
+
"block-padding",
|
|
4786
|
+
"byteorder",
|
|
4787
|
+
"cbc",
|
|
4788
|
+
"ctr",
|
|
4789
|
+
"data-encoding",
|
|
4790
|
+
"der",
|
|
4791
|
+
"digest",
|
|
4792
|
+
"ecdsa",
|
|
4793
|
+
"ed25519-dalek",
|
|
4794
|
+
"elliptic-curve",
|
|
4795
|
+
"futures",
|
|
4796
|
+
"getrandom 0.2.17",
|
|
4797
|
+
"hmac",
|
|
4798
|
+
"home",
|
|
4799
|
+
"inout",
|
|
4800
|
+
"log",
|
|
4801
|
+
"md5",
|
|
4802
|
+
"num-integer",
|
|
4803
|
+
"p256",
|
|
4804
|
+
"p384",
|
|
4805
|
+
"p521",
|
|
4806
|
+
"pageant",
|
|
4807
|
+
"pbkdf2",
|
|
4808
|
+
"pkcs1",
|
|
4809
|
+
"pkcs5",
|
|
4810
|
+
"pkcs8",
|
|
4811
|
+
"rand 0.8.5",
|
|
4812
|
+
"rand_core 0.6.4",
|
|
4813
|
+
"rsa",
|
|
4814
|
+
"russh-cryptovec",
|
|
4815
|
+
"russh-util",
|
|
4816
|
+
"sec1",
|
|
4817
|
+
"serde",
|
|
4818
|
+
"sha1",
|
|
4819
|
+
"sha2",
|
|
4820
|
+
"spki",
|
|
4821
|
+
"ssh-encoding",
|
|
4822
|
+
"ssh-key",
|
|
4823
|
+
"thiserror 1.0.69",
|
|
4824
|
+
"tokio",
|
|
4825
|
+
"tokio-stream",
|
|
4826
|
+
"typenum",
|
|
4827
|
+
"zeroize",
|
|
4828
|
+
]
|
|
4829
|
+
|
|
4830
|
+
[[package]]
|
|
4831
|
+
name = "russh-sftp"
|
|
4832
|
+
version = "2.1.1"
|
|
4833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4834
|
+
checksum = "3bb94393cafad0530145b8f626d8687f1ee1dedb93d7ba7740d6ae81868b13b5"
|
|
4835
|
+
dependencies = [
|
|
4836
|
+
"bitflags",
|
|
4837
|
+
"bytes",
|
|
4838
|
+
"chrono",
|
|
4839
|
+
"flurry",
|
|
4840
|
+
"log",
|
|
4841
|
+
"serde",
|
|
4842
|
+
"thiserror 2.0.17",
|
|
4843
|
+
"tokio",
|
|
4844
|
+
"tokio-util",
|
|
4845
|
+
]
|
|
4846
|
+
|
|
4847
|
+
[[package]]
|
|
4848
|
+
name = "russh-util"
|
|
4849
|
+
version = "0.46.0"
|
|
4850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4851
|
+
checksum = "63aeb9d2b74f8f38befdc0c5172d5ffcf58f3d2ffcb423f3b6cdfe2c2d747b80"
|
|
4852
|
+
dependencies = [
|
|
4853
|
+
"chrono",
|
|
4854
|
+
"tokio",
|
|
4855
|
+
"wasm-bindgen",
|
|
4856
|
+
"wasm-bindgen-futures",
|
|
4857
|
+
]
|
|
4858
|
+
|
|
3626
4859
|
[[package]]
|
|
3627
4860
|
name = "rustc-hash"
|
|
3628
4861
|
version = "2.1.1"
|
|
@@ -3666,10 +4899,11 @@ dependencies = [
|
|
|
3666
4899
|
|
|
3667
4900
|
[[package]]
|
|
3668
4901
|
name = "rustls"
|
|
3669
|
-
version = "0.23.
|
|
4902
|
+
version = "0.23.36"
|
|
3670
4903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3671
|
-
checksum = "
|
|
4904
|
+
checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
|
|
3672
4905
|
dependencies = [
|
|
4906
|
+
"aws-lc-rs",
|
|
3673
4907
|
"once_cell",
|
|
3674
4908
|
"ring",
|
|
3675
4909
|
"rustls-pki-types",
|
|
@@ -3701,20 +4935,48 @@ dependencies = [
|
|
|
3701
4935
|
|
|
3702
4936
|
[[package]]
|
|
3703
4937
|
name = "rustls-pki-types"
|
|
3704
|
-
version = "1.
|
|
4938
|
+
version = "1.14.0"
|
|
3705
4939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3706
|
-
checksum = "
|
|
4940
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
3707
4941
|
dependencies = [
|
|
3708
4942
|
"web-time",
|
|
3709
4943
|
"zeroize",
|
|
3710
4944
|
]
|
|
3711
4945
|
|
|
4946
|
+
[[package]]
|
|
4947
|
+
name = "rustls-platform-verifier"
|
|
4948
|
+
version = "0.6.2"
|
|
4949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4950
|
+
checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
|
|
4951
|
+
dependencies = [
|
|
4952
|
+
"core-foundation",
|
|
4953
|
+
"core-foundation-sys",
|
|
4954
|
+
"jni",
|
|
4955
|
+
"log",
|
|
4956
|
+
"once_cell",
|
|
4957
|
+
"rustls",
|
|
4958
|
+
"rustls-native-certs",
|
|
4959
|
+
"rustls-platform-verifier-android",
|
|
4960
|
+
"rustls-webpki",
|
|
4961
|
+
"security-framework",
|
|
4962
|
+
"security-framework-sys",
|
|
4963
|
+
"webpki-root-certs",
|
|
4964
|
+
"windows-sys 0.61.2",
|
|
4965
|
+
]
|
|
4966
|
+
|
|
4967
|
+
[[package]]
|
|
4968
|
+
name = "rustls-platform-verifier-android"
|
|
4969
|
+
version = "0.1.1"
|
|
4970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4971
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
4972
|
+
|
|
3712
4973
|
[[package]]
|
|
3713
4974
|
name = "rustls-webpki"
|
|
3714
|
-
version = "0.103.
|
|
4975
|
+
version = "0.103.9"
|
|
3715
4976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3716
|
-
checksum = "
|
|
4977
|
+
checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
|
|
3717
4978
|
dependencies = [
|
|
4979
|
+
"aws-lc-rs",
|
|
3718
4980
|
"ring",
|
|
3719
4981
|
"rustls-pki-types",
|
|
3720
4982
|
"untrusted",
|
|
@@ -3732,6 +4994,15 @@ version = "1.0.22"
|
|
|
3732
4994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3733
4995
|
checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
|
|
3734
4996
|
|
|
4997
|
+
[[package]]
|
|
4998
|
+
name = "salsa20"
|
|
4999
|
+
version = "0.10.2"
|
|
5000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5001
|
+
checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
|
|
5002
|
+
dependencies = [
|
|
5003
|
+
"cipher",
|
|
5004
|
+
]
|
|
5005
|
+
|
|
3735
5006
|
[[package]]
|
|
3736
5007
|
name = "same-file"
|
|
3737
5008
|
version = "1.0.6"
|
|
@@ -3765,12 +5036,52 @@ version = "1.2.0"
|
|
|
3765
5036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3766
5037
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
3767
5038
|
|
|
5039
|
+
[[package]]
|
|
5040
|
+
name = "scraper"
|
|
5041
|
+
version = "0.22.0"
|
|
5042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5043
|
+
checksum = "cc3d051b884f40e309de6c149734eab57aa8cc1347992710dc80bcc1c2194c15"
|
|
5044
|
+
dependencies = [
|
|
5045
|
+
"cssparser",
|
|
5046
|
+
"ego-tree",
|
|
5047
|
+
"getopts",
|
|
5048
|
+
"html5ever",
|
|
5049
|
+
"precomputed-hash",
|
|
5050
|
+
"selectors",
|
|
5051
|
+
"tendril",
|
|
5052
|
+
]
|
|
5053
|
+
|
|
5054
|
+
[[package]]
|
|
5055
|
+
name = "scrypt"
|
|
5056
|
+
version = "0.11.0"
|
|
5057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5058
|
+
checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
|
|
5059
|
+
dependencies = [
|
|
5060
|
+
"pbkdf2",
|
|
5061
|
+
"salsa20",
|
|
5062
|
+
"sha2",
|
|
5063
|
+
]
|
|
5064
|
+
|
|
3768
5065
|
[[package]]
|
|
3769
5066
|
name = "sdd"
|
|
3770
5067
|
version = "3.0.10"
|
|
3771
5068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3772
5069
|
checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
|
|
3773
5070
|
|
|
5071
|
+
[[package]]
|
|
5072
|
+
name = "sec1"
|
|
5073
|
+
version = "0.7.3"
|
|
5074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5075
|
+
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
|
|
5076
|
+
dependencies = [
|
|
5077
|
+
"base16ct",
|
|
5078
|
+
"der",
|
|
5079
|
+
"generic-array",
|
|
5080
|
+
"pkcs8",
|
|
5081
|
+
"subtle",
|
|
5082
|
+
"zeroize",
|
|
5083
|
+
]
|
|
5084
|
+
|
|
3774
5085
|
[[package]]
|
|
3775
5086
|
name = "security-framework"
|
|
3776
5087
|
version = "3.5.1"
|
|
@@ -3794,6 +5105,31 @@ dependencies = [
|
|
|
3794
5105
|
"libc",
|
|
3795
5106
|
]
|
|
3796
5107
|
|
|
5108
|
+
[[package]]
|
|
5109
|
+
name = "seize"
|
|
5110
|
+
version = "0.3.3"
|
|
5111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5112
|
+
checksum = "689224d06523904ebcc9b482c6a3f4f7fb396096645c4cd10c0d2ff7371a34d3"
|
|
5113
|
+
|
|
5114
|
+
[[package]]
|
|
5115
|
+
name = "selectors"
|
|
5116
|
+
version = "0.26.0"
|
|
5117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5118
|
+
checksum = "fd568a4c9bb598e291a08244a5c1f5a8a6650bee243b5b0f8dbb3d9cc1d87fe8"
|
|
5119
|
+
dependencies = [
|
|
5120
|
+
"bitflags",
|
|
5121
|
+
"cssparser",
|
|
5122
|
+
"derive_more",
|
|
5123
|
+
"fxhash",
|
|
5124
|
+
"log",
|
|
5125
|
+
"new_debug_unreachable",
|
|
5126
|
+
"phf 0.11.3",
|
|
5127
|
+
"phf_codegen",
|
|
5128
|
+
"precomputed-hash",
|
|
5129
|
+
"servo_arc",
|
|
5130
|
+
"smallvec",
|
|
5131
|
+
]
|
|
5132
|
+
|
|
3797
5133
|
[[package]]
|
|
3798
5134
|
name = "semver"
|
|
3799
5135
|
version = "1.0.27"
|
|
@@ -3848,9 +5184,9 @@ dependencies = [
|
|
|
3848
5184
|
|
|
3849
5185
|
[[package]]
|
|
3850
5186
|
name = "serde_json"
|
|
3851
|
-
version = "1.0.
|
|
5187
|
+
version = "1.0.149"
|
|
3852
5188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3853
|
-
checksum = "
|
|
5189
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
3854
5190
|
dependencies = [
|
|
3855
5191
|
"itoa",
|
|
3856
5192
|
"memchr",
|
|
@@ -3886,11 +5222,12 @@ dependencies = [
|
|
|
3886
5222
|
|
|
3887
5223
|
[[package]]
|
|
3888
5224
|
name = "serial_test"
|
|
3889
|
-
version = "3.
|
|
5225
|
+
version = "3.3.1"
|
|
3890
5226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3891
|
-
checksum = "
|
|
5227
|
+
checksum = "0d0b343e184fc3b7bb44dff0705fffcf4b3756ba6aff420dddd8b24ca145e555"
|
|
3892
5228
|
dependencies = [
|
|
3893
|
-
"futures",
|
|
5229
|
+
"futures-executor",
|
|
5230
|
+
"futures-util",
|
|
3894
5231
|
"log",
|
|
3895
5232
|
"once_cell",
|
|
3896
5233
|
"parking_lot",
|
|
@@ -3900,15 +5237,35 @@ dependencies = [
|
|
|
3900
5237
|
|
|
3901
5238
|
[[package]]
|
|
3902
5239
|
name = "serial_test_derive"
|
|
3903
|
-
version = "3.
|
|
5240
|
+
version = "3.3.1"
|
|
3904
5241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3905
|
-
checksum = "
|
|
5242
|
+
checksum = "6f50427f258fb77356e4cd4aa0e87e2bd2c66dbcee41dc405282cae2bfc26c83"
|
|
3906
5243
|
dependencies = [
|
|
3907
5244
|
"proc-macro2",
|
|
3908
5245
|
"quote",
|
|
3909
5246
|
"syn",
|
|
3910
5247
|
]
|
|
3911
5248
|
|
|
5249
|
+
[[package]]
|
|
5250
|
+
name = "servo_arc"
|
|
5251
|
+
version = "0.4.3"
|
|
5252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5253
|
+
checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930"
|
|
5254
|
+
dependencies = [
|
|
5255
|
+
"stable_deref_trait",
|
|
5256
|
+
]
|
|
5257
|
+
|
|
5258
|
+
[[package]]
|
|
5259
|
+
name = "sha1"
|
|
5260
|
+
version = "0.10.6"
|
|
5261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5262
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
5263
|
+
dependencies = [
|
|
5264
|
+
"cfg-if",
|
|
5265
|
+
"cpufeatures",
|
|
5266
|
+
"digest",
|
|
5267
|
+
]
|
|
5268
|
+
|
|
3912
5269
|
[[package]]
|
|
3913
5270
|
name = "sha2"
|
|
3914
5271
|
version = "0.10.9"
|
|
@@ -3929,6 +5286,15 @@ dependencies = [
|
|
|
3929
5286
|
"lazy_static",
|
|
3930
5287
|
]
|
|
3931
5288
|
|
|
5289
|
+
[[package]]
|
|
5290
|
+
name = "shellexpand"
|
|
5291
|
+
version = "3.1.1"
|
|
5292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5293
|
+
checksum = "8b1fdf65dd6331831494dd616b30351c38e96e45921a27745cf98490458b90bb"
|
|
5294
|
+
dependencies = [
|
|
5295
|
+
"dirs",
|
|
5296
|
+
]
|
|
5297
|
+
|
|
3932
5298
|
[[package]]
|
|
3933
5299
|
name = "shlex"
|
|
3934
5300
|
version = "1.3.0"
|
|
@@ -3960,10 +5326,20 @@ dependencies = [
|
|
|
3960
5326
|
name = "signal-hook-registry"
|
|
3961
5327
|
version = "1.4.8"
|
|
3962
5328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3963
|
-
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
5329
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
5330
|
+
dependencies = [
|
|
5331
|
+
"errno",
|
|
5332
|
+
"libc",
|
|
5333
|
+
]
|
|
5334
|
+
|
|
5335
|
+
[[package]]
|
|
5336
|
+
name = "signature"
|
|
5337
|
+
version = "2.2.0"
|
|
5338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5339
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
3964
5340
|
dependencies = [
|
|
3965
|
-
"
|
|
3966
|
-
"
|
|
5341
|
+
"digest",
|
|
5342
|
+
"rand_core 0.6.4",
|
|
3967
5343
|
]
|
|
3968
5344
|
|
|
3969
5345
|
[[package]]
|
|
@@ -4012,6 +5388,22 @@ dependencies = [
|
|
|
4012
5388
|
"windows-sys 0.60.2",
|
|
4013
5389
|
]
|
|
4014
5390
|
|
|
5391
|
+
[[package]]
|
|
5392
|
+
name = "spin"
|
|
5393
|
+
version = "0.9.8"
|
|
5394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5395
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
5396
|
+
|
|
5397
|
+
[[package]]
|
|
5398
|
+
name = "spki"
|
|
5399
|
+
version = "0.7.3"
|
|
5400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5401
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
5402
|
+
dependencies = [
|
|
5403
|
+
"base64ct",
|
|
5404
|
+
"der",
|
|
5405
|
+
]
|
|
5406
|
+
|
|
4015
5407
|
[[package]]
|
|
4016
5408
|
name = "sqlparser"
|
|
4017
5409
|
version = "0.59.0"
|
|
@@ -4023,6 +5415,16 @@ dependencies = [
|
|
|
4023
5415
|
"sqlparser_derive",
|
|
4024
5416
|
]
|
|
4025
5417
|
|
|
5418
|
+
[[package]]
|
|
5419
|
+
name = "sqlparser"
|
|
5420
|
+
version = "0.60.0"
|
|
5421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5422
|
+
checksum = "505aa16b045c4c1375bf5f125cce3813d0176325bfe9ffc4a903f423de7774ff"
|
|
5423
|
+
dependencies = [
|
|
5424
|
+
"log",
|
|
5425
|
+
"recursive",
|
|
5426
|
+
]
|
|
5427
|
+
|
|
4026
5428
|
[[package]]
|
|
4027
5429
|
name = "sqlparser_derive"
|
|
4028
5430
|
version = "0.3.0"
|
|
@@ -4034,6 +5436,57 @@ dependencies = [
|
|
|
4034
5436
|
"syn",
|
|
4035
5437
|
]
|
|
4036
5438
|
|
|
5439
|
+
[[package]]
|
|
5440
|
+
name = "ssh-cipher"
|
|
5441
|
+
version = "0.2.0"
|
|
5442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5443
|
+
checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
|
|
5444
|
+
dependencies = [
|
|
5445
|
+
"aes",
|
|
5446
|
+
"aes-gcm",
|
|
5447
|
+
"cbc",
|
|
5448
|
+
"chacha20",
|
|
5449
|
+
"cipher",
|
|
5450
|
+
"ctr",
|
|
5451
|
+
"poly1305",
|
|
5452
|
+
"ssh-encoding",
|
|
5453
|
+
"subtle",
|
|
5454
|
+
]
|
|
5455
|
+
|
|
5456
|
+
[[package]]
|
|
5457
|
+
name = "ssh-encoding"
|
|
5458
|
+
version = "0.2.0"
|
|
5459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5460
|
+
checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
|
|
5461
|
+
dependencies = [
|
|
5462
|
+
"base64ct",
|
|
5463
|
+
"pem-rfc7468",
|
|
5464
|
+
"sha2",
|
|
5465
|
+
]
|
|
5466
|
+
|
|
5467
|
+
[[package]]
|
|
5468
|
+
name = "ssh-key"
|
|
5469
|
+
version = "0.6.7"
|
|
5470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5471
|
+
checksum = "3b86f5297f0f04d08cabaa0f6bff7cb6aec4d9c3b49d87990d63da9d9156a8c3"
|
|
5472
|
+
dependencies = [
|
|
5473
|
+
"bcrypt-pbkdf",
|
|
5474
|
+
"ed25519-dalek",
|
|
5475
|
+
"num-bigint-dig",
|
|
5476
|
+
"p256",
|
|
5477
|
+
"p384",
|
|
5478
|
+
"p521",
|
|
5479
|
+
"rand_core 0.6.4",
|
|
5480
|
+
"rsa",
|
|
5481
|
+
"sec1",
|
|
5482
|
+
"sha2",
|
|
5483
|
+
"signature",
|
|
5484
|
+
"ssh-cipher",
|
|
5485
|
+
"ssh-encoding",
|
|
5486
|
+
"subtle",
|
|
5487
|
+
"zeroize",
|
|
5488
|
+
]
|
|
5489
|
+
|
|
4037
5490
|
[[package]]
|
|
4038
5491
|
name = "stable_deref_trait"
|
|
4039
5492
|
version = "1.2.1"
|
|
@@ -4053,6 +5506,42 @@ dependencies = [
|
|
|
4053
5506
|
"windows-sys 0.59.0",
|
|
4054
5507
|
]
|
|
4055
5508
|
|
|
5509
|
+
[[package]]
|
|
5510
|
+
name = "string_cache"
|
|
5511
|
+
version = "0.8.9"
|
|
5512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5513
|
+
checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
|
|
5514
|
+
dependencies = [
|
|
5515
|
+
"new_debug_unreachable",
|
|
5516
|
+
"parking_lot",
|
|
5517
|
+
"phf_shared 0.11.3",
|
|
5518
|
+
"precomputed-hash",
|
|
5519
|
+
"serde",
|
|
5520
|
+
]
|
|
5521
|
+
|
|
5522
|
+
[[package]]
|
|
5523
|
+
name = "string_cache_codegen"
|
|
5524
|
+
version = "0.5.4"
|
|
5525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5526
|
+
checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
|
|
5527
|
+
dependencies = [
|
|
5528
|
+
"phf_generator",
|
|
5529
|
+
"phf_shared 0.11.3",
|
|
5530
|
+
"proc-macro2",
|
|
5531
|
+
"quote",
|
|
5532
|
+
]
|
|
5533
|
+
|
|
5534
|
+
[[package]]
|
|
5535
|
+
name = "stringprep"
|
|
5536
|
+
version = "0.1.5"
|
|
5537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5538
|
+
checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
|
|
5539
|
+
dependencies = [
|
|
5540
|
+
"unicode-bidi",
|
|
5541
|
+
"unicode-normalization",
|
|
5542
|
+
"unicode-properties",
|
|
5543
|
+
]
|
|
5544
|
+
|
|
4056
5545
|
[[package]]
|
|
4057
5546
|
name = "strip-ansi-escapes"
|
|
4058
5547
|
version = "0.2.1"
|
|
@@ -4111,11 +5600,27 @@ version = "2.6.1"
|
|
|
4111
5600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4112
5601
|
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
4113
5602
|
|
|
5603
|
+
[[package]]
|
|
5604
|
+
name = "suppaftp"
|
|
5605
|
+
version = "7.1.0"
|
|
5606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5607
|
+
checksum = "69a15b325bbe0a1f85de3dbf988a3a14e9cd321537dffcbf6641381dd6d7586f"
|
|
5608
|
+
dependencies = [
|
|
5609
|
+
"async-trait",
|
|
5610
|
+
"chrono",
|
|
5611
|
+
"futures-lite",
|
|
5612
|
+
"lazy-regex",
|
|
5613
|
+
"log",
|
|
5614
|
+
"pin-project",
|
|
5615
|
+
"thiserror 2.0.17",
|
|
5616
|
+
"tokio",
|
|
5617
|
+
]
|
|
5618
|
+
|
|
4114
5619
|
[[package]]
|
|
4115
5620
|
name = "syn"
|
|
4116
|
-
version = "2.0.
|
|
5621
|
+
version = "2.0.114"
|
|
4117
5622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4118
|
-
checksum = "
|
|
5623
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
4119
5624
|
dependencies = [
|
|
4120
5625
|
"proc-macro2",
|
|
4121
5626
|
"quote",
|
|
@@ -4142,6 +5647,17 @@ dependencies = [
|
|
|
4142
5647
|
"syn",
|
|
4143
5648
|
]
|
|
4144
5649
|
|
|
5650
|
+
[[package]]
|
|
5651
|
+
name = "tar"
|
|
5652
|
+
version = "0.4.44"
|
|
5653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5654
|
+
checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
|
|
5655
|
+
dependencies = [
|
|
5656
|
+
"filetime",
|
|
5657
|
+
"libc",
|
|
5658
|
+
"xattr",
|
|
5659
|
+
]
|
|
5660
|
+
|
|
4145
5661
|
[[package]]
|
|
4146
5662
|
name = "target-lexicon"
|
|
4147
5663
|
version = "0.13.4"
|
|
@@ -4161,6 +5677,17 @@ dependencies = [
|
|
|
4161
5677
|
"windows-sys 0.61.2",
|
|
4162
5678
|
]
|
|
4163
5679
|
|
|
5680
|
+
[[package]]
|
|
5681
|
+
name = "tendril"
|
|
5682
|
+
version = "0.4.3"
|
|
5683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5684
|
+
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
|
|
5685
|
+
dependencies = [
|
|
5686
|
+
"futf",
|
|
5687
|
+
"mac",
|
|
5688
|
+
"utf-8",
|
|
5689
|
+
]
|
|
5690
|
+
|
|
4164
5691
|
[[package]]
|
|
4165
5692
|
name = "thiserror"
|
|
4166
5693
|
version = "1.0.69"
|
|
@@ -4281,6 +5808,32 @@ dependencies = [
|
|
|
4281
5808
|
"syn",
|
|
4282
5809
|
]
|
|
4283
5810
|
|
|
5811
|
+
[[package]]
|
|
5812
|
+
name = "tokio-postgres"
|
|
5813
|
+
version = "0.7.16"
|
|
5814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5815
|
+
checksum = "dcea47c8f71744367793f16c2db1f11cb859d28f436bdb4ca9193eb1f787ee42"
|
|
5816
|
+
dependencies = [
|
|
5817
|
+
"async-trait",
|
|
5818
|
+
"byteorder",
|
|
5819
|
+
"bytes",
|
|
5820
|
+
"fallible-iterator",
|
|
5821
|
+
"futures-channel",
|
|
5822
|
+
"futures-util",
|
|
5823
|
+
"log",
|
|
5824
|
+
"parking_lot",
|
|
5825
|
+
"percent-encoding",
|
|
5826
|
+
"phf 0.13.1",
|
|
5827
|
+
"pin-project-lite",
|
|
5828
|
+
"postgres-protocol",
|
|
5829
|
+
"postgres-types",
|
|
5830
|
+
"rand 0.9.2",
|
|
5831
|
+
"socket2",
|
|
5832
|
+
"tokio",
|
|
5833
|
+
"tokio-util",
|
|
5834
|
+
"whoami",
|
|
5835
|
+
]
|
|
5836
|
+
|
|
4284
5837
|
[[package]]
|
|
4285
5838
|
name = "tokio-rustls"
|
|
4286
5839
|
version = "0.26.4"
|
|
@@ -4293,20 +5846,21 @@ dependencies = [
|
|
|
4293
5846
|
|
|
4294
5847
|
[[package]]
|
|
4295
5848
|
name = "tokio-stream"
|
|
4296
|
-
version = "0.1.
|
|
5849
|
+
version = "0.1.18"
|
|
4297
5850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4298
|
-
checksum = "
|
|
5851
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
4299
5852
|
dependencies = [
|
|
4300
5853
|
"futures-core",
|
|
4301
5854
|
"pin-project-lite",
|
|
4302
5855
|
"tokio",
|
|
5856
|
+
"tokio-util",
|
|
4303
5857
|
]
|
|
4304
5858
|
|
|
4305
5859
|
[[package]]
|
|
4306
5860
|
name = "tokio-util"
|
|
4307
|
-
version = "0.7.
|
|
5861
|
+
version = "0.7.18"
|
|
4308
5862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4309
|
-
checksum = "
|
|
5863
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
4310
5864
|
dependencies = [
|
|
4311
5865
|
"bytes",
|
|
4312
5866
|
"futures-core",
|
|
@@ -4387,9 +5941,9 @@ dependencies = [
|
|
|
4387
5941
|
|
|
4388
5942
|
[[package]]
|
|
4389
5943
|
name = "tower"
|
|
4390
|
-
version = "0.5.
|
|
5944
|
+
version = "0.5.3"
|
|
4391
5945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4392
|
-
checksum = "
|
|
5946
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
4393
5947
|
dependencies = [
|
|
4394
5948
|
"futures-core",
|
|
4395
5949
|
"futures-util",
|
|
@@ -4519,12 +6073,33 @@ version = "0.1.7"
|
|
|
4519
6073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4520
6074
|
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
4521
6075
|
|
|
6076
|
+
[[package]]
|
|
6077
|
+
name = "unicode-bidi"
|
|
6078
|
+
version = "0.3.18"
|
|
6079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6080
|
+
checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
|
6081
|
+
|
|
4522
6082
|
[[package]]
|
|
4523
6083
|
name = "unicode-ident"
|
|
4524
6084
|
version = "1.0.22"
|
|
4525
6085
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4526
6086
|
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
4527
6087
|
|
|
6088
|
+
[[package]]
|
|
6089
|
+
name = "unicode-normalization"
|
|
6090
|
+
version = "0.1.25"
|
|
6091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6092
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
6093
|
+
dependencies = [
|
|
6094
|
+
"tinyvec",
|
|
6095
|
+
]
|
|
6096
|
+
|
|
6097
|
+
[[package]]
|
|
6098
|
+
name = "unicode-properties"
|
|
6099
|
+
version = "0.1.4"
|
|
6100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6101
|
+
checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
|
|
6102
|
+
|
|
4528
6103
|
[[package]]
|
|
4529
6104
|
name = "unicode-segmentation"
|
|
4530
6105
|
version = "1.12.0"
|
|
@@ -4549,6 +6124,16 @@ version = "0.2.4"
|
|
|
4549
6124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4550
6125
|
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
4551
6126
|
|
|
6127
|
+
[[package]]
|
|
6128
|
+
name = "universal-hash"
|
|
6129
|
+
version = "0.5.1"
|
|
6130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6131
|
+
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
|
6132
|
+
dependencies = [
|
|
6133
|
+
"crypto-common",
|
|
6134
|
+
"subtle",
|
|
6135
|
+
]
|
|
6136
|
+
|
|
4552
6137
|
[[package]]
|
|
4553
6138
|
name = "unsafe-libyaml"
|
|
4554
6139
|
version = "0.2.11"
|
|
@@ -4563,16 +6148,23 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
4563
6148
|
|
|
4564
6149
|
[[package]]
|
|
4565
6150
|
name = "url"
|
|
4566
|
-
version = "2.5.
|
|
6151
|
+
version = "2.5.8"
|
|
4567
6152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4568
|
-
checksum = "
|
|
6153
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
4569
6154
|
dependencies = [
|
|
4570
6155
|
"form_urlencoded",
|
|
4571
6156
|
"idna",
|
|
4572
6157
|
"percent-encoding",
|
|
4573
6158
|
"serde",
|
|
6159
|
+
"serde_derive",
|
|
4574
6160
|
]
|
|
4575
6161
|
|
|
6162
|
+
[[package]]
|
|
6163
|
+
name = "utf-8"
|
|
6164
|
+
version = "0.7.6"
|
|
6165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6166
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
6167
|
+
|
|
4576
6168
|
[[package]]
|
|
4577
6169
|
name = "utf8_iter"
|
|
4578
6170
|
version = "1.0.4"
|
|
@@ -4643,20 +6235,38 @@ version = "0.11.1+wasi-snapshot-preview1"
|
|
|
4643
6235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4644
6236
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
4645
6237
|
|
|
6238
|
+
[[package]]
|
|
6239
|
+
name = "wasi"
|
|
6240
|
+
version = "0.14.7+wasi-0.2.4"
|
|
6241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6242
|
+
checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
|
|
6243
|
+
dependencies = [
|
|
6244
|
+
"wasip2",
|
|
6245
|
+
]
|
|
6246
|
+
|
|
4646
6247
|
[[package]]
|
|
4647
6248
|
name = "wasip2"
|
|
4648
|
-
version = "1.0.
|
|
6249
|
+
version = "1.0.2+wasi-0.2.9"
|
|
4649
6250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4650
|
-
checksum = "
|
|
6251
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
4651
6252
|
dependencies = [
|
|
4652
6253
|
"wit-bindgen",
|
|
4653
6254
|
]
|
|
4654
6255
|
|
|
6256
|
+
[[package]]
|
|
6257
|
+
name = "wasite"
|
|
6258
|
+
version = "1.0.2"
|
|
6259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6260
|
+
checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42"
|
|
6261
|
+
dependencies = [
|
|
6262
|
+
"wasi 0.14.7+wasi-0.2.4",
|
|
6263
|
+
]
|
|
6264
|
+
|
|
4655
6265
|
[[package]]
|
|
4656
6266
|
name = "wasm-bindgen"
|
|
4657
|
-
version = "0.2.
|
|
6267
|
+
version = "0.2.108"
|
|
4658
6268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4659
|
-
checksum = "
|
|
6269
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
4660
6270
|
dependencies = [
|
|
4661
6271
|
"cfg-if",
|
|
4662
6272
|
"once_cell",
|
|
@@ -4667,11 +6277,12 @@ dependencies = [
|
|
|
4667
6277
|
|
|
4668
6278
|
[[package]]
|
|
4669
6279
|
name = "wasm-bindgen-futures"
|
|
4670
|
-
version = "0.4.
|
|
6280
|
+
version = "0.4.58"
|
|
4671
6281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4672
|
-
checksum = "
|
|
6282
|
+
checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
|
|
4673
6283
|
dependencies = [
|
|
4674
6284
|
"cfg-if",
|
|
6285
|
+
"futures-util",
|
|
4675
6286
|
"js-sys",
|
|
4676
6287
|
"once_cell",
|
|
4677
6288
|
"wasm-bindgen",
|
|
@@ -4680,9 +6291,9 @@ dependencies = [
|
|
|
4680
6291
|
|
|
4681
6292
|
[[package]]
|
|
4682
6293
|
name = "wasm-bindgen-macro"
|
|
4683
|
-
version = "0.2.
|
|
6294
|
+
version = "0.2.108"
|
|
4684
6295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4685
|
-
checksum = "
|
|
6296
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
4686
6297
|
dependencies = [
|
|
4687
6298
|
"quote",
|
|
4688
6299
|
"wasm-bindgen-macro-support",
|
|
@@ -4690,9 +6301,9 @@ dependencies = [
|
|
|
4690
6301
|
|
|
4691
6302
|
[[package]]
|
|
4692
6303
|
name = "wasm-bindgen-macro-support"
|
|
4693
|
-
version = "0.2.
|
|
6304
|
+
version = "0.2.108"
|
|
4694
6305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4695
|
-
checksum = "
|
|
6306
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
4696
6307
|
dependencies = [
|
|
4697
6308
|
"bumpalo",
|
|
4698
6309
|
"proc-macro2",
|
|
@@ -4703,9 +6314,9 @@ dependencies = [
|
|
|
4703
6314
|
|
|
4704
6315
|
[[package]]
|
|
4705
6316
|
name = "wasm-bindgen-shared"
|
|
4706
|
-
version = "0.2.
|
|
6317
|
+
version = "0.2.108"
|
|
4707
6318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4708
|
-
checksum = "
|
|
6319
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
4709
6320
|
dependencies = [
|
|
4710
6321
|
"unicode-ident",
|
|
4711
6322
|
]
|
|
@@ -4725,9 +6336,9 @@ dependencies = [
|
|
|
4725
6336
|
|
|
4726
6337
|
[[package]]
|
|
4727
6338
|
name = "web-sys"
|
|
4728
|
-
version = "0.3.
|
|
6339
|
+
version = "0.3.85"
|
|
4729
6340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4730
|
-
checksum = "
|
|
6341
|
+
checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
|
|
4731
6342
|
dependencies = [
|
|
4732
6343
|
"js-sys",
|
|
4733
6344
|
"wasm-bindgen",
|
|
@@ -4743,6 +6354,26 @@ dependencies = [
|
|
|
4743
6354
|
"wasm-bindgen",
|
|
4744
6355
|
]
|
|
4745
6356
|
|
|
6357
|
+
[[package]]
|
|
6358
|
+
name = "webpki-root-certs"
|
|
6359
|
+
version = "1.0.5"
|
|
6360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6361
|
+
checksum = "36a29fc0408b113f68cf32637857ab740edfafdf460c326cd2afaa2d84cc05dc"
|
|
6362
|
+
dependencies = [
|
|
6363
|
+
"rustls-pki-types",
|
|
6364
|
+
]
|
|
6365
|
+
|
|
6366
|
+
[[package]]
|
|
6367
|
+
name = "whoami"
|
|
6368
|
+
version = "2.0.2"
|
|
6369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6370
|
+
checksum = "ace4d5c7b5ab3d99629156d4e0997edbe98a4beb6d5ba99e2cae830207a81983"
|
|
6371
|
+
dependencies = [
|
|
6372
|
+
"libredox",
|
|
6373
|
+
"wasite",
|
|
6374
|
+
"web-sys",
|
|
6375
|
+
]
|
|
6376
|
+
|
|
4746
6377
|
[[package]]
|
|
4747
6378
|
name = "winapi"
|
|
4748
6379
|
version = "0.3.9"
|
|
@@ -4774,17 +6405,51 @@ version = "0.4.0"
|
|
|
4774
6405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4775
6406
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
4776
6407
|
|
|
6408
|
+
[[package]]
|
|
6409
|
+
name = "windows"
|
|
6410
|
+
version = "0.58.0"
|
|
6411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6412
|
+
checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
|
|
6413
|
+
dependencies = [
|
|
6414
|
+
"windows-core 0.58.0",
|
|
6415
|
+
"windows-targets 0.52.6",
|
|
6416
|
+
]
|
|
6417
|
+
|
|
6418
|
+
[[package]]
|
|
6419
|
+
name = "windows-core"
|
|
6420
|
+
version = "0.58.0"
|
|
6421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6422
|
+
checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
|
|
6423
|
+
dependencies = [
|
|
6424
|
+
"windows-implement 0.58.0",
|
|
6425
|
+
"windows-interface 0.58.0",
|
|
6426
|
+
"windows-result 0.2.0",
|
|
6427
|
+
"windows-strings 0.1.0",
|
|
6428
|
+
"windows-targets 0.52.6",
|
|
6429
|
+
]
|
|
6430
|
+
|
|
4777
6431
|
[[package]]
|
|
4778
6432
|
name = "windows-core"
|
|
4779
6433
|
version = "0.62.2"
|
|
4780
6434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4781
6435
|
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4782
6436
|
dependencies = [
|
|
4783
|
-
"windows-implement",
|
|
4784
|
-
"windows-interface",
|
|
6437
|
+
"windows-implement 0.60.2",
|
|
6438
|
+
"windows-interface 0.59.3",
|
|
4785
6439
|
"windows-link",
|
|
4786
|
-
"windows-result",
|
|
4787
|
-
"windows-strings",
|
|
6440
|
+
"windows-result 0.4.1",
|
|
6441
|
+
"windows-strings 0.5.1",
|
|
6442
|
+
]
|
|
6443
|
+
|
|
6444
|
+
[[package]]
|
|
6445
|
+
name = "windows-implement"
|
|
6446
|
+
version = "0.58.0"
|
|
6447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6448
|
+
checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
|
|
6449
|
+
dependencies = [
|
|
6450
|
+
"proc-macro2",
|
|
6451
|
+
"quote",
|
|
6452
|
+
"syn",
|
|
4788
6453
|
]
|
|
4789
6454
|
|
|
4790
6455
|
[[package]]
|
|
@@ -4798,6 +6463,17 @@ dependencies = [
|
|
|
4798
6463
|
"syn",
|
|
4799
6464
|
]
|
|
4800
6465
|
|
|
6466
|
+
[[package]]
|
|
6467
|
+
name = "windows-interface"
|
|
6468
|
+
version = "0.58.0"
|
|
6469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6470
|
+
checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
|
|
6471
|
+
dependencies = [
|
|
6472
|
+
"proc-macro2",
|
|
6473
|
+
"quote",
|
|
6474
|
+
"syn",
|
|
6475
|
+
]
|
|
6476
|
+
|
|
4801
6477
|
[[package]]
|
|
4802
6478
|
name = "windows-interface"
|
|
4803
6479
|
version = "0.59.3"
|
|
@@ -4815,6 +6491,15 @@ version = "0.2.1"
|
|
|
4815
6491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4816
6492
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
4817
6493
|
|
|
6494
|
+
[[package]]
|
|
6495
|
+
name = "windows-result"
|
|
6496
|
+
version = "0.2.0"
|
|
6497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6498
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
6499
|
+
dependencies = [
|
|
6500
|
+
"windows-targets 0.52.6",
|
|
6501
|
+
]
|
|
6502
|
+
|
|
4818
6503
|
[[package]]
|
|
4819
6504
|
name = "windows-result"
|
|
4820
6505
|
version = "0.4.1"
|
|
@@ -4824,6 +6509,16 @@ dependencies = [
|
|
|
4824
6509
|
"windows-link",
|
|
4825
6510
|
]
|
|
4826
6511
|
|
|
6512
|
+
[[package]]
|
|
6513
|
+
name = "windows-strings"
|
|
6514
|
+
version = "0.1.0"
|
|
6515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6516
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
6517
|
+
dependencies = [
|
|
6518
|
+
"windows-result 0.2.0",
|
|
6519
|
+
"windows-targets 0.52.6",
|
|
6520
|
+
]
|
|
6521
|
+
|
|
4827
6522
|
[[package]]
|
|
4828
6523
|
name = "windows-strings"
|
|
4829
6524
|
version = "0.5.1"
|
|
@@ -4833,6 +6528,15 @@ dependencies = [
|
|
|
4833
6528
|
"windows-link",
|
|
4834
6529
|
]
|
|
4835
6530
|
|
|
6531
|
+
[[package]]
|
|
6532
|
+
name = "windows-sys"
|
|
6533
|
+
version = "0.45.0"
|
|
6534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6535
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
6536
|
+
dependencies = [
|
|
6537
|
+
"windows-targets 0.42.2",
|
|
6538
|
+
]
|
|
6539
|
+
|
|
4836
6540
|
[[package]]
|
|
4837
6541
|
name = "windows-sys"
|
|
4838
6542
|
version = "0.52.0"
|
|
@@ -4869,6 +6573,21 @@ dependencies = [
|
|
|
4869
6573
|
"windows-link",
|
|
4870
6574
|
]
|
|
4871
6575
|
|
|
6576
|
+
[[package]]
|
|
6577
|
+
name = "windows-targets"
|
|
6578
|
+
version = "0.42.2"
|
|
6579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6580
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
6581
|
+
dependencies = [
|
|
6582
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
6583
|
+
"windows_aarch64_msvc 0.42.2",
|
|
6584
|
+
"windows_i686_gnu 0.42.2",
|
|
6585
|
+
"windows_i686_msvc 0.42.2",
|
|
6586
|
+
"windows_x86_64_gnu 0.42.2",
|
|
6587
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
6588
|
+
"windows_x86_64_msvc 0.42.2",
|
|
6589
|
+
]
|
|
6590
|
+
|
|
4872
6591
|
[[package]]
|
|
4873
6592
|
name = "windows-targets"
|
|
4874
6593
|
version = "0.52.6"
|
|
@@ -4902,6 +6621,12 @@ dependencies = [
|
|
|
4902
6621
|
"windows_x86_64_msvc 0.53.1",
|
|
4903
6622
|
]
|
|
4904
6623
|
|
|
6624
|
+
[[package]]
|
|
6625
|
+
name = "windows_aarch64_gnullvm"
|
|
6626
|
+
version = "0.42.2"
|
|
6627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6628
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
6629
|
+
|
|
4905
6630
|
[[package]]
|
|
4906
6631
|
name = "windows_aarch64_gnullvm"
|
|
4907
6632
|
version = "0.52.6"
|
|
@@ -4914,6 +6639,12 @@ version = "0.53.1"
|
|
|
4914
6639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4915
6640
|
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
4916
6641
|
|
|
6642
|
+
[[package]]
|
|
6643
|
+
name = "windows_aarch64_msvc"
|
|
6644
|
+
version = "0.42.2"
|
|
6645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6646
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
6647
|
+
|
|
4917
6648
|
[[package]]
|
|
4918
6649
|
name = "windows_aarch64_msvc"
|
|
4919
6650
|
version = "0.52.6"
|
|
@@ -4926,6 +6657,12 @@ version = "0.53.1"
|
|
|
4926
6657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4927
6658
|
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
4928
6659
|
|
|
6660
|
+
[[package]]
|
|
6661
|
+
name = "windows_i686_gnu"
|
|
6662
|
+
version = "0.42.2"
|
|
6663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6664
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
6665
|
+
|
|
4929
6666
|
[[package]]
|
|
4930
6667
|
name = "windows_i686_gnu"
|
|
4931
6668
|
version = "0.52.6"
|
|
@@ -4950,6 +6687,12 @@ version = "0.53.1"
|
|
|
4950
6687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4951
6688
|
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
4952
6689
|
|
|
6690
|
+
[[package]]
|
|
6691
|
+
name = "windows_i686_msvc"
|
|
6692
|
+
version = "0.42.2"
|
|
6693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6694
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
6695
|
+
|
|
4953
6696
|
[[package]]
|
|
4954
6697
|
name = "windows_i686_msvc"
|
|
4955
6698
|
version = "0.52.6"
|
|
@@ -4962,6 +6705,12 @@ version = "0.53.1"
|
|
|
4962
6705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4963
6706
|
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
4964
6707
|
|
|
6708
|
+
[[package]]
|
|
6709
|
+
name = "windows_x86_64_gnu"
|
|
6710
|
+
version = "0.42.2"
|
|
6711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6712
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
6713
|
+
|
|
4965
6714
|
[[package]]
|
|
4966
6715
|
name = "windows_x86_64_gnu"
|
|
4967
6716
|
version = "0.52.6"
|
|
@@ -4974,6 +6723,12 @@ version = "0.53.1"
|
|
|
4974
6723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4975
6724
|
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
4976
6725
|
|
|
6726
|
+
[[package]]
|
|
6727
|
+
name = "windows_x86_64_gnullvm"
|
|
6728
|
+
version = "0.42.2"
|
|
6729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6730
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
6731
|
+
|
|
4977
6732
|
[[package]]
|
|
4978
6733
|
name = "windows_x86_64_gnullvm"
|
|
4979
6734
|
version = "0.52.6"
|
|
@@ -4986,6 +6741,12 @@ version = "0.53.1"
|
|
|
4986
6741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4987
6742
|
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
4988
6743
|
|
|
6744
|
+
[[package]]
|
|
6745
|
+
name = "windows_x86_64_msvc"
|
|
6746
|
+
version = "0.42.2"
|
|
6747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6748
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
6749
|
+
|
|
4989
6750
|
[[package]]
|
|
4990
6751
|
name = "windows_x86_64_msvc"
|
|
4991
6752
|
version = "0.52.6"
|
|
@@ -5009,9 +6770,9 @@ dependencies = [
|
|
|
5009
6770
|
|
|
5010
6771
|
[[package]]
|
|
5011
6772
|
name = "wit-bindgen"
|
|
5012
|
-
version = "0.
|
|
6773
|
+
version = "0.51.0"
|
|
5013
6774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5014
|
-
checksum = "
|
|
6775
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
5015
6776
|
|
|
5016
6777
|
[[package]]
|
|
5017
6778
|
name = "writeable"
|
|
@@ -5020,12 +6781,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5020
6781
|
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
5021
6782
|
|
|
5022
6783
|
[[package]]
|
|
5023
|
-
name = "
|
|
5024
|
-
version = "
|
|
6784
|
+
name = "xattr"
|
|
6785
|
+
version = "1.6.1"
|
|
5025
6786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5026
|
-
checksum = "
|
|
6787
|
+
checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
|
|
5027
6788
|
dependencies = [
|
|
5028
|
-
"
|
|
6789
|
+
"libc",
|
|
6790
|
+
"rustix 1.1.3",
|
|
5029
6791
|
]
|
|
5030
6792
|
|
|
5031
6793
|
[[package]]
|
|
@@ -5053,18 +6815,18 @@ dependencies = [
|
|
|
5053
6815
|
|
|
5054
6816
|
[[package]]
|
|
5055
6817
|
name = "zerocopy"
|
|
5056
|
-
version = "0.8.
|
|
6818
|
+
version = "0.8.33"
|
|
5057
6819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5058
|
-
checksum = "
|
|
6820
|
+
checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
|
|
5059
6821
|
dependencies = [
|
|
5060
6822
|
"zerocopy-derive",
|
|
5061
6823
|
]
|
|
5062
6824
|
|
|
5063
6825
|
[[package]]
|
|
5064
6826
|
name = "zerocopy-derive"
|
|
5065
|
-
version = "0.8.
|
|
6827
|
+
version = "0.8.33"
|
|
5066
6828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5067
|
-
checksum = "
|
|
6829
|
+
checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
|
|
5068
6830
|
dependencies = [
|
|
5069
6831
|
"proc-macro2",
|
|
5070
6832
|
"quote",
|
|
@@ -5139,9 +6901,9 @@ checksum = "40990edd51aae2c2b6907af74ffb635029d5788228222c4bb811e9351c0caad3"
|
|
|
5139
6901
|
|
|
5140
6902
|
[[package]]
|
|
5141
6903
|
name = "zmij"
|
|
5142
|
-
version = "1.0.
|
|
6904
|
+
version = "1.0.14"
|
|
5143
6905
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5144
|
-
checksum = "
|
|
6906
|
+
checksum = "bd8f3f50b848df28f887acb68e41201b5aea6bc8a8dacc00fb40635ff9a72fea"
|
|
5145
6907
|
|
|
5146
6908
|
[[package]]
|
|
5147
6909
|
name = "zstd"
|