pysail 0.1.0.dev0__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.
- pysail-0.1.0.dev0/Cargo.lock +3957 -0
- pysail-0.1.0.dev0/Cargo.toml +85 -0
- pysail-0.1.0.dev0/PKG-INFO +356 -0
- pysail-0.1.0.dev0/README.md +345 -0
- pysail-0.1.0.dev0/crates/sail-common/Cargo.toml +16 -0
- pysail-0.1.0.dev0/crates/sail-common/src/config.rs +17 -0
- pysail-0.1.0.dev0/crates/sail-common/src/error.rs +36 -0
- pysail-0.1.0.dev0/crates/sail-common/src/lib.rs +7 -0
- pysail-0.1.0.dev0/crates/sail-common/src/macros.rs +9 -0
- pysail-0.1.0.dev0/crates/sail-common/src/object.rs +46 -0
- pysail-0.1.0.dev0/crates/sail-common/src/spec/data_type.rs +170 -0
- pysail-0.1.0.dev0/crates/sail-common/src/spec/expression.rs +276 -0
- pysail-0.1.0.dev0/crates/sail-common/src/spec/literal.rs +71 -0
- pysail-0.1.0.dev0/crates/sail-common/src/spec/mod.rs +9 -0
- pysail-0.1.0.dev0/crates/sail-common/src/spec/plan.rs +780 -0
- pysail-0.1.0.dev0/crates/sail-common/src/tests.rs +142 -0
- pysail-0.1.0.dev0/crates/sail-common/src/utils.rs +105 -0
- pysail-0.1.0.dev0/crates/sail-plan/Cargo.toml +34 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/catalog/catalog.rs +50 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/catalog/column.rs +69 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/catalog/database.rs +127 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/catalog/function.rs +11 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/catalog/mod.rs +77 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/catalog/table.rs +273 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/catalog/utils.rs +37 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/catalog/view.rs +38 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/config.rs +70 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/error.rs +55 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/function/array.rs +337 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/function/contains.rs +68 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/function/explode.rs +69 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/function/map_function.rs +136 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/function/mod.rs +6 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/function/multi_expr.rs +50 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/function/struct_function.rs +92 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/logical/catalog.rs +456 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/logical/mod.rs +9 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/logical/range.rs +151 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/logical/show_string.rs +294 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/logical/sort.rs +68 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/mod.rs +30 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/physical/mod.rs +5 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/physical/planner.rs +58 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/physical/range.rs +105 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/physical/show_string.rs +213 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/source/mod.rs +1 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/extension/source/rename.rs +158 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/formatter.rs +561 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/aggregate.rs +124 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/common.rs +115 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/generator.rs +22 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/mod.rs +31 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/array.rs +44 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/bitwise.rs +20 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/collection.rs +13 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/conditional.rs +39 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/conversion.rs +24 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/csv.rs +11 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/datetime.rs +72 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/hash.rs +17 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/json.rs +15 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/lambda.rs +20 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/map.rs +20 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/math.rs +106 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/misc.rs +43 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/mod.rs +43 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/predicate.rs +80 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/string.rs +111 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/struct.rs +14 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/url.rs +11 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/scalar/xml.rs +17 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/function/window.rs +62 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/lib.rs +42 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/resolver/data_type.rs +293 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/resolver/ddl.rs +68 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/resolver/expression.rs +1485 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/resolver/literal.rs +112 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/resolver/mod.rs +24 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/resolver/plan.rs +1958 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/resolver/state.rs +132 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/resolver/tree/explode.rs +137 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/resolver/tree/mod.rs +21 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/resolver/tree/window.rs +42 -0
- pysail-0.1.0.dev0/crates/sail-plan/src/utils.rs +75 -0
- pysail-0.1.0.dev0/crates/sail-python/Cargo.toml +16 -0
- pysail-0.1.0.dev0/crates/sail-python/src/lib.rs +9 -0
- pysail-0.1.0.dev0/crates/sail-python/src/spark/mod.rs +10 -0
- pysail-0.1.0.dev0/crates/sail-python/src/spark/server.rs +165 -0
- pysail-0.1.0.dev0/crates/sail-python-udf/Cargo.toml +21 -0
- pysail-0.1.0.dev0/crates/sail-python-udf/src/cereal/mod.rs +35 -0
- pysail-0.1.0.dev0/crates/sail-python-udf/src/cereal/partial_pyspark_udf.rs +168 -0
- pysail-0.1.0.dev0/crates/sail-python-udf/src/cereal/partial_python_udf.rs +87 -0
- pysail-0.1.0.dev0/crates/sail-python-udf/src/cereal/pyspark_udtf.rs +185 -0
- pysail-0.1.0.dev0/crates/sail-python-udf/src/lib.rs +2 -0
- pysail-0.1.0.dev0/crates/sail-python-udf/src/udf/mod.rs +156 -0
- pysail-0.1.0.dev0/crates/sail-python-udf/src/udf/pyspark_udf.rs +315 -0
- pysail-0.1.0.dev0/crates/sail-python-udf/src/udf/pyspark_udtf.rs +383 -0
- pysail-0.1.0.dev0/crates/sail-python-udf/src/udf/python_udf.rs +93 -0
- pysail-0.1.0.dev0/crates/sail-python-udf/src/udf/unresolved_pyspark_udf.rs +71 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/Cargo.toml +66 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/build.rs +190 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/data/spark_config.json +2433 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/examples/server.rs +49 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/proto/spark/connect/base.proto +817 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/proto/spark/connect/catalog.proto +243 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/proto/spark/connect/commands.proto +416 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/proto/spark/connect/common.proto +48 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/proto/spark/connect/expressions.proto +382 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/proto/spark/connect/relations.proto +1003 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/proto/spark/connect/types.proto +195 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/config.rs +157 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/entrypoint.rs +72 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/error.rs +307 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/executor.rs +347 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/lib.rs +32 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/proto/analyzer.rs +19 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/proto/common.rs +26 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/proto/data_type.rs +367 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/proto/data_type_json.rs +919 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/proto/expression.rs +446 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/proto/function.rs +67 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/proto/literal.rs +96 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/proto/mod.rs +8 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/proto/plan.rs +1367 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/schema.rs +11 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/server.rs +384 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/service/artifact_manager.rs +25 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/service/config_manager.rs +117 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/service/mod.rs +9 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/service/plan_analyzer.rs +168 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/service/plan_executor.rs +539 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/src/session.rs +328 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/README.md +5 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/data_type.json +624 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/expression/case.json +430 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/expression/cast.json +86 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/expression/current.json +30 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/expression/date.json +59 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/expression/interval.json +5683 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/expression/large.json +16 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/expression/like.json +1539 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/expression/misc.json +2865 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/expression/numeric.json +481 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/expression/string.json +191 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/expression/timestamp.json +109 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/expression/window.json +4308 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/agg.json +3046 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/array.json +1086 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/bitwise.json +246 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/collection.json +210 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/conditional.json +232 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/conversion.json +26 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/csv.json +140 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/datetime.json +2841 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/generator.json +345 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/hash.json +158 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/json.json +524 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/lambda.json +781 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/map.json +392 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/math.json +2644 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/misc.json +1059 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/predicate.json +1534 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/string.json +3832 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/struct.json +92 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/url.json +114 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/window.json +337 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/function/xml.json +206 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_alter_table.json +495 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_alter_view.json +41 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_analyze_table.json +142 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_cache.json +35 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_create_index.json +22 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_create_table.json +1061 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_delete_from.json +23 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_describe.json +28 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_drop_index.json +16 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_drop_view.json +93 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_insert_into.json +727 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_insert_overwrite.json +319 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_load_data.json +28 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_merge_into.json +101 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_misc.json +82 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_replace_table.json +262 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_select.json +31 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_show_views.json +46 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_uncache.json +16 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/ddl_update.json +23 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/error_alter_table.json +32 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/error_analyze_table.json +11 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/error_create_table.json +25 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/error_describe.json +11 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/error_join.json +18 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/error_load_data.json +11 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/error_misc.json +81 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/error_order_by.json +163 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/error_select.json +74 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/error_with.json +11 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/plan_alter_view.json +18 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/plan_create_view.json +18 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/plan_explain.json +46 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/plan_group_by.json +243 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/plan_hint.json +980 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/plan_insert_into.json +184 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/plan_insert_overwrite.json +55 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/plan_join.json +3134 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/plan_misc.json +378 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/plan_order_by.json +243 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/plan_select.json +2392 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/plan_set_operation.json +1210 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/plan_with.json +41 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/unpivot_join.json +411 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/plan/unpivot_select.json +728 -0
- pysail-0.1.0.dev0/crates/sail-spark-connect/tests/gold_data/table_schema.json +258 -0
- pysail-0.1.0.dev0/crates/sail-sql/Cargo.toml +17 -0
- pysail-0.1.0.dev0/crates/sail-sql/src/data_type.rs +288 -0
- pysail-0.1.0.dev0/crates/sail-sql/src/error.rs +53 -0
- pysail-0.1.0.dev0/crates/sail-sql/src/expression.rs +777 -0
- pysail-0.1.0.dev0/crates/sail-sql/src/lib.rs +9 -0
- pysail-0.1.0.dev0/crates/sail-sql/src/literal.rs +979 -0
- pysail-0.1.0.dev0/crates/sail-sql/src/parse.rs +102 -0
- pysail-0.1.0.dev0/crates/sail-sql/src/parser.rs +148 -0
- pysail-0.1.0.dev0/crates/sail-sql/src/query.rs +567 -0
- pysail-0.1.0.dev0/crates/sail-sql/src/statement.rs +817 -0
- pysail-0.1.0.dev0/crates/sail-sql/src/utils.rs +61 -0
- pysail-0.1.0.dev0/crates/sail-telemetry/Cargo.toml +28 -0
- pysail-0.1.0.dev0/crates/sail-telemetry/examples/hello.rs +68 -0
- pysail-0.1.0.dev0/crates/sail-telemetry/src/lib.rs +1 -0
- pysail-0.1.0.dev0/crates/sail-telemetry/src/telemetry.rs +86 -0
- pysail-0.1.0.dev0/pyproject.toml +88 -0
- pysail-0.1.0.dev0/python/pysail/__init__.py +0 -0
- pysail-0.1.0.dev0/python/pysail/__main__.py +107 -0
- pysail-0.1.0.dev0/python/pysail/examples/__init__.py +0 -0
- pysail-0.1.0.dev0/python/pysail/examples/spark/__init__.py +0 -0
- pysail-0.1.0.dev0/python/pysail/examples/spark/tpch.py +108 -0
- pysail-0.1.0.dev0/python/pysail/spark/__init__.py +7 -0
- pysail-0.1.0.dev0/python/pysail/spark/__main__.py +65 -0
- pysail-0.1.0.dev0/python/pysail/testing/__init__.py +0 -0
- pysail-0.1.0.dev0/python/pysail/testing/spark.py +132 -0
|
@@ -0,0 +1,3957 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.22.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler"
|
|
16
|
+
version = "1.0.2"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "ahash"
|
|
22
|
+
version = "0.8.11"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"cfg-if",
|
|
27
|
+
"const-random",
|
|
28
|
+
"getrandom",
|
|
29
|
+
"once_cell",
|
|
30
|
+
"version_check",
|
|
31
|
+
"zerocopy",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "aho-corasick"
|
|
36
|
+
version = "1.1.3"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
39
|
+
dependencies = [
|
|
40
|
+
"memchr",
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "alloc-no-stdlib"
|
|
45
|
+
version = "2.0.4"
|
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "alloc-stdlib"
|
|
51
|
+
version = "0.2.2"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
|
54
|
+
dependencies = [
|
|
55
|
+
"alloc-no-stdlib",
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "allocator-api2"
|
|
60
|
+
version = "0.2.18"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "android-tzdata"
|
|
66
|
+
version = "0.1.1"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "android_system_properties"
|
|
72
|
+
version = "0.1.5"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
75
|
+
dependencies = [
|
|
76
|
+
"libc",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "anyhow"
|
|
81
|
+
version = "1.0.86"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "arrayref"
|
|
87
|
+
version = "0.3.7"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "arrayvec"
|
|
93
|
+
version = "0.7.4"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "arrow"
|
|
99
|
+
version = "52.1.0"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "6127ea5e585a12ec9f742232442828ebaf264dfa5eefdd71282376c599562b77"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"arrow-arith",
|
|
104
|
+
"arrow-array",
|
|
105
|
+
"arrow-buffer",
|
|
106
|
+
"arrow-cast",
|
|
107
|
+
"arrow-csv",
|
|
108
|
+
"arrow-data",
|
|
109
|
+
"arrow-ipc",
|
|
110
|
+
"arrow-json",
|
|
111
|
+
"arrow-ord",
|
|
112
|
+
"arrow-row",
|
|
113
|
+
"arrow-schema",
|
|
114
|
+
"arrow-select",
|
|
115
|
+
"arrow-string",
|
|
116
|
+
"pyo3",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "arrow-arith"
|
|
121
|
+
version = "52.1.0"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "7add7f39210b7d726e2a8efc0083e7bf06e8f2d15bdb4896b564dce4410fbf5d"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"arrow-array",
|
|
126
|
+
"arrow-buffer",
|
|
127
|
+
"arrow-data",
|
|
128
|
+
"arrow-schema",
|
|
129
|
+
"chrono",
|
|
130
|
+
"half",
|
|
131
|
+
"num",
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "arrow-array"
|
|
136
|
+
version = "52.1.0"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "81c16ec702d3898c2f5cfdc148443c6cd7dbe5bac28399859eb0a3d38f072827"
|
|
139
|
+
dependencies = [
|
|
140
|
+
"ahash",
|
|
141
|
+
"arrow-buffer",
|
|
142
|
+
"arrow-data",
|
|
143
|
+
"arrow-schema",
|
|
144
|
+
"chrono",
|
|
145
|
+
"chrono-tz",
|
|
146
|
+
"half",
|
|
147
|
+
"hashbrown 0.14.5",
|
|
148
|
+
"num",
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "arrow-buffer"
|
|
153
|
+
version = "52.1.0"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "cae6970bab043c4fbc10aee1660ceb5b306d0c42c8cc5f6ae564efcd9759b663"
|
|
156
|
+
dependencies = [
|
|
157
|
+
"bytes",
|
|
158
|
+
"half",
|
|
159
|
+
"num",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "arrow-cast"
|
|
164
|
+
version = "52.1.0"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "1c7ef44f26ef4f8edc392a048324ed5d757ad09135eff6d5509e6450d39e0398"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"arrow-array",
|
|
169
|
+
"arrow-buffer",
|
|
170
|
+
"arrow-data",
|
|
171
|
+
"arrow-schema",
|
|
172
|
+
"arrow-select",
|
|
173
|
+
"atoi",
|
|
174
|
+
"base64 0.22.1",
|
|
175
|
+
"chrono",
|
|
176
|
+
"comfy-table",
|
|
177
|
+
"half",
|
|
178
|
+
"lexical-core",
|
|
179
|
+
"num",
|
|
180
|
+
"ryu",
|
|
181
|
+
]
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "arrow-csv"
|
|
185
|
+
version = "52.1.0"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "5f843490bd258c5182b66e888161bb6f198f49f3792f7c7f98198b924ae0f564"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"arrow-array",
|
|
190
|
+
"arrow-buffer",
|
|
191
|
+
"arrow-cast",
|
|
192
|
+
"arrow-data",
|
|
193
|
+
"arrow-schema",
|
|
194
|
+
"chrono",
|
|
195
|
+
"csv",
|
|
196
|
+
"csv-core",
|
|
197
|
+
"lazy_static",
|
|
198
|
+
"lexical-core",
|
|
199
|
+
"regex",
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "arrow-data"
|
|
204
|
+
version = "52.1.0"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "a769666ffac256dd301006faca1ca553d0ae7cffcf4cd07095f73f95eb226514"
|
|
207
|
+
dependencies = [
|
|
208
|
+
"arrow-buffer",
|
|
209
|
+
"arrow-schema",
|
|
210
|
+
"half",
|
|
211
|
+
"num",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "arrow-ipc"
|
|
216
|
+
version = "52.1.0"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "dbf9c3fb57390a1af0b7bb3b5558c1ee1f63905f3eccf49ae7676a8d1e6e5a72"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"arrow-array",
|
|
221
|
+
"arrow-buffer",
|
|
222
|
+
"arrow-cast",
|
|
223
|
+
"arrow-data",
|
|
224
|
+
"arrow-schema",
|
|
225
|
+
"flatbuffers",
|
|
226
|
+
"lz4_flex",
|
|
227
|
+
]
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "arrow-json"
|
|
231
|
+
version = "52.1.0"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "654e7f3724176b66ddfacba31af397c48e106fbe4d281c8144e7d237df5acfd7"
|
|
234
|
+
dependencies = [
|
|
235
|
+
"arrow-array",
|
|
236
|
+
"arrow-buffer",
|
|
237
|
+
"arrow-cast",
|
|
238
|
+
"arrow-data",
|
|
239
|
+
"arrow-schema",
|
|
240
|
+
"chrono",
|
|
241
|
+
"half",
|
|
242
|
+
"indexmap 2.2.6",
|
|
243
|
+
"lexical-core",
|
|
244
|
+
"num",
|
|
245
|
+
"serde",
|
|
246
|
+
"serde_json",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "arrow-ord"
|
|
251
|
+
version = "52.1.0"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "e8008370e624e8e3c68174faaf793540287106cfda8ad1da862fdc53d8e096b4"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"arrow-array",
|
|
256
|
+
"arrow-buffer",
|
|
257
|
+
"arrow-data",
|
|
258
|
+
"arrow-schema",
|
|
259
|
+
"arrow-select",
|
|
260
|
+
"half",
|
|
261
|
+
"num",
|
|
262
|
+
]
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "arrow-row"
|
|
266
|
+
version = "52.1.0"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "ca5e3a6b7fda8d9fe03f3b18a2d946354ea7f3c8e4076dbdb502ad50d9d44824"
|
|
269
|
+
dependencies = [
|
|
270
|
+
"ahash",
|
|
271
|
+
"arrow-array",
|
|
272
|
+
"arrow-buffer",
|
|
273
|
+
"arrow-data",
|
|
274
|
+
"arrow-schema",
|
|
275
|
+
"half",
|
|
276
|
+
"hashbrown 0.14.5",
|
|
277
|
+
]
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "arrow-schema"
|
|
281
|
+
version = "52.1.0"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "dab1c12b40e29d9f3b699e0203c2a73ba558444c05e388a4377208f8f9c97eee"
|
|
284
|
+
dependencies = [
|
|
285
|
+
"bitflags 2.6.0",
|
|
286
|
+
"serde",
|
|
287
|
+
]
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "arrow-select"
|
|
291
|
+
version = "52.1.0"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "e80159088ffe8c48965cb9b1a7c968b2729f29f37363df7eca177fc3281fe7c3"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"ahash",
|
|
296
|
+
"arrow-array",
|
|
297
|
+
"arrow-buffer",
|
|
298
|
+
"arrow-data",
|
|
299
|
+
"arrow-schema",
|
|
300
|
+
"num",
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "arrow-string"
|
|
305
|
+
version = "52.1.0"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "0fd04a6ea7de183648edbcb7a6dd925bbd04c210895f6384c780e27a9b54afcd"
|
|
308
|
+
dependencies = [
|
|
309
|
+
"arrow-array",
|
|
310
|
+
"arrow-buffer",
|
|
311
|
+
"arrow-data",
|
|
312
|
+
"arrow-schema",
|
|
313
|
+
"arrow-select",
|
|
314
|
+
"memchr",
|
|
315
|
+
"num",
|
|
316
|
+
"regex",
|
|
317
|
+
"regex-syntax 0.8.4",
|
|
318
|
+
]
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "async-compression"
|
|
322
|
+
version = "0.4.11"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "cd066d0b4ef8ecb03a55319dc13aa6910616d0f44008a045bb1835af830abff5"
|
|
325
|
+
dependencies = [
|
|
326
|
+
"brotli",
|
|
327
|
+
"bzip2",
|
|
328
|
+
"flate2",
|
|
329
|
+
"futures-core",
|
|
330
|
+
"futures-io",
|
|
331
|
+
"memchr",
|
|
332
|
+
"pin-project-lite",
|
|
333
|
+
"tokio",
|
|
334
|
+
"xz2",
|
|
335
|
+
"zstd",
|
|
336
|
+
"zstd-safe",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "async-recursion"
|
|
341
|
+
version = "1.1.1"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"proc-macro2",
|
|
346
|
+
"quote",
|
|
347
|
+
"syn 2.0.72",
|
|
348
|
+
]
|
|
349
|
+
|
|
350
|
+
[[package]]
|
|
351
|
+
name = "async-stream"
|
|
352
|
+
version = "0.3.5"
|
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
+
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
|
|
355
|
+
dependencies = [
|
|
356
|
+
"async-stream-impl",
|
|
357
|
+
"futures-core",
|
|
358
|
+
"pin-project-lite",
|
|
359
|
+
]
|
|
360
|
+
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "async-stream-impl"
|
|
363
|
+
version = "0.3.5"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
|
366
|
+
dependencies = [
|
|
367
|
+
"proc-macro2",
|
|
368
|
+
"quote",
|
|
369
|
+
"syn 2.0.72",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "async-trait"
|
|
374
|
+
version = "0.1.81"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"proc-macro2",
|
|
379
|
+
"quote",
|
|
380
|
+
"syn 2.0.72",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "atoi"
|
|
385
|
+
version = "2.0.0"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"num-traits",
|
|
390
|
+
]
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "autocfg"
|
|
394
|
+
version = "1.3.0"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "axum"
|
|
400
|
+
version = "0.6.20"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"async-trait",
|
|
405
|
+
"axum-core",
|
|
406
|
+
"bitflags 1.3.2",
|
|
407
|
+
"bytes",
|
|
408
|
+
"futures-util",
|
|
409
|
+
"http",
|
|
410
|
+
"http-body",
|
|
411
|
+
"hyper",
|
|
412
|
+
"itoa",
|
|
413
|
+
"matchit",
|
|
414
|
+
"memchr",
|
|
415
|
+
"mime",
|
|
416
|
+
"percent-encoding",
|
|
417
|
+
"pin-project-lite",
|
|
418
|
+
"rustversion",
|
|
419
|
+
"serde",
|
|
420
|
+
"sync_wrapper",
|
|
421
|
+
"tower",
|
|
422
|
+
"tower-layer",
|
|
423
|
+
"tower-service",
|
|
424
|
+
]
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "axum-core"
|
|
428
|
+
version = "0.3.4"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
|
|
431
|
+
dependencies = [
|
|
432
|
+
"async-trait",
|
|
433
|
+
"bytes",
|
|
434
|
+
"futures-util",
|
|
435
|
+
"http",
|
|
436
|
+
"http-body",
|
|
437
|
+
"mime",
|
|
438
|
+
"rustversion",
|
|
439
|
+
"tower-layer",
|
|
440
|
+
"tower-service",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "backtrace"
|
|
445
|
+
version = "0.3.73"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
|
|
448
|
+
dependencies = [
|
|
449
|
+
"addr2line",
|
|
450
|
+
"cc",
|
|
451
|
+
"cfg-if",
|
|
452
|
+
"libc",
|
|
453
|
+
"miniz_oxide",
|
|
454
|
+
"object",
|
|
455
|
+
"rustc-demangle",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "base64"
|
|
460
|
+
version = "0.21.7"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "base64"
|
|
466
|
+
version = "0.22.1"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "bitflags"
|
|
472
|
+
version = "1.3.2"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "bitflags"
|
|
478
|
+
version = "2.6.0"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "blake2"
|
|
484
|
+
version = "0.10.6"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
|
487
|
+
dependencies = [
|
|
488
|
+
"digest",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "blake3"
|
|
493
|
+
version = "1.5.1"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "30cca6d3674597c30ddf2c587bf8d9d65c9a84d2326d941cc79c9842dfe0ef52"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"arrayref",
|
|
498
|
+
"arrayvec",
|
|
499
|
+
"cc",
|
|
500
|
+
"cfg-if",
|
|
501
|
+
"constant_time_eq",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "block-buffer"
|
|
506
|
+
version = "0.10.4"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
509
|
+
dependencies = [
|
|
510
|
+
"generic-array",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "brotli"
|
|
515
|
+
version = "6.0.0"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"alloc-no-stdlib",
|
|
520
|
+
"alloc-stdlib",
|
|
521
|
+
"brotli-decompressor",
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "brotli-decompressor"
|
|
526
|
+
version = "4.0.1"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
|
|
529
|
+
dependencies = [
|
|
530
|
+
"alloc-no-stdlib",
|
|
531
|
+
"alloc-stdlib",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "bumpalo"
|
|
536
|
+
version = "3.16.0"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "bytemuck"
|
|
542
|
+
version = "1.16.1"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "b236fc92302c97ed75b38da1f4917b5cdda4984745740f153a5d3059e48d725e"
|
|
545
|
+
dependencies = [
|
|
546
|
+
"bytemuck_derive",
|
|
547
|
+
]
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "bytemuck_derive"
|
|
551
|
+
version = "1.7.0"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "1ee891b04274a59bd38b412188e24b849617b2e45a0fd8d057deb63e7403761b"
|
|
554
|
+
dependencies = [
|
|
555
|
+
"proc-macro2",
|
|
556
|
+
"quote",
|
|
557
|
+
"syn 2.0.72",
|
|
558
|
+
]
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "byteorder"
|
|
562
|
+
version = "1.5.0"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "bytes"
|
|
568
|
+
version = "1.6.0"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "bzip2"
|
|
574
|
+
version = "0.4.4"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"bzip2-sys",
|
|
579
|
+
"libc",
|
|
580
|
+
]
|
|
581
|
+
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "bzip2-sys"
|
|
584
|
+
version = "0.1.11+1.0.8"
|
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
+
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
|
|
587
|
+
dependencies = [
|
|
588
|
+
"cc",
|
|
589
|
+
"libc",
|
|
590
|
+
"pkg-config",
|
|
591
|
+
]
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "cc"
|
|
595
|
+
version = "1.0.101"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "ac367972e516d45567c7eafc73d24e1c193dcf200a8d94e9db7b3d38b349572d"
|
|
598
|
+
dependencies = [
|
|
599
|
+
"jobserver",
|
|
600
|
+
"libc",
|
|
601
|
+
"once_cell",
|
|
602
|
+
]
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "cfg-if"
|
|
606
|
+
version = "1.0.0"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "chrono"
|
|
612
|
+
version = "0.4.38"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
|
|
615
|
+
dependencies = [
|
|
616
|
+
"android-tzdata",
|
|
617
|
+
"iana-time-zone",
|
|
618
|
+
"js-sys",
|
|
619
|
+
"num-traits",
|
|
620
|
+
"wasm-bindgen",
|
|
621
|
+
"windows-targets",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "chrono-tz"
|
|
626
|
+
version = "0.9.0"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"chrono",
|
|
631
|
+
"chrono-tz-build",
|
|
632
|
+
"phf",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "chrono-tz-build"
|
|
637
|
+
version = "0.3.0"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"parse-zoneinfo",
|
|
642
|
+
"phf",
|
|
643
|
+
"phf_codegen",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "comfy-table"
|
|
648
|
+
version = "7.1.1"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "b34115915337defe99b2aff5c2ce6771e5fbc4079f4b506301f5cf394c8452f7"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"crossterm",
|
|
653
|
+
"strum",
|
|
654
|
+
"strum_macros",
|
|
655
|
+
"unicode-width",
|
|
656
|
+
]
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "const-random"
|
|
660
|
+
version = "0.1.18"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
663
|
+
dependencies = [
|
|
664
|
+
"const-random-macro",
|
|
665
|
+
]
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "const-random-macro"
|
|
669
|
+
version = "0.1.16"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
672
|
+
dependencies = [
|
|
673
|
+
"getrandom",
|
|
674
|
+
"once_cell",
|
|
675
|
+
"tiny-keccak",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "constant_time_eq"
|
|
680
|
+
version = "0.3.0"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "core-foundation"
|
|
686
|
+
version = "0.9.4"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"core-foundation-sys",
|
|
691
|
+
"libc",
|
|
692
|
+
]
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "core-foundation-sys"
|
|
696
|
+
version = "0.8.6"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "cpufeatures"
|
|
702
|
+
version = "0.2.12"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
|
|
705
|
+
dependencies = [
|
|
706
|
+
"libc",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "crc32fast"
|
|
711
|
+
version = "1.4.2"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
|
714
|
+
dependencies = [
|
|
715
|
+
"cfg-if",
|
|
716
|
+
]
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "crossterm"
|
|
720
|
+
version = "0.27.0"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
|
|
723
|
+
dependencies = [
|
|
724
|
+
"bitflags 2.6.0",
|
|
725
|
+
"crossterm_winapi",
|
|
726
|
+
"libc",
|
|
727
|
+
"parking_lot",
|
|
728
|
+
"winapi",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "crossterm_winapi"
|
|
733
|
+
version = "0.9.1"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
736
|
+
dependencies = [
|
|
737
|
+
"winapi",
|
|
738
|
+
]
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "crunchy"
|
|
742
|
+
version = "0.2.2"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "crypto-common"
|
|
748
|
+
version = "0.1.6"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
751
|
+
dependencies = [
|
|
752
|
+
"generic-array",
|
|
753
|
+
"typenum",
|
|
754
|
+
]
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "csv"
|
|
758
|
+
version = "1.3.0"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
|
|
761
|
+
dependencies = [
|
|
762
|
+
"csv-core",
|
|
763
|
+
"itoa",
|
|
764
|
+
"ryu",
|
|
765
|
+
"serde",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "csv-core"
|
|
770
|
+
version = "0.1.11"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
|
|
773
|
+
dependencies = [
|
|
774
|
+
"memchr",
|
|
775
|
+
]
|
|
776
|
+
|
|
777
|
+
[[package]]
|
|
778
|
+
name = "dashmap"
|
|
779
|
+
version = "5.5.3"
|
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
+
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
782
|
+
dependencies = [
|
|
783
|
+
"cfg-if",
|
|
784
|
+
"hashbrown 0.14.5",
|
|
785
|
+
"lock_api",
|
|
786
|
+
"once_cell",
|
|
787
|
+
"parking_lot_core",
|
|
788
|
+
]
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "datafusion"
|
|
792
|
+
version = "40.0.0"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "ab9d55a9cd2634818953809f75ebe5248b00dd43c3227efb2a51a2d5feaad54e"
|
|
795
|
+
dependencies = [
|
|
796
|
+
"ahash",
|
|
797
|
+
"arrow",
|
|
798
|
+
"arrow-array",
|
|
799
|
+
"arrow-ipc",
|
|
800
|
+
"arrow-schema",
|
|
801
|
+
"async-compression",
|
|
802
|
+
"async-trait",
|
|
803
|
+
"bytes",
|
|
804
|
+
"bzip2",
|
|
805
|
+
"chrono",
|
|
806
|
+
"dashmap",
|
|
807
|
+
"datafusion-common",
|
|
808
|
+
"datafusion-common-runtime",
|
|
809
|
+
"datafusion-execution",
|
|
810
|
+
"datafusion-expr",
|
|
811
|
+
"datafusion-functions",
|
|
812
|
+
"datafusion-functions-aggregate",
|
|
813
|
+
"datafusion-functions-array",
|
|
814
|
+
"datafusion-optimizer",
|
|
815
|
+
"datafusion-physical-expr",
|
|
816
|
+
"datafusion-physical-expr-common",
|
|
817
|
+
"datafusion-physical-plan",
|
|
818
|
+
"datafusion-sql",
|
|
819
|
+
"flate2",
|
|
820
|
+
"futures",
|
|
821
|
+
"glob",
|
|
822
|
+
"half",
|
|
823
|
+
"hashbrown 0.14.5",
|
|
824
|
+
"indexmap 2.2.6",
|
|
825
|
+
"itertools 0.12.1",
|
|
826
|
+
"log",
|
|
827
|
+
"num_cpus",
|
|
828
|
+
"object_store",
|
|
829
|
+
"parking_lot",
|
|
830
|
+
"parquet",
|
|
831
|
+
"paste",
|
|
832
|
+
"pin-project-lite",
|
|
833
|
+
"rand",
|
|
834
|
+
"sqlparser 0.47.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
835
|
+
"tempfile",
|
|
836
|
+
"tokio",
|
|
837
|
+
"tokio-util",
|
|
838
|
+
"url",
|
|
839
|
+
"uuid",
|
|
840
|
+
"xz2",
|
|
841
|
+
"zstd",
|
|
842
|
+
]
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "datafusion-common"
|
|
846
|
+
version = "40.0.0"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "def66b642959e7f96f5d2da22e1f43d3bd35598f821e5ce351a0553e0f1b7367"
|
|
849
|
+
dependencies = [
|
|
850
|
+
"ahash",
|
|
851
|
+
"arrow",
|
|
852
|
+
"arrow-array",
|
|
853
|
+
"arrow-buffer",
|
|
854
|
+
"arrow-schema",
|
|
855
|
+
"chrono",
|
|
856
|
+
"half",
|
|
857
|
+
"hashbrown 0.14.5",
|
|
858
|
+
"instant",
|
|
859
|
+
"libc",
|
|
860
|
+
"num_cpus",
|
|
861
|
+
"object_store",
|
|
862
|
+
"parquet",
|
|
863
|
+
"pyo3",
|
|
864
|
+
"sqlparser 0.47.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "datafusion-common-runtime"
|
|
869
|
+
version = "40.0.0"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "f104bb9cb44c06c9badf8a0d7e0855e5f7fa5e395b887d7f835e8a9457dc1352"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"tokio",
|
|
874
|
+
]
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "datafusion-execution"
|
|
878
|
+
version = "40.0.0"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "2ac0fd8b5d80bbca3fc3b6f40da4e9f6907354824ec3b18bbd83fee8cf5c3c3e"
|
|
881
|
+
dependencies = [
|
|
882
|
+
"arrow",
|
|
883
|
+
"chrono",
|
|
884
|
+
"dashmap",
|
|
885
|
+
"datafusion-common",
|
|
886
|
+
"datafusion-expr",
|
|
887
|
+
"futures",
|
|
888
|
+
"hashbrown 0.14.5",
|
|
889
|
+
"log",
|
|
890
|
+
"object_store",
|
|
891
|
+
"parking_lot",
|
|
892
|
+
"rand",
|
|
893
|
+
"tempfile",
|
|
894
|
+
"url",
|
|
895
|
+
]
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "datafusion-expr"
|
|
899
|
+
version = "40.0.0"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "2103d2cc16fb11ef1fa993a6cac57ed5cb028601db4b97566c90e5fa77aa1e68"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"ahash",
|
|
904
|
+
"arrow",
|
|
905
|
+
"arrow-array",
|
|
906
|
+
"arrow-buffer",
|
|
907
|
+
"chrono",
|
|
908
|
+
"datafusion-common",
|
|
909
|
+
"paste",
|
|
910
|
+
"serde_json",
|
|
911
|
+
"sqlparser 0.47.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
912
|
+
"strum",
|
|
913
|
+
"strum_macros",
|
|
914
|
+
]
|
|
915
|
+
|
|
916
|
+
[[package]]
|
|
917
|
+
name = "datafusion-functions"
|
|
918
|
+
version = "40.0.0"
|
|
919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
+
checksum = "a369332afd0ef5bd565f6db2139fb9f1dfdd0afa75a7f70f000b74208d76994f"
|
|
921
|
+
dependencies = [
|
|
922
|
+
"arrow",
|
|
923
|
+
"base64 0.22.1",
|
|
924
|
+
"blake2",
|
|
925
|
+
"blake3",
|
|
926
|
+
"chrono",
|
|
927
|
+
"datafusion-common",
|
|
928
|
+
"datafusion-execution",
|
|
929
|
+
"datafusion-expr",
|
|
930
|
+
"hashbrown 0.14.5",
|
|
931
|
+
"hex",
|
|
932
|
+
"itertools 0.12.1",
|
|
933
|
+
"log",
|
|
934
|
+
"md-5",
|
|
935
|
+
"rand",
|
|
936
|
+
"regex",
|
|
937
|
+
"sha2",
|
|
938
|
+
"unicode-segmentation",
|
|
939
|
+
"uuid",
|
|
940
|
+
]
|
|
941
|
+
|
|
942
|
+
[[package]]
|
|
943
|
+
name = "datafusion-functions-aggregate"
|
|
944
|
+
version = "40.0.0"
|
|
945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
+
checksum = "92718db1aff70c47e5abf9fc975768530097059e5db7c7b78cd64b5e9a11fc77"
|
|
947
|
+
dependencies = [
|
|
948
|
+
"ahash",
|
|
949
|
+
"arrow",
|
|
950
|
+
"arrow-schema",
|
|
951
|
+
"datafusion-common",
|
|
952
|
+
"datafusion-execution",
|
|
953
|
+
"datafusion-expr",
|
|
954
|
+
"datafusion-physical-expr-common",
|
|
955
|
+
"log",
|
|
956
|
+
"paste",
|
|
957
|
+
"sqlparser 0.47.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
958
|
+
]
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "datafusion-functions-array"
|
|
962
|
+
version = "40.0.0"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "30bb80f46ff3dcf4bb4510209c2ba9b8ce1b716ac8b7bf70c6bf7dca6260c831"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"arrow",
|
|
967
|
+
"arrow-array",
|
|
968
|
+
"arrow-buffer",
|
|
969
|
+
"arrow-ord",
|
|
970
|
+
"arrow-schema",
|
|
971
|
+
"datafusion-common",
|
|
972
|
+
"datafusion-execution",
|
|
973
|
+
"datafusion-expr",
|
|
974
|
+
"datafusion-functions",
|
|
975
|
+
"datafusion-functions-aggregate",
|
|
976
|
+
"itertools 0.12.1",
|
|
977
|
+
"log",
|
|
978
|
+
"paste",
|
|
979
|
+
]
|
|
980
|
+
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "datafusion-optimizer"
|
|
983
|
+
version = "40.0.0"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "82f34692011bec4fdd6fc18c264bf8037b8625d801e6dd8f5111af15cb6d71d3"
|
|
986
|
+
dependencies = [
|
|
987
|
+
"arrow",
|
|
988
|
+
"async-trait",
|
|
989
|
+
"chrono",
|
|
990
|
+
"datafusion-common",
|
|
991
|
+
"datafusion-expr",
|
|
992
|
+
"datafusion-physical-expr",
|
|
993
|
+
"hashbrown 0.14.5",
|
|
994
|
+
"indexmap 2.2.6",
|
|
995
|
+
"itertools 0.12.1",
|
|
996
|
+
"log",
|
|
997
|
+
"paste",
|
|
998
|
+
"regex-syntax 0.8.4",
|
|
999
|
+
]
|
|
1000
|
+
|
|
1001
|
+
[[package]]
|
|
1002
|
+
name = "datafusion-physical-expr"
|
|
1003
|
+
version = "40.0.0"
|
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
+
checksum = "45538630defedb553771434a437f7ca8f04b9b3e834344aafacecb27dc65d5e5"
|
|
1006
|
+
dependencies = [
|
|
1007
|
+
"ahash",
|
|
1008
|
+
"arrow",
|
|
1009
|
+
"arrow-array",
|
|
1010
|
+
"arrow-buffer",
|
|
1011
|
+
"arrow-ord",
|
|
1012
|
+
"arrow-schema",
|
|
1013
|
+
"arrow-string",
|
|
1014
|
+
"base64 0.22.1",
|
|
1015
|
+
"chrono",
|
|
1016
|
+
"datafusion-common",
|
|
1017
|
+
"datafusion-execution",
|
|
1018
|
+
"datafusion-expr",
|
|
1019
|
+
"datafusion-physical-expr-common",
|
|
1020
|
+
"half",
|
|
1021
|
+
"hashbrown 0.14.5",
|
|
1022
|
+
"hex",
|
|
1023
|
+
"indexmap 2.2.6",
|
|
1024
|
+
"itertools 0.12.1",
|
|
1025
|
+
"log",
|
|
1026
|
+
"paste",
|
|
1027
|
+
"petgraph",
|
|
1028
|
+
"regex",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "datafusion-physical-expr-common"
|
|
1033
|
+
version = "40.0.0"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "9d8a72b0ca908e074aaeca52c14ddf5c28d22361e9cb6bc79bb733cd6661b536"
|
|
1036
|
+
dependencies = [
|
|
1037
|
+
"ahash",
|
|
1038
|
+
"arrow",
|
|
1039
|
+
"datafusion-common",
|
|
1040
|
+
"datafusion-expr",
|
|
1041
|
+
"hashbrown 0.14.5",
|
|
1042
|
+
"rand",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "datafusion-physical-plan"
|
|
1047
|
+
version = "40.0.0"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "b504eae6107a342775e22e323e9103f7f42db593ec6103b28605b7b7b1405c4a"
|
|
1050
|
+
dependencies = [
|
|
1051
|
+
"ahash",
|
|
1052
|
+
"arrow",
|
|
1053
|
+
"arrow-array",
|
|
1054
|
+
"arrow-buffer",
|
|
1055
|
+
"arrow-ord",
|
|
1056
|
+
"arrow-schema",
|
|
1057
|
+
"async-trait",
|
|
1058
|
+
"chrono",
|
|
1059
|
+
"datafusion-common",
|
|
1060
|
+
"datafusion-common-runtime",
|
|
1061
|
+
"datafusion-execution",
|
|
1062
|
+
"datafusion-expr",
|
|
1063
|
+
"datafusion-functions-aggregate",
|
|
1064
|
+
"datafusion-physical-expr",
|
|
1065
|
+
"datafusion-physical-expr-common",
|
|
1066
|
+
"futures",
|
|
1067
|
+
"half",
|
|
1068
|
+
"hashbrown 0.14.5",
|
|
1069
|
+
"indexmap 2.2.6",
|
|
1070
|
+
"itertools 0.12.1",
|
|
1071
|
+
"log",
|
|
1072
|
+
"once_cell",
|
|
1073
|
+
"parking_lot",
|
|
1074
|
+
"pin-project-lite",
|
|
1075
|
+
"rand",
|
|
1076
|
+
"tokio",
|
|
1077
|
+
]
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "datafusion-sql"
|
|
1081
|
+
version = "40.0.0"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "e5db33f323f41b95ae201318ba654a9bf11113e58a51a1dff977b1a836d3d889"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"arrow",
|
|
1086
|
+
"arrow-array",
|
|
1087
|
+
"arrow-schema",
|
|
1088
|
+
"datafusion-common",
|
|
1089
|
+
"datafusion-expr",
|
|
1090
|
+
"log",
|
|
1091
|
+
"regex",
|
|
1092
|
+
"sqlparser 0.47.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
1093
|
+
"strum",
|
|
1094
|
+
]
|
|
1095
|
+
|
|
1096
|
+
[[package]]
|
|
1097
|
+
name = "digest"
|
|
1098
|
+
version = "0.10.7"
|
|
1099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1100
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1101
|
+
dependencies = [
|
|
1102
|
+
"block-buffer",
|
|
1103
|
+
"crypto-common",
|
|
1104
|
+
"subtle",
|
|
1105
|
+
]
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "doc-comment"
|
|
1109
|
+
version = "0.3.3"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
1112
|
+
|
|
1113
|
+
[[package]]
|
|
1114
|
+
name = "either"
|
|
1115
|
+
version = "1.13.0"
|
|
1116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
|
1118
|
+
|
|
1119
|
+
[[package]]
|
|
1120
|
+
name = "equivalent"
|
|
1121
|
+
version = "1.0.1"
|
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "errno"
|
|
1127
|
+
version = "0.3.9"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
1130
|
+
dependencies = [
|
|
1131
|
+
"libc",
|
|
1132
|
+
"windows-sys",
|
|
1133
|
+
]
|
|
1134
|
+
|
|
1135
|
+
[[package]]
|
|
1136
|
+
name = "fastrand"
|
|
1137
|
+
version = "2.1.0"
|
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
+
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
|
1140
|
+
|
|
1141
|
+
[[package]]
|
|
1142
|
+
name = "fixedbitset"
|
|
1143
|
+
version = "0.4.2"
|
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "flatbuffers"
|
|
1149
|
+
version = "24.3.25"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "8add37afff2d4ffa83bc748a70b4b1370984f6980768554182424ef71447c35f"
|
|
1152
|
+
dependencies = [
|
|
1153
|
+
"bitflags 1.3.2",
|
|
1154
|
+
"rustc_version",
|
|
1155
|
+
]
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "flate2"
|
|
1159
|
+
version = "1.0.30"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
|
|
1162
|
+
dependencies = [
|
|
1163
|
+
"crc32fast",
|
|
1164
|
+
"miniz_oxide",
|
|
1165
|
+
]
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "fnv"
|
|
1169
|
+
version = "1.0.7"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1172
|
+
|
|
1173
|
+
[[package]]
|
|
1174
|
+
name = "form_urlencoded"
|
|
1175
|
+
version = "1.2.1"
|
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
1178
|
+
dependencies = [
|
|
1179
|
+
"percent-encoding",
|
|
1180
|
+
]
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "futures"
|
|
1184
|
+
version = "0.3.30"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
|
1187
|
+
dependencies = [
|
|
1188
|
+
"futures-channel",
|
|
1189
|
+
"futures-core",
|
|
1190
|
+
"futures-executor",
|
|
1191
|
+
"futures-io",
|
|
1192
|
+
"futures-sink",
|
|
1193
|
+
"futures-task",
|
|
1194
|
+
"futures-util",
|
|
1195
|
+
]
|
|
1196
|
+
|
|
1197
|
+
[[package]]
|
|
1198
|
+
name = "futures-channel"
|
|
1199
|
+
version = "0.3.30"
|
|
1200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
|
1202
|
+
dependencies = [
|
|
1203
|
+
"futures-core",
|
|
1204
|
+
"futures-sink",
|
|
1205
|
+
]
|
|
1206
|
+
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "futures-core"
|
|
1209
|
+
version = "0.3.30"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "futures-executor"
|
|
1215
|
+
version = "0.3.30"
|
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
|
1218
|
+
dependencies = [
|
|
1219
|
+
"futures-core",
|
|
1220
|
+
"futures-task",
|
|
1221
|
+
"futures-util",
|
|
1222
|
+
]
|
|
1223
|
+
|
|
1224
|
+
[[package]]
|
|
1225
|
+
name = "futures-io"
|
|
1226
|
+
version = "0.3.30"
|
|
1227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "futures-macro"
|
|
1232
|
+
version = "0.3.30"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
1235
|
+
dependencies = [
|
|
1236
|
+
"proc-macro2",
|
|
1237
|
+
"quote",
|
|
1238
|
+
"syn 2.0.72",
|
|
1239
|
+
]
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "futures-sink"
|
|
1243
|
+
version = "0.3.30"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "futures-task"
|
|
1249
|
+
version = "0.3.30"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "futures-util"
|
|
1255
|
+
version = "0.3.30"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
|
1258
|
+
dependencies = [
|
|
1259
|
+
"futures-channel",
|
|
1260
|
+
"futures-core",
|
|
1261
|
+
"futures-io",
|
|
1262
|
+
"futures-macro",
|
|
1263
|
+
"futures-sink",
|
|
1264
|
+
"futures-task",
|
|
1265
|
+
"memchr",
|
|
1266
|
+
"pin-project-lite",
|
|
1267
|
+
"pin-utils",
|
|
1268
|
+
"slab",
|
|
1269
|
+
]
|
|
1270
|
+
|
|
1271
|
+
[[package]]
|
|
1272
|
+
name = "generic-array"
|
|
1273
|
+
version = "0.14.7"
|
|
1274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1275
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1276
|
+
dependencies = [
|
|
1277
|
+
"typenum",
|
|
1278
|
+
"version_check",
|
|
1279
|
+
]
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "getrandom"
|
|
1283
|
+
version = "0.2.15"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
1286
|
+
dependencies = [
|
|
1287
|
+
"cfg-if",
|
|
1288
|
+
"libc",
|
|
1289
|
+
"wasi",
|
|
1290
|
+
]
|
|
1291
|
+
|
|
1292
|
+
[[package]]
|
|
1293
|
+
name = "gimli"
|
|
1294
|
+
version = "0.29.0"
|
|
1295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
+
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "glob"
|
|
1300
|
+
version = "0.3.1"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
1303
|
+
|
|
1304
|
+
[[package]]
|
|
1305
|
+
name = "h2"
|
|
1306
|
+
version = "0.3.26"
|
|
1307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
+
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
|
|
1309
|
+
dependencies = [
|
|
1310
|
+
"bytes",
|
|
1311
|
+
"fnv",
|
|
1312
|
+
"futures-core",
|
|
1313
|
+
"futures-sink",
|
|
1314
|
+
"futures-util",
|
|
1315
|
+
"http",
|
|
1316
|
+
"indexmap 2.2.6",
|
|
1317
|
+
"slab",
|
|
1318
|
+
"tokio",
|
|
1319
|
+
"tokio-util",
|
|
1320
|
+
"tracing",
|
|
1321
|
+
]
|
|
1322
|
+
|
|
1323
|
+
[[package]]
|
|
1324
|
+
name = "half"
|
|
1325
|
+
version = "2.4.1"
|
|
1326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
+
checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
|
|
1328
|
+
dependencies = [
|
|
1329
|
+
"bytemuck",
|
|
1330
|
+
"cfg-if",
|
|
1331
|
+
"crunchy",
|
|
1332
|
+
"num-traits",
|
|
1333
|
+
]
|
|
1334
|
+
|
|
1335
|
+
[[package]]
|
|
1336
|
+
name = "hashbrown"
|
|
1337
|
+
version = "0.12.3"
|
|
1338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1340
|
+
|
|
1341
|
+
[[package]]
|
|
1342
|
+
name = "hashbrown"
|
|
1343
|
+
version = "0.14.5"
|
|
1344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1346
|
+
dependencies = [
|
|
1347
|
+
"ahash",
|
|
1348
|
+
"allocator-api2",
|
|
1349
|
+
]
|
|
1350
|
+
|
|
1351
|
+
[[package]]
|
|
1352
|
+
name = "hdrhistogram"
|
|
1353
|
+
version = "7.5.4"
|
|
1354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1355
|
+
checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d"
|
|
1356
|
+
dependencies = [
|
|
1357
|
+
"byteorder",
|
|
1358
|
+
"num-traits",
|
|
1359
|
+
]
|
|
1360
|
+
|
|
1361
|
+
[[package]]
|
|
1362
|
+
name = "heck"
|
|
1363
|
+
version = "0.4.1"
|
|
1364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1365
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1366
|
+
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "heck"
|
|
1369
|
+
version = "0.5.0"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1372
|
+
|
|
1373
|
+
[[package]]
|
|
1374
|
+
name = "hermit-abi"
|
|
1375
|
+
version = "0.3.9"
|
|
1376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1377
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
1378
|
+
|
|
1379
|
+
[[package]]
|
|
1380
|
+
name = "hex"
|
|
1381
|
+
version = "0.4.3"
|
|
1382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1383
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1384
|
+
|
|
1385
|
+
[[package]]
|
|
1386
|
+
name = "html-escape"
|
|
1387
|
+
version = "0.2.13"
|
|
1388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
+
checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
|
|
1390
|
+
dependencies = [
|
|
1391
|
+
"utf8-width",
|
|
1392
|
+
]
|
|
1393
|
+
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "http"
|
|
1396
|
+
version = "0.2.12"
|
|
1397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
1399
|
+
dependencies = [
|
|
1400
|
+
"bytes",
|
|
1401
|
+
"fnv",
|
|
1402
|
+
"itoa",
|
|
1403
|
+
]
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "http-body"
|
|
1407
|
+
version = "0.4.6"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
1410
|
+
dependencies = [
|
|
1411
|
+
"bytes",
|
|
1412
|
+
"http",
|
|
1413
|
+
"pin-project-lite",
|
|
1414
|
+
]
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "http-range-header"
|
|
1418
|
+
version = "0.3.1"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
|
|
1421
|
+
|
|
1422
|
+
[[package]]
|
|
1423
|
+
name = "httparse"
|
|
1424
|
+
version = "1.9.4"
|
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
+
checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
|
|
1427
|
+
|
|
1428
|
+
[[package]]
|
|
1429
|
+
name = "httpdate"
|
|
1430
|
+
version = "1.0.3"
|
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "humantime"
|
|
1436
|
+
version = "2.1.0"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "hyper"
|
|
1442
|
+
version = "0.14.29"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "f361cde2f109281a220d4307746cdfd5ee3f410da58a70377762396775634b33"
|
|
1445
|
+
dependencies = [
|
|
1446
|
+
"bytes",
|
|
1447
|
+
"futures-channel",
|
|
1448
|
+
"futures-core",
|
|
1449
|
+
"futures-util",
|
|
1450
|
+
"h2",
|
|
1451
|
+
"http",
|
|
1452
|
+
"http-body",
|
|
1453
|
+
"httparse",
|
|
1454
|
+
"httpdate",
|
|
1455
|
+
"itoa",
|
|
1456
|
+
"pin-project-lite",
|
|
1457
|
+
"socket2",
|
|
1458
|
+
"tokio",
|
|
1459
|
+
"tower-service",
|
|
1460
|
+
"tracing",
|
|
1461
|
+
"want",
|
|
1462
|
+
]
|
|
1463
|
+
|
|
1464
|
+
[[package]]
|
|
1465
|
+
name = "hyper-timeout"
|
|
1466
|
+
version = "0.4.1"
|
|
1467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
|
+
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
|
|
1469
|
+
dependencies = [
|
|
1470
|
+
"hyper",
|
|
1471
|
+
"pin-project-lite",
|
|
1472
|
+
"tokio",
|
|
1473
|
+
"tokio-io-timeout",
|
|
1474
|
+
]
|
|
1475
|
+
|
|
1476
|
+
[[package]]
|
|
1477
|
+
name = "iana-time-zone"
|
|
1478
|
+
version = "0.1.60"
|
|
1479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
+
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
|
|
1481
|
+
dependencies = [
|
|
1482
|
+
"android_system_properties",
|
|
1483
|
+
"core-foundation-sys",
|
|
1484
|
+
"iana-time-zone-haiku",
|
|
1485
|
+
"js-sys",
|
|
1486
|
+
"wasm-bindgen",
|
|
1487
|
+
"windows-core",
|
|
1488
|
+
]
|
|
1489
|
+
|
|
1490
|
+
[[package]]
|
|
1491
|
+
name = "iana-time-zone-haiku"
|
|
1492
|
+
version = "0.1.2"
|
|
1493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1494
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1495
|
+
dependencies = [
|
|
1496
|
+
"cc",
|
|
1497
|
+
]
|
|
1498
|
+
|
|
1499
|
+
[[package]]
|
|
1500
|
+
name = "idna"
|
|
1501
|
+
version = "0.5.0"
|
|
1502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
|
1504
|
+
dependencies = [
|
|
1505
|
+
"unicode-bidi",
|
|
1506
|
+
"unicode-normalization",
|
|
1507
|
+
]
|
|
1508
|
+
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "indexmap"
|
|
1511
|
+
version = "1.9.3"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1514
|
+
dependencies = [
|
|
1515
|
+
"autocfg",
|
|
1516
|
+
"hashbrown 0.12.3",
|
|
1517
|
+
]
|
|
1518
|
+
|
|
1519
|
+
[[package]]
|
|
1520
|
+
name = "indexmap"
|
|
1521
|
+
version = "2.2.6"
|
|
1522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
|
1524
|
+
dependencies = [
|
|
1525
|
+
"equivalent",
|
|
1526
|
+
"hashbrown 0.14.5",
|
|
1527
|
+
]
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "indoc"
|
|
1531
|
+
version = "2.0.5"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "instant"
|
|
1537
|
+
version = "0.1.13"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"cfg-if",
|
|
1542
|
+
"js-sys",
|
|
1543
|
+
"wasm-bindgen",
|
|
1544
|
+
"web-sys",
|
|
1545
|
+
]
|
|
1546
|
+
|
|
1547
|
+
[[package]]
|
|
1548
|
+
name = "integer-encoding"
|
|
1549
|
+
version = "3.0.4"
|
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
+
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
|
1552
|
+
|
|
1553
|
+
[[package]]
|
|
1554
|
+
name = "iri-string"
|
|
1555
|
+
version = "0.7.2"
|
|
1556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1557
|
+
checksum = "7f5f6c2df22c009ac44f6f1499308e7a3ac7ba42cd2378475cc691510e1eef1b"
|
|
1558
|
+
dependencies = [
|
|
1559
|
+
"memchr",
|
|
1560
|
+
"serde",
|
|
1561
|
+
]
|
|
1562
|
+
|
|
1563
|
+
[[package]]
|
|
1564
|
+
name = "itertools"
|
|
1565
|
+
version = "0.11.0"
|
|
1566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
1568
|
+
dependencies = [
|
|
1569
|
+
"either",
|
|
1570
|
+
]
|
|
1571
|
+
|
|
1572
|
+
[[package]]
|
|
1573
|
+
name = "itertools"
|
|
1574
|
+
version = "0.12.1"
|
|
1575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1576
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
1577
|
+
dependencies = [
|
|
1578
|
+
"either",
|
|
1579
|
+
]
|
|
1580
|
+
|
|
1581
|
+
[[package]]
|
|
1582
|
+
name = "itoa"
|
|
1583
|
+
version = "1.0.11"
|
|
1584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1585
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
1586
|
+
|
|
1587
|
+
[[package]]
|
|
1588
|
+
name = "jobserver"
|
|
1589
|
+
version = "0.1.31"
|
|
1590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1591
|
+
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
|
|
1592
|
+
dependencies = [
|
|
1593
|
+
"libc",
|
|
1594
|
+
]
|
|
1595
|
+
|
|
1596
|
+
[[package]]
|
|
1597
|
+
name = "js-sys"
|
|
1598
|
+
version = "0.3.69"
|
|
1599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
+
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
|
|
1601
|
+
dependencies = [
|
|
1602
|
+
"wasm-bindgen",
|
|
1603
|
+
]
|
|
1604
|
+
|
|
1605
|
+
[[package]]
|
|
1606
|
+
name = "lazy_static"
|
|
1607
|
+
version = "1.5.0"
|
|
1608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1610
|
+
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "lexical-core"
|
|
1613
|
+
version = "0.8.5"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
|
|
1616
|
+
dependencies = [
|
|
1617
|
+
"lexical-parse-float",
|
|
1618
|
+
"lexical-parse-integer",
|
|
1619
|
+
"lexical-util",
|
|
1620
|
+
"lexical-write-float",
|
|
1621
|
+
"lexical-write-integer",
|
|
1622
|
+
]
|
|
1623
|
+
|
|
1624
|
+
[[package]]
|
|
1625
|
+
name = "lexical-parse-float"
|
|
1626
|
+
version = "0.8.5"
|
|
1627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1628
|
+
checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
|
|
1629
|
+
dependencies = [
|
|
1630
|
+
"lexical-parse-integer",
|
|
1631
|
+
"lexical-util",
|
|
1632
|
+
"static_assertions",
|
|
1633
|
+
]
|
|
1634
|
+
|
|
1635
|
+
[[package]]
|
|
1636
|
+
name = "lexical-parse-integer"
|
|
1637
|
+
version = "0.8.6"
|
|
1638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1639
|
+
checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
|
|
1640
|
+
dependencies = [
|
|
1641
|
+
"lexical-util",
|
|
1642
|
+
"static_assertions",
|
|
1643
|
+
]
|
|
1644
|
+
|
|
1645
|
+
[[package]]
|
|
1646
|
+
name = "lexical-util"
|
|
1647
|
+
version = "0.8.5"
|
|
1648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1649
|
+
checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
|
|
1650
|
+
dependencies = [
|
|
1651
|
+
"static_assertions",
|
|
1652
|
+
]
|
|
1653
|
+
|
|
1654
|
+
[[package]]
|
|
1655
|
+
name = "lexical-write-float"
|
|
1656
|
+
version = "0.8.5"
|
|
1657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
+
checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
|
|
1659
|
+
dependencies = [
|
|
1660
|
+
"lexical-util",
|
|
1661
|
+
"lexical-write-integer",
|
|
1662
|
+
"static_assertions",
|
|
1663
|
+
]
|
|
1664
|
+
|
|
1665
|
+
[[package]]
|
|
1666
|
+
name = "lexical-write-integer"
|
|
1667
|
+
version = "0.8.5"
|
|
1668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
+
checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
|
|
1670
|
+
dependencies = [
|
|
1671
|
+
"lexical-util",
|
|
1672
|
+
"static_assertions",
|
|
1673
|
+
]
|
|
1674
|
+
|
|
1675
|
+
[[package]]
|
|
1676
|
+
name = "libc"
|
|
1677
|
+
version = "0.2.155"
|
|
1678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
|
1680
|
+
|
|
1681
|
+
[[package]]
|
|
1682
|
+
name = "libm"
|
|
1683
|
+
version = "0.2.8"
|
|
1684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
+
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
|
|
1686
|
+
|
|
1687
|
+
[[package]]
|
|
1688
|
+
name = "libmimalloc-sys"
|
|
1689
|
+
version = "0.1.39"
|
|
1690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
+
checksum = "23aa6811d3bd4deb8a84dde645f943476d13b248d818edcf8ce0b2f37f036b44"
|
|
1692
|
+
dependencies = [
|
|
1693
|
+
"cc",
|
|
1694
|
+
"libc",
|
|
1695
|
+
]
|
|
1696
|
+
|
|
1697
|
+
[[package]]
|
|
1698
|
+
name = "linux-raw-sys"
|
|
1699
|
+
version = "0.4.14"
|
|
1700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1701
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "lock_api"
|
|
1705
|
+
version = "0.4.12"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
1708
|
+
dependencies = [
|
|
1709
|
+
"autocfg",
|
|
1710
|
+
"scopeguard",
|
|
1711
|
+
]
|
|
1712
|
+
|
|
1713
|
+
[[package]]
|
|
1714
|
+
name = "log"
|
|
1715
|
+
version = "0.4.22"
|
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1717
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
1718
|
+
|
|
1719
|
+
[[package]]
|
|
1720
|
+
name = "lz4_flex"
|
|
1721
|
+
version = "0.11.3"
|
|
1722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1723
|
+
checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
|
|
1724
|
+
dependencies = [
|
|
1725
|
+
"twox-hash",
|
|
1726
|
+
]
|
|
1727
|
+
|
|
1728
|
+
[[package]]
|
|
1729
|
+
name = "lzma-sys"
|
|
1730
|
+
version = "0.1.20"
|
|
1731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1732
|
+
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
1733
|
+
dependencies = [
|
|
1734
|
+
"cc",
|
|
1735
|
+
"libc",
|
|
1736
|
+
"pkg-config",
|
|
1737
|
+
]
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "matchers"
|
|
1741
|
+
version = "0.1.0"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
|
1744
|
+
dependencies = [
|
|
1745
|
+
"regex-automata 0.1.10",
|
|
1746
|
+
]
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "matchit"
|
|
1750
|
+
version = "0.7.3"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "md-5"
|
|
1756
|
+
version = "0.10.6"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
1759
|
+
dependencies = [
|
|
1760
|
+
"cfg-if",
|
|
1761
|
+
"digest",
|
|
1762
|
+
]
|
|
1763
|
+
|
|
1764
|
+
[[package]]
|
|
1765
|
+
name = "memchr"
|
|
1766
|
+
version = "2.7.4"
|
|
1767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
1769
|
+
|
|
1770
|
+
[[package]]
|
|
1771
|
+
name = "memoffset"
|
|
1772
|
+
version = "0.9.1"
|
|
1773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1774
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1775
|
+
dependencies = [
|
|
1776
|
+
"autocfg",
|
|
1777
|
+
]
|
|
1778
|
+
|
|
1779
|
+
[[package]]
|
|
1780
|
+
name = "mimalloc"
|
|
1781
|
+
version = "0.1.43"
|
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
+
checksum = "68914350ae34959d83f732418d51e2427a794055d0b9529f48259ac07af65633"
|
|
1784
|
+
dependencies = [
|
|
1785
|
+
"libmimalloc-sys",
|
|
1786
|
+
]
|
|
1787
|
+
|
|
1788
|
+
[[package]]
|
|
1789
|
+
name = "mime"
|
|
1790
|
+
version = "0.3.17"
|
|
1791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1793
|
+
|
|
1794
|
+
[[package]]
|
|
1795
|
+
name = "mime_guess"
|
|
1796
|
+
version = "2.0.4"
|
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
+
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
|
|
1799
|
+
dependencies = [
|
|
1800
|
+
"mime",
|
|
1801
|
+
"unicase",
|
|
1802
|
+
]
|
|
1803
|
+
|
|
1804
|
+
[[package]]
|
|
1805
|
+
name = "miniz_oxide"
|
|
1806
|
+
version = "0.7.4"
|
|
1807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
+
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
|
1809
|
+
dependencies = [
|
|
1810
|
+
"adler",
|
|
1811
|
+
]
|
|
1812
|
+
|
|
1813
|
+
[[package]]
|
|
1814
|
+
name = "mio"
|
|
1815
|
+
version = "1.0.1"
|
|
1816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
+
checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4"
|
|
1818
|
+
dependencies = [
|
|
1819
|
+
"hermit-abi",
|
|
1820
|
+
"libc",
|
|
1821
|
+
"wasi",
|
|
1822
|
+
"windows-sys",
|
|
1823
|
+
]
|
|
1824
|
+
|
|
1825
|
+
[[package]]
|
|
1826
|
+
name = "monostate"
|
|
1827
|
+
version = "0.1.13"
|
|
1828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1829
|
+
checksum = "0d208407d7552cd041d8cdb69a1bc3303e029c598738177a3d87082004dc0e1e"
|
|
1830
|
+
dependencies = [
|
|
1831
|
+
"monostate-impl",
|
|
1832
|
+
"serde",
|
|
1833
|
+
]
|
|
1834
|
+
|
|
1835
|
+
[[package]]
|
|
1836
|
+
name = "monostate-impl"
|
|
1837
|
+
version = "0.1.13"
|
|
1838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1839
|
+
checksum = "a7ce64b975ed4f123575d11afd9491f2e37bbd5813fbfbc0f09ae1fbddea74e0"
|
|
1840
|
+
dependencies = [
|
|
1841
|
+
"proc-macro2",
|
|
1842
|
+
"quote",
|
|
1843
|
+
"syn 2.0.72",
|
|
1844
|
+
]
|
|
1845
|
+
|
|
1846
|
+
[[package]]
|
|
1847
|
+
name = "multimap"
|
|
1848
|
+
version = "0.10.0"
|
|
1849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
+
checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
|
|
1851
|
+
|
|
1852
|
+
[[package]]
|
|
1853
|
+
name = "nu-ansi-term"
|
|
1854
|
+
version = "0.46.0"
|
|
1855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
+
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
|
1857
|
+
dependencies = [
|
|
1858
|
+
"overload",
|
|
1859
|
+
"winapi",
|
|
1860
|
+
]
|
|
1861
|
+
|
|
1862
|
+
[[package]]
|
|
1863
|
+
name = "num"
|
|
1864
|
+
version = "0.4.3"
|
|
1865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
1867
|
+
dependencies = [
|
|
1868
|
+
"num-bigint",
|
|
1869
|
+
"num-complex",
|
|
1870
|
+
"num-integer",
|
|
1871
|
+
"num-iter",
|
|
1872
|
+
"num-rational",
|
|
1873
|
+
"num-traits",
|
|
1874
|
+
]
|
|
1875
|
+
|
|
1876
|
+
[[package]]
|
|
1877
|
+
name = "num-bigint"
|
|
1878
|
+
version = "0.4.6"
|
|
1879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1881
|
+
dependencies = [
|
|
1882
|
+
"num-integer",
|
|
1883
|
+
"num-traits",
|
|
1884
|
+
]
|
|
1885
|
+
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "num-complex"
|
|
1888
|
+
version = "0.4.6"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1891
|
+
dependencies = [
|
|
1892
|
+
"num-traits",
|
|
1893
|
+
]
|
|
1894
|
+
|
|
1895
|
+
[[package]]
|
|
1896
|
+
name = "num-integer"
|
|
1897
|
+
version = "0.1.46"
|
|
1898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1900
|
+
dependencies = [
|
|
1901
|
+
"num-traits",
|
|
1902
|
+
]
|
|
1903
|
+
|
|
1904
|
+
[[package]]
|
|
1905
|
+
name = "num-iter"
|
|
1906
|
+
version = "0.1.45"
|
|
1907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
1909
|
+
dependencies = [
|
|
1910
|
+
"autocfg",
|
|
1911
|
+
"num-integer",
|
|
1912
|
+
"num-traits",
|
|
1913
|
+
]
|
|
1914
|
+
|
|
1915
|
+
[[package]]
|
|
1916
|
+
name = "num-rational"
|
|
1917
|
+
version = "0.4.2"
|
|
1918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1919
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1920
|
+
dependencies = [
|
|
1921
|
+
"num-bigint",
|
|
1922
|
+
"num-integer",
|
|
1923
|
+
"num-traits",
|
|
1924
|
+
]
|
|
1925
|
+
|
|
1926
|
+
[[package]]
|
|
1927
|
+
name = "num-traits"
|
|
1928
|
+
version = "0.2.19"
|
|
1929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1930
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1931
|
+
dependencies = [
|
|
1932
|
+
"autocfg",
|
|
1933
|
+
"libm",
|
|
1934
|
+
]
|
|
1935
|
+
|
|
1936
|
+
[[package]]
|
|
1937
|
+
name = "num_cpus"
|
|
1938
|
+
version = "1.16.0"
|
|
1939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
1941
|
+
dependencies = [
|
|
1942
|
+
"hermit-abi",
|
|
1943
|
+
"libc",
|
|
1944
|
+
]
|
|
1945
|
+
|
|
1946
|
+
[[package]]
|
|
1947
|
+
name = "object"
|
|
1948
|
+
version = "0.36.0"
|
|
1949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1950
|
+
checksum = "576dfe1fc8f9df304abb159d767a29d0476f7750fbf8aa7ad07816004a207434"
|
|
1951
|
+
dependencies = [
|
|
1952
|
+
"memchr",
|
|
1953
|
+
]
|
|
1954
|
+
|
|
1955
|
+
[[package]]
|
|
1956
|
+
name = "object_store"
|
|
1957
|
+
version = "0.10.1"
|
|
1958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
|
+
checksum = "fbebfd32c213ba1907fa7a9c9138015a8de2b43e30c5aa45b18f7deb46786ad6"
|
|
1960
|
+
dependencies = [
|
|
1961
|
+
"async-trait",
|
|
1962
|
+
"bytes",
|
|
1963
|
+
"chrono",
|
|
1964
|
+
"futures",
|
|
1965
|
+
"humantime",
|
|
1966
|
+
"itertools 0.12.1",
|
|
1967
|
+
"parking_lot",
|
|
1968
|
+
"percent-encoding",
|
|
1969
|
+
"snafu",
|
|
1970
|
+
"tokio",
|
|
1971
|
+
"tracing",
|
|
1972
|
+
"url",
|
|
1973
|
+
"walkdir",
|
|
1974
|
+
]
|
|
1975
|
+
|
|
1976
|
+
[[package]]
|
|
1977
|
+
name = "once_cell"
|
|
1978
|
+
version = "1.19.0"
|
|
1979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
1981
|
+
|
|
1982
|
+
[[package]]
|
|
1983
|
+
name = "openssl-probe"
|
|
1984
|
+
version = "0.1.5"
|
|
1985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1986
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
1987
|
+
|
|
1988
|
+
[[package]]
|
|
1989
|
+
name = "opentelemetry"
|
|
1990
|
+
version = "0.23.0"
|
|
1991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1992
|
+
checksum = "1b69a91d4893e713e06f724597ad630f1fa76057a5e1026c0ca67054a9032a76"
|
|
1993
|
+
dependencies = [
|
|
1994
|
+
"futures-core",
|
|
1995
|
+
"futures-sink",
|
|
1996
|
+
"js-sys",
|
|
1997
|
+
"once_cell",
|
|
1998
|
+
"pin-project-lite",
|
|
1999
|
+
"thiserror",
|
|
2000
|
+
]
|
|
2001
|
+
|
|
2002
|
+
[[package]]
|
|
2003
|
+
name = "opentelemetry-otlp"
|
|
2004
|
+
version = "0.16.0"
|
|
2005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2006
|
+
checksum = "a94c69209c05319cdf7460c6d4c055ed102be242a0a6245835d7bc42c6ec7f54"
|
|
2007
|
+
dependencies = [
|
|
2008
|
+
"async-trait",
|
|
2009
|
+
"futures-core",
|
|
2010
|
+
"http",
|
|
2011
|
+
"opentelemetry",
|
|
2012
|
+
"opentelemetry-proto",
|
|
2013
|
+
"opentelemetry_sdk",
|
|
2014
|
+
"prost",
|
|
2015
|
+
"thiserror",
|
|
2016
|
+
"tokio",
|
|
2017
|
+
"tonic",
|
|
2018
|
+
]
|
|
2019
|
+
|
|
2020
|
+
[[package]]
|
|
2021
|
+
name = "opentelemetry-proto"
|
|
2022
|
+
version = "0.6.0"
|
|
2023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2024
|
+
checksum = "984806e6cf27f2b49282e2a05e288f30594f3dbc74eb7a6e99422bc48ed78162"
|
|
2025
|
+
dependencies = [
|
|
2026
|
+
"opentelemetry",
|
|
2027
|
+
"opentelemetry_sdk",
|
|
2028
|
+
"prost",
|
|
2029
|
+
"tonic",
|
|
2030
|
+
]
|
|
2031
|
+
|
|
2032
|
+
[[package]]
|
|
2033
|
+
name = "opentelemetry-resource-detectors"
|
|
2034
|
+
version = "0.2.0"
|
|
2035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2036
|
+
checksum = "b5cd98b7277913e22e95b6fd3a5f7413438005471a6e33e8a4ae7b9a20be36ad"
|
|
2037
|
+
dependencies = [
|
|
2038
|
+
"opentelemetry",
|
|
2039
|
+
"opentelemetry-semantic-conventions",
|
|
2040
|
+
"opentelemetry_sdk",
|
|
2041
|
+
]
|
|
2042
|
+
|
|
2043
|
+
[[package]]
|
|
2044
|
+
name = "opentelemetry-semantic-conventions"
|
|
2045
|
+
version = "0.15.0"
|
|
2046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2047
|
+
checksum = "1869fb4bb9b35c5ba8a1e40c9b128a7b4c010d07091e864a29da19e4fe2ca4d7"
|
|
2048
|
+
|
|
2049
|
+
[[package]]
|
|
2050
|
+
name = "opentelemetry-stdout"
|
|
2051
|
+
version = "0.4.0"
|
|
2052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2053
|
+
checksum = "d6d080bf06af02b738feb2e6830cf72c30b76ca18b40f555cdf1b53e7b491bfe"
|
|
2054
|
+
dependencies = [
|
|
2055
|
+
"async-trait",
|
|
2056
|
+
"chrono",
|
|
2057
|
+
"futures-util",
|
|
2058
|
+
"opentelemetry",
|
|
2059
|
+
"opentelemetry_sdk",
|
|
2060
|
+
"ordered-float 4.2.0",
|
|
2061
|
+
"serde",
|
|
2062
|
+
"serde_json",
|
|
2063
|
+
"thiserror",
|
|
2064
|
+
]
|
|
2065
|
+
|
|
2066
|
+
[[package]]
|
|
2067
|
+
name = "opentelemetry_sdk"
|
|
2068
|
+
version = "0.23.0"
|
|
2069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2070
|
+
checksum = "ae312d58eaa90a82d2e627fd86e075cf5230b3f11794e2ed74199ebbe572d4fd"
|
|
2071
|
+
dependencies = [
|
|
2072
|
+
"async-trait",
|
|
2073
|
+
"futures-channel",
|
|
2074
|
+
"futures-executor",
|
|
2075
|
+
"futures-util",
|
|
2076
|
+
"glob",
|
|
2077
|
+
"lazy_static",
|
|
2078
|
+
"once_cell",
|
|
2079
|
+
"opentelemetry",
|
|
2080
|
+
"ordered-float 4.2.0",
|
|
2081
|
+
"percent-encoding",
|
|
2082
|
+
"rand",
|
|
2083
|
+
"serde_json",
|
|
2084
|
+
"thiserror",
|
|
2085
|
+
"tokio",
|
|
2086
|
+
"tokio-stream",
|
|
2087
|
+
]
|
|
2088
|
+
|
|
2089
|
+
[[package]]
|
|
2090
|
+
name = "ordered-float"
|
|
2091
|
+
version = "2.10.1"
|
|
2092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
+
checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
|
|
2094
|
+
dependencies = [
|
|
2095
|
+
"num-traits",
|
|
2096
|
+
]
|
|
2097
|
+
|
|
2098
|
+
[[package]]
|
|
2099
|
+
name = "ordered-float"
|
|
2100
|
+
version = "4.2.0"
|
|
2101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2102
|
+
checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e"
|
|
2103
|
+
dependencies = [
|
|
2104
|
+
"num-traits",
|
|
2105
|
+
]
|
|
2106
|
+
|
|
2107
|
+
[[package]]
|
|
2108
|
+
name = "overload"
|
|
2109
|
+
version = "0.1.1"
|
|
2110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
+
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "parking_lot"
|
|
2115
|
+
version = "0.12.3"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
2118
|
+
dependencies = [
|
|
2119
|
+
"lock_api",
|
|
2120
|
+
"parking_lot_core",
|
|
2121
|
+
]
|
|
2122
|
+
|
|
2123
|
+
[[package]]
|
|
2124
|
+
name = "parking_lot_core"
|
|
2125
|
+
version = "0.9.10"
|
|
2126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2127
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
2128
|
+
dependencies = [
|
|
2129
|
+
"cfg-if",
|
|
2130
|
+
"libc",
|
|
2131
|
+
"redox_syscall",
|
|
2132
|
+
"smallvec",
|
|
2133
|
+
"windows-targets",
|
|
2134
|
+
]
|
|
2135
|
+
|
|
2136
|
+
[[package]]
|
|
2137
|
+
name = "parquet"
|
|
2138
|
+
version = "52.1.0"
|
|
2139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2140
|
+
checksum = "0f22ba0d95db56dde8685e3fadcb915cdaadda31ab8abbe3ff7f0ad1ef333267"
|
|
2141
|
+
dependencies = [
|
|
2142
|
+
"ahash",
|
|
2143
|
+
"arrow-array",
|
|
2144
|
+
"arrow-buffer",
|
|
2145
|
+
"arrow-cast",
|
|
2146
|
+
"arrow-data",
|
|
2147
|
+
"arrow-ipc",
|
|
2148
|
+
"arrow-schema",
|
|
2149
|
+
"arrow-select",
|
|
2150
|
+
"base64 0.22.1",
|
|
2151
|
+
"brotli",
|
|
2152
|
+
"bytes",
|
|
2153
|
+
"chrono",
|
|
2154
|
+
"flate2",
|
|
2155
|
+
"futures",
|
|
2156
|
+
"half",
|
|
2157
|
+
"hashbrown 0.14.5",
|
|
2158
|
+
"lz4_flex",
|
|
2159
|
+
"num",
|
|
2160
|
+
"num-bigint",
|
|
2161
|
+
"object_store",
|
|
2162
|
+
"paste",
|
|
2163
|
+
"seq-macro",
|
|
2164
|
+
"snap",
|
|
2165
|
+
"thrift",
|
|
2166
|
+
"tokio",
|
|
2167
|
+
"twox-hash",
|
|
2168
|
+
"zstd",
|
|
2169
|
+
"zstd-sys",
|
|
2170
|
+
]
|
|
2171
|
+
|
|
2172
|
+
[[package]]
|
|
2173
|
+
name = "parse-zoneinfo"
|
|
2174
|
+
version = "0.3.1"
|
|
2175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2176
|
+
checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24"
|
|
2177
|
+
dependencies = [
|
|
2178
|
+
"regex",
|
|
2179
|
+
]
|
|
2180
|
+
|
|
2181
|
+
[[package]]
|
|
2182
|
+
name = "paste"
|
|
2183
|
+
version = "1.0.15"
|
|
2184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2185
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2186
|
+
|
|
2187
|
+
[[package]]
|
|
2188
|
+
name = "pbjson"
|
|
2189
|
+
version = "0.6.0"
|
|
2190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2191
|
+
checksum = "1030c719b0ec2a2d25a5df729d6cff1acf3cc230bf766f4f97833591f7577b90"
|
|
2192
|
+
dependencies = [
|
|
2193
|
+
"base64 0.21.7",
|
|
2194
|
+
"serde",
|
|
2195
|
+
]
|
|
2196
|
+
|
|
2197
|
+
[[package]]
|
|
2198
|
+
name = "pbjson-build"
|
|
2199
|
+
version = "0.6.2"
|
|
2200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2201
|
+
checksum = "2580e33f2292d34be285c5bc3dba5259542b083cfad6037b6d70345f24dcb735"
|
|
2202
|
+
dependencies = [
|
|
2203
|
+
"heck 0.4.1",
|
|
2204
|
+
"itertools 0.11.0",
|
|
2205
|
+
"prost",
|
|
2206
|
+
"prost-types",
|
|
2207
|
+
]
|
|
2208
|
+
|
|
2209
|
+
[[package]]
|
|
2210
|
+
name = "pbjson-types"
|
|
2211
|
+
version = "0.6.0"
|
|
2212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2213
|
+
checksum = "18f596653ba4ac51bdecbb4ef6773bc7f56042dc13927910de1684ad3d32aa12"
|
|
2214
|
+
dependencies = [
|
|
2215
|
+
"bytes",
|
|
2216
|
+
"chrono",
|
|
2217
|
+
"pbjson",
|
|
2218
|
+
"pbjson-build",
|
|
2219
|
+
"prost",
|
|
2220
|
+
"prost-build",
|
|
2221
|
+
"serde",
|
|
2222
|
+
]
|
|
2223
|
+
|
|
2224
|
+
[[package]]
|
|
2225
|
+
name = "percent-encoding"
|
|
2226
|
+
version = "2.3.1"
|
|
2227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2228
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
2229
|
+
|
|
2230
|
+
[[package]]
|
|
2231
|
+
name = "petgraph"
|
|
2232
|
+
version = "0.6.5"
|
|
2233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2234
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
2235
|
+
dependencies = [
|
|
2236
|
+
"fixedbitset",
|
|
2237
|
+
"indexmap 2.2.6",
|
|
2238
|
+
]
|
|
2239
|
+
|
|
2240
|
+
[[package]]
|
|
2241
|
+
name = "phf"
|
|
2242
|
+
version = "0.11.2"
|
|
2243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2244
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
|
2245
|
+
dependencies = [
|
|
2246
|
+
"phf_macros",
|
|
2247
|
+
"phf_shared",
|
|
2248
|
+
]
|
|
2249
|
+
|
|
2250
|
+
[[package]]
|
|
2251
|
+
name = "phf_codegen"
|
|
2252
|
+
version = "0.11.2"
|
|
2253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2254
|
+
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
|
|
2255
|
+
dependencies = [
|
|
2256
|
+
"phf_generator",
|
|
2257
|
+
"phf_shared",
|
|
2258
|
+
]
|
|
2259
|
+
|
|
2260
|
+
[[package]]
|
|
2261
|
+
name = "phf_generator"
|
|
2262
|
+
version = "0.11.2"
|
|
2263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2264
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
|
2265
|
+
dependencies = [
|
|
2266
|
+
"phf_shared",
|
|
2267
|
+
"rand",
|
|
2268
|
+
]
|
|
2269
|
+
|
|
2270
|
+
[[package]]
|
|
2271
|
+
name = "phf_macros"
|
|
2272
|
+
version = "0.11.2"
|
|
2273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2274
|
+
checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
|
|
2275
|
+
dependencies = [
|
|
2276
|
+
"phf_generator",
|
|
2277
|
+
"phf_shared",
|
|
2278
|
+
"proc-macro2",
|
|
2279
|
+
"quote",
|
|
2280
|
+
"syn 2.0.72",
|
|
2281
|
+
]
|
|
2282
|
+
|
|
2283
|
+
[[package]]
|
|
2284
|
+
name = "phf_shared"
|
|
2285
|
+
version = "0.11.2"
|
|
2286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2287
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
|
2288
|
+
dependencies = [
|
|
2289
|
+
"siphasher",
|
|
2290
|
+
]
|
|
2291
|
+
|
|
2292
|
+
[[package]]
|
|
2293
|
+
name = "pin-project"
|
|
2294
|
+
version = "1.1.5"
|
|
2295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2296
|
+
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
|
|
2297
|
+
dependencies = [
|
|
2298
|
+
"pin-project-internal",
|
|
2299
|
+
]
|
|
2300
|
+
|
|
2301
|
+
[[package]]
|
|
2302
|
+
name = "pin-project-internal"
|
|
2303
|
+
version = "1.1.5"
|
|
2304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2305
|
+
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
|
|
2306
|
+
dependencies = [
|
|
2307
|
+
"proc-macro2",
|
|
2308
|
+
"quote",
|
|
2309
|
+
"syn 2.0.72",
|
|
2310
|
+
]
|
|
2311
|
+
|
|
2312
|
+
[[package]]
|
|
2313
|
+
name = "pin-project-lite"
|
|
2314
|
+
version = "0.2.14"
|
|
2315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2316
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
|
2317
|
+
|
|
2318
|
+
[[package]]
|
|
2319
|
+
name = "pin-utils"
|
|
2320
|
+
version = "0.1.0"
|
|
2321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2322
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2323
|
+
|
|
2324
|
+
[[package]]
|
|
2325
|
+
name = "pkg-config"
|
|
2326
|
+
version = "0.3.30"
|
|
2327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2328
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
|
2329
|
+
|
|
2330
|
+
[[package]]
|
|
2331
|
+
name = "portable-atomic"
|
|
2332
|
+
version = "1.6.0"
|
|
2333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2334
|
+
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
|
|
2335
|
+
|
|
2336
|
+
[[package]]
|
|
2337
|
+
name = "ppv-lite86"
|
|
2338
|
+
version = "0.2.17"
|
|
2339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2340
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
2341
|
+
|
|
2342
|
+
[[package]]
|
|
2343
|
+
name = "prettyplease"
|
|
2344
|
+
version = "0.2.20"
|
|
2345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2346
|
+
checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e"
|
|
2347
|
+
dependencies = [
|
|
2348
|
+
"proc-macro2",
|
|
2349
|
+
"syn 2.0.72",
|
|
2350
|
+
]
|
|
2351
|
+
|
|
2352
|
+
[[package]]
|
|
2353
|
+
name = "proc-macro2"
|
|
2354
|
+
version = "1.0.86"
|
|
2355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2356
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
|
2357
|
+
dependencies = [
|
|
2358
|
+
"unicode-ident",
|
|
2359
|
+
]
|
|
2360
|
+
|
|
2361
|
+
[[package]]
|
|
2362
|
+
name = "prost"
|
|
2363
|
+
version = "0.12.6"
|
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
+
checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29"
|
|
2366
|
+
dependencies = [
|
|
2367
|
+
"bytes",
|
|
2368
|
+
"prost-derive",
|
|
2369
|
+
]
|
|
2370
|
+
|
|
2371
|
+
[[package]]
|
|
2372
|
+
name = "prost-build"
|
|
2373
|
+
version = "0.12.6"
|
|
2374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2375
|
+
checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4"
|
|
2376
|
+
dependencies = [
|
|
2377
|
+
"bytes",
|
|
2378
|
+
"heck 0.5.0",
|
|
2379
|
+
"itertools 0.12.1",
|
|
2380
|
+
"log",
|
|
2381
|
+
"multimap",
|
|
2382
|
+
"once_cell",
|
|
2383
|
+
"petgraph",
|
|
2384
|
+
"prettyplease",
|
|
2385
|
+
"prost",
|
|
2386
|
+
"prost-types",
|
|
2387
|
+
"regex",
|
|
2388
|
+
"syn 2.0.72",
|
|
2389
|
+
"tempfile",
|
|
2390
|
+
]
|
|
2391
|
+
|
|
2392
|
+
[[package]]
|
|
2393
|
+
name = "prost-derive"
|
|
2394
|
+
version = "0.12.6"
|
|
2395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2396
|
+
checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1"
|
|
2397
|
+
dependencies = [
|
|
2398
|
+
"anyhow",
|
|
2399
|
+
"itertools 0.12.1",
|
|
2400
|
+
"proc-macro2",
|
|
2401
|
+
"quote",
|
|
2402
|
+
"syn 2.0.72",
|
|
2403
|
+
]
|
|
2404
|
+
|
|
2405
|
+
[[package]]
|
|
2406
|
+
name = "prost-types"
|
|
2407
|
+
version = "0.12.6"
|
|
2408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2409
|
+
checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0"
|
|
2410
|
+
dependencies = [
|
|
2411
|
+
"prost",
|
|
2412
|
+
]
|
|
2413
|
+
|
|
2414
|
+
[[package]]
|
|
2415
|
+
name = "pyo3"
|
|
2416
|
+
version = "0.21.2"
|
|
2417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2418
|
+
checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
|
|
2419
|
+
dependencies = [
|
|
2420
|
+
"cfg-if",
|
|
2421
|
+
"indoc",
|
|
2422
|
+
"libc",
|
|
2423
|
+
"memoffset",
|
|
2424
|
+
"parking_lot",
|
|
2425
|
+
"portable-atomic",
|
|
2426
|
+
"pyo3-build-config",
|
|
2427
|
+
"pyo3-ffi",
|
|
2428
|
+
"pyo3-macros",
|
|
2429
|
+
"serde",
|
|
2430
|
+
"unindent",
|
|
2431
|
+
]
|
|
2432
|
+
|
|
2433
|
+
[[package]]
|
|
2434
|
+
name = "pyo3-build-config"
|
|
2435
|
+
version = "0.21.2"
|
|
2436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2437
|
+
checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
|
|
2438
|
+
dependencies = [
|
|
2439
|
+
"once_cell",
|
|
2440
|
+
"target-lexicon",
|
|
2441
|
+
]
|
|
2442
|
+
|
|
2443
|
+
[[package]]
|
|
2444
|
+
name = "pyo3-ffi"
|
|
2445
|
+
version = "0.21.2"
|
|
2446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2447
|
+
checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
|
|
2448
|
+
dependencies = [
|
|
2449
|
+
"libc",
|
|
2450
|
+
"pyo3-build-config",
|
|
2451
|
+
]
|
|
2452
|
+
|
|
2453
|
+
[[package]]
|
|
2454
|
+
name = "pyo3-macros"
|
|
2455
|
+
version = "0.21.2"
|
|
2456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2457
|
+
checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
|
|
2458
|
+
dependencies = [
|
|
2459
|
+
"proc-macro2",
|
|
2460
|
+
"pyo3-macros-backend",
|
|
2461
|
+
"quote",
|
|
2462
|
+
"syn 2.0.72",
|
|
2463
|
+
]
|
|
2464
|
+
|
|
2465
|
+
[[package]]
|
|
2466
|
+
name = "pyo3-macros-backend"
|
|
2467
|
+
version = "0.21.2"
|
|
2468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2469
|
+
checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
|
|
2470
|
+
dependencies = [
|
|
2471
|
+
"heck 0.4.1",
|
|
2472
|
+
"proc-macro2",
|
|
2473
|
+
"pyo3-build-config",
|
|
2474
|
+
"quote",
|
|
2475
|
+
"syn 2.0.72",
|
|
2476
|
+
]
|
|
2477
|
+
|
|
2478
|
+
[[package]]
|
|
2479
|
+
name = "quote"
|
|
2480
|
+
version = "1.0.36"
|
|
2481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2482
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
2483
|
+
dependencies = [
|
|
2484
|
+
"proc-macro2",
|
|
2485
|
+
]
|
|
2486
|
+
|
|
2487
|
+
[[package]]
|
|
2488
|
+
name = "rand"
|
|
2489
|
+
version = "0.8.5"
|
|
2490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2491
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2492
|
+
dependencies = [
|
|
2493
|
+
"libc",
|
|
2494
|
+
"rand_chacha",
|
|
2495
|
+
"rand_core",
|
|
2496
|
+
]
|
|
2497
|
+
|
|
2498
|
+
[[package]]
|
|
2499
|
+
name = "rand_chacha"
|
|
2500
|
+
version = "0.3.1"
|
|
2501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2502
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2503
|
+
dependencies = [
|
|
2504
|
+
"ppv-lite86",
|
|
2505
|
+
"rand_core",
|
|
2506
|
+
]
|
|
2507
|
+
|
|
2508
|
+
[[package]]
|
|
2509
|
+
name = "rand_core"
|
|
2510
|
+
version = "0.6.4"
|
|
2511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2512
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2513
|
+
dependencies = [
|
|
2514
|
+
"getrandom",
|
|
2515
|
+
]
|
|
2516
|
+
|
|
2517
|
+
[[package]]
|
|
2518
|
+
name = "redox_syscall"
|
|
2519
|
+
version = "0.5.2"
|
|
2520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2521
|
+
checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd"
|
|
2522
|
+
dependencies = [
|
|
2523
|
+
"bitflags 2.6.0",
|
|
2524
|
+
]
|
|
2525
|
+
|
|
2526
|
+
[[package]]
|
|
2527
|
+
name = "regex"
|
|
2528
|
+
version = "1.10.5"
|
|
2529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2530
|
+
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
|
|
2531
|
+
dependencies = [
|
|
2532
|
+
"aho-corasick",
|
|
2533
|
+
"memchr",
|
|
2534
|
+
"regex-automata 0.4.7",
|
|
2535
|
+
"regex-syntax 0.8.4",
|
|
2536
|
+
]
|
|
2537
|
+
|
|
2538
|
+
[[package]]
|
|
2539
|
+
name = "regex-automata"
|
|
2540
|
+
version = "0.1.10"
|
|
2541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2542
|
+
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
|
2543
|
+
dependencies = [
|
|
2544
|
+
"regex-syntax 0.6.29",
|
|
2545
|
+
]
|
|
2546
|
+
|
|
2547
|
+
[[package]]
|
|
2548
|
+
name = "regex-automata"
|
|
2549
|
+
version = "0.4.7"
|
|
2550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2551
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
|
2552
|
+
dependencies = [
|
|
2553
|
+
"aho-corasick",
|
|
2554
|
+
"memchr",
|
|
2555
|
+
"regex-syntax 0.8.4",
|
|
2556
|
+
]
|
|
2557
|
+
|
|
2558
|
+
[[package]]
|
|
2559
|
+
name = "regex-syntax"
|
|
2560
|
+
version = "0.6.29"
|
|
2561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2562
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
2563
|
+
|
|
2564
|
+
[[package]]
|
|
2565
|
+
name = "regex-syntax"
|
|
2566
|
+
version = "0.8.4"
|
|
2567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2568
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
|
2569
|
+
|
|
2570
|
+
[[package]]
|
|
2571
|
+
name = "ring"
|
|
2572
|
+
version = "0.17.8"
|
|
2573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2574
|
+
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
|
|
2575
|
+
dependencies = [
|
|
2576
|
+
"cc",
|
|
2577
|
+
"cfg-if",
|
|
2578
|
+
"getrandom",
|
|
2579
|
+
"libc",
|
|
2580
|
+
"spin",
|
|
2581
|
+
"untrusted",
|
|
2582
|
+
"windows-sys",
|
|
2583
|
+
]
|
|
2584
|
+
|
|
2585
|
+
[[package]]
|
|
2586
|
+
name = "rustc-demangle"
|
|
2587
|
+
version = "0.1.24"
|
|
2588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2589
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
2590
|
+
|
|
2591
|
+
[[package]]
|
|
2592
|
+
name = "rustc_version"
|
|
2593
|
+
version = "0.4.0"
|
|
2594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2595
|
+
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
|
2596
|
+
dependencies = [
|
|
2597
|
+
"semver",
|
|
2598
|
+
]
|
|
2599
|
+
|
|
2600
|
+
[[package]]
|
|
2601
|
+
name = "rustix"
|
|
2602
|
+
version = "0.38.34"
|
|
2603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2604
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
2605
|
+
dependencies = [
|
|
2606
|
+
"bitflags 2.6.0",
|
|
2607
|
+
"errno",
|
|
2608
|
+
"libc",
|
|
2609
|
+
"linux-raw-sys",
|
|
2610
|
+
"windows-sys",
|
|
2611
|
+
]
|
|
2612
|
+
|
|
2613
|
+
[[package]]
|
|
2614
|
+
name = "rustls"
|
|
2615
|
+
version = "0.22.4"
|
|
2616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2617
|
+
checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
|
|
2618
|
+
dependencies = [
|
|
2619
|
+
"log",
|
|
2620
|
+
"ring",
|
|
2621
|
+
"rustls-pki-types",
|
|
2622
|
+
"rustls-webpki",
|
|
2623
|
+
"subtle",
|
|
2624
|
+
"zeroize",
|
|
2625
|
+
]
|
|
2626
|
+
|
|
2627
|
+
[[package]]
|
|
2628
|
+
name = "rustls-native-certs"
|
|
2629
|
+
version = "0.7.0"
|
|
2630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
+
checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792"
|
|
2632
|
+
dependencies = [
|
|
2633
|
+
"openssl-probe",
|
|
2634
|
+
"rustls-pemfile",
|
|
2635
|
+
"rustls-pki-types",
|
|
2636
|
+
"schannel",
|
|
2637
|
+
"security-framework",
|
|
2638
|
+
]
|
|
2639
|
+
|
|
2640
|
+
[[package]]
|
|
2641
|
+
name = "rustls-pemfile"
|
|
2642
|
+
version = "2.1.2"
|
|
2643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2644
|
+
checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
|
|
2645
|
+
dependencies = [
|
|
2646
|
+
"base64 0.22.1",
|
|
2647
|
+
"rustls-pki-types",
|
|
2648
|
+
]
|
|
2649
|
+
|
|
2650
|
+
[[package]]
|
|
2651
|
+
name = "rustls-pki-types"
|
|
2652
|
+
version = "1.7.0"
|
|
2653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2654
|
+
checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
|
|
2655
|
+
|
|
2656
|
+
[[package]]
|
|
2657
|
+
name = "rustls-webpki"
|
|
2658
|
+
version = "0.102.4"
|
|
2659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
+
checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e"
|
|
2661
|
+
dependencies = [
|
|
2662
|
+
"ring",
|
|
2663
|
+
"rustls-pki-types",
|
|
2664
|
+
"untrusted",
|
|
2665
|
+
]
|
|
2666
|
+
|
|
2667
|
+
[[package]]
|
|
2668
|
+
name = "rustversion"
|
|
2669
|
+
version = "1.0.17"
|
|
2670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2671
|
+
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
|
|
2672
|
+
|
|
2673
|
+
[[package]]
|
|
2674
|
+
name = "ryu"
|
|
2675
|
+
version = "1.0.18"
|
|
2676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2677
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
2678
|
+
|
|
2679
|
+
[[package]]
|
|
2680
|
+
name = "sail-common"
|
|
2681
|
+
version = "0.1.0"
|
|
2682
|
+
dependencies = [
|
|
2683
|
+
"arrow",
|
|
2684
|
+
"arrow-cast",
|
|
2685
|
+
"datafusion",
|
|
2686
|
+
"datafusion-common",
|
|
2687
|
+
"datafusion-expr",
|
|
2688
|
+
"glob",
|
|
2689
|
+
"pyo3",
|
|
2690
|
+
"serde",
|
|
2691
|
+
"serde_json",
|
|
2692
|
+
"thiserror",
|
|
2693
|
+
]
|
|
2694
|
+
|
|
2695
|
+
[[package]]
|
|
2696
|
+
name = "sail-plan"
|
|
2697
|
+
version = "0.1.0"
|
|
2698
|
+
dependencies = [
|
|
2699
|
+
"arrow",
|
|
2700
|
+
"arrow-cast",
|
|
2701
|
+
"async-recursion",
|
|
2702
|
+
"async-trait",
|
|
2703
|
+
"chrono",
|
|
2704
|
+
"comfy-table",
|
|
2705
|
+
"datafusion",
|
|
2706
|
+
"datafusion-common",
|
|
2707
|
+
"datafusion-expr",
|
|
2708
|
+
"datafusion-functions-array",
|
|
2709
|
+
"either",
|
|
2710
|
+
"futures",
|
|
2711
|
+
"html-escape",
|
|
2712
|
+
"lazy_static",
|
|
2713
|
+
"num-traits",
|
|
2714
|
+
"pyo3",
|
|
2715
|
+
"regex",
|
|
2716
|
+
"ryu",
|
|
2717
|
+
"sail-common",
|
|
2718
|
+
"sail-python-udf",
|
|
2719
|
+
"sail-sql",
|
|
2720
|
+
"serde",
|
|
2721
|
+
"serde_arrow",
|
|
2722
|
+
"serde_json",
|
|
2723
|
+
"thiserror",
|
|
2724
|
+
"tokio",
|
|
2725
|
+
"tokio-stream",
|
|
2726
|
+
]
|
|
2727
|
+
|
|
2728
|
+
[[package]]
|
|
2729
|
+
name = "sail-python"
|
|
2730
|
+
version = "0.1.0"
|
|
2731
|
+
dependencies = [
|
|
2732
|
+
"futures",
|
|
2733
|
+
"pyo3",
|
|
2734
|
+
"sail-common",
|
|
2735
|
+
"sail-spark-connect",
|
|
2736
|
+
"sail-telemetry",
|
|
2737
|
+
"tokio",
|
|
2738
|
+
"tracing",
|
|
2739
|
+
]
|
|
2740
|
+
|
|
2741
|
+
[[package]]
|
|
2742
|
+
name = "sail-python-udf"
|
|
2743
|
+
version = "0.1.0"
|
|
2744
|
+
dependencies = [
|
|
2745
|
+
"arrow",
|
|
2746
|
+
"arrow-cast",
|
|
2747
|
+
"async-trait",
|
|
2748
|
+
"datafusion",
|
|
2749
|
+
"datafusion-common",
|
|
2750
|
+
"datafusion-expr",
|
|
2751
|
+
"datafusion-functions-array",
|
|
2752
|
+
"pyo3",
|
|
2753
|
+
"sail-common",
|
|
2754
|
+
"serde",
|
|
2755
|
+
"serde_bytes",
|
|
2756
|
+
"serde_json",
|
|
2757
|
+
"sqlparser 0.47.0 (git+https://github.com/lakehq/sqlparser-rs.git?rev=f631629)",
|
|
2758
|
+
"thiserror",
|
|
2759
|
+
]
|
|
2760
|
+
|
|
2761
|
+
[[package]]
|
|
2762
|
+
name = "sail-spark-connect"
|
|
2763
|
+
version = "0.1.0"
|
|
2764
|
+
dependencies = [
|
|
2765
|
+
"arrow",
|
|
2766
|
+
"arrow-cast",
|
|
2767
|
+
"async-recursion",
|
|
2768
|
+
"async-stream",
|
|
2769
|
+
"chrono",
|
|
2770
|
+
"chrono-tz",
|
|
2771
|
+
"datafusion",
|
|
2772
|
+
"datafusion-common",
|
|
2773
|
+
"datafusion-expr",
|
|
2774
|
+
"datafusion-functions-array",
|
|
2775
|
+
"glob",
|
|
2776
|
+
"lazy_static",
|
|
2777
|
+
"mimalloc",
|
|
2778
|
+
"monostate",
|
|
2779
|
+
"opentelemetry",
|
|
2780
|
+
"opentelemetry-otlp",
|
|
2781
|
+
"opentelemetry-proto",
|
|
2782
|
+
"opentelemetry-resource-detectors",
|
|
2783
|
+
"opentelemetry-semantic-conventions",
|
|
2784
|
+
"opentelemetry-stdout",
|
|
2785
|
+
"opentelemetry_sdk",
|
|
2786
|
+
"pbjson",
|
|
2787
|
+
"pbjson-build",
|
|
2788
|
+
"pbjson-types",
|
|
2789
|
+
"phf",
|
|
2790
|
+
"prettyplease",
|
|
2791
|
+
"prost",
|
|
2792
|
+
"prost-types",
|
|
2793
|
+
"pyo3",
|
|
2794
|
+
"quote",
|
|
2795
|
+
"regex",
|
|
2796
|
+
"sail-common",
|
|
2797
|
+
"sail-plan",
|
|
2798
|
+
"sail-python-udf",
|
|
2799
|
+
"sail-sql",
|
|
2800
|
+
"sail-telemetry",
|
|
2801
|
+
"serde",
|
|
2802
|
+
"serde_arrow",
|
|
2803
|
+
"serde_json",
|
|
2804
|
+
"sqlparser 0.47.0 (git+https://github.com/lakehq/sqlparser-rs.git?rev=f631629)",
|
|
2805
|
+
"syn 2.0.72",
|
|
2806
|
+
"thiserror",
|
|
2807
|
+
"tokio",
|
|
2808
|
+
"tonic",
|
|
2809
|
+
"tonic-build",
|
|
2810
|
+
"tonic-health",
|
|
2811
|
+
"tonic-reflection",
|
|
2812
|
+
"tonic-types",
|
|
2813
|
+
"tower",
|
|
2814
|
+
"tower-http",
|
|
2815
|
+
"tracing",
|
|
2816
|
+
"tracing-opentelemetry",
|
|
2817
|
+
"tracing-subscriber",
|
|
2818
|
+
"uuid",
|
|
2819
|
+
]
|
|
2820
|
+
|
|
2821
|
+
[[package]]
|
|
2822
|
+
name = "sail-sql"
|
|
2823
|
+
version = "0.1.0"
|
|
2824
|
+
dependencies = [
|
|
2825
|
+
"chrono",
|
|
2826
|
+
"chrono-tz",
|
|
2827
|
+
"datafusion",
|
|
2828
|
+
"lazy_static",
|
|
2829
|
+
"regex",
|
|
2830
|
+
"sail-common",
|
|
2831
|
+
"serde",
|
|
2832
|
+
"serde_json",
|
|
2833
|
+
"sqlparser 0.47.0 (git+https://github.com/lakehq/sqlparser-rs.git?rev=f631629)",
|
|
2834
|
+
"thiserror",
|
|
2835
|
+
]
|
|
2836
|
+
|
|
2837
|
+
[[package]]
|
|
2838
|
+
name = "sail-telemetry"
|
|
2839
|
+
version = "0.1.0"
|
|
2840
|
+
dependencies = [
|
|
2841
|
+
"opentelemetry",
|
|
2842
|
+
"opentelemetry-otlp",
|
|
2843
|
+
"opentelemetry-proto",
|
|
2844
|
+
"opentelemetry-resource-detectors",
|
|
2845
|
+
"opentelemetry-semantic-conventions",
|
|
2846
|
+
"opentelemetry-stdout",
|
|
2847
|
+
"opentelemetry_sdk",
|
|
2848
|
+
"prost",
|
|
2849
|
+
"prost-types",
|
|
2850
|
+
"thiserror",
|
|
2851
|
+
"tokio",
|
|
2852
|
+
"tonic",
|
|
2853
|
+
"tonic-build",
|
|
2854
|
+
"tonic-health",
|
|
2855
|
+
"tonic-reflection",
|
|
2856
|
+
"tower",
|
|
2857
|
+
"tower-http",
|
|
2858
|
+
"tracing",
|
|
2859
|
+
"tracing-opentelemetry",
|
|
2860
|
+
"tracing-subscriber",
|
|
2861
|
+
]
|
|
2862
|
+
|
|
2863
|
+
[[package]]
|
|
2864
|
+
name = "same-file"
|
|
2865
|
+
version = "1.0.6"
|
|
2866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2867
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2868
|
+
dependencies = [
|
|
2869
|
+
"winapi-util",
|
|
2870
|
+
]
|
|
2871
|
+
|
|
2872
|
+
[[package]]
|
|
2873
|
+
name = "schannel"
|
|
2874
|
+
version = "0.1.23"
|
|
2875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2876
|
+
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
|
|
2877
|
+
dependencies = [
|
|
2878
|
+
"windows-sys",
|
|
2879
|
+
]
|
|
2880
|
+
|
|
2881
|
+
[[package]]
|
|
2882
|
+
name = "scopeguard"
|
|
2883
|
+
version = "1.2.0"
|
|
2884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2885
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2886
|
+
|
|
2887
|
+
[[package]]
|
|
2888
|
+
name = "security-framework"
|
|
2889
|
+
version = "2.11.0"
|
|
2890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
|
+
checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0"
|
|
2892
|
+
dependencies = [
|
|
2893
|
+
"bitflags 2.6.0",
|
|
2894
|
+
"core-foundation",
|
|
2895
|
+
"core-foundation-sys",
|
|
2896
|
+
"libc",
|
|
2897
|
+
"security-framework-sys",
|
|
2898
|
+
]
|
|
2899
|
+
|
|
2900
|
+
[[package]]
|
|
2901
|
+
name = "security-framework-sys"
|
|
2902
|
+
version = "2.11.0"
|
|
2903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2904
|
+
checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7"
|
|
2905
|
+
dependencies = [
|
|
2906
|
+
"core-foundation-sys",
|
|
2907
|
+
"libc",
|
|
2908
|
+
]
|
|
2909
|
+
|
|
2910
|
+
[[package]]
|
|
2911
|
+
name = "semver"
|
|
2912
|
+
version = "1.0.23"
|
|
2913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
|
+
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
|
|
2915
|
+
|
|
2916
|
+
[[package]]
|
|
2917
|
+
name = "seq-macro"
|
|
2918
|
+
version = "0.3.5"
|
|
2919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2920
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
|
2921
|
+
|
|
2922
|
+
[[package]]
|
|
2923
|
+
name = "serde"
|
|
2924
|
+
version = "1.0.204"
|
|
2925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2926
|
+
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
|
|
2927
|
+
dependencies = [
|
|
2928
|
+
"serde_derive",
|
|
2929
|
+
]
|
|
2930
|
+
|
|
2931
|
+
[[package]]
|
|
2932
|
+
name = "serde_arrow"
|
|
2933
|
+
version = "0.11.6"
|
|
2934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2935
|
+
checksum = "ff56acef131ef74bacc5e86c5038b524d61dee59d65c9e3e5e0f35b9de98cf99"
|
|
2936
|
+
dependencies = [
|
|
2937
|
+
"arrow-array",
|
|
2938
|
+
"arrow-buffer",
|
|
2939
|
+
"arrow-data",
|
|
2940
|
+
"arrow-schema",
|
|
2941
|
+
"bytemuck",
|
|
2942
|
+
"chrono",
|
|
2943
|
+
"half",
|
|
2944
|
+
"serde",
|
|
2945
|
+
]
|
|
2946
|
+
|
|
2947
|
+
[[package]]
|
|
2948
|
+
name = "serde_bytes"
|
|
2949
|
+
version = "0.11.15"
|
|
2950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2951
|
+
checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a"
|
|
2952
|
+
dependencies = [
|
|
2953
|
+
"serde",
|
|
2954
|
+
]
|
|
2955
|
+
|
|
2956
|
+
[[package]]
|
|
2957
|
+
name = "serde_derive"
|
|
2958
|
+
version = "1.0.204"
|
|
2959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2960
|
+
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
|
|
2961
|
+
dependencies = [
|
|
2962
|
+
"proc-macro2",
|
|
2963
|
+
"quote",
|
|
2964
|
+
"syn 2.0.72",
|
|
2965
|
+
]
|
|
2966
|
+
|
|
2967
|
+
[[package]]
|
|
2968
|
+
name = "serde_json"
|
|
2969
|
+
version = "1.0.121"
|
|
2970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2971
|
+
checksum = "4ab380d7d9f22ef3f21ad3e6c1ebe8e4fc7a2000ccba2e4d71fc96f15b2cb609"
|
|
2972
|
+
dependencies = [
|
|
2973
|
+
"itoa",
|
|
2974
|
+
"memchr",
|
|
2975
|
+
"ryu",
|
|
2976
|
+
"serde",
|
|
2977
|
+
]
|
|
2978
|
+
|
|
2979
|
+
[[package]]
|
|
2980
|
+
name = "sha2"
|
|
2981
|
+
version = "0.10.8"
|
|
2982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2983
|
+
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
|
2984
|
+
dependencies = [
|
|
2985
|
+
"cfg-if",
|
|
2986
|
+
"cpufeatures",
|
|
2987
|
+
"digest",
|
|
2988
|
+
]
|
|
2989
|
+
|
|
2990
|
+
[[package]]
|
|
2991
|
+
name = "sharded-slab"
|
|
2992
|
+
version = "0.1.7"
|
|
2993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2994
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
2995
|
+
dependencies = [
|
|
2996
|
+
"lazy_static",
|
|
2997
|
+
]
|
|
2998
|
+
|
|
2999
|
+
[[package]]
|
|
3000
|
+
name = "signal-hook-registry"
|
|
3001
|
+
version = "1.4.2"
|
|
3002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
+
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
|
3004
|
+
dependencies = [
|
|
3005
|
+
"libc",
|
|
3006
|
+
]
|
|
3007
|
+
|
|
3008
|
+
[[package]]
|
|
3009
|
+
name = "siphasher"
|
|
3010
|
+
version = "0.3.11"
|
|
3011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3012
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
3013
|
+
|
|
3014
|
+
[[package]]
|
|
3015
|
+
name = "slab"
|
|
3016
|
+
version = "0.4.9"
|
|
3017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3018
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
3019
|
+
dependencies = [
|
|
3020
|
+
"autocfg",
|
|
3021
|
+
]
|
|
3022
|
+
|
|
3023
|
+
[[package]]
|
|
3024
|
+
name = "smallvec"
|
|
3025
|
+
version = "1.13.2"
|
|
3026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3027
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
3028
|
+
|
|
3029
|
+
[[package]]
|
|
3030
|
+
name = "snafu"
|
|
3031
|
+
version = "0.7.5"
|
|
3032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3033
|
+
checksum = "e4de37ad025c587a29e8f3f5605c00f70b98715ef90b9061a815b9e59e9042d6"
|
|
3034
|
+
dependencies = [
|
|
3035
|
+
"doc-comment",
|
|
3036
|
+
"snafu-derive",
|
|
3037
|
+
]
|
|
3038
|
+
|
|
3039
|
+
[[package]]
|
|
3040
|
+
name = "snafu-derive"
|
|
3041
|
+
version = "0.7.5"
|
|
3042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3043
|
+
checksum = "990079665f075b699031e9c08fd3ab99be5029b96f3b78dc0709e8f77e4efebf"
|
|
3044
|
+
dependencies = [
|
|
3045
|
+
"heck 0.4.1",
|
|
3046
|
+
"proc-macro2",
|
|
3047
|
+
"quote",
|
|
3048
|
+
"syn 1.0.109",
|
|
3049
|
+
]
|
|
3050
|
+
|
|
3051
|
+
[[package]]
|
|
3052
|
+
name = "snap"
|
|
3053
|
+
version = "1.1.1"
|
|
3054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3055
|
+
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
3056
|
+
|
|
3057
|
+
[[package]]
|
|
3058
|
+
name = "socket2"
|
|
3059
|
+
version = "0.5.7"
|
|
3060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3061
|
+
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
|
3062
|
+
dependencies = [
|
|
3063
|
+
"libc",
|
|
3064
|
+
"windows-sys",
|
|
3065
|
+
]
|
|
3066
|
+
|
|
3067
|
+
[[package]]
|
|
3068
|
+
name = "spin"
|
|
3069
|
+
version = "0.9.8"
|
|
3070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3071
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
3072
|
+
|
|
3073
|
+
[[package]]
|
|
3074
|
+
name = "sqlparser"
|
|
3075
|
+
version = "0.47.0"
|
|
3076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
+
checksum = "295e9930cd7a97e58ca2a070541a3ca502b17f5d1fa7157376d0fabd85324f25"
|
|
3078
|
+
dependencies = [
|
|
3079
|
+
"log",
|
|
3080
|
+
"sqlparser_derive 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
3081
|
+
]
|
|
3082
|
+
|
|
3083
|
+
[[package]]
|
|
3084
|
+
name = "sqlparser"
|
|
3085
|
+
version = "0.47.0"
|
|
3086
|
+
source = "git+https://github.com/lakehq/sqlparser-rs.git?rev=f631629#f631629c5352f16f98085ff0f02943d9a7afc0a1"
|
|
3087
|
+
dependencies = [
|
|
3088
|
+
"log",
|
|
3089
|
+
"serde",
|
|
3090
|
+
"sqlparser_derive 0.2.2 (git+https://github.com/lakehq/sqlparser-rs.git?rev=f631629)",
|
|
3091
|
+
]
|
|
3092
|
+
|
|
3093
|
+
[[package]]
|
|
3094
|
+
name = "sqlparser_derive"
|
|
3095
|
+
version = "0.2.2"
|
|
3096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3097
|
+
checksum = "01b2e185515564f15375f593fb966b5718bc624ba77fe49fa4616ad619690554"
|
|
3098
|
+
dependencies = [
|
|
3099
|
+
"proc-macro2",
|
|
3100
|
+
"quote",
|
|
3101
|
+
"syn 2.0.72",
|
|
3102
|
+
]
|
|
3103
|
+
|
|
3104
|
+
[[package]]
|
|
3105
|
+
name = "sqlparser_derive"
|
|
3106
|
+
version = "0.2.2"
|
|
3107
|
+
source = "git+https://github.com/lakehq/sqlparser-rs.git?rev=f631629#f631629c5352f16f98085ff0f02943d9a7afc0a1"
|
|
3108
|
+
dependencies = [
|
|
3109
|
+
"proc-macro2",
|
|
3110
|
+
"quote",
|
|
3111
|
+
"syn 2.0.72",
|
|
3112
|
+
]
|
|
3113
|
+
|
|
3114
|
+
[[package]]
|
|
3115
|
+
name = "static_assertions"
|
|
3116
|
+
version = "1.1.0"
|
|
3117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3118
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
3119
|
+
|
|
3120
|
+
[[package]]
|
|
3121
|
+
name = "strum"
|
|
3122
|
+
version = "0.26.3"
|
|
3123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3124
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
3125
|
+
dependencies = [
|
|
3126
|
+
"strum_macros",
|
|
3127
|
+
]
|
|
3128
|
+
|
|
3129
|
+
[[package]]
|
|
3130
|
+
name = "strum_macros"
|
|
3131
|
+
version = "0.26.4"
|
|
3132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3133
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
3134
|
+
dependencies = [
|
|
3135
|
+
"heck 0.5.0",
|
|
3136
|
+
"proc-macro2",
|
|
3137
|
+
"quote",
|
|
3138
|
+
"rustversion",
|
|
3139
|
+
"syn 2.0.72",
|
|
3140
|
+
]
|
|
3141
|
+
|
|
3142
|
+
[[package]]
|
|
3143
|
+
name = "subtle"
|
|
3144
|
+
version = "2.6.1"
|
|
3145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3146
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
3147
|
+
|
|
3148
|
+
[[package]]
|
|
3149
|
+
name = "syn"
|
|
3150
|
+
version = "1.0.109"
|
|
3151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3152
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
3153
|
+
dependencies = [
|
|
3154
|
+
"proc-macro2",
|
|
3155
|
+
"quote",
|
|
3156
|
+
"unicode-ident",
|
|
3157
|
+
]
|
|
3158
|
+
|
|
3159
|
+
[[package]]
|
|
3160
|
+
name = "syn"
|
|
3161
|
+
version = "2.0.72"
|
|
3162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3163
|
+
checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
|
|
3164
|
+
dependencies = [
|
|
3165
|
+
"proc-macro2",
|
|
3166
|
+
"quote",
|
|
3167
|
+
"unicode-ident",
|
|
3168
|
+
]
|
|
3169
|
+
|
|
3170
|
+
[[package]]
|
|
3171
|
+
name = "sync_wrapper"
|
|
3172
|
+
version = "0.1.2"
|
|
3173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
+
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
3175
|
+
|
|
3176
|
+
[[package]]
|
|
3177
|
+
name = "target-lexicon"
|
|
3178
|
+
version = "0.12.14"
|
|
3179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3180
|
+
checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
|
|
3181
|
+
|
|
3182
|
+
[[package]]
|
|
3183
|
+
name = "tempfile"
|
|
3184
|
+
version = "3.10.1"
|
|
3185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3186
|
+
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
|
3187
|
+
dependencies = [
|
|
3188
|
+
"cfg-if",
|
|
3189
|
+
"fastrand",
|
|
3190
|
+
"rustix",
|
|
3191
|
+
"windows-sys",
|
|
3192
|
+
]
|
|
3193
|
+
|
|
3194
|
+
[[package]]
|
|
3195
|
+
name = "thiserror"
|
|
3196
|
+
version = "1.0.63"
|
|
3197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3198
|
+
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
|
|
3199
|
+
dependencies = [
|
|
3200
|
+
"thiserror-impl",
|
|
3201
|
+
]
|
|
3202
|
+
|
|
3203
|
+
[[package]]
|
|
3204
|
+
name = "thiserror-impl"
|
|
3205
|
+
version = "1.0.63"
|
|
3206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3207
|
+
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
|
|
3208
|
+
dependencies = [
|
|
3209
|
+
"proc-macro2",
|
|
3210
|
+
"quote",
|
|
3211
|
+
"syn 2.0.72",
|
|
3212
|
+
]
|
|
3213
|
+
|
|
3214
|
+
[[package]]
|
|
3215
|
+
name = "thread_local"
|
|
3216
|
+
version = "1.1.8"
|
|
3217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3218
|
+
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
|
3219
|
+
dependencies = [
|
|
3220
|
+
"cfg-if",
|
|
3221
|
+
"once_cell",
|
|
3222
|
+
]
|
|
3223
|
+
|
|
3224
|
+
[[package]]
|
|
3225
|
+
name = "thrift"
|
|
3226
|
+
version = "0.17.0"
|
|
3227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3228
|
+
checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
|
|
3229
|
+
dependencies = [
|
|
3230
|
+
"byteorder",
|
|
3231
|
+
"integer-encoding",
|
|
3232
|
+
"ordered-float 2.10.1",
|
|
3233
|
+
]
|
|
3234
|
+
|
|
3235
|
+
[[package]]
|
|
3236
|
+
name = "tiny-keccak"
|
|
3237
|
+
version = "2.0.2"
|
|
3238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3239
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
3240
|
+
dependencies = [
|
|
3241
|
+
"crunchy",
|
|
3242
|
+
]
|
|
3243
|
+
|
|
3244
|
+
[[package]]
|
|
3245
|
+
name = "tinyvec"
|
|
3246
|
+
version = "1.6.1"
|
|
3247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3248
|
+
checksum = "c55115c6fbe2d2bef26eb09ad74bde02d8255476fc0c7b515ef09fbb35742d82"
|
|
3249
|
+
dependencies = [
|
|
3250
|
+
"tinyvec_macros",
|
|
3251
|
+
]
|
|
3252
|
+
|
|
3253
|
+
[[package]]
|
|
3254
|
+
name = "tinyvec_macros"
|
|
3255
|
+
version = "0.1.1"
|
|
3256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3257
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3258
|
+
|
|
3259
|
+
[[package]]
|
|
3260
|
+
name = "tokio"
|
|
3261
|
+
version = "1.39.2"
|
|
3262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3263
|
+
checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1"
|
|
3264
|
+
dependencies = [
|
|
3265
|
+
"backtrace",
|
|
3266
|
+
"bytes",
|
|
3267
|
+
"libc",
|
|
3268
|
+
"mio",
|
|
3269
|
+
"parking_lot",
|
|
3270
|
+
"pin-project-lite",
|
|
3271
|
+
"signal-hook-registry",
|
|
3272
|
+
"socket2",
|
|
3273
|
+
"tokio-macros",
|
|
3274
|
+
"windows-sys",
|
|
3275
|
+
]
|
|
3276
|
+
|
|
3277
|
+
[[package]]
|
|
3278
|
+
name = "tokio-io-timeout"
|
|
3279
|
+
version = "1.2.0"
|
|
3280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3281
|
+
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
|
|
3282
|
+
dependencies = [
|
|
3283
|
+
"pin-project-lite",
|
|
3284
|
+
"tokio",
|
|
3285
|
+
]
|
|
3286
|
+
|
|
3287
|
+
[[package]]
|
|
3288
|
+
name = "tokio-macros"
|
|
3289
|
+
version = "2.4.0"
|
|
3290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3291
|
+
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
|
|
3292
|
+
dependencies = [
|
|
3293
|
+
"proc-macro2",
|
|
3294
|
+
"quote",
|
|
3295
|
+
"syn 2.0.72",
|
|
3296
|
+
]
|
|
3297
|
+
|
|
3298
|
+
[[package]]
|
|
3299
|
+
name = "tokio-rustls"
|
|
3300
|
+
version = "0.25.0"
|
|
3301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3302
|
+
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
|
|
3303
|
+
dependencies = [
|
|
3304
|
+
"rustls",
|
|
3305
|
+
"rustls-pki-types",
|
|
3306
|
+
"tokio",
|
|
3307
|
+
]
|
|
3308
|
+
|
|
3309
|
+
[[package]]
|
|
3310
|
+
name = "tokio-stream"
|
|
3311
|
+
version = "0.1.15"
|
|
3312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3313
|
+
checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
|
|
3314
|
+
dependencies = [
|
|
3315
|
+
"futures-core",
|
|
3316
|
+
"pin-project-lite",
|
|
3317
|
+
"tokio",
|
|
3318
|
+
]
|
|
3319
|
+
|
|
3320
|
+
[[package]]
|
|
3321
|
+
name = "tokio-util"
|
|
3322
|
+
version = "0.7.11"
|
|
3323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3324
|
+
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
|
|
3325
|
+
dependencies = [
|
|
3326
|
+
"bytes",
|
|
3327
|
+
"futures-core",
|
|
3328
|
+
"futures-sink",
|
|
3329
|
+
"pin-project-lite",
|
|
3330
|
+
"tokio",
|
|
3331
|
+
]
|
|
3332
|
+
|
|
3333
|
+
[[package]]
|
|
3334
|
+
name = "tonic"
|
|
3335
|
+
version = "0.11.0"
|
|
3336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3337
|
+
checksum = "76c4eb7a4e9ef9d4763600161f12f5070b92a578e1b634db88a6887844c91a13"
|
|
3338
|
+
dependencies = [
|
|
3339
|
+
"async-stream",
|
|
3340
|
+
"async-trait",
|
|
3341
|
+
"axum",
|
|
3342
|
+
"base64 0.21.7",
|
|
3343
|
+
"bytes",
|
|
3344
|
+
"h2",
|
|
3345
|
+
"http",
|
|
3346
|
+
"http-body",
|
|
3347
|
+
"hyper",
|
|
3348
|
+
"hyper-timeout",
|
|
3349
|
+
"percent-encoding",
|
|
3350
|
+
"pin-project",
|
|
3351
|
+
"prost",
|
|
3352
|
+
"rustls-native-certs",
|
|
3353
|
+
"rustls-pemfile",
|
|
3354
|
+
"rustls-pki-types",
|
|
3355
|
+
"tokio",
|
|
3356
|
+
"tokio-rustls",
|
|
3357
|
+
"tokio-stream",
|
|
3358
|
+
"tower",
|
|
3359
|
+
"tower-layer",
|
|
3360
|
+
"tower-service",
|
|
3361
|
+
"tracing",
|
|
3362
|
+
]
|
|
3363
|
+
|
|
3364
|
+
[[package]]
|
|
3365
|
+
name = "tonic-build"
|
|
3366
|
+
version = "0.11.0"
|
|
3367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3368
|
+
checksum = "be4ef6dd70a610078cb4e338a0f79d06bc759ff1b22d2120c2ff02ae264ba9c2"
|
|
3369
|
+
dependencies = [
|
|
3370
|
+
"prettyplease",
|
|
3371
|
+
"proc-macro2",
|
|
3372
|
+
"prost-build",
|
|
3373
|
+
"quote",
|
|
3374
|
+
"syn 2.0.72",
|
|
3375
|
+
]
|
|
3376
|
+
|
|
3377
|
+
[[package]]
|
|
3378
|
+
name = "tonic-health"
|
|
3379
|
+
version = "0.11.0"
|
|
3380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3381
|
+
checksum = "2cef6e24bc96871001a7e48e820ab240b3de2201e59b517cf52835df2f1d2350"
|
|
3382
|
+
dependencies = [
|
|
3383
|
+
"async-stream",
|
|
3384
|
+
"prost",
|
|
3385
|
+
"tokio",
|
|
3386
|
+
"tokio-stream",
|
|
3387
|
+
"tonic",
|
|
3388
|
+
]
|
|
3389
|
+
|
|
3390
|
+
[[package]]
|
|
3391
|
+
name = "tonic-reflection"
|
|
3392
|
+
version = "0.11.0"
|
|
3393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3394
|
+
checksum = "548c227bd5c0fae5925812c4ec6c66ffcfced23ea370cb823f4d18f0fc1cb6a7"
|
|
3395
|
+
dependencies = [
|
|
3396
|
+
"prost",
|
|
3397
|
+
"prost-types",
|
|
3398
|
+
"tokio",
|
|
3399
|
+
"tokio-stream",
|
|
3400
|
+
"tonic",
|
|
3401
|
+
]
|
|
3402
|
+
|
|
3403
|
+
[[package]]
|
|
3404
|
+
name = "tonic-types"
|
|
3405
|
+
version = "0.11.0"
|
|
3406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3407
|
+
checksum = "f4aa089471d8d4c60ec3aef047739713a4695f0b309d4cea0073bc55201064f4"
|
|
3408
|
+
dependencies = [
|
|
3409
|
+
"prost",
|
|
3410
|
+
"prost-types",
|
|
3411
|
+
"tonic",
|
|
3412
|
+
]
|
|
3413
|
+
|
|
3414
|
+
[[package]]
|
|
3415
|
+
name = "tower"
|
|
3416
|
+
version = "0.4.13"
|
|
3417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3418
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
3419
|
+
dependencies = [
|
|
3420
|
+
"futures-core",
|
|
3421
|
+
"futures-util",
|
|
3422
|
+
"hdrhistogram",
|
|
3423
|
+
"indexmap 1.9.3",
|
|
3424
|
+
"pin-project",
|
|
3425
|
+
"pin-project-lite",
|
|
3426
|
+
"rand",
|
|
3427
|
+
"slab",
|
|
3428
|
+
"tokio",
|
|
3429
|
+
"tokio-util",
|
|
3430
|
+
"tower-layer",
|
|
3431
|
+
"tower-service",
|
|
3432
|
+
"tracing",
|
|
3433
|
+
]
|
|
3434
|
+
|
|
3435
|
+
[[package]]
|
|
3436
|
+
name = "tower-http"
|
|
3437
|
+
version = "0.4.4"
|
|
3438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3439
|
+
checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"
|
|
3440
|
+
dependencies = [
|
|
3441
|
+
"async-compression",
|
|
3442
|
+
"base64 0.21.7",
|
|
3443
|
+
"bitflags 2.6.0",
|
|
3444
|
+
"bytes",
|
|
3445
|
+
"futures-core",
|
|
3446
|
+
"futures-util",
|
|
3447
|
+
"http",
|
|
3448
|
+
"http-body",
|
|
3449
|
+
"http-range-header",
|
|
3450
|
+
"httpdate",
|
|
3451
|
+
"iri-string",
|
|
3452
|
+
"mime",
|
|
3453
|
+
"mime_guess",
|
|
3454
|
+
"percent-encoding",
|
|
3455
|
+
"pin-project-lite",
|
|
3456
|
+
"tokio",
|
|
3457
|
+
"tokio-util",
|
|
3458
|
+
"tower",
|
|
3459
|
+
"tower-layer",
|
|
3460
|
+
"tower-service",
|
|
3461
|
+
"tracing",
|
|
3462
|
+
"uuid",
|
|
3463
|
+
]
|
|
3464
|
+
|
|
3465
|
+
[[package]]
|
|
3466
|
+
name = "tower-layer"
|
|
3467
|
+
version = "0.3.2"
|
|
3468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3469
|
+
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
|
|
3470
|
+
|
|
3471
|
+
[[package]]
|
|
3472
|
+
name = "tower-service"
|
|
3473
|
+
version = "0.3.2"
|
|
3474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3475
|
+
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
3476
|
+
|
|
3477
|
+
[[package]]
|
|
3478
|
+
name = "tracing"
|
|
3479
|
+
version = "0.1.40"
|
|
3480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3481
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
3482
|
+
dependencies = [
|
|
3483
|
+
"log",
|
|
3484
|
+
"pin-project-lite",
|
|
3485
|
+
"tracing-attributes",
|
|
3486
|
+
"tracing-core",
|
|
3487
|
+
]
|
|
3488
|
+
|
|
3489
|
+
[[package]]
|
|
3490
|
+
name = "tracing-attributes"
|
|
3491
|
+
version = "0.1.27"
|
|
3492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3493
|
+
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
3494
|
+
dependencies = [
|
|
3495
|
+
"proc-macro2",
|
|
3496
|
+
"quote",
|
|
3497
|
+
"syn 2.0.72",
|
|
3498
|
+
]
|
|
3499
|
+
|
|
3500
|
+
[[package]]
|
|
3501
|
+
name = "tracing-core"
|
|
3502
|
+
version = "0.1.32"
|
|
3503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3504
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
3505
|
+
dependencies = [
|
|
3506
|
+
"once_cell",
|
|
3507
|
+
"valuable",
|
|
3508
|
+
]
|
|
3509
|
+
|
|
3510
|
+
[[package]]
|
|
3511
|
+
name = "tracing-log"
|
|
3512
|
+
version = "0.2.0"
|
|
3513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3514
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3515
|
+
dependencies = [
|
|
3516
|
+
"log",
|
|
3517
|
+
"once_cell",
|
|
3518
|
+
"tracing-core",
|
|
3519
|
+
]
|
|
3520
|
+
|
|
3521
|
+
[[package]]
|
|
3522
|
+
name = "tracing-opentelemetry"
|
|
3523
|
+
version = "0.24.0"
|
|
3524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3525
|
+
checksum = "f68803492bf28ab40aeccaecc7021096bd256baf7ca77c3d425d89b35a7be4e4"
|
|
3526
|
+
dependencies = [
|
|
3527
|
+
"js-sys",
|
|
3528
|
+
"once_cell",
|
|
3529
|
+
"opentelemetry",
|
|
3530
|
+
"opentelemetry_sdk",
|
|
3531
|
+
"smallvec",
|
|
3532
|
+
"tracing",
|
|
3533
|
+
"tracing-core",
|
|
3534
|
+
"tracing-log",
|
|
3535
|
+
"tracing-subscriber",
|
|
3536
|
+
"web-time",
|
|
3537
|
+
]
|
|
3538
|
+
|
|
3539
|
+
[[package]]
|
|
3540
|
+
name = "tracing-serde"
|
|
3541
|
+
version = "0.1.3"
|
|
3542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3543
|
+
checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
|
|
3544
|
+
dependencies = [
|
|
3545
|
+
"serde",
|
|
3546
|
+
"tracing-core",
|
|
3547
|
+
]
|
|
3548
|
+
|
|
3549
|
+
[[package]]
|
|
3550
|
+
name = "tracing-subscriber"
|
|
3551
|
+
version = "0.3.18"
|
|
3552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3553
|
+
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
|
|
3554
|
+
dependencies = [
|
|
3555
|
+
"matchers",
|
|
3556
|
+
"nu-ansi-term",
|
|
3557
|
+
"once_cell",
|
|
3558
|
+
"regex",
|
|
3559
|
+
"serde",
|
|
3560
|
+
"serde_json",
|
|
3561
|
+
"sharded-slab",
|
|
3562
|
+
"smallvec",
|
|
3563
|
+
"thread_local",
|
|
3564
|
+
"tracing",
|
|
3565
|
+
"tracing-core",
|
|
3566
|
+
"tracing-log",
|
|
3567
|
+
"tracing-serde",
|
|
3568
|
+
]
|
|
3569
|
+
|
|
3570
|
+
[[package]]
|
|
3571
|
+
name = "try-lock"
|
|
3572
|
+
version = "0.2.5"
|
|
3573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3574
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3575
|
+
|
|
3576
|
+
[[package]]
|
|
3577
|
+
name = "twox-hash"
|
|
3578
|
+
version = "1.6.3"
|
|
3579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3580
|
+
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
|
|
3581
|
+
dependencies = [
|
|
3582
|
+
"cfg-if",
|
|
3583
|
+
"static_assertions",
|
|
3584
|
+
]
|
|
3585
|
+
|
|
3586
|
+
[[package]]
|
|
3587
|
+
name = "typenum"
|
|
3588
|
+
version = "1.17.0"
|
|
3589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3590
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
3591
|
+
|
|
3592
|
+
[[package]]
|
|
3593
|
+
name = "unicase"
|
|
3594
|
+
version = "2.7.0"
|
|
3595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3596
|
+
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
|
|
3597
|
+
dependencies = [
|
|
3598
|
+
"version_check",
|
|
3599
|
+
]
|
|
3600
|
+
|
|
3601
|
+
[[package]]
|
|
3602
|
+
name = "unicode-bidi"
|
|
3603
|
+
version = "0.3.15"
|
|
3604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3605
|
+
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
|
3606
|
+
|
|
3607
|
+
[[package]]
|
|
3608
|
+
name = "unicode-ident"
|
|
3609
|
+
version = "1.0.12"
|
|
3610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3611
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
3612
|
+
|
|
3613
|
+
[[package]]
|
|
3614
|
+
name = "unicode-normalization"
|
|
3615
|
+
version = "0.1.23"
|
|
3616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3617
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
|
3618
|
+
dependencies = [
|
|
3619
|
+
"tinyvec",
|
|
3620
|
+
]
|
|
3621
|
+
|
|
3622
|
+
[[package]]
|
|
3623
|
+
name = "unicode-segmentation"
|
|
3624
|
+
version = "1.11.0"
|
|
3625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3626
|
+
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
|
|
3627
|
+
|
|
3628
|
+
[[package]]
|
|
3629
|
+
name = "unicode-width"
|
|
3630
|
+
version = "0.1.13"
|
|
3631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3632
|
+
checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
|
|
3633
|
+
|
|
3634
|
+
[[package]]
|
|
3635
|
+
name = "unindent"
|
|
3636
|
+
version = "0.2.3"
|
|
3637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3638
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
3639
|
+
|
|
3640
|
+
[[package]]
|
|
3641
|
+
name = "untrusted"
|
|
3642
|
+
version = "0.9.0"
|
|
3643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3644
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3645
|
+
|
|
3646
|
+
[[package]]
|
|
3647
|
+
name = "url"
|
|
3648
|
+
version = "2.5.2"
|
|
3649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3650
|
+
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
|
|
3651
|
+
dependencies = [
|
|
3652
|
+
"form_urlencoded",
|
|
3653
|
+
"idna",
|
|
3654
|
+
"percent-encoding",
|
|
3655
|
+
]
|
|
3656
|
+
|
|
3657
|
+
[[package]]
|
|
3658
|
+
name = "utf8-width"
|
|
3659
|
+
version = "0.1.7"
|
|
3660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3661
|
+
checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
|
|
3662
|
+
|
|
3663
|
+
[[package]]
|
|
3664
|
+
name = "uuid"
|
|
3665
|
+
version = "1.10.0"
|
|
3666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3667
|
+
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
|
|
3668
|
+
dependencies = [
|
|
3669
|
+
"getrandom",
|
|
3670
|
+
]
|
|
3671
|
+
|
|
3672
|
+
[[package]]
|
|
3673
|
+
name = "valuable"
|
|
3674
|
+
version = "0.1.0"
|
|
3675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3676
|
+
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
|
3677
|
+
|
|
3678
|
+
[[package]]
|
|
3679
|
+
name = "version_check"
|
|
3680
|
+
version = "0.9.4"
|
|
3681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3682
|
+
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
|
3683
|
+
|
|
3684
|
+
[[package]]
|
|
3685
|
+
name = "walkdir"
|
|
3686
|
+
version = "2.5.0"
|
|
3687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3688
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3689
|
+
dependencies = [
|
|
3690
|
+
"same-file",
|
|
3691
|
+
"winapi-util",
|
|
3692
|
+
]
|
|
3693
|
+
|
|
3694
|
+
[[package]]
|
|
3695
|
+
name = "want"
|
|
3696
|
+
version = "0.3.1"
|
|
3697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3698
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3699
|
+
dependencies = [
|
|
3700
|
+
"try-lock",
|
|
3701
|
+
]
|
|
3702
|
+
|
|
3703
|
+
[[package]]
|
|
3704
|
+
name = "wasi"
|
|
3705
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
3706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3707
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3708
|
+
|
|
3709
|
+
[[package]]
|
|
3710
|
+
name = "wasm-bindgen"
|
|
3711
|
+
version = "0.2.92"
|
|
3712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3713
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
|
3714
|
+
dependencies = [
|
|
3715
|
+
"cfg-if",
|
|
3716
|
+
"wasm-bindgen-macro",
|
|
3717
|
+
]
|
|
3718
|
+
|
|
3719
|
+
[[package]]
|
|
3720
|
+
name = "wasm-bindgen-backend"
|
|
3721
|
+
version = "0.2.92"
|
|
3722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3723
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
|
3724
|
+
dependencies = [
|
|
3725
|
+
"bumpalo",
|
|
3726
|
+
"log",
|
|
3727
|
+
"once_cell",
|
|
3728
|
+
"proc-macro2",
|
|
3729
|
+
"quote",
|
|
3730
|
+
"syn 2.0.72",
|
|
3731
|
+
"wasm-bindgen-shared",
|
|
3732
|
+
]
|
|
3733
|
+
|
|
3734
|
+
[[package]]
|
|
3735
|
+
name = "wasm-bindgen-macro"
|
|
3736
|
+
version = "0.2.92"
|
|
3737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3738
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
|
3739
|
+
dependencies = [
|
|
3740
|
+
"quote",
|
|
3741
|
+
"wasm-bindgen-macro-support",
|
|
3742
|
+
]
|
|
3743
|
+
|
|
3744
|
+
[[package]]
|
|
3745
|
+
name = "wasm-bindgen-macro-support"
|
|
3746
|
+
version = "0.2.92"
|
|
3747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3748
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
3749
|
+
dependencies = [
|
|
3750
|
+
"proc-macro2",
|
|
3751
|
+
"quote",
|
|
3752
|
+
"syn 2.0.72",
|
|
3753
|
+
"wasm-bindgen-backend",
|
|
3754
|
+
"wasm-bindgen-shared",
|
|
3755
|
+
]
|
|
3756
|
+
|
|
3757
|
+
[[package]]
|
|
3758
|
+
name = "wasm-bindgen-shared"
|
|
3759
|
+
version = "0.2.92"
|
|
3760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3761
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
|
3762
|
+
|
|
3763
|
+
[[package]]
|
|
3764
|
+
name = "web-sys"
|
|
3765
|
+
version = "0.3.69"
|
|
3766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3767
|
+
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
|
|
3768
|
+
dependencies = [
|
|
3769
|
+
"js-sys",
|
|
3770
|
+
"wasm-bindgen",
|
|
3771
|
+
]
|
|
3772
|
+
|
|
3773
|
+
[[package]]
|
|
3774
|
+
name = "web-time"
|
|
3775
|
+
version = "1.1.0"
|
|
3776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3777
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3778
|
+
dependencies = [
|
|
3779
|
+
"js-sys",
|
|
3780
|
+
"wasm-bindgen",
|
|
3781
|
+
]
|
|
3782
|
+
|
|
3783
|
+
[[package]]
|
|
3784
|
+
name = "winapi"
|
|
3785
|
+
version = "0.3.9"
|
|
3786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3787
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3788
|
+
dependencies = [
|
|
3789
|
+
"winapi-i686-pc-windows-gnu",
|
|
3790
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3791
|
+
]
|
|
3792
|
+
|
|
3793
|
+
[[package]]
|
|
3794
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3795
|
+
version = "0.4.0"
|
|
3796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3797
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3798
|
+
|
|
3799
|
+
[[package]]
|
|
3800
|
+
name = "winapi-util"
|
|
3801
|
+
version = "0.1.8"
|
|
3802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3803
|
+
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
|
|
3804
|
+
dependencies = [
|
|
3805
|
+
"windows-sys",
|
|
3806
|
+
]
|
|
3807
|
+
|
|
3808
|
+
[[package]]
|
|
3809
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3810
|
+
version = "0.4.0"
|
|
3811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3812
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3813
|
+
|
|
3814
|
+
[[package]]
|
|
3815
|
+
name = "windows-core"
|
|
3816
|
+
version = "0.52.0"
|
|
3817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3818
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
3819
|
+
dependencies = [
|
|
3820
|
+
"windows-targets",
|
|
3821
|
+
]
|
|
3822
|
+
|
|
3823
|
+
[[package]]
|
|
3824
|
+
name = "windows-sys"
|
|
3825
|
+
version = "0.52.0"
|
|
3826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3827
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3828
|
+
dependencies = [
|
|
3829
|
+
"windows-targets",
|
|
3830
|
+
]
|
|
3831
|
+
|
|
3832
|
+
[[package]]
|
|
3833
|
+
name = "windows-targets"
|
|
3834
|
+
version = "0.52.5"
|
|
3835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3836
|
+
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
|
3837
|
+
dependencies = [
|
|
3838
|
+
"windows_aarch64_gnullvm",
|
|
3839
|
+
"windows_aarch64_msvc",
|
|
3840
|
+
"windows_i686_gnu",
|
|
3841
|
+
"windows_i686_gnullvm",
|
|
3842
|
+
"windows_i686_msvc",
|
|
3843
|
+
"windows_x86_64_gnu",
|
|
3844
|
+
"windows_x86_64_gnullvm",
|
|
3845
|
+
"windows_x86_64_msvc",
|
|
3846
|
+
]
|
|
3847
|
+
|
|
3848
|
+
[[package]]
|
|
3849
|
+
name = "windows_aarch64_gnullvm"
|
|
3850
|
+
version = "0.52.5"
|
|
3851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3852
|
+
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
|
3853
|
+
|
|
3854
|
+
[[package]]
|
|
3855
|
+
name = "windows_aarch64_msvc"
|
|
3856
|
+
version = "0.52.5"
|
|
3857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3858
|
+
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
|
3859
|
+
|
|
3860
|
+
[[package]]
|
|
3861
|
+
name = "windows_i686_gnu"
|
|
3862
|
+
version = "0.52.5"
|
|
3863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3864
|
+
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
|
3865
|
+
|
|
3866
|
+
[[package]]
|
|
3867
|
+
name = "windows_i686_gnullvm"
|
|
3868
|
+
version = "0.52.5"
|
|
3869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3870
|
+
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
|
3871
|
+
|
|
3872
|
+
[[package]]
|
|
3873
|
+
name = "windows_i686_msvc"
|
|
3874
|
+
version = "0.52.5"
|
|
3875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3876
|
+
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
|
3877
|
+
|
|
3878
|
+
[[package]]
|
|
3879
|
+
name = "windows_x86_64_gnu"
|
|
3880
|
+
version = "0.52.5"
|
|
3881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3882
|
+
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
|
3883
|
+
|
|
3884
|
+
[[package]]
|
|
3885
|
+
name = "windows_x86_64_gnullvm"
|
|
3886
|
+
version = "0.52.5"
|
|
3887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3888
|
+
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
|
3889
|
+
|
|
3890
|
+
[[package]]
|
|
3891
|
+
name = "windows_x86_64_msvc"
|
|
3892
|
+
version = "0.52.5"
|
|
3893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3894
|
+
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|
|
3895
|
+
|
|
3896
|
+
[[package]]
|
|
3897
|
+
name = "xz2"
|
|
3898
|
+
version = "0.1.7"
|
|
3899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3900
|
+
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
3901
|
+
dependencies = [
|
|
3902
|
+
"lzma-sys",
|
|
3903
|
+
]
|
|
3904
|
+
|
|
3905
|
+
[[package]]
|
|
3906
|
+
name = "zerocopy"
|
|
3907
|
+
version = "0.7.34"
|
|
3908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3909
|
+
checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087"
|
|
3910
|
+
dependencies = [
|
|
3911
|
+
"zerocopy-derive",
|
|
3912
|
+
]
|
|
3913
|
+
|
|
3914
|
+
[[package]]
|
|
3915
|
+
name = "zerocopy-derive"
|
|
3916
|
+
version = "0.7.34"
|
|
3917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3918
|
+
checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b"
|
|
3919
|
+
dependencies = [
|
|
3920
|
+
"proc-macro2",
|
|
3921
|
+
"quote",
|
|
3922
|
+
"syn 2.0.72",
|
|
3923
|
+
]
|
|
3924
|
+
|
|
3925
|
+
[[package]]
|
|
3926
|
+
name = "zeroize"
|
|
3927
|
+
version = "1.8.1"
|
|
3928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3929
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
3930
|
+
|
|
3931
|
+
[[package]]
|
|
3932
|
+
name = "zstd"
|
|
3933
|
+
version = "0.13.0"
|
|
3934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3935
|
+
checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110"
|
|
3936
|
+
dependencies = [
|
|
3937
|
+
"zstd-safe",
|
|
3938
|
+
]
|
|
3939
|
+
|
|
3940
|
+
[[package]]
|
|
3941
|
+
name = "zstd-safe"
|
|
3942
|
+
version = "7.0.0"
|
|
3943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3944
|
+
checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e"
|
|
3945
|
+
dependencies = [
|
|
3946
|
+
"zstd-sys",
|
|
3947
|
+
]
|
|
3948
|
+
|
|
3949
|
+
[[package]]
|
|
3950
|
+
name = "zstd-sys"
|
|
3951
|
+
version = "2.0.9+zstd.1.5.5"
|
|
3952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3953
|
+
checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
|
|
3954
|
+
dependencies = [
|
|
3955
|
+
"cc",
|
|
3956
|
+
"pkg-config",
|
|
3957
|
+
]
|