bundlebase 0.3.0__tar.gz → 0.5.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.3.0 → bundlebase-0.5.0}/Cargo.lock +848 -245
- {bundlebase-0.3.0 → bundlebase-0.5.0}/Cargo.toml +10 -3
- {bundlebase-0.3.0 → bundlebase-0.5.0}/PKG-INFO +1 -1
- {bundlebase-0.3.0 → bundlebase-0.5.0}/pyproject.toml +2 -1
- {bundlebase-0.3.0 → bundlebase-0.5.0}/python/src/bundlebase/__init__.py +55 -8
- {bundlebase-0.3.0 → bundlebase-0.5.0}/python/src/bundlebase/__init__.pyi +137 -49
- {bundlebase-0.3.0 → bundlebase-0.5.0}/python/src/bundlebase/conversion.py +148 -1
- {bundlebase-0.3.0 → bundlebase-0.5.0}/python/src/bundlebase/sync.py +181 -53
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/Cargo.toml +6 -3
- bundlebase-0.5.0/rust/bundlebase/src/bundle/builder.rs +1690 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/attach.rs +171 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/commit.rs +100 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/create_index.rs +113 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/create_source.rs +216 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/create_view.rs +132 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/detach_block.rs +96 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/drop_column.rs +94 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/drop_index.rs +113 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/drop_join.rs +93 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/drop_view.rs +91 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/fetch.rs +533 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/filter.rs +116 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/join.rs +226 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/rebuild_index.rs +93 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/reindex.rs +83 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/rename_column.rs +109 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/rename_join.rs +108 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/rename_view.rs +108 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/replace_block.rs +113 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/reset.rs +72 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/save_config.rs +172 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/set_description.rs +97 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/set_name.rs +93 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/undo.rs +72 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder/verify_data.rs +501 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/builder.rs +56 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/facade/explain.rs +332 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/facade/set_config.rs +211 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/facade.rs +11 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/parser/grammar.pest +449 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/parser/pest_parser.rs +190 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/parser.rs +133 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command/response.rs +236 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/command.rs +568 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/commit.rs +80 -25
- bundlebase-0.5.0/rust/bundlebase/src/bundle/facade.rs +646 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/attach_block.rs +80 -99
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/create_function.rs +5 -5
- bundlebase-0.5.0/rust/bundlebase/src/bundle/operation/create_index.rs +88 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/create_join.rs +2 -2
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/create_source.rs +2 -2
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/create_view.rs +24 -22
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/detach_block.rs +8 -7
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/drop_column.rs +3 -3
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/drop_index.rs +1 -1
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/drop_join.rs +6 -4
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/drop_view.rs +11 -10
- bundlebase-0.5.0/rust/bundlebase/src/bundle/operation/filter.rs +159 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle/operation/index_blocks.rs +566 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/parameter_value.rs +3 -3
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/rename_column.rs +3 -3
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/rename_join.rs +6 -4
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/rename_view.rs +18 -14
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/replace_block.rs +16 -15
- bundlebase-0.5.0/rust/bundlebase/src/bundle/operation/save_config.rs +246 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/serde_util.rs +16 -16
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/set_description.rs +3 -3
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation/set_name.rs +3 -3
- bundlebase-0.5.0/rust/bundlebase/src/bundle/operation/update_version.rs +134 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/operation.rs +10 -12
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/source.rs +11 -19
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/sql.rs +5 -76
- bundlebase-0.5.0/rust/bundlebase/src/bundle.rs +1408 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle_config/passed.rs +104 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle_config/registry.rs +65 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle_config/scope.rs +298 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle_config/system.rs +20 -0
- bundlebase-0.5.0/rust/bundlebase/src/bundle_config.rs +1663 -0
- bundlebase-0.5.0/rust/bundlebase/src/catalog/blocks/block_table.rs +65 -0
- bundlebase-0.5.0/rust/bundlebase/src/catalog/blocks.rs +125 -0
- bundlebase-0.5.0/rust/bundlebase/src/catalog/bundle_info/blocks_table.rs +131 -0
- bundlebase-0.5.0/rust/bundlebase/src/catalog/bundle_info/config_table.rs +61 -0
- bundlebase-0.5.0/rust/bundlebase/src/catalog/bundle_info/details_table.rs +95 -0
- bundlebase-0.5.0/rust/bundlebase/src/catalog/bundle_info/history_table.rs +59 -0
- bundlebase-0.5.0/rust/bundlebase/src/catalog/bundle_info/indexes_table.rs +114 -0
- bundlebase-0.5.0/rust/bundlebase/src/catalog/bundle_info/packs_table.rs +100 -0
- bundlebase-0.5.0/rust/bundlebase/src/catalog/bundle_info/status_table.rs +60 -0
- bundlebase-0.5.0/rust/bundlebase/src/catalog/bundle_info/views_table.rs +91 -0
- bundlebase-0.5.0/rust/bundlebase/src/catalog/bundle_info.rs +73 -0
- bundlebase-0.5.0/rust/bundlebase/src/catalog/default.rs +57 -0
- bundlebase-0.3.0/rust/bundlebase/src/catalog/pack_union_table.rs → bundlebase-0.5.0/rust/bundlebase/src/catalog/packs/pack_table.rs +4 -4
- bundlebase-0.5.0/rust/bundlebase/src/catalog/packs.rs +118 -0
- bundlebase-0.5.0/rust/bundlebase/src/catalog.rs +30 -0
- bundlebase-0.5.0/rust/bundlebase/src/data/plugin/csv_reader.rs +1168 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/data/plugin/file_reader.rs +115 -21
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/data/plugin/function_reader.rs +18 -9
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/data/plugin/json_reader.rs +33 -17
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/data/plugin/parquet_reader.rs +32 -22
- bundlebase-0.5.0/rust/bundlebase/src/data/plugin.rs +51 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/data/reader_factory.rs +25 -3
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/data/rowid_offset_data_source.rs +2 -2
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/data.rs +10 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/index/column_index.rs +265 -11
- bundlebase-0.5.0/rust/bundlebase/src/index/external_sort.rs +475 -0
- bundlebase-0.5.0/rust/bundlebase/src/index/index_definition.rs +373 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/index/index_scan_exec.rs +0 -2
- bundlebase-0.5.0/rust/bundlebase/src/index/index_trait.rs +29 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/index/rowid_cache.rs +0 -2
- bundlebase-0.5.0/rust/bundlebase/src/index/temp_dir.rs +170 -0
- bundlebase-0.5.0/rust/bundlebase/src/index/text_column_index.rs +624 -0
- bundlebase-0.5.0/rust/bundlebase/src/index.rs +22 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/io/dir.rs +9 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/io/file.rs +2 -2
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/io/plugin/ftp.rs +96 -58
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/io/plugin/object_store.rs +93 -35
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/io/plugin/sftp.rs +16 -11
- bundlebase-0.5.0/rust/bundlebase/src/io/plugin/versioned_object_store.rs +247 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/io/plugin.rs +3 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/io/registry.rs +2 -2
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/io.rs +13 -13
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/lib.rs +6 -3
- bundlebase-0.5.0/rust/bundlebase/src/source/kaggle/client.rs +73 -0
- bundlebase-0.5.0/rust/bundlebase/src/source/kaggle.rs +1335 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/source/postgres.rs +11 -29
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/source/remote_dir.rs +6 -20
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/source/source_function.rs +42 -32
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/source/source_utils.rs +13 -2
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/source/web_scrape.rs +3 -18
- bundlebase-0.5.0/rust/bundlebase/src/source.rs +58 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/test_utils.rs +5 -5
- bundlebase-0.5.0/rust/bundlebase/src/udf/bundle_info.rs +124 -0
- bundlebase-0.5.0/rust/bundlebase/src/udf/text_search.rs +296 -0
- bundlebase-0.5.0/rust/bundlebase/src/udf.rs +10 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/tests/basic_e2e.rs +20 -20
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/tests/building_e2e.rs +11 -11
- bundlebase-0.5.0/rust/bundlebase/tests/bundle_schema_e2e.rs +716 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/tests/common/mod.rs +10 -2
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/tests/filters_selects_e2e.rs +51 -29
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/tests/index_e2e.rs +64 -55
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/tests/operations_e2e.rs +4 -2
- bundlebase-0.5.0/rust/bundlebase/tests/query_e2e.rs +200 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/tests/schema_e2e.rs +3 -2
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/tests/source_e2e.rs +188 -23
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/tests/tar_e2e.rs +6 -6
- bundlebase-0.5.0/rust/bundlebase/tests/version_validation_e2e.rs +226 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/tests/views_e2e.rs +44 -123
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase-python/src/builder.rs +323 -462
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase-python/src/bundle.rs +223 -13
- bundlebase-0.5.0/rust/bundlebase-python/src/bundle_config.rs +76 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase-python/src/lib.rs +3 -1
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase-python/src/operation.rs +2 -3
- bundlebase-0.5.0/rust/bundlebase-python/src/utils.rs +72 -0
- bundlebase-0.3.0/rust/bundlebase/src/bundle/builder.rs +0 -1984
- bundlebase-0.3.0/rust/bundlebase/src/bundle/command/commands.pest +0 -192
- bundlebase-0.3.0/rust/bundlebase/src/bundle/command/parser.rs +0 -158
- bundlebase-0.3.0/rust/bundlebase/src/bundle/command/parser_pest.rs +0 -724
- bundlebase-0.3.0/rust/bundlebase/src/bundle/command.rs +0 -446
- bundlebase-0.3.0/rust/bundlebase/src/bundle/facade.rs +0 -125
- bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/create_index.rs +0 -91
- bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/filter.rs +0 -156
- bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/index_blocks.rs +0 -305
- bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/rebuild_index.rs +0 -131
- bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/select.rs +0 -155
- bundlebase-0.3.0/rust/bundlebase/src/bundle/operation/set_config.rs +0 -140
- bundlebase-0.3.0/rust/bundlebase/src/bundle.rs +0 -1053
- bundlebase-0.3.0/rust/bundlebase/src/bundle_config.rs +0 -414
- bundlebase-0.3.0/rust/bundlebase/src/catalog/block_schema_provider.rs +0 -225
- bundlebase-0.3.0/rust/bundlebase/src/catalog/bundle_schema_provider.rs +0 -111
- bundlebase-0.3.0/rust/bundlebase/src/catalog/pack_schema_provider.rs +0 -250
- bundlebase-0.3.0/rust/bundlebase/src/catalog.rs +0 -14
- bundlebase-0.3.0/rust/bundlebase/src/data/plugin/csv_reader.rs +0 -633
- bundlebase-0.3.0/rust/bundlebase/src/data/plugin.rs +0 -36
- bundlebase-0.3.0/rust/bundlebase/src/index/index_definition.rs +0 -87
- bundlebase-0.3.0/rust/bundlebase/src/index.rs +0 -14
- bundlebase-0.3.0/rust/bundlebase/src/source.rs +0 -15
- bundlebase-0.3.0/rust/bundlebase/tests/bundle_schema_e2e.rs +0 -69
- bundlebase-0.3.0/rust/bundlebase/tests/select_e2e.rs +0 -161
- bundlebase-0.3.0/rust/bundlebase-python/src/bundle_config.rs +0 -71
- bundlebase-0.3.0/rust/bundlebase-python/src/utils.rs +0 -49
- {bundlebase-0.3.0 → bundlebase-0.5.0}/LICENSE +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/README.md +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/python/src/bundlebase/_loop_manager.py +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/python/src/bundlebase/chain.py +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/python/src/bundlebase/progress.py +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/column_lineage.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/data_block.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/indexed_blocks.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/init.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/bundle/pack.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/data/plugin/mock.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/data/rowid_provider.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/data/rowid_stream.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/data/versioned_blockid.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/functions/function_batch_generator.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/functions/function_datasource.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/functions/function_impl.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/functions/function_registry.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/functions/static_impl.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/functions.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/index/filter_analyzer.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/index/index_selector.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/index/rowid_index.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/io/file_info.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/io/plugin/tar.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/io/util.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/metrics/logging.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/metrics/progress.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/metrics.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/object_id.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/progress/logging.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/progress/mock.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/progress/registry.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/progress.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/row_id.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/src/versioning.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/tests/blocks_e2e.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/tests/functions_e2e.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase/tests/join_e2e.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase-python/Cargo.toml +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase-python/src/commit.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase-python/src/data_generator.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase-python/src/function_impl.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase-python/src/progress.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase-python/src/record_batch_stream.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase-python/src/schema.rs +0 -0
- {bundlebase-0.3.0 → bundlebase-0.5.0}/rust/bundlebase-python/src/session_context.rs +0 -0
|
@@ -148,9 +148,9 @@ dependencies = [
|
|
|
148
148
|
|
|
149
149
|
[[package]]
|
|
150
150
|
name = "anyhow"
|
|
151
|
-
version = "1.0.
|
|
151
|
+
version = "1.0.101"
|
|
152
152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
-
checksum = "
|
|
153
|
+
checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
|
|
154
154
|
|
|
155
155
|
[[package]]
|
|
156
156
|
name = "apache-avro"
|
|
@@ -176,25 +176,25 @@ dependencies = [
|
|
|
176
176
|
"snap",
|
|
177
177
|
"strum 0.27.2",
|
|
178
178
|
"strum_macros 0.27.2",
|
|
179
|
-
"thiserror 2.0.
|
|
179
|
+
"thiserror 2.0.18",
|
|
180
180
|
"uuid",
|
|
181
181
|
"zstd",
|
|
182
182
|
]
|
|
183
183
|
|
|
184
184
|
[[package]]
|
|
185
185
|
name = "ar_archive_writer"
|
|
186
|
-
version = "0.
|
|
186
|
+
version = "0.5.1"
|
|
187
187
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
-
checksum = "
|
|
188
|
+
checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b"
|
|
189
189
|
dependencies = [
|
|
190
190
|
"object",
|
|
191
191
|
]
|
|
192
192
|
|
|
193
193
|
[[package]]
|
|
194
194
|
name = "arc-swap"
|
|
195
|
-
version = "1.8.
|
|
195
|
+
version = "1.8.1"
|
|
196
196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
-
checksum = "
|
|
197
|
+
checksum = "9ded5f9a03ac8f24d1b8a25101ee812cd32cdc8c50a4c50237de2c4915850e73"
|
|
198
198
|
dependencies = [
|
|
199
199
|
"rustversion",
|
|
200
200
|
]
|
|
@@ -213,9 +213,9 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
|
213
213
|
|
|
214
214
|
[[package]]
|
|
215
215
|
name = "arrow"
|
|
216
|
-
version = "57.
|
|
216
|
+
version = "57.3.0"
|
|
217
217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
-
checksum = "
|
|
218
|
+
checksum = "e4754a624e5ae42081f464514be454b39711daae0458906dacde5f4c632f33a8"
|
|
219
219
|
dependencies = [
|
|
220
220
|
"arrow-arith",
|
|
221
221
|
"arrow-array",
|
|
@@ -235,9 +235,9 @@ dependencies = [
|
|
|
235
235
|
|
|
236
236
|
[[package]]
|
|
237
237
|
name = "arrow-arith"
|
|
238
|
-
version = "57.
|
|
238
|
+
version = "57.3.0"
|
|
239
239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
-
checksum = "
|
|
240
|
+
checksum = "f7b3141e0ec5145a22d8694ea8b6d6f69305971c4fa1c1a13ef0195aef2d678b"
|
|
241
241
|
dependencies = [
|
|
242
242
|
"arrow-array",
|
|
243
243
|
"arrow-buffer",
|
|
@@ -249,9 +249,9 @@ dependencies = [
|
|
|
249
249
|
|
|
250
250
|
[[package]]
|
|
251
251
|
name = "arrow-array"
|
|
252
|
-
version = "57.
|
|
252
|
+
version = "57.3.0"
|
|
253
253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
-
checksum = "
|
|
254
|
+
checksum = "4c8955af33b25f3b175ee10af580577280b4bd01f7e823d94c7cdef7cf8c9aef"
|
|
255
255
|
dependencies = [
|
|
256
256
|
"ahash",
|
|
257
257
|
"arrow-buffer",
|
|
@@ -268,9 +268,9 @@ dependencies = [
|
|
|
268
268
|
|
|
269
269
|
[[package]]
|
|
270
270
|
name = "arrow-buffer"
|
|
271
|
-
version = "57.
|
|
271
|
+
version = "57.3.0"
|
|
272
272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
-
checksum = "
|
|
273
|
+
checksum = "c697ddca96183182f35b3a18e50b9110b11e916d7b7799cbfd4d34662f2c56c2"
|
|
274
274
|
dependencies = [
|
|
275
275
|
"bytes",
|
|
276
276
|
"half",
|
|
@@ -280,9 +280,9 @@ dependencies = [
|
|
|
280
280
|
|
|
281
281
|
[[package]]
|
|
282
282
|
name = "arrow-cast"
|
|
283
|
-
version = "57.
|
|
283
|
+
version = "57.3.0"
|
|
284
284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
-
checksum = "
|
|
285
|
+
checksum = "646bbb821e86fd57189c10b4fcdaa941deaf4181924917b0daa92735baa6ada5"
|
|
286
286
|
dependencies = [
|
|
287
287
|
"arrow-array",
|
|
288
288
|
"arrow-buffer",
|
|
@@ -302,9 +302,9 @@ dependencies = [
|
|
|
302
302
|
|
|
303
303
|
[[package]]
|
|
304
304
|
name = "arrow-csv"
|
|
305
|
-
version = "57.
|
|
305
|
+
version = "57.3.0"
|
|
306
306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
-
checksum = "
|
|
307
|
+
checksum = "8da746f4180004e3ce7b83c977daf6394d768332349d3d913998b10a120b790a"
|
|
308
308
|
dependencies = [
|
|
309
309
|
"arrow-array",
|
|
310
310
|
"arrow-cast",
|
|
@@ -317,9 +317,9 @@ dependencies = [
|
|
|
317
317
|
|
|
318
318
|
[[package]]
|
|
319
319
|
name = "arrow-data"
|
|
320
|
-
version = "57.
|
|
320
|
+
version = "57.3.0"
|
|
321
321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
-
checksum = "
|
|
322
|
+
checksum = "1fdd994a9d28e6365aa78e15da3f3950c0fdcea6b963a12fa1c391afb637b304"
|
|
323
323
|
dependencies = [
|
|
324
324
|
"arrow-buffer",
|
|
325
325
|
"arrow-schema",
|
|
@@ -330,18 +330,26 @@ dependencies = [
|
|
|
330
330
|
|
|
331
331
|
[[package]]
|
|
332
332
|
name = "arrow-flight"
|
|
333
|
-
version = "57.
|
|
333
|
+
version = "57.3.0"
|
|
334
334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
-
checksum = "
|
|
335
|
+
checksum = "58c5b083668e6230eae3eab2fc4b5fb989974c845d0aa538dde61a4327c78675"
|
|
336
336
|
dependencies = [
|
|
337
|
+
"arrow-arith",
|
|
337
338
|
"arrow-array",
|
|
338
339
|
"arrow-buffer",
|
|
339
340
|
"arrow-cast",
|
|
341
|
+
"arrow-data",
|
|
340
342
|
"arrow-ipc",
|
|
343
|
+
"arrow-ord",
|
|
344
|
+
"arrow-row",
|
|
341
345
|
"arrow-schema",
|
|
346
|
+
"arrow-select",
|
|
347
|
+
"arrow-string",
|
|
342
348
|
"base64",
|
|
343
349
|
"bytes",
|
|
344
350
|
"futures",
|
|
351
|
+
"once_cell",
|
|
352
|
+
"paste",
|
|
345
353
|
"prost",
|
|
346
354
|
"prost-types",
|
|
347
355
|
"tonic",
|
|
@@ -350,9 +358,9 @@ dependencies = [
|
|
|
350
358
|
|
|
351
359
|
[[package]]
|
|
352
360
|
name = "arrow-ipc"
|
|
353
|
-
version = "57.
|
|
361
|
+
version = "57.3.0"
|
|
354
362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
-
checksum = "
|
|
363
|
+
checksum = "abf7df950701ab528bf7c0cf7eeadc0445d03ef5d6ffc151eaae6b38a58feff1"
|
|
356
364
|
dependencies = [
|
|
357
365
|
"arrow-array",
|
|
358
366
|
"arrow-buffer",
|
|
@@ -360,15 +368,15 @@ dependencies = [
|
|
|
360
368
|
"arrow-schema",
|
|
361
369
|
"arrow-select",
|
|
362
370
|
"flatbuffers",
|
|
363
|
-
"lz4_flex",
|
|
371
|
+
"lz4_flex 0.12.0",
|
|
364
372
|
"zstd",
|
|
365
373
|
]
|
|
366
374
|
|
|
367
375
|
[[package]]
|
|
368
376
|
name = "arrow-json"
|
|
369
|
-
version = "57.
|
|
377
|
+
version = "57.3.0"
|
|
370
378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
-
checksum = "
|
|
379
|
+
checksum = "0ff8357658bedc49792b13e2e862b80df908171275f8e6e075c460da5ee4bf86"
|
|
372
380
|
dependencies = [
|
|
373
381
|
"arrow-array",
|
|
374
382
|
"arrow-buffer",
|
|
@@ -390,9 +398,9 @@ dependencies = [
|
|
|
390
398
|
|
|
391
399
|
[[package]]
|
|
392
400
|
name = "arrow-ord"
|
|
393
|
-
version = "57.
|
|
401
|
+
version = "57.3.0"
|
|
394
402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
-
checksum = "
|
|
403
|
+
checksum = "f7d8f1870e03d4cbed632959498bcc84083b5a24bded52905ae1695bd29da45b"
|
|
396
404
|
dependencies = [
|
|
397
405
|
"arrow-array",
|
|
398
406
|
"arrow-buffer",
|
|
@@ -403,9 +411,9 @@ dependencies = [
|
|
|
403
411
|
|
|
404
412
|
[[package]]
|
|
405
413
|
name = "arrow-pyarrow"
|
|
406
|
-
version = "57.
|
|
414
|
+
version = "57.3.0"
|
|
407
415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
-
checksum = "
|
|
416
|
+
checksum = "d18c442b4c266aaf3d7f7dd40fd7ae058cef7f113b00ff0cd8256e1e218ec544"
|
|
409
417
|
dependencies = [
|
|
410
418
|
"arrow-array",
|
|
411
419
|
"arrow-data",
|
|
@@ -415,9 +423,9 @@ dependencies = [
|
|
|
415
423
|
|
|
416
424
|
[[package]]
|
|
417
425
|
name = "arrow-row"
|
|
418
|
-
version = "57.
|
|
426
|
+
version = "57.3.0"
|
|
419
427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
-
checksum = "
|
|
428
|
+
checksum = "18228633bad92bff92a95746bbeb16e5fc318e8382b75619dec26db79e4de4c0"
|
|
421
429
|
dependencies = [
|
|
422
430
|
"arrow-array",
|
|
423
431
|
"arrow-buffer",
|
|
@@ -428,9 +436,9 @@ dependencies = [
|
|
|
428
436
|
|
|
429
437
|
[[package]]
|
|
430
438
|
name = "arrow-schema"
|
|
431
|
-
version = "57.
|
|
439
|
+
version = "57.3.0"
|
|
432
440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
-
checksum = "
|
|
441
|
+
checksum = "8c872d36b7bf2a6a6a2b40de9156265f0242910791db366a2c17476ba8330d68"
|
|
434
442
|
dependencies = [
|
|
435
443
|
"bitflags",
|
|
436
444
|
"serde",
|
|
@@ -440,9 +448,9 @@ dependencies = [
|
|
|
440
448
|
|
|
441
449
|
[[package]]
|
|
442
450
|
name = "arrow-select"
|
|
443
|
-
version = "57.
|
|
451
|
+
version = "57.3.0"
|
|
444
452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
-
checksum = "
|
|
453
|
+
checksum = "68bf3e3efbd1278f770d67e5dc410257300b161b93baedb3aae836144edcaf4b"
|
|
446
454
|
dependencies = [
|
|
447
455
|
"ahash",
|
|
448
456
|
"arrow-array",
|
|
@@ -454,9 +462,9 @@ dependencies = [
|
|
|
454
462
|
|
|
455
463
|
[[package]]
|
|
456
464
|
name = "arrow-string"
|
|
457
|
-
version = "57.
|
|
465
|
+
version = "57.3.0"
|
|
458
466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
-
checksum = "
|
|
467
|
+
checksum = "85e968097061b3c0e9fe3079cf2e703e487890700546b5b0647f60fca1b5a8d8"
|
|
460
468
|
dependencies = [
|
|
461
469
|
"arrow-array",
|
|
462
470
|
"arrow-buffer",
|
|
@@ -469,11 +477,21 @@ dependencies = [
|
|
|
469
477
|
"regex-syntax",
|
|
470
478
|
]
|
|
471
479
|
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "assert-json-diff"
|
|
482
|
+
version = "2.0.2"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"serde",
|
|
487
|
+
"serde_json",
|
|
488
|
+
]
|
|
489
|
+
|
|
472
490
|
[[package]]
|
|
473
491
|
name = "async-compression"
|
|
474
|
-
version = "0.4.
|
|
492
|
+
version = "0.4.39"
|
|
475
493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
-
checksum = "
|
|
494
|
+
checksum = "68650b7df54f0293fd061972a0fb05aaf4fc0879d3b3d21a638a182c5c543b9f"
|
|
477
495
|
dependencies = [
|
|
478
496
|
"compression-codecs",
|
|
479
497
|
"compression-core",
|
|
@@ -537,9 +555,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
|
537
555
|
|
|
538
556
|
[[package]]
|
|
539
557
|
name = "aws-lc-rs"
|
|
540
|
-
version = "1.15.
|
|
558
|
+
version = "1.15.4"
|
|
541
559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
-
checksum = "
|
|
560
|
+
checksum = "7b7b6141e96a8c160799cc2d5adecd5cbbe5054cb8c7c4af53da0f83bb7ad256"
|
|
543
561
|
dependencies = [
|
|
544
562
|
"aws-lc-sys",
|
|
545
563
|
"zeroize",
|
|
@@ -547,9 +565,9 @@ dependencies = [
|
|
|
547
565
|
|
|
548
566
|
[[package]]
|
|
549
567
|
name = "aws-lc-sys"
|
|
550
|
-
version = "0.
|
|
568
|
+
version = "0.37.0"
|
|
551
569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
-
checksum = "
|
|
570
|
+
checksum = "5c34dda4df7017c8db52132f0f8a2e0f8161649d15723ed63fc00c82d0f2081a"
|
|
553
571
|
dependencies = [
|
|
554
572
|
"cc",
|
|
555
573
|
"cmake",
|
|
@@ -652,6 +670,15 @@ dependencies = [
|
|
|
652
670
|
"serde_core",
|
|
653
671
|
]
|
|
654
672
|
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "bitpacking"
|
|
675
|
+
version = "0.9.3"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "96a7139abd3d9cebf8cd6f920a389cf3dc9576172e32f4563f188cae3c3eb019"
|
|
678
|
+
dependencies = [
|
|
679
|
+
"crunchy",
|
|
680
|
+
]
|
|
681
|
+
|
|
655
682
|
[[package]]
|
|
656
683
|
name = "blake2"
|
|
657
684
|
version = "0.10.6"
|
|
@@ -757,7 +784,7 @@ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
|
757
784
|
|
|
758
785
|
[[package]]
|
|
759
786
|
name = "bundlebase"
|
|
760
|
-
version = "0.
|
|
787
|
+
version = "0.5.0"
|
|
761
788
|
dependencies = [
|
|
762
789
|
"arrow",
|
|
763
790
|
"arrow-schema",
|
|
@@ -783,7 +810,7 @@ dependencies = [
|
|
|
783
810
|
"postgres-types",
|
|
784
811
|
"rand 0.9.2",
|
|
785
812
|
"regex",
|
|
786
|
-
"reqwest 0.13.
|
|
813
|
+
"reqwest 0.13.2",
|
|
787
814
|
"rstest",
|
|
788
815
|
"russh",
|
|
789
816
|
"russh-keys",
|
|
@@ -791,50 +818,62 @@ dependencies = [
|
|
|
791
818
|
"scraper",
|
|
792
819
|
"serde",
|
|
793
820
|
"serde_json",
|
|
794
|
-
"
|
|
821
|
+
"serde_yaml_ng",
|
|
795
822
|
"serial_test",
|
|
796
823
|
"sha2",
|
|
797
824
|
"shellexpand",
|
|
798
|
-
"sqlparser 0.60.0",
|
|
799
825
|
"suppaftp",
|
|
826
|
+
"tantivy",
|
|
800
827
|
"tar",
|
|
801
828
|
"tempfile",
|
|
802
829
|
"tokio",
|
|
803
830
|
"tokio-postgres",
|
|
831
|
+
"tracing",
|
|
804
832
|
"url",
|
|
805
833
|
"uuid",
|
|
834
|
+
"wiremock",
|
|
835
|
+
"zip",
|
|
806
836
|
]
|
|
807
837
|
|
|
808
838
|
[[package]]
|
|
809
839
|
name = "bundlebase-cli"
|
|
810
|
-
version = "0.
|
|
840
|
+
version = "0.5.0"
|
|
811
841
|
dependencies = [
|
|
812
842
|
"anyhow",
|
|
813
843
|
"arrow",
|
|
814
844
|
"arrow-flight",
|
|
815
845
|
"arrow-schema",
|
|
816
846
|
"async-stream",
|
|
847
|
+
"async-trait",
|
|
848
|
+
"base64",
|
|
817
849
|
"bundlebase",
|
|
818
850
|
"bytes",
|
|
819
851
|
"clap",
|
|
820
852
|
"comfy-table",
|
|
821
853
|
"datafusion",
|
|
854
|
+
"dirs 5.0.1",
|
|
822
855
|
"futures",
|
|
823
856
|
"indicatif",
|
|
857
|
+
"once_cell",
|
|
824
858
|
"parking_lot",
|
|
859
|
+
"prost",
|
|
825
860
|
"reedline",
|
|
861
|
+
"rstest",
|
|
826
862
|
"serde",
|
|
827
|
-
"
|
|
863
|
+
"serde_json",
|
|
864
|
+
"serde_yaml_ng",
|
|
865
|
+
"tempfile",
|
|
828
866
|
"tokio",
|
|
829
867
|
"tonic",
|
|
830
868
|
"tracing",
|
|
831
869
|
"tracing-log",
|
|
832
870
|
"tracing-subscriber",
|
|
871
|
+
"uuid",
|
|
833
872
|
]
|
|
834
873
|
|
|
835
874
|
[[package]]
|
|
836
875
|
name = "bundlebase-python"
|
|
837
|
-
version = "0.
|
|
876
|
+
version = "0.5.0"
|
|
838
877
|
dependencies = [
|
|
839
878
|
"arrow",
|
|
840
879
|
"arrow-schema",
|
|
@@ -856,9 +895,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
856
895
|
|
|
857
896
|
[[package]]
|
|
858
897
|
name = "bytes"
|
|
859
|
-
version = "1.11.
|
|
898
|
+
version = "1.11.1"
|
|
860
899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
-
checksum = "
|
|
900
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
862
901
|
|
|
863
902
|
[[package]]
|
|
864
903
|
name = "bzip2"
|
|
@@ -880,9 +919,9 @@ dependencies = [
|
|
|
880
919
|
|
|
881
920
|
[[package]]
|
|
882
921
|
name = "cc"
|
|
883
|
-
version = "1.2.
|
|
922
|
+
version = "1.2.55"
|
|
884
923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
-
checksum = "
|
|
924
|
+
checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
|
|
886
925
|
dependencies = [
|
|
887
926
|
"find-msvc-tools",
|
|
888
927
|
"jobserver",
|
|
@@ -890,6 +929,12 @@ dependencies = [
|
|
|
890
929
|
"shlex",
|
|
891
930
|
]
|
|
892
931
|
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "census"
|
|
934
|
+
version = "0.4.2"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0"
|
|
937
|
+
|
|
893
938
|
[[package]]
|
|
894
939
|
name = "cesu8"
|
|
895
940
|
version = "1.1.0"
|
|
@@ -955,9 +1000,9 @@ dependencies = [
|
|
|
955
1000
|
|
|
956
1001
|
[[package]]
|
|
957
1002
|
name = "clap"
|
|
958
|
-
version = "4.5.
|
|
1003
|
+
version = "4.5.57"
|
|
959
1004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
-
checksum = "
|
|
1005
|
+
checksum = "6899ea499e3fb9305a65d5ebf6e3d2248c5fab291f300ad0a704fbe142eae31a"
|
|
961
1006
|
dependencies = [
|
|
962
1007
|
"clap_builder",
|
|
963
1008
|
"clap_derive",
|
|
@@ -965,9 +1010,9 @@ dependencies = [
|
|
|
965
1010
|
|
|
966
1011
|
[[package]]
|
|
967
1012
|
name = "clap_builder"
|
|
968
|
-
version = "4.5.
|
|
1013
|
+
version = "4.5.57"
|
|
969
1014
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
-
checksum = "
|
|
1015
|
+
checksum = "7b12c8b680195a62a8364d16b8447b01b6c2c8f9aaf68bee653be34d4245e238"
|
|
971
1016
|
dependencies = [
|
|
972
1017
|
"anstream",
|
|
973
1018
|
"anstyle",
|
|
@@ -977,9 +1022,9 @@ dependencies = [
|
|
|
977
1022
|
|
|
978
1023
|
[[package]]
|
|
979
1024
|
name = "clap_derive"
|
|
980
|
-
version = "4.5.
|
|
1025
|
+
version = "4.5.55"
|
|
981
1026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
-
checksum = "
|
|
1027
|
+
checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
|
|
983
1028
|
dependencies = [
|
|
984
1029
|
"heck",
|
|
985
1030
|
"proc-macro2",
|
|
@@ -1129,6 +1174,34 @@ dependencies = [
|
|
|
1129
1174
|
"cfg-if",
|
|
1130
1175
|
]
|
|
1131
1176
|
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "crossbeam-channel"
|
|
1179
|
+
version = "0.5.15"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
1182
|
+
dependencies = [
|
|
1183
|
+
"crossbeam-utils",
|
|
1184
|
+
]
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "crossbeam-deque"
|
|
1188
|
+
version = "0.8.6"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
1191
|
+
dependencies = [
|
|
1192
|
+
"crossbeam-epoch",
|
|
1193
|
+
"crossbeam-utils",
|
|
1194
|
+
]
|
|
1195
|
+
|
|
1196
|
+
[[package]]
|
|
1197
|
+
name = "crossbeam-epoch"
|
|
1198
|
+
version = "0.9.18"
|
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
1201
|
+
dependencies = [
|
|
1202
|
+
"crossbeam-utils",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1132
1205
|
[[package]]
|
|
1133
1206
|
name = "crossbeam-utils"
|
|
1134
1207
|
version = "0.8.21"
|
|
@@ -1340,9 +1413,9 @@ checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
|
|
|
1340
1413
|
|
|
1341
1414
|
[[package]]
|
|
1342
1415
|
name = "datafusion"
|
|
1343
|
-
version = "52.
|
|
1416
|
+
version = "52.1.0"
|
|
1344
1417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
-
checksum = "
|
|
1418
|
+
checksum = "d12ee9fdc6cdb5898c7691bb994f0ba606c4acc93a2258d78bb9f26ff8158bb3"
|
|
1346
1419
|
dependencies = [
|
|
1347
1420
|
"arrow",
|
|
1348
1421
|
"arrow-schema",
|
|
@@ -1386,7 +1459,7 @@ dependencies = [
|
|
|
1386
1459
|
"parquet",
|
|
1387
1460
|
"rand 0.9.2",
|
|
1388
1461
|
"regex",
|
|
1389
|
-
"sqlparser
|
|
1462
|
+
"sqlparser",
|
|
1390
1463
|
"tempfile",
|
|
1391
1464
|
"tokio",
|
|
1392
1465
|
"url",
|
|
@@ -1396,9 +1469,9 @@ dependencies = [
|
|
|
1396
1469
|
|
|
1397
1470
|
[[package]]
|
|
1398
1471
|
name = "datafusion-catalog"
|
|
1399
|
-
version = "52.
|
|
1472
|
+
version = "52.1.0"
|
|
1400
1473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
-
checksum = "
|
|
1474
|
+
checksum = "462dc9ef45e5d688aeaae49a7e310587e81b6016b9d03bace5626ad0043e5a9e"
|
|
1402
1475
|
dependencies = [
|
|
1403
1476
|
"arrow",
|
|
1404
1477
|
"async-trait",
|
|
@@ -1421,9 +1494,9 @@ dependencies = [
|
|
|
1421
1494
|
|
|
1422
1495
|
[[package]]
|
|
1423
1496
|
name = "datafusion-catalog-listing"
|
|
1424
|
-
version = "52.
|
|
1497
|
+
version = "52.1.0"
|
|
1425
1498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
-
checksum = "
|
|
1499
|
+
checksum = "1b96dbf1d728fc321817b744eb5080cdd75312faa6980b338817f68f3caa4208"
|
|
1427
1500
|
dependencies = [
|
|
1428
1501
|
"arrow",
|
|
1429
1502
|
"async-trait",
|
|
@@ -1444,9 +1517,9 @@ dependencies = [
|
|
|
1444
1517
|
|
|
1445
1518
|
[[package]]
|
|
1446
1519
|
name = "datafusion-common"
|
|
1447
|
-
version = "52.
|
|
1520
|
+
version = "52.1.0"
|
|
1448
1521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
-
checksum = "
|
|
1522
|
+
checksum = "3237a6ff0d2149af4631290074289cae548c9863c885d821315d54c6673a074a"
|
|
1450
1523
|
dependencies = [
|
|
1451
1524
|
"ahash",
|
|
1452
1525
|
"apache-avro",
|
|
@@ -1462,16 +1535,16 @@ dependencies = [
|
|
|
1462
1535
|
"parquet",
|
|
1463
1536
|
"paste",
|
|
1464
1537
|
"recursive",
|
|
1465
|
-
"sqlparser
|
|
1538
|
+
"sqlparser",
|
|
1466
1539
|
"tokio",
|
|
1467
1540
|
"web-time",
|
|
1468
1541
|
]
|
|
1469
1542
|
|
|
1470
1543
|
[[package]]
|
|
1471
1544
|
name = "datafusion-common-runtime"
|
|
1472
|
-
version = "52.
|
|
1545
|
+
version = "52.1.0"
|
|
1473
1546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
-
checksum = "
|
|
1547
|
+
checksum = "70b5e34026af55a1bfccb1ef0a763cf1f64e77c696ffcf5a128a278c31236528"
|
|
1475
1548
|
dependencies = [
|
|
1476
1549
|
"futures",
|
|
1477
1550
|
"log",
|
|
@@ -1480,9 +1553,9 @@ dependencies = [
|
|
|
1480
1553
|
|
|
1481
1554
|
[[package]]
|
|
1482
1555
|
name = "datafusion-datasource"
|
|
1483
|
-
version = "52.
|
|
1556
|
+
version = "52.1.0"
|
|
1484
1557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
-
checksum = "
|
|
1558
|
+
checksum = "1b2a6be734cc3785e18bbf2a7f2b22537f6b9fb960d79617775a51568c281842"
|
|
1486
1559
|
dependencies = [
|
|
1487
1560
|
"arrow",
|
|
1488
1561
|
"async-compression",
|
|
@@ -1515,9 +1588,9 @@ dependencies = [
|
|
|
1515
1588
|
|
|
1516
1589
|
[[package]]
|
|
1517
1590
|
name = "datafusion-datasource-arrow"
|
|
1518
|
-
version = "52.
|
|
1591
|
+
version = "52.1.0"
|
|
1519
1592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
-
checksum = "
|
|
1593
|
+
checksum = "1739b9b07c9236389e09c74f770e88aff7055250774e9def7d3f4f56b3dcc7be"
|
|
1521
1594
|
dependencies = [
|
|
1522
1595
|
"arrow",
|
|
1523
1596
|
"arrow-ipc",
|
|
@@ -1539,9 +1612,9 @@ dependencies = [
|
|
|
1539
1612
|
|
|
1540
1613
|
[[package]]
|
|
1541
1614
|
name = "datafusion-datasource-avro"
|
|
1542
|
-
version = "52.
|
|
1615
|
+
version = "52.1.0"
|
|
1543
1616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
-
checksum = "
|
|
1617
|
+
checksum = "828088c2fb681cc0e06fb42f541f76c82a0c10278f9fd6334e22c8d1e3574ee7"
|
|
1545
1618
|
dependencies = [
|
|
1546
1619
|
"apache-avro",
|
|
1547
1620
|
"arrow",
|
|
@@ -1559,9 +1632,9 @@ dependencies = [
|
|
|
1559
1632
|
|
|
1560
1633
|
[[package]]
|
|
1561
1634
|
name = "datafusion-datasource-csv"
|
|
1562
|
-
version = "52.
|
|
1635
|
+
version = "52.1.0"
|
|
1563
1636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1564
|
-
checksum = "
|
|
1637
|
+
checksum = "61c73bc54b518bbba7c7650299d07d58730293cfba4356f6f428cc94c20b7600"
|
|
1565
1638
|
dependencies = [
|
|
1566
1639
|
"arrow",
|
|
1567
1640
|
"async-trait",
|
|
@@ -1582,9 +1655,9 @@ dependencies = [
|
|
|
1582
1655
|
|
|
1583
1656
|
[[package]]
|
|
1584
1657
|
name = "datafusion-datasource-json"
|
|
1585
|
-
version = "52.
|
|
1658
|
+
version = "52.1.0"
|
|
1586
1659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
-
checksum = "
|
|
1660
|
+
checksum = "37812c8494c698c4d889374ecfabbff780f1f26d9ec095dd1bddfc2a8ca12559"
|
|
1588
1661
|
dependencies = [
|
|
1589
1662
|
"arrow",
|
|
1590
1663
|
"async-trait",
|
|
@@ -1604,9 +1677,9 @@ dependencies = [
|
|
|
1604
1677
|
|
|
1605
1678
|
[[package]]
|
|
1606
1679
|
name = "datafusion-datasource-parquet"
|
|
1607
|
-
version = "52.
|
|
1680
|
+
version = "52.1.0"
|
|
1608
1681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
-
checksum = "
|
|
1682
|
+
checksum = "2210937ecd9f0e824c397e73f4b5385c97cd1aff43ab2b5836fcfd2d321523fb"
|
|
1610
1683
|
dependencies = [
|
|
1611
1684
|
"arrow",
|
|
1612
1685
|
"async-trait",
|
|
@@ -1634,15 +1707,15 @@ dependencies = [
|
|
|
1634
1707
|
|
|
1635
1708
|
[[package]]
|
|
1636
1709
|
name = "datafusion-doc"
|
|
1637
|
-
version = "52.
|
|
1710
|
+
version = "52.1.0"
|
|
1638
1711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1639
|
-
checksum = "
|
|
1712
|
+
checksum = "2c825f969126bc2ef6a6a02d94b3c07abff871acf4d6dd759ce1255edb7923ce"
|
|
1640
1713
|
|
|
1641
1714
|
[[package]]
|
|
1642
1715
|
name = "datafusion-execution"
|
|
1643
|
-
version = "52.
|
|
1716
|
+
version = "52.1.0"
|
|
1644
1717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
-
checksum = "
|
|
1718
|
+
checksum = "fa03ef05a2c2f90dd6c743e3e111078e322f4b395d20d4b4d431a245d79521ae"
|
|
1646
1719
|
dependencies = [
|
|
1647
1720
|
"arrow",
|
|
1648
1721
|
"async-trait",
|
|
@@ -1661,9 +1734,9 @@ dependencies = [
|
|
|
1661
1734
|
|
|
1662
1735
|
[[package]]
|
|
1663
1736
|
name = "datafusion-expr"
|
|
1664
|
-
version = "52.
|
|
1737
|
+
version = "52.1.0"
|
|
1665
1738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
-
checksum = "
|
|
1739
|
+
checksum = "ef33934c1f98ee695cc51192cc5f9ed3a8febee84fdbcd9131bf9d3a9a78276f"
|
|
1667
1740
|
dependencies = [
|
|
1668
1741
|
"arrow",
|
|
1669
1742
|
"async-trait",
|
|
@@ -1679,14 +1752,14 @@ dependencies = [
|
|
|
1679
1752
|
"paste",
|
|
1680
1753
|
"recursive",
|
|
1681
1754
|
"serde_json",
|
|
1682
|
-
"sqlparser
|
|
1755
|
+
"sqlparser",
|
|
1683
1756
|
]
|
|
1684
1757
|
|
|
1685
1758
|
[[package]]
|
|
1686
1759
|
name = "datafusion-expr-common"
|
|
1687
|
-
version = "52.
|
|
1760
|
+
version = "52.1.0"
|
|
1688
1761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
-
checksum = "
|
|
1762
|
+
checksum = "000c98206e3dd47d2939a94b6c67af4bfa6732dd668ac4fafdbde408fd9134ea"
|
|
1690
1763
|
dependencies = [
|
|
1691
1764
|
"arrow",
|
|
1692
1765
|
"datafusion-common",
|
|
@@ -1697,9 +1770,9 @@ dependencies = [
|
|
|
1697
1770
|
|
|
1698
1771
|
[[package]]
|
|
1699
1772
|
name = "datafusion-functions"
|
|
1700
|
-
version = "52.
|
|
1773
|
+
version = "52.1.0"
|
|
1701
1774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
-
checksum = "
|
|
1775
|
+
checksum = "379b01418ab95ca947014066248c22139fe9af9289354de10b445bd000d5d276"
|
|
1703
1776
|
dependencies = [
|
|
1704
1777
|
"arrow",
|
|
1705
1778
|
"arrow-buffer",
|
|
@@ -1728,9 +1801,9 @@ dependencies = [
|
|
|
1728
1801
|
|
|
1729
1802
|
[[package]]
|
|
1730
1803
|
name = "datafusion-functions-aggregate"
|
|
1731
|
-
version = "52.
|
|
1804
|
+
version = "52.1.0"
|
|
1732
1805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1733
|
-
checksum = "
|
|
1806
|
+
checksum = "fd00d5454ba4c3f8ebbd04bd6a6a9dc7ced7c56d883f70f2076c188be8459e4c"
|
|
1734
1807
|
dependencies = [
|
|
1735
1808
|
"ahash",
|
|
1736
1809
|
"arrow",
|
|
@@ -1749,9 +1822,9 @@ dependencies = [
|
|
|
1749
1822
|
|
|
1750
1823
|
[[package]]
|
|
1751
1824
|
name = "datafusion-functions-aggregate-common"
|
|
1752
|
-
version = "52.
|
|
1825
|
+
version = "52.1.0"
|
|
1753
1826
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1754
|
-
checksum = "
|
|
1827
|
+
checksum = "aec06b380729a87210a4e11f555ec2d729a328142253f8d557b87593622ecc9f"
|
|
1755
1828
|
dependencies = [
|
|
1756
1829
|
"ahash",
|
|
1757
1830
|
"arrow",
|
|
@@ -1762,9 +1835,9 @@ dependencies = [
|
|
|
1762
1835
|
|
|
1763
1836
|
[[package]]
|
|
1764
1837
|
name = "datafusion-functions-nested"
|
|
1765
|
-
version = "52.
|
|
1838
|
+
version = "52.1.0"
|
|
1766
1839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
-
checksum = "
|
|
1840
|
+
checksum = "904f48d45e0f1eb7d0eb5c0f80f2b5c6046a85454364a6b16a2e0b46f62e7dff"
|
|
1768
1841
|
dependencies = [
|
|
1769
1842
|
"arrow",
|
|
1770
1843
|
"arrow-ord",
|
|
@@ -1785,9 +1858,9 @@ dependencies = [
|
|
|
1785
1858
|
|
|
1786
1859
|
[[package]]
|
|
1787
1860
|
name = "datafusion-functions-table"
|
|
1788
|
-
version = "52.
|
|
1861
|
+
version = "52.1.0"
|
|
1789
1862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
-
checksum = "
|
|
1863
|
+
checksum = "e9a0d20e2b887e11bee24f7734d780a2588b925796ac741c3118dd06d5aa77f0"
|
|
1791
1864
|
dependencies = [
|
|
1792
1865
|
"arrow",
|
|
1793
1866
|
"async-trait",
|
|
@@ -1801,9 +1874,9 @@ dependencies = [
|
|
|
1801
1874
|
|
|
1802
1875
|
[[package]]
|
|
1803
1876
|
name = "datafusion-functions-window"
|
|
1804
|
-
version = "52.
|
|
1877
|
+
version = "52.1.0"
|
|
1805
1878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
-
checksum = "
|
|
1879
|
+
checksum = "d3414b0a07e39b6979fe3a69c7aa79a9f1369f1d5c8e52146e66058be1b285ee"
|
|
1807
1880
|
dependencies = [
|
|
1808
1881
|
"arrow",
|
|
1809
1882
|
"datafusion-common",
|
|
@@ -1819,9 +1892,9 @@ dependencies = [
|
|
|
1819
1892
|
|
|
1820
1893
|
[[package]]
|
|
1821
1894
|
name = "datafusion-functions-window-common"
|
|
1822
|
-
version = "52.
|
|
1895
|
+
version = "52.1.0"
|
|
1823
1896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
-
checksum = "
|
|
1897
|
+
checksum = "5bf2feae63cd4754e31add64ce75cae07d015bce4bb41cd09872f93add32523a"
|
|
1825
1898
|
dependencies = [
|
|
1826
1899
|
"datafusion-common",
|
|
1827
1900
|
"datafusion-physical-expr-common",
|
|
@@ -1829,9 +1902,9 @@ dependencies = [
|
|
|
1829
1902
|
|
|
1830
1903
|
[[package]]
|
|
1831
1904
|
name = "datafusion-macros"
|
|
1832
|
-
version = "52.
|
|
1905
|
+
version = "52.1.0"
|
|
1833
1906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1834
|
-
checksum = "
|
|
1907
|
+
checksum = "c4fe888aeb6a095c4bcbe8ac1874c4b9a4c7ffa2ba849db7922683ba20875aaf"
|
|
1835
1908
|
dependencies = [
|
|
1836
1909
|
"datafusion-doc",
|
|
1837
1910
|
"quote",
|
|
@@ -1840,9 +1913,9 @@ dependencies = [
|
|
|
1840
1913
|
|
|
1841
1914
|
[[package]]
|
|
1842
1915
|
name = "datafusion-optimizer"
|
|
1843
|
-
version = "52.
|
|
1916
|
+
version = "52.1.0"
|
|
1844
1917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1845
|
-
checksum = "
|
|
1918
|
+
checksum = "8a6527c063ae305c11be397a86d8193936f4b84d137fe40bd706dfc178cf733c"
|
|
1846
1919
|
dependencies = [
|
|
1847
1920
|
"arrow",
|
|
1848
1921
|
"chrono",
|
|
@@ -1860,9 +1933,9 @@ dependencies = [
|
|
|
1860
1933
|
|
|
1861
1934
|
[[package]]
|
|
1862
1935
|
name = "datafusion-physical-expr"
|
|
1863
|
-
version = "52.
|
|
1936
|
+
version = "52.1.0"
|
|
1864
1937
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1865
|
-
checksum = "
|
|
1938
|
+
checksum = "0bb028323dd4efd049dd8a78d78fe81b2b969447b39c51424167f973ac5811d9"
|
|
1866
1939
|
dependencies = [
|
|
1867
1940
|
"ahash",
|
|
1868
1941
|
"arrow",
|
|
@@ -1884,9 +1957,9 @@ dependencies = [
|
|
|
1884
1957
|
|
|
1885
1958
|
[[package]]
|
|
1886
1959
|
name = "datafusion-physical-expr-adapter"
|
|
1887
|
-
version = "52.
|
|
1960
|
+
version = "52.1.0"
|
|
1888
1961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1889
|
-
checksum = "
|
|
1962
|
+
checksum = "78fe0826aef7eab6b4b61533d811234a7a9e5e458331ebbf94152a51fc8ab433"
|
|
1890
1963
|
dependencies = [
|
|
1891
1964
|
"arrow",
|
|
1892
1965
|
"datafusion-common",
|
|
@@ -1899,9 +1972,9 @@ dependencies = [
|
|
|
1899
1972
|
|
|
1900
1973
|
[[package]]
|
|
1901
1974
|
name = "datafusion-physical-expr-common"
|
|
1902
|
-
version = "52.
|
|
1975
|
+
version = "52.1.0"
|
|
1903
1976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1904
|
-
checksum = "
|
|
1977
|
+
checksum = "cfccd388620734c661bd8b7ca93c44cdd59fecc9b550eea416a78ffcbb29475f"
|
|
1905
1978
|
dependencies = [
|
|
1906
1979
|
"ahash",
|
|
1907
1980
|
"arrow",
|
|
@@ -1916,9 +1989,9 @@ dependencies = [
|
|
|
1916
1989
|
|
|
1917
1990
|
[[package]]
|
|
1918
1991
|
name = "datafusion-physical-optimizer"
|
|
1919
|
-
version = "52.
|
|
1992
|
+
version = "52.1.0"
|
|
1920
1993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
-
checksum = "
|
|
1994
|
+
checksum = "bde5fa10e73259a03b705d5fddc136516814ab5f441b939525618a4070f5a059"
|
|
1922
1995
|
dependencies = [
|
|
1923
1996
|
"arrow",
|
|
1924
1997
|
"datafusion-common",
|
|
@@ -1935,9 +2008,9 @@ dependencies = [
|
|
|
1935
2008
|
|
|
1936
2009
|
[[package]]
|
|
1937
2010
|
name = "datafusion-physical-plan"
|
|
1938
|
-
version = "52.
|
|
2011
|
+
version = "52.1.0"
|
|
1939
2012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
-
checksum = "
|
|
2013
|
+
checksum = "0e1098760fb29127c24cc9ade3277051dc73c9ed0ac0131bd7bcd742e0ad7470"
|
|
1941
2014
|
dependencies = [
|
|
1942
2015
|
"ahash",
|
|
1943
2016
|
"arrow",
|
|
@@ -1966,9 +2039,9 @@ dependencies = [
|
|
|
1966
2039
|
|
|
1967
2040
|
[[package]]
|
|
1968
2041
|
name = "datafusion-pruning"
|
|
1969
|
-
version = "52.
|
|
2042
|
+
version = "52.1.0"
|
|
1970
2043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1971
|
-
checksum = "
|
|
2044
|
+
checksum = "64d0fef4201777b52951edec086c21a5b246f3c82621569ddb4a26f488bc38a9"
|
|
1972
2045
|
dependencies = [
|
|
1973
2046
|
"arrow",
|
|
1974
2047
|
"datafusion-common",
|
|
@@ -1983,9 +2056,9 @@ dependencies = [
|
|
|
1983
2056
|
|
|
1984
2057
|
[[package]]
|
|
1985
2058
|
name = "datafusion-session"
|
|
1986
|
-
version = "52.
|
|
2059
|
+
version = "52.1.0"
|
|
1987
2060
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
|
-
checksum = "
|
|
2061
|
+
checksum = "f71f1e39e8f2acbf1c63b0e93756c2e970a64729dab70ac789587d6237c4fde0"
|
|
1989
2062
|
dependencies = [
|
|
1990
2063
|
"async-trait",
|
|
1991
2064
|
"datafusion-common",
|
|
@@ -1997,9 +2070,9 @@ dependencies = [
|
|
|
1997
2070
|
|
|
1998
2071
|
[[package]]
|
|
1999
2072
|
name = "datafusion-sql"
|
|
2000
|
-
version = "52.
|
|
2073
|
+
version = "52.1.0"
|
|
2001
2074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
-
checksum = "
|
|
2075
|
+
checksum = "f44693cfcaeb7a9f12d71d1c576c3a6dc025a12cef209375fa2d16fb3b5670ee"
|
|
2003
2076
|
dependencies = [
|
|
2004
2077
|
"arrow",
|
|
2005
2078
|
"bigdecimal",
|
|
@@ -2010,9 +2083,27 @@ dependencies = [
|
|
|
2010
2083
|
"log",
|
|
2011
2084
|
"recursive",
|
|
2012
2085
|
"regex",
|
|
2013
|
-
"sqlparser
|
|
2086
|
+
"sqlparser",
|
|
2014
2087
|
]
|
|
2015
2088
|
|
|
2089
|
+
[[package]]
|
|
2090
|
+
name = "deadpool"
|
|
2091
|
+
version = "0.12.3"
|
|
2092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
+
checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
|
|
2094
|
+
dependencies = [
|
|
2095
|
+
"deadpool-runtime",
|
|
2096
|
+
"lazy_static",
|
|
2097
|
+
"num_cpus",
|
|
2098
|
+
"tokio",
|
|
2099
|
+
]
|
|
2100
|
+
|
|
2101
|
+
[[package]]
|
|
2102
|
+
name = "deadpool-runtime"
|
|
2103
|
+
version = "0.1.4"
|
|
2104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
+
checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
|
|
2106
|
+
|
|
2016
2107
|
[[package]]
|
|
2017
2108
|
name = "delegate"
|
|
2018
2109
|
version = "0.13.5"
|
|
@@ -2035,6 +2126,16 @@ dependencies = [
|
|
|
2035
2126
|
"zeroize",
|
|
2036
2127
|
]
|
|
2037
2128
|
|
|
2129
|
+
[[package]]
|
|
2130
|
+
name = "deranged"
|
|
2131
|
+
version = "0.5.5"
|
|
2132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2133
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
2134
|
+
dependencies = [
|
|
2135
|
+
"powerfmt",
|
|
2136
|
+
"serde_core",
|
|
2137
|
+
]
|
|
2138
|
+
|
|
2038
2139
|
[[package]]
|
|
2039
2140
|
name = "derive_more"
|
|
2040
2141
|
version = "0.99.20"
|
|
@@ -2067,13 +2168,34 @@ dependencies = [
|
|
|
2067
2168
|
"subtle",
|
|
2068
2169
|
]
|
|
2069
2170
|
|
|
2171
|
+
[[package]]
|
|
2172
|
+
name = "dirs"
|
|
2173
|
+
version = "5.0.1"
|
|
2174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2175
|
+
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
|
2176
|
+
dependencies = [
|
|
2177
|
+
"dirs-sys 0.4.1",
|
|
2178
|
+
]
|
|
2179
|
+
|
|
2070
2180
|
[[package]]
|
|
2071
2181
|
name = "dirs"
|
|
2072
2182
|
version = "6.0.0"
|
|
2073
2183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2074
2184
|
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
2075
2185
|
dependencies = [
|
|
2076
|
-
"dirs-sys",
|
|
2186
|
+
"dirs-sys 0.5.0",
|
|
2187
|
+
]
|
|
2188
|
+
|
|
2189
|
+
[[package]]
|
|
2190
|
+
name = "dirs-sys"
|
|
2191
|
+
version = "0.4.1"
|
|
2192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2193
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
2194
|
+
dependencies = [
|
|
2195
|
+
"libc",
|
|
2196
|
+
"option-ext",
|
|
2197
|
+
"redox_users 0.4.6",
|
|
2198
|
+
"windows-sys 0.48.0",
|
|
2077
2199
|
]
|
|
2078
2200
|
|
|
2079
2201
|
[[package]]
|
|
@@ -2084,7 +2206,7 @@ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
|
2084
2206
|
dependencies = [
|
|
2085
2207
|
"libc",
|
|
2086
2208
|
"option-ext",
|
|
2087
|
-
"redox_users",
|
|
2209
|
+
"redox_users 0.5.2",
|
|
2088
2210
|
"windows-sys 0.61.2",
|
|
2089
2211
|
]
|
|
2090
2212
|
|
|
@@ -2108,6 +2230,12 @@ dependencies = [
|
|
|
2108
2230
|
"litrs",
|
|
2109
2231
|
]
|
|
2110
2232
|
|
|
2233
|
+
[[package]]
|
|
2234
|
+
name = "downcast-rs"
|
|
2235
|
+
version = "2.0.2"
|
|
2236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2237
|
+
checksum = "117240f60069e65410b3ae1bb213295bd828f707b5bec6596a1afc8793ce0cbc"
|
|
2238
|
+
|
|
2111
2239
|
[[package]]
|
|
2112
2240
|
name = "dtoa"
|
|
2113
2241
|
version = "1.0.11"
|
|
@@ -2252,6 +2380,12 @@ version = "0.2.0"
|
|
|
2252
2380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2253
2381
|
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
|
2254
2382
|
|
|
2383
|
+
[[package]]
|
|
2384
|
+
name = "fastdivide"
|
|
2385
|
+
version = "0.4.2"
|
|
2386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2387
|
+
checksum = "9afc2bd4d5a73106dd53d10d73d3401c2f32730ba2c0b93ddb888a8983680471"
|
|
2388
|
+
|
|
2255
2389
|
[[package]]
|
|
2256
2390
|
name = "fastrand"
|
|
2257
2391
|
version = "2.3.0"
|
|
@@ -2287,21 +2421,20 @@ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
|
2287
2421
|
|
|
2288
2422
|
[[package]]
|
|
2289
2423
|
name = "filetime"
|
|
2290
|
-
version = "0.2.
|
|
2424
|
+
version = "0.2.27"
|
|
2291
2425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2292
|
-
checksum = "
|
|
2426
|
+
checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
|
|
2293
2427
|
dependencies = [
|
|
2294
2428
|
"cfg-if",
|
|
2295
2429
|
"libc",
|
|
2296
2430
|
"libredox",
|
|
2297
|
-
"windows-sys 0.60.2",
|
|
2298
2431
|
]
|
|
2299
2432
|
|
|
2300
2433
|
[[package]]
|
|
2301
2434
|
name = "find-msvc-tools"
|
|
2302
|
-
version = "0.1.
|
|
2435
|
+
version = "0.1.9"
|
|
2303
2436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2304
|
-
checksum = "
|
|
2437
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
2305
2438
|
|
|
2306
2439
|
[[package]]
|
|
2307
2440
|
name = "fixedbitset"
|
|
@@ -2321,9 +2454,9 @@ dependencies = [
|
|
|
2321
2454
|
|
|
2322
2455
|
[[package]]
|
|
2323
2456
|
name = "flate2"
|
|
2324
|
-
version = "1.1.
|
|
2457
|
+
version = "1.1.9"
|
|
2325
2458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2326
|
-
checksum = "
|
|
2459
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
2327
2460
|
dependencies = [
|
|
2328
2461
|
"crc32fast",
|
|
2329
2462
|
"miniz_oxide",
|
|
@@ -2369,6 +2502,16 @@ dependencies = [
|
|
|
2369
2502
|
"percent-encoding",
|
|
2370
2503
|
]
|
|
2371
2504
|
|
|
2505
|
+
[[package]]
|
|
2506
|
+
name = "fs4"
|
|
2507
|
+
version = "0.13.1"
|
|
2508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2509
|
+
checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
|
|
2510
|
+
dependencies = [
|
|
2511
|
+
"rustix 1.1.3",
|
|
2512
|
+
"windows-sys 0.59.0",
|
|
2513
|
+
]
|
|
2514
|
+
|
|
2372
2515
|
[[package]]
|
|
2373
2516
|
name = "fs_extra"
|
|
2374
2517
|
version = "1.3.0"
|
|
@@ -2698,6 +2841,12 @@ dependencies = [
|
|
|
2698
2841
|
"match_token",
|
|
2699
2842
|
]
|
|
2700
2843
|
|
|
2844
|
+
[[package]]
|
|
2845
|
+
name = "htmlescape"
|
|
2846
|
+
version = "0.3.1"
|
|
2847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2848
|
+
checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163"
|
|
2849
|
+
|
|
2701
2850
|
[[package]]
|
|
2702
2851
|
name = "http"
|
|
2703
2852
|
version = "1.4.0"
|
|
@@ -2804,14 +2953,13 @@ dependencies = [
|
|
|
2804
2953
|
|
|
2805
2954
|
[[package]]
|
|
2806
2955
|
name = "hyper-util"
|
|
2807
|
-
version = "0.1.
|
|
2956
|
+
version = "0.1.20"
|
|
2808
2957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2809
|
-
checksum = "
|
|
2958
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
2810
2959
|
dependencies = [
|
|
2811
2960
|
"base64",
|
|
2812
2961
|
"bytes",
|
|
2813
2962
|
"futures-channel",
|
|
2814
|
-
"futures-core",
|
|
2815
2963
|
"futures-util",
|
|
2816
2964
|
"http",
|
|
2817
2965
|
"http-body",
|
|
@@ -2826,11 +2974,20 @@ dependencies = [
|
|
|
2826
2974
|
"tracing",
|
|
2827
2975
|
]
|
|
2828
2976
|
|
|
2977
|
+
[[package]]
|
|
2978
|
+
name = "hyperloglogplus"
|
|
2979
|
+
version = "0.4.1"
|
|
2980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2981
|
+
checksum = "621debdf94dcac33e50475fdd76d34d5ea9c0362a834b9db08c3024696c1fbe3"
|
|
2982
|
+
dependencies = [
|
|
2983
|
+
"serde",
|
|
2984
|
+
]
|
|
2985
|
+
|
|
2829
2986
|
[[package]]
|
|
2830
2987
|
name = "iana-time-zone"
|
|
2831
|
-
version = "0.1.
|
|
2988
|
+
version = "0.1.65"
|
|
2832
2989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2833
|
-
checksum = "
|
|
2990
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
2834
2991
|
dependencies = [
|
|
2835
2992
|
"android_system_properties",
|
|
2836
2993
|
"core-foundation-sys",
|
|
@@ -3054,9 +3211,9 @@ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
|
3054
3211
|
|
|
3055
3212
|
[[package]]
|
|
3056
3213
|
name = "jiff"
|
|
3057
|
-
version = "0.2.
|
|
3214
|
+
version = "0.2.19"
|
|
3058
3215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3059
|
-
checksum = "
|
|
3216
|
+
checksum = "d89a5b5e10d5a9ad6e5d1f4bd58225f655d6fe9767575a5e8ac5a6fe64e04495"
|
|
3060
3217
|
dependencies = [
|
|
3061
3218
|
"jiff-static",
|
|
3062
3219
|
"log",
|
|
@@ -3067,9 +3224,9 @@ dependencies = [
|
|
|
3067
3224
|
|
|
3068
3225
|
[[package]]
|
|
3069
3226
|
name = "jiff-static"
|
|
3070
|
-
version = "0.2.
|
|
3227
|
+
version = "0.2.19"
|
|
3071
3228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3072
|
-
checksum = "
|
|
3229
|
+
checksum = "ff7a39c8862fc1369215ccf0a8f12dd4598c7f6484704359f0351bd617034dbf"
|
|
3073
3230
|
dependencies = [
|
|
3074
3231
|
"proc-macro2",
|
|
3075
3232
|
"quote",
|
|
@@ -3150,6 +3307,12 @@ dependencies = [
|
|
|
3150
3307
|
"spin",
|
|
3151
3308
|
]
|
|
3152
3309
|
|
|
3310
|
+
[[package]]
|
|
3311
|
+
name = "levenshtein_automata"
|
|
3312
|
+
version = "0.2.1"
|
|
3313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3314
|
+
checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25"
|
|
3315
|
+
|
|
3153
3316
|
[[package]]
|
|
3154
3317
|
name = "lexical-core"
|
|
3155
3318
|
version = "1.0.6"
|
|
@@ -3230,9 +3393,9 @@ dependencies = [
|
|
|
3230
3393
|
|
|
3231
3394
|
[[package]]
|
|
3232
3395
|
name = "liblzma-sys"
|
|
3233
|
-
version = "0.4.
|
|
3396
|
+
version = "0.4.5"
|
|
3234
3397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3235
|
-
checksum = "
|
|
3398
|
+
checksum = "9f2db66f3268487b5033077f266da6777d057949b8f93c8ad82e441df25e6186"
|
|
3236
3399
|
dependencies = [
|
|
3237
3400
|
"cc",
|
|
3238
3401
|
"libc",
|
|
@@ -3241,9 +3404,9 @@ dependencies = [
|
|
|
3241
3404
|
|
|
3242
3405
|
[[package]]
|
|
3243
3406
|
name = "libm"
|
|
3244
|
-
version = "0.2.
|
|
3407
|
+
version = "0.2.16"
|
|
3245
3408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3246
|
-
checksum = "
|
|
3409
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
3247
3410
|
|
|
3248
3411
|
[[package]]
|
|
3249
3412
|
name = "libredox"
|
|
@@ -3310,6 +3473,12 @@ version = "0.1.2"
|
|
|
3310
3473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3311
3474
|
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
3312
3475
|
|
|
3476
|
+
[[package]]
|
|
3477
|
+
name = "lz4_flex"
|
|
3478
|
+
version = "0.11.5"
|
|
3479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3480
|
+
checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
|
|
3481
|
+
|
|
3313
3482
|
[[package]]
|
|
3314
3483
|
name = "lz4_flex"
|
|
3315
3484
|
version = "0.12.0"
|
|
@@ -3381,11 +3550,29 @@ version = "0.7.0"
|
|
|
3381
3550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3382
3551
|
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
|
|
3383
3552
|
|
|
3553
|
+
[[package]]
|
|
3554
|
+
name = "measure_time"
|
|
3555
|
+
version = "0.9.0"
|
|
3556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3557
|
+
checksum = "51c55d61e72fc3ab704396c5fa16f4c184db37978ae4e94ca8959693a235fc0e"
|
|
3558
|
+
dependencies = [
|
|
3559
|
+
"log",
|
|
3560
|
+
]
|
|
3561
|
+
|
|
3384
3562
|
[[package]]
|
|
3385
3563
|
name = "memchr"
|
|
3386
|
-
version = "2.
|
|
3564
|
+
version = "2.8.0"
|
|
3387
3565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3388
|
-
checksum = "
|
|
3566
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
3567
|
+
|
|
3568
|
+
[[package]]
|
|
3569
|
+
name = "memmap2"
|
|
3570
|
+
version = "0.9.9"
|
|
3571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3572
|
+
checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
|
|
3573
|
+
dependencies = [
|
|
3574
|
+
"libc",
|
|
3575
|
+
]
|
|
3389
3576
|
|
|
3390
3577
|
[[package]]
|
|
3391
3578
|
name = "memoffset"
|
|
@@ -3402,6 +3589,12 @@ version = "0.3.17"
|
|
|
3402
3589
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3403
3590
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
3404
3591
|
|
|
3592
|
+
[[package]]
|
|
3593
|
+
name = "minimal-lexical"
|
|
3594
|
+
version = "0.2.1"
|
|
3595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3596
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
3597
|
+
|
|
3405
3598
|
[[package]]
|
|
3406
3599
|
name = "miniz_oxide"
|
|
3407
3600
|
version = "0.8.9"
|
|
@@ -3424,12 +3617,28 @@ dependencies = [
|
|
|
3424
3617
|
"windows-sys 0.61.2",
|
|
3425
3618
|
]
|
|
3426
3619
|
|
|
3620
|
+
[[package]]
|
|
3621
|
+
name = "murmurhash32"
|
|
3622
|
+
version = "0.3.1"
|
|
3623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3624
|
+
checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b"
|
|
3625
|
+
|
|
3427
3626
|
[[package]]
|
|
3428
3627
|
name = "new_debug_unreachable"
|
|
3429
3628
|
version = "1.0.6"
|
|
3430
3629
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3431
3630
|
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
3432
3631
|
|
|
3632
|
+
[[package]]
|
|
3633
|
+
name = "nom"
|
|
3634
|
+
version = "7.1.3"
|
|
3635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3636
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
3637
|
+
dependencies = [
|
|
3638
|
+
"memchr",
|
|
3639
|
+
"minimal-lexical",
|
|
3640
|
+
]
|
|
3641
|
+
|
|
3433
3642
|
[[package]]
|
|
3434
3643
|
name = "nu-ansi-term"
|
|
3435
3644
|
version = "0.50.3"
|
|
@@ -3476,6 +3685,12 @@ dependencies = [
|
|
|
3476
3685
|
"num-traits",
|
|
3477
3686
|
]
|
|
3478
3687
|
|
|
3688
|
+
[[package]]
|
|
3689
|
+
name = "num-conv"
|
|
3690
|
+
version = "0.2.0"
|
|
3691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3692
|
+
checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
|
|
3693
|
+
|
|
3479
3694
|
[[package]]
|
|
3480
3695
|
name = "num-integer"
|
|
3481
3696
|
version = "0.1.46"
|
|
@@ -3524,18 +3739,18 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
|
3524
3739
|
|
|
3525
3740
|
[[package]]
|
|
3526
3741
|
name = "object"
|
|
3527
|
-
version = "0.
|
|
3742
|
+
version = "0.37.3"
|
|
3528
3743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3529
|
-
checksum = "
|
|
3744
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
3530
3745
|
dependencies = [
|
|
3531
3746
|
"memchr",
|
|
3532
3747
|
]
|
|
3533
3748
|
|
|
3534
3749
|
[[package]]
|
|
3535
3750
|
name = "object_store"
|
|
3536
|
-
version = "0.12.
|
|
3751
|
+
version = "0.12.5"
|
|
3537
3752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3538
|
-
checksum = "
|
|
3753
|
+
checksum = "fbfbfff40aeccab00ec8a910b57ca8ecf4319b335c542f2edcd19dd25a1e2a00"
|
|
3539
3754
|
dependencies = [
|
|
3540
3755
|
"async-trait",
|
|
3541
3756
|
"base64",
|
|
@@ -3560,7 +3775,7 @@ dependencies = [
|
|
|
3560
3775
|
"serde",
|
|
3561
3776
|
"serde_json",
|
|
3562
3777
|
"serde_urlencoded",
|
|
3563
|
-
"thiserror 2.0.
|
|
3778
|
+
"thiserror 2.0.18",
|
|
3564
3779
|
"tokio",
|
|
3565
3780
|
"tracing",
|
|
3566
3781
|
"url",
|
|
@@ -3581,6 +3796,12 @@ version = "1.70.2"
|
|
|
3581
3796
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3582
3797
|
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
3583
3798
|
|
|
3799
|
+
[[package]]
|
|
3800
|
+
name = "oneshot"
|
|
3801
|
+
version = "0.1.13"
|
|
3802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3803
|
+
checksum = "269bca4c2591a28585d6bf10d9ed0332b7d76900a1b02bec41bdc3a2cdcda107"
|
|
3804
|
+
|
|
3584
3805
|
[[package]]
|
|
3585
3806
|
name = "opaque-debug"
|
|
3586
3807
|
version = "0.3.1"
|
|
@@ -3589,9 +3810,9 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
|
3589
3810
|
|
|
3590
3811
|
[[package]]
|
|
3591
3812
|
name = "openssl-probe"
|
|
3592
|
-
version = "0.2.
|
|
3813
|
+
version = "0.2.1"
|
|
3593
3814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3594
|
-
checksum = "
|
|
3815
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
3595
3816
|
|
|
3596
3817
|
[[package]]
|
|
3597
3818
|
name = "opentelemetry"
|
|
@@ -3669,6 +3890,15 @@ dependencies = [
|
|
|
3669
3890
|
"num-traits",
|
|
3670
3891
|
]
|
|
3671
3892
|
|
|
3893
|
+
[[package]]
|
|
3894
|
+
name = "ownedbytes"
|
|
3895
|
+
version = "0.9.0"
|
|
3896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3897
|
+
checksum = "2fbd56f7631767e61784dc43f8580f403f4475bd4aaa4da003e6295e1bab4a7e"
|
|
3898
|
+
dependencies = [
|
|
3899
|
+
"stable_deref_trait",
|
|
3900
|
+
]
|
|
3901
|
+
|
|
3672
3902
|
[[package]]
|
|
3673
3903
|
name = "p256"
|
|
3674
3904
|
version = "0.13.2"
|
|
@@ -3753,9 +3983,9 @@ dependencies = [
|
|
|
3753
3983
|
|
|
3754
3984
|
[[package]]
|
|
3755
3985
|
name = "parquet"
|
|
3756
|
-
version = "57.
|
|
3986
|
+
version = "57.3.0"
|
|
3757
3987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3758
|
-
checksum = "
|
|
3988
|
+
checksum = "6ee96b29972a257b855ff2341b37e61af5f12d6af1158b6dcdb5b31ea07bb3cb"
|
|
3759
3989
|
dependencies = [
|
|
3760
3990
|
"ahash",
|
|
3761
3991
|
"arrow-array",
|
|
@@ -3773,7 +4003,7 @@ dependencies = [
|
|
|
3773
4003
|
"futures",
|
|
3774
4004
|
"half",
|
|
3775
4005
|
"hashbrown 0.16.1",
|
|
3776
|
-
"lz4_flex",
|
|
4006
|
+
"lz4_flex 0.12.0",
|
|
3777
4007
|
"num-bigint",
|
|
3778
4008
|
"num-integer",
|
|
3779
4009
|
"num-traits",
|
|
@@ -3821,9 +4051,9 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
|
3821
4051
|
|
|
3822
4052
|
[[package]]
|
|
3823
4053
|
name = "pest"
|
|
3824
|
-
version = "2.8.
|
|
4054
|
+
version = "2.8.6"
|
|
3825
4055
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3826
|
-
checksum = "
|
|
4056
|
+
checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
|
|
3827
4057
|
dependencies = [
|
|
3828
4058
|
"memchr",
|
|
3829
4059
|
"ucd-trie",
|
|
@@ -3831,9 +4061,9 @@ dependencies = [
|
|
|
3831
4061
|
|
|
3832
4062
|
[[package]]
|
|
3833
4063
|
name = "pest_derive"
|
|
3834
|
-
version = "2.8.
|
|
4064
|
+
version = "2.8.6"
|
|
3835
4065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3836
|
-
checksum = "
|
|
4066
|
+
checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
|
|
3837
4067
|
dependencies = [
|
|
3838
4068
|
"pest",
|
|
3839
4069
|
"pest_generator",
|
|
@@ -3841,9 +4071,9 @@ dependencies = [
|
|
|
3841
4071
|
|
|
3842
4072
|
[[package]]
|
|
3843
4073
|
name = "pest_generator"
|
|
3844
|
-
version = "2.8.
|
|
4074
|
+
version = "2.8.6"
|
|
3845
4075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3846
|
-
checksum = "
|
|
4076
|
+
checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
|
|
3847
4077
|
dependencies = [
|
|
3848
4078
|
"pest",
|
|
3849
4079
|
"pest_meta",
|
|
@@ -3854,9 +4084,9 @@ dependencies = [
|
|
|
3854
4084
|
|
|
3855
4085
|
[[package]]
|
|
3856
4086
|
name = "pest_meta"
|
|
3857
|
-
version = "2.8.
|
|
4087
|
+
version = "2.8.6"
|
|
3858
4088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3859
|
-
checksum = "
|
|
4089
|
+
checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
|
|
3860
4090
|
dependencies = [
|
|
3861
4091
|
"pest",
|
|
3862
4092
|
"sha2",
|
|
@@ -4064,15 +4294,15 @@ dependencies = [
|
|
|
4064
4294
|
|
|
4065
4295
|
[[package]]
|
|
4066
4296
|
name = "portable-atomic"
|
|
4067
|
-
version = "1.13.
|
|
4297
|
+
version = "1.13.1"
|
|
4068
4298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4069
|
-
checksum = "
|
|
4299
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
4070
4300
|
|
|
4071
4301
|
[[package]]
|
|
4072
4302
|
name = "portable-atomic-util"
|
|
4073
|
-
version = "0.2.
|
|
4303
|
+
version = "0.2.5"
|
|
4074
4304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4075
|
-
checksum = "
|
|
4305
|
+
checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
|
|
4076
4306
|
dependencies = [
|
|
4077
4307
|
"portable-atomic",
|
|
4078
4308
|
]
|
|
@@ -4129,6 +4359,12 @@ dependencies = [
|
|
|
4129
4359
|
"zerovec",
|
|
4130
4360
|
]
|
|
4131
4361
|
|
|
4362
|
+
[[package]]
|
|
4363
|
+
name = "powerfmt"
|
|
4364
|
+
version = "0.2.0"
|
|
4365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4366
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
4367
|
+
|
|
4132
4368
|
[[package]]
|
|
4133
4369
|
name = "ppv-lite86"
|
|
4134
4370
|
version = "0.2.21"
|
|
@@ -4174,9 +4410,9 @@ dependencies = [
|
|
|
4174
4410
|
|
|
4175
4411
|
[[package]]
|
|
4176
4412
|
name = "proc-macro2"
|
|
4177
|
-
version = "1.0.
|
|
4413
|
+
version = "1.0.106"
|
|
4178
4414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4179
|
-
checksum = "
|
|
4415
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
4180
4416
|
dependencies = [
|
|
4181
4417
|
"unicode-ident",
|
|
4182
4418
|
]
|
|
@@ -4215,9 +4451,9 @@ dependencies = [
|
|
|
4215
4451
|
|
|
4216
4452
|
[[package]]
|
|
4217
4453
|
name = "psm"
|
|
4218
|
-
version = "0.1.
|
|
4454
|
+
version = "0.1.30"
|
|
4219
4455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4220
|
-
checksum = "
|
|
4456
|
+
checksum = "3852766467df634d74f0b2d7819bf8dc483a0eb2e3b0f50f756f9cfe8b0d18d8"
|
|
4221
4457
|
dependencies = [
|
|
4222
4458
|
"ar_archive_writer",
|
|
4223
4459
|
"cc",
|
|
@@ -4338,7 +4574,7 @@ dependencies = [
|
|
|
4338
4574
|
"rustc-hash",
|
|
4339
4575
|
"rustls",
|
|
4340
4576
|
"socket2",
|
|
4341
|
-
"thiserror 2.0.
|
|
4577
|
+
"thiserror 2.0.18",
|
|
4342
4578
|
"tokio",
|
|
4343
4579
|
"tracing",
|
|
4344
4580
|
"web-time",
|
|
@@ -4360,7 +4596,7 @@ dependencies = [
|
|
|
4360
4596
|
"rustls",
|
|
4361
4597
|
"rustls-pki-types",
|
|
4362
4598
|
"slab",
|
|
4363
|
-
"thiserror 2.0.
|
|
4599
|
+
"thiserror 2.0.18",
|
|
4364
4600
|
"tinyvec",
|
|
4365
4601
|
"tracing",
|
|
4366
4602
|
"web-time",
|
|
@@ -4382,9 +4618,9 @@ dependencies = [
|
|
|
4382
4618
|
|
|
4383
4619
|
[[package]]
|
|
4384
4620
|
name = "quote"
|
|
4385
|
-
version = "1.0.
|
|
4621
|
+
version = "1.0.44"
|
|
4386
4622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4387
|
-
checksum = "
|
|
4623
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
4388
4624
|
dependencies = [
|
|
4389
4625
|
"proc-macro2",
|
|
4390
4626
|
]
|
|
@@ -4454,6 +4690,36 @@ dependencies = [
|
|
|
4454
4690
|
"getrandom 0.3.4",
|
|
4455
4691
|
]
|
|
4456
4692
|
|
|
4693
|
+
[[package]]
|
|
4694
|
+
name = "rand_distr"
|
|
4695
|
+
version = "0.4.3"
|
|
4696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4697
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
4698
|
+
dependencies = [
|
|
4699
|
+
"num-traits",
|
|
4700
|
+
"rand 0.8.5",
|
|
4701
|
+
]
|
|
4702
|
+
|
|
4703
|
+
[[package]]
|
|
4704
|
+
name = "rayon"
|
|
4705
|
+
version = "1.11.0"
|
|
4706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4707
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
4708
|
+
dependencies = [
|
|
4709
|
+
"either",
|
|
4710
|
+
"rayon-core",
|
|
4711
|
+
]
|
|
4712
|
+
|
|
4713
|
+
[[package]]
|
|
4714
|
+
name = "rayon-core"
|
|
4715
|
+
version = "1.13.0"
|
|
4716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4717
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
4718
|
+
dependencies = [
|
|
4719
|
+
"crossbeam-deque",
|
|
4720
|
+
"crossbeam-utils",
|
|
4721
|
+
]
|
|
4722
|
+
|
|
4457
4723
|
[[package]]
|
|
4458
4724
|
name = "recursive"
|
|
4459
4725
|
version = "0.1.1"
|
|
@@ -4492,6 +4758,17 @@ dependencies = [
|
|
|
4492
4758
|
"bitflags",
|
|
4493
4759
|
]
|
|
4494
4760
|
|
|
4761
|
+
[[package]]
|
|
4762
|
+
name = "redox_users"
|
|
4763
|
+
version = "0.4.6"
|
|
4764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4765
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
4766
|
+
dependencies = [
|
|
4767
|
+
"getrandom 0.2.17",
|
|
4768
|
+
"libredox",
|
|
4769
|
+
"thiserror 1.0.69",
|
|
4770
|
+
]
|
|
4771
|
+
|
|
4495
4772
|
[[package]]
|
|
4496
4773
|
name = "redox_users"
|
|
4497
4774
|
version = "0.5.2"
|
|
@@ -4500,7 +4777,7 @@ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
|
4500
4777
|
dependencies = [
|
|
4501
4778
|
"getrandom 0.2.17",
|
|
4502
4779
|
"libredox",
|
|
4503
|
-
"thiserror 2.0.
|
|
4780
|
+
"thiserror 2.0.18",
|
|
4504
4781
|
]
|
|
4505
4782
|
|
|
4506
4783
|
[[package]]
|
|
@@ -4525,9 +4802,9 @@ dependencies = [
|
|
|
4525
4802
|
|
|
4526
4803
|
[[package]]
|
|
4527
4804
|
name = "regex"
|
|
4528
|
-
version = "1.12.
|
|
4805
|
+
version = "1.12.3"
|
|
4529
4806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4530
|
-
checksum = "
|
|
4807
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
4531
4808
|
dependencies = [
|
|
4532
4809
|
"aho-corasick",
|
|
4533
4810
|
"memchr",
|
|
@@ -4537,9 +4814,9 @@ dependencies = [
|
|
|
4537
4814
|
|
|
4538
4815
|
[[package]]
|
|
4539
4816
|
name = "regex-automata"
|
|
4540
|
-
version = "0.4.
|
|
4817
|
+
version = "0.4.14"
|
|
4541
4818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4542
|
-
checksum = "
|
|
4819
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
4543
4820
|
dependencies = [
|
|
4544
4821
|
"aho-corasick",
|
|
4545
4822
|
"memchr",
|
|
@@ -4548,15 +4825,15 @@ dependencies = [
|
|
|
4548
4825
|
|
|
4549
4826
|
[[package]]
|
|
4550
4827
|
name = "regex-lite"
|
|
4551
|
-
version = "0.1.
|
|
4828
|
+
version = "0.1.9"
|
|
4552
4829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4553
|
-
checksum = "
|
|
4830
|
+
checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
|
|
4554
4831
|
|
|
4555
4832
|
[[package]]
|
|
4556
4833
|
name = "regex-syntax"
|
|
4557
|
-
version = "0.8.
|
|
4834
|
+
version = "0.8.9"
|
|
4558
4835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4559
|
-
checksum = "
|
|
4836
|
+
checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
|
|
4560
4837
|
|
|
4561
4838
|
[[package]]
|
|
4562
4839
|
name = "relative-path"
|
|
@@ -4602,15 +4879,15 @@ dependencies = [
|
|
|
4602
4879
|
"url",
|
|
4603
4880
|
"wasm-bindgen",
|
|
4604
4881
|
"wasm-bindgen-futures",
|
|
4605
|
-
"wasm-streams",
|
|
4882
|
+
"wasm-streams 0.4.2",
|
|
4606
4883
|
"web-sys",
|
|
4607
4884
|
]
|
|
4608
4885
|
|
|
4609
4886
|
[[package]]
|
|
4610
4887
|
name = "reqwest"
|
|
4611
|
-
version = "0.13.
|
|
4888
|
+
version = "0.13.2"
|
|
4612
4889
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4613
|
-
checksum = "
|
|
4890
|
+
checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
|
|
4614
4891
|
dependencies = [
|
|
4615
4892
|
"base64",
|
|
4616
4893
|
"bytes",
|
|
@@ -4640,7 +4917,7 @@ dependencies = [
|
|
|
4640
4917
|
"url",
|
|
4641
4918
|
"wasm-bindgen",
|
|
4642
4919
|
"wasm-bindgen-futures",
|
|
4643
|
-
"wasm-streams",
|
|
4920
|
+
"wasm-streams 0.5.0",
|
|
4644
4921
|
"web-sys",
|
|
4645
4922
|
]
|
|
4646
4923
|
|
|
@@ -4839,7 +5116,7 @@ dependencies = [
|
|
|
4839
5116
|
"flurry",
|
|
4840
5117
|
"log",
|
|
4841
5118
|
"serde",
|
|
4842
|
-
"thiserror 2.0.
|
|
5119
|
+
"thiserror 2.0.18",
|
|
4843
5120
|
"tokio",
|
|
4844
5121
|
"tokio-util",
|
|
4845
5122
|
]
|
|
@@ -4856,6 +5133,16 @@ dependencies = [
|
|
|
4856
5133
|
"wasm-bindgen-futures",
|
|
4857
5134
|
]
|
|
4858
5135
|
|
|
5136
|
+
[[package]]
|
|
5137
|
+
name = "rust-stemmers"
|
|
5138
|
+
version = "1.2.0"
|
|
5139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5140
|
+
checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
|
|
5141
|
+
dependencies = [
|
|
5142
|
+
"serde",
|
|
5143
|
+
"serde_derive",
|
|
5144
|
+
]
|
|
5145
|
+
|
|
4859
5146
|
[[package]]
|
|
4860
5147
|
name = "rustc-hash"
|
|
4861
5148
|
version = "2.1.1"
|
|
@@ -5208,10 +5495,10 @@ dependencies = [
|
|
|
5208
5495
|
]
|
|
5209
5496
|
|
|
5210
5497
|
[[package]]
|
|
5211
|
-
name = "
|
|
5212
|
-
version = "0.
|
|
5498
|
+
name = "serde_yaml_ng"
|
|
5499
|
+
version = "0.10.0"
|
|
5213
5500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5214
|
-
checksum = "
|
|
5501
|
+
checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f"
|
|
5215
5502
|
dependencies = [
|
|
5216
5503
|
"indexmap",
|
|
5217
5504
|
"itoa",
|
|
@@ -5292,7 +5579,7 @@ version = "3.1.1"
|
|
|
5292
5579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5293
5580
|
checksum = "8b1fdf65dd6331831494dd616b30351c38e96e45921a27745cf98490458b90bb"
|
|
5294
5581
|
dependencies = [
|
|
5295
|
-
"dirs",
|
|
5582
|
+
"dirs 6.0.0",
|
|
5296
5583
|
]
|
|
5297
5584
|
|
|
5298
5585
|
[[package]]
|
|
@@ -5356,15 +5643,24 @@ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
|
5356
5643
|
|
|
5357
5644
|
[[package]]
|
|
5358
5645
|
name = "siphasher"
|
|
5359
|
-
version = "1.0.
|
|
5646
|
+
version = "1.0.2"
|
|
5360
5647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5361
|
-
checksum = "
|
|
5648
|
+
checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
|
|
5649
|
+
|
|
5650
|
+
[[package]]
|
|
5651
|
+
name = "sketches-ddsketch"
|
|
5652
|
+
version = "0.3.0"
|
|
5653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5654
|
+
checksum = "c1e9a774a6c28142ac54bb25d25562e6bcf957493a184f15ad4eebccb23e410a"
|
|
5655
|
+
dependencies = [
|
|
5656
|
+
"serde",
|
|
5657
|
+
]
|
|
5362
5658
|
|
|
5363
5659
|
[[package]]
|
|
5364
5660
|
name = "slab"
|
|
5365
|
-
version = "0.4.
|
|
5661
|
+
version = "0.4.12"
|
|
5366
5662
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5367
|
-
checksum = "
|
|
5663
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
5368
5664
|
|
|
5369
5665
|
[[package]]
|
|
5370
5666
|
name = "smallvec"
|
|
@@ -5380,9 +5676,9 @@ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
|
5380
5676
|
|
|
5381
5677
|
[[package]]
|
|
5382
5678
|
name = "socket2"
|
|
5383
|
-
version = "0.6.
|
|
5679
|
+
version = "0.6.2"
|
|
5384
5680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5385
|
-
checksum = "
|
|
5681
|
+
checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
|
|
5386
5682
|
dependencies = [
|
|
5387
5683
|
"libc",
|
|
5388
5684
|
"windows-sys 0.60.2",
|
|
@@ -5415,16 +5711,6 @@ dependencies = [
|
|
|
5415
5711
|
"sqlparser_derive",
|
|
5416
5712
|
]
|
|
5417
5713
|
|
|
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
|
-
|
|
5428
5714
|
[[package]]
|
|
5429
5715
|
name = "sqlparser_derive"
|
|
5430
5716
|
version = "0.3.0"
|
|
@@ -5495,9 +5781,9 @@ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
|
5495
5781
|
|
|
5496
5782
|
[[package]]
|
|
5497
5783
|
name = "stacker"
|
|
5498
|
-
version = "0.1.
|
|
5784
|
+
version = "0.1.23"
|
|
5499
5785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5500
|
-
checksum = "
|
|
5786
|
+
checksum = "08d74a23609d509411d10e2176dc2a4346e3b4aea2e7b1869f19fdedbc71c013"
|
|
5501
5787
|
dependencies = [
|
|
5502
5788
|
"cc",
|
|
5503
5789
|
"cfg-if",
|
|
@@ -5612,7 +5898,7 @@ dependencies = [
|
|
|
5612
5898
|
"lazy-regex",
|
|
5613
5899
|
"log",
|
|
5614
5900
|
"pin-project",
|
|
5615
|
-
"thiserror 2.0.
|
|
5901
|
+
"thiserror 2.0.18",
|
|
5616
5902
|
"tokio",
|
|
5617
5903
|
]
|
|
5618
5904
|
|
|
@@ -5647,6 +5933,152 @@ dependencies = [
|
|
|
5647
5933
|
"syn",
|
|
5648
5934
|
]
|
|
5649
5935
|
|
|
5936
|
+
[[package]]
|
|
5937
|
+
name = "tantivy"
|
|
5938
|
+
version = "0.25.0"
|
|
5939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5940
|
+
checksum = "502915c7381c5cb2d2781503962610cb880ad8f1a0ca95df1bae645d5ebf2545"
|
|
5941
|
+
dependencies = [
|
|
5942
|
+
"aho-corasick",
|
|
5943
|
+
"arc-swap",
|
|
5944
|
+
"base64",
|
|
5945
|
+
"bitpacking",
|
|
5946
|
+
"bon",
|
|
5947
|
+
"byteorder",
|
|
5948
|
+
"census",
|
|
5949
|
+
"crc32fast",
|
|
5950
|
+
"crossbeam-channel",
|
|
5951
|
+
"downcast-rs",
|
|
5952
|
+
"fastdivide",
|
|
5953
|
+
"fnv",
|
|
5954
|
+
"fs4",
|
|
5955
|
+
"htmlescape",
|
|
5956
|
+
"hyperloglogplus",
|
|
5957
|
+
"itertools 0.14.0",
|
|
5958
|
+
"levenshtein_automata",
|
|
5959
|
+
"log",
|
|
5960
|
+
"lru",
|
|
5961
|
+
"lz4_flex 0.11.5",
|
|
5962
|
+
"measure_time",
|
|
5963
|
+
"memmap2",
|
|
5964
|
+
"once_cell",
|
|
5965
|
+
"oneshot",
|
|
5966
|
+
"rayon",
|
|
5967
|
+
"regex",
|
|
5968
|
+
"rust-stemmers",
|
|
5969
|
+
"rustc-hash",
|
|
5970
|
+
"serde",
|
|
5971
|
+
"serde_json",
|
|
5972
|
+
"sketches-ddsketch",
|
|
5973
|
+
"smallvec",
|
|
5974
|
+
"tantivy-bitpacker",
|
|
5975
|
+
"tantivy-columnar",
|
|
5976
|
+
"tantivy-common",
|
|
5977
|
+
"tantivy-fst",
|
|
5978
|
+
"tantivy-query-grammar",
|
|
5979
|
+
"tantivy-stacker",
|
|
5980
|
+
"tantivy-tokenizer-api",
|
|
5981
|
+
"tempfile",
|
|
5982
|
+
"thiserror 2.0.18",
|
|
5983
|
+
"time",
|
|
5984
|
+
"uuid",
|
|
5985
|
+
"winapi",
|
|
5986
|
+
]
|
|
5987
|
+
|
|
5988
|
+
[[package]]
|
|
5989
|
+
name = "tantivy-bitpacker"
|
|
5990
|
+
version = "0.9.0"
|
|
5991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5992
|
+
checksum = "c3b04eed5108d8283607da6710fe17a7663523440eaf7ea5a1a440d19a1448b6"
|
|
5993
|
+
dependencies = [
|
|
5994
|
+
"bitpacking",
|
|
5995
|
+
]
|
|
5996
|
+
|
|
5997
|
+
[[package]]
|
|
5998
|
+
name = "tantivy-columnar"
|
|
5999
|
+
version = "0.6.0"
|
|
6000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6001
|
+
checksum = "8b628488ae936c83e92b5c4056833054ca56f76c0e616aee8339e24ac89119cd"
|
|
6002
|
+
dependencies = [
|
|
6003
|
+
"downcast-rs",
|
|
6004
|
+
"fastdivide",
|
|
6005
|
+
"itertools 0.14.0",
|
|
6006
|
+
"serde",
|
|
6007
|
+
"tantivy-bitpacker",
|
|
6008
|
+
"tantivy-common",
|
|
6009
|
+
"tantivy-sstable",
|
|
6010
|
+
"tantivy-stacker",
|
|
6011
|
+
]
|
|
6012
|
+
|
|
6013
|
+
[[package]]
|
|
6014
|
+
name = "tantivy-common"
|
|
6015
|
+
version = "0.10.0"
|
|
6016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6017
|
+
checksum = "f880aa7cab0c063a47b62596d10991cdd0b6e0e0575d9c5eeb298b307a25de55"
|
|
6018
|
+
dependencies = [
|
|
6019
|
+
"async-trait",
|
|
6020
|
+
"byteorder",
|
|
6021
|
+
"ownedbytes",
|
|
6022
|
+
"serde",
|
|
6023
|
+
"time",
|
|
6024
|
+
]
|
|
6025
|
+
|
|
6026
|
+
[[package]]
|
|
6027
|
+
name = "tantivy-fst"
|
|
6028
|
+
version = "0.5.0"
|
|
6029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6030
|
+
checksum = "d60769b80ad7953d8a7b2c70cdfe722bbcdcac6bccc8ac934c40c034d866fc18"
|
|
6031
|
+
dependencies = [
|
|
6032
|
+
"byteorder",
|
|
6033
|
+
"regex-syntax",
|
|
6034
|
+
"utf8-ranges",
|
|
6035
|
+
]
|
|
6036
|
+
|
|
6037
|
+
[[package]]
|
|
6038
|
+
name = "tantivy-query-grammar"
|
|
6039
|
+
version = "0.25.0"
|
|
6040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6041
|
+
checksum = "768fccdc84d60d86235d42d7e4c33acf43c418258ff5952abf07bd7837fcd26b"
|
|
6042
|
+
dependencies = [
|
|
6043
|
+
"nom",
|
|
6044
|
+
"serde",
|
|
6045
|
+
"serde_json",
|
|
6046
|
+
]
|
|
6047
|
+
|
|
6048
|
+
[[package]]
|
|
6049
|
+
name = "tantivy-sstable"
|
|
6050
|
+
version = "0.6.0"
|
|
6051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6052
|
+
checksum = "f8292095d1a8a2c2b36380ec455f910ab52dde516af36321af332c93f20ab7d5"
|
|
6053
|
+
dependencies = [
|
|
6054
|
+
"futures-util",
|
|
6055
|
+
"itertools 0.14.0",
|
|
6056
|
+
"tantivy-bitpacker",
|
|
6057
|
+
"tantivy-common",
|
|
6058
|
+
"tantivy-fst",
|
|
6059
|
+
"zstd",
|
|
6060
|
+
]
|
|
6061
|
+
|
|
6062
|
+
[[package]]
|
|
6063
|
+
name = "tantivy-stacker"
|
|
6064
|
+
version = "0.6.0"
|
|
6065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6066
|
+
checksum = "23d38a379411169f0b3002c9cba61cdfe315f757e9d4f239c00c282497a0749d"
|
|
6067
|
+
dependencies = [
|
|
6068
|
+
"murmurhash32",
|
|
6069
|
+
"rand_distr",
|
|
6070
|
+
"tantivy-common",
|
|
6071
|
+
]
|
|
6072
|
+
|
|
6073
|
+
[[package]]
|
|
6074
|
+
name = "tantivy-tokenizer-api"
|
|
6075
|
+
version = "0.6.0"
|
|
6076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6077
|
+
checksum = "23024f6aeb25ceb1a0e27740c84bdb0fae52626737b7e9a9de6ad5aa25c7b038"
|
|
6078
|
+
dependencies = [
|
|
6079
|
+
"serde",
|
|
6080
|
+
]
|
|
6081
|
+
|
|
5650
6082
|
[[package]]
|
|
5651
6083
|
name = "tar"
|
|
5652
6084
|
version = "0.4.44"
|
|
@@ -5699,11 +6131,11 @@ dependencies = [
|
|
|
5699
6131
|
|
|
5700
6132
|
[[package]]
|
|
5701
6133
|
name = "thiserror"
|
|
5702
|
-
version = "2.0.
|
|
6134
|
+
version = "2.0.18"
|
|
5703
6135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5704
|
-
checksum = "
|
|
6136
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
5705
6137
|
dependencies = [
|
|
5706
|
-
"thiserror-impl 2.0.
|
|
6138
|
+
"thiserror-impl 2.0.18",
|
|
5707
6139
|
]
|
|
5708
6140
|
|
|
5709
6141
|
[[package]]
|
|
@@ -5719,9 +6151,9 @@ dependencies = [
|
|
|
5719
6151
|
|
|
5720
6152
|
[[package]]
|
|
5721
6153
|
name = "thiserror-impl"
|
|
5722
|
-
version = "2.0.
|
|
6154
|
+
version = "2.0.18"
|
|
5723
6155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5724
|
-
checksum = "
|
|
6156
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
5725
6157
|
dependencies = [
|
|
5726
6158
|
"proc-macro2",
|
|
5727
6159
|
"quote",
|
|
@@ -5748,6 +6180,37 @@ dependencies = [
|
|
|
5748
6180
|
"ordered-float 2.10.1",
|
|
5749
6181
|
]
|
|
5750
6182
|
|
|
6183
|
+
[[package]]
|
|
6184
|
+
name = "time"
|
|
6185
|
+
version = "0.3.47"
|
|
6186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6187
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
6188
|
+
dependencies = [
|
|
6189
|
+
"deranged",
|
|
6190
|
+
"itoa",
|
|
6191
|
+
"num-conv",
|
|
6192
|
+
"powerfmt",
|
|
6193
|
+
"serde_core",
|
|
6194
|
+
"time-core",
|
|
6195
|
+
"time-macros",
|
|
6196
|
+
]
|
|
6197
|
+
|
|
6198
|
+
[[package]]
|
|
6199
|
+
name = "time-core"
|
|
6200
|
+
version = "0.1.8"
|
|
6201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6202
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
6203
|
+
|
|
6204
|
+
[[package]]
|
|
6205
|
+
name = "time-macros"
|
|
6206
|
+
version = "0.2.27"
|
|
6207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6208
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
6209
|
+
dependencies = [
|
|
6210
|
+
"num-conv",
|
|
6211
|
+
"time-core",
|
|
6212
|
+
]
|
|
6213
|
+
|
|
5751
6214
|
[[package]]
|
|
5752
6215
|
name = "tiny-keccak"
|
|
5753
6216
|
version = "2.0.2"
|
|
@@ -5901,9 +6364,9 @@ dependencies = [
|
|
|
5901
6364
|
|
|
5902
6365
|
[[package]]
|
|
5903
6366
|
name = "tonic"
|
|
5904
|
-
version = "0.14.
|
|
6367
|
+
version = "0.14.3"
|
|
5905
6368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5906
|
-
checksum = "
|
|
6369
|
+
checksum = "a286e33f82f8a1ee2df63f4fa35c0becf4a85a0cb03091a15fd7bf0b402dc94a"
|
|
5907
6370
|
dependencies = [
|
|
5908
6371
|
"async-trait",
|
|
5909
6372
|
"axum",
|
|
@@ -5930,9 +6393,9 @@ dependencies = [
|
|
|
5930
6393
|
|
|
5931
6394
|
[[package]]
|
|
5932
6395
|
name = "tonic-prost"
|
|
5933
|
-
version = "0.14.
|
|
6396
|
+
version = "0.14.3"
|
|
5934
6397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5935
|
-
checksum = "
|
|
6398
|
+
checksum = "d6c55a2d6a14174563de34409c9f92ff981d006f56da9c6ecd40d9d4a31500b0"
|
|
5936
6399
|
dependencies = [
|
|
5937
6400
|
"bytes",
|
|
5938
6401
|
"prost",
|
|
@@ -6061,6 +6524,12 @@ version = "2.1.2"
|
|
|
6061
6524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6062
6525
|
checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
|
|
6063
6526
|
|
|
6527
|
+
[[package]]
|
|
6528
|
+
name = "typed-path"
|
|
6529
|
+
version = "0.12.2"
|
|
6530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6531
|
+
checksum = "3015e6ce46d5ad8751e4a772543a30c7511468070e98e64e20165f8f81155b64"
|
|
6532
|
+
|
|
6064
6533
|
[[package]]
|
|
6065
6534
|
name = "typenum"
|
|
6066
6535
|
version = "1.19.0"
|
|
@@ -6165,6 +6634,12 @@ version = "0.7.6"
|
|
|
6165
6634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6166
6635
|
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
6167
6636
|
|
|
6637
|
+
[[package]]
|
|
6638
|
+
name = "utf8-ranges"
|
|
6639
|
+
version = "1.0.5"
|
|
6640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6641
|
+
checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba"
|
|
6642
|
+
|
|
6168
6643
|
[[package]]
|
|
6169
6644
|
name = "utf8_iter"
|
|
6170
6645
|
version = "1.0.4"
|
|
@@ -6179,9 +6654,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
6179
6654
|
|
|
6180
6655
|
[[package]]
|
|
6181
6656
|
name = "uuid"
|
|
6182
|
-
version = "1.
|
|
6657
|
+
version = "1.20.0"
|
|
6183
6658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6184
|
-
checksum = "
|
|
6659
|
+
checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
|
|
6185
6660
|
dependencies = [
|
|
6186
6661
|
"getrandom 0.3.4",
|
|
6187
6662
|
"js-sys",
|
|
@@ -6334,6 +6809,19 @@ dependencies = [
|
|
|
6334
6809
|
"web-sys",
|
|
6335
6810
|
]
|
|
6336
6811
|
|
|
6812
|
+
[[package]]
|
|
6813
|
+
name = "wasm-streams"
|
|
6814
|
+
version = "0.5.0"
|
|
6815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6816
|
+
checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
|
|
6817
|
+
dependencies = [
|
|
6818
|
+
"futures-util",
|
|
6819
|
+
"js-sys",
|
|
6820
|
+
"wasm-bindgen",
|
|
6821
|
+
"wasm-bindgen-futures",
|
|
6822
|
+
"web-sys",
|
|
6823
|
+
]
|
|
6824
|
+
|
|
6337
6825
|
[[package]]
|
|
6338
6826
|
name = "web-sys"
|
|
6339
6827
|
version = "0.3.85"
|
|
@@ -6356,18 +6844,18 @@ dependencies = [
|
|
|
6356
6844
|
|
|
6357
6845
|
[[package]]
|
|
6358
6846
|
name = "webpki-root-certs"
|
|
6359
|
-
version = "1.0.
|
|
6847
|
+
version = "1.0.6"
|
|
6360
6848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6361
|
-
checksum = "
|
|
6849
|
+
checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
|
|
6362
6850
|
dependencies = [
|
|
6363
6851
|
"rustls-pki-types",
|
|
6364
6852
|
]
|
|
6365
6853
|
|
|
6366
6854
|
[[package]]
|
|
6367
6855
|
name = "whoami"
|
|
6368
|
-
version = "2.0
|
|
6856
|
+
version = "2.1.0"
|
|
6369
6857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6370
|
-
checksum = "
|
|
6858
|
+
checksum = "8fae98cf96deed1b7572272dfc777713c249ae40aa1cf8862e091e8b745f5361"
|
|
6371
6859
|
dependencies = [
|
|
6372
6860
|
"libredox",
|
|
6373
6861
|
"wasite",
|
|
@@ -6537,6 +7025,15 @@ dependencies = [
|
|
|
6537
7025
|
"windows-targets 0.42.2",
|
|
6538
7026
|
]
|
|
6539
7027
|
|
|
7028
|
+
[[package]]
|
|
7029
|
+
name = "windows-sys"
|
|
7030
|
+
version = "0.48.0"
|
|
7031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7032
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
7033
|
+
dependencies = [
|
|
7034
|
+
"windows-targets 0.48.5",
|
|
7035
|
+
]
|
|
7036
|
+
|
|
6540
7037
|
[[package]]
|
|
6541
7038
|
name = "windows-sys"
|
|
6542
7039
|
version = "0.52.0"
|
|
@@ -6588,6 +7085,21 @@ dependencies = [
|
|
|
6588
7085
|
"windows_x86_64_msvc 0.42.2",
|
|
6589
7086
|
]
|
|
6590
7087
|
|
|
7088
|
+
[[package]]
|
|
7089
|
+
name = "windows-targets"
|
|
7090
|
+
version = "0.48.5"
|
|
7091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7092
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
7093
|
+
dependencies = [
|
|
7094
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
7095
|
+
"windows_aarch64_msvc 0.48.5",
|
|
7096
|
+
"windows_i686_gnu 0.48.5",
|
|
7097
|
+
"windows_i686_msvc 0.48.5",
|
|
7098
|
+
"windows_x86_64_gnu 0.48.5",
|
|
7099
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
7100
|
+
"windows_x86_64_msvc 0.48.5",
|
|
7101
|
+
]
|
|
7102
|
+
|
|
6591
7103
|
[[package]]
|
|
6592
7104
|
name = "windows-targets"
|
|
6593
7105
|
version = "0.52.6"
|
|
@@ -6627,6 +7139,12 @@ version = "0.42.2"
|
|
|
6627
7139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6628
7140
|
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
6629
7141
|
|
|
7142
|
+
[[package]]
|
|
7143
|
+
name = "windows_aarch64_gnullvm"
|
|
7144
|
+
version = "0.48.5"
|
|
7145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7146
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
7147
|
+
|
|
6630
7148
|
[[package]]
|
|
6631
7149
|
name = "windows_aarch64_gnullvm"
|
|
6632
7150
|
version = "0.52.6"
|
|
@@ -6645,6 +7163,12 @@ version = "0.42.2"
|
|
|
6645
7163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6646
7164
|
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
6647
7165
|
|
|
7166
|
+
[[package]]
|
|
7167
|
+
name = "windows_aarch64_msvc"
|
|
7168
|
+
version = "0.48.5"
|
|
7169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7170
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
7171
|
+
|
|
6648
7172
|
[[package]]
|
|
6649
7173
|
name = "windows_aarch64_msvc"
|
|
6650
7174
|
version = "0.52.6"
|
|
@@ -6663,6 +7187,12 @@ version = "0.42.2"
|
|
|
6663
7187
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6664
7188
|
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
6665
7189
|
|
|
7190
|
+
[[package]]
|
|
7191
|
+
name = "windows_i686_gnu"
|
|
7192
|
+
version = "0.48.5"
|
|
7193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7194
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
7195
|
+
|
|
6666
7196
|
[[package]]
|
|
6667
7197
|
name = "windows_i686_gnu"
|
|
6668
7198
|
version = "0.52.6"
|
|
@@ -6693,6 +7223,12 @@ version = "0.42.2"
|
|
|
6693
7223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6694
7224
|
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
6695
7225
|
|
|
7226
|
+
[[package]]
|
|
7227
|
+
name = "windows_i686_msvc"
|
|
7228
|
+
version = "0.48.5"
|
|
7229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7230
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
7231
|
+
|
|
6696
7232
|
[[package]]
|
|
6697
7233
|
name = "windows_i686_msvc"
|
|
6698
7234
|
version = "0.52.6"
|
|
@@ -6711,6 +7247,12 @@ version = "0.42.2"
|
|
|
6711
7247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6712
7248
|
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
6713
7249
|
|
|
7250
|
+
[[package]]
|
|
7251
|
+
name = "windows_x86_64_gnu"
|
|
7252
|
+
version = "0.48.5"
|
|
7253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7254
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
7255
|
+
|
|
6714
7256
|
[[package]]
|
|
6715
7257
|
name = "windows_x86_64_gnu"
|
|
6716
7258
|
version = "0.52.6"
|
|
@@ -6729,6 +7271,12 @@ version = "0.42.2"
|
|
|
6729
7271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6730
7272
|
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
6731
7273
|
|
|
7274
|
+
[[package]]
|
|
7275
|
+
name = "windows_x86_64_gnullvm"
|
|
7276
|
+
version = "0.48.5"
|
|
7277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7278
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
7279
|
+
|
|
6732
7280
|
[[package]]
|
|
6733
7281
|
name = "windows_x86_64_gnullvm"
|
|
6734
7282
|
version = "0.52.6"
|
|
@@ -6747,6 +7295,12 @@ version = "0.42.2"
|
|
|
6747
7295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6748
7296
|
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
6749
7297
|
|
|
7298
|
+
[[package]]
|
|
7299
|
+
name = "windows_x86_64_msvc"
|
|
7300
|
+
version = "0.48.5"
|
|
7301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7302
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
7303
|
+
|
|
6750
7304
|
[[package]]
|
|
6751
7305
|
name = "windows_x86_64_msvc"
|
|
6752
7306
|
version = "0.52.6"
|
|
@@ -6768,6 +7322,29 @@ dependencies = [
|
|
|
6768
7322
|
"memchr",
|
|
6769
7323
|
]
|
|
6770
7324
|
|
|
7325
|
+
[[package]]
|
|
7326
|
+
name = "wiremock"
|
|
7327
|
+
version = "0.6.5"
|
|
7328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7329
|
+
checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
|
|
7330
|
+
dependencies = [
|
|
7331
|
+
"assert-json-diff",
|
|
7332
|
+
"base64",
|
|
7333
|
+
"deadpool",
|
|
7334
|
+
"futures",
|
|
7335
|
+
"http",
|
|
7336
|
+
"http-body-util",
|
|
7337
|
+
"hyper",
|
|
7338
|
+
"hyper-util",
|
|
7339
|
+
"log",
|
|
7340
|
+
"once_cell",
|
|
7341
|
+
"regex",
|
|
7342
|
+
"serde",
|
|
7343
|
+
"serde_json",
|
|
7344
|
+
"tokio",
|
|
7345
|
+
"url",
|
|
7346
|
+
]
|
|
7347
|
+
|
|
6771
7348
|
[[package]]
|
|
6772
7349
|
name = "wit-bindgen"
|
|
6773
7350
|
version = "0.51.0"
|
|
@@ -6815,18 +7392,18 @@ dependencies = [
|
|
|
6815
7392
|
|
|
6816
7393
|
[[package]]
|
|
6817
7394
|
name = "zerocopy"
|
|
6818
|
-
version = "0.8.
|
|
7395
|
+
version = "0.8.39"
|
|
6819
7396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6820
|
-
checksum = "
|
|
7397
|
+
checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
|
|
6821
7398
|
dependencies = [
|
|
6822
7399
|
"zerocopy-derive",
|
|
6823
7400
|
]
|
|
6824
7401
|
|
|
6825
7402
|
[[package]]
|
|
6826
7403
|
name = "zerocopy-derive"
|
|
6827
|
-
version = "0.8.
|
|
7404
|
+
version = "0.8.39"
|
|
6828
7405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6829
|
-
checksum = "
|
|
7406
|
+
checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
|
|
6830
7407
|
dependencies = [
|
|
6831
7408
|
"proc-macro2",
|
|
6832
7409
|
"quote",
|
|
@@ -6893,17 +7470,43 @@ dependencies = [
|
|
|
6893
7470
|
"syn",
|
|
6894
7471
|
]
|
|
6895
7472
|
|
|
7473
|
+
[[package]]
|
|
7474
|
+
name = "zip"
|
|
7475
|
+
version = "7.4.0"
|
|
7476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7477
|
+
checksum = "cc12baa6db2b15a140161ce53d72209dacea594230798c24774139b54ecaa980"
|
|
7478
|
+
dependencies = [
|
|
7479
|
+
"crc32fast",
|
|
7480
|
+
"flate2",
|
|
7481
|
+
"indexmap",
|
|
7482
|
+
"memchr",
|
|
7483
|
+
"typed-path",
|
|
7484
|
+
"zopfli",
|
|
7485
|
+
]
|
|
7486
|
+
|
|
6896
7487
|
[[package]]
|
|
6897
7488
|
name = "zlib-rs"
|
|
6898
|
-
version = "0.
|
|
7489
|
+
version = "0.6.0"
|
|
6899
7490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6900
|
-
checksum = "
|
|
7491
|
+
checksum = "a7948af682ccbc3342b6e9420e8c51c1fe5d7bf7756002b4a3c6cabfe96a7e3c"
|
|
6901
7492
|
|
|
6902
7493
|
[[package]]
|
|
6903
7494
|
name = "zmij"
|
|
6904
|
-
version = "1.0.
|
|
7495
|
+
version = "1.0.19"
|
|
7496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7497
|
+
checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445"
|
|
7498
|
+
|
|
7499
|
+
[[package]]
|
|
7500
|
+
name = "zopfli"
|
|
7501
|
+
version = "0.8.3"
|
|
6905
7502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6906
|
-
checksum = "
|
|
7503
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
7504
|
+
dependencies = [
|
|
7505
|
+
"bumpalo",
|
|
7506
|
+
"crc32fast",
|
|
7507
|
+
"log",
|
|
7508
|
+
"simd-adler32",
|
|
7509
|
+
]
|
|
6907
7510
|
|
|
6908
7511
|
[[package]]
|
|
6909
7512
|
name = "zstd"
|