perspective-python 2.9.0__tar.gz → 3.0.0rc2__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.
- perspective_python-3.0.0rc2/Cargo.lock +3779 -0
- perspective-python-2.9.0/perspective/table/__init__.py → perspective_python-3.0.0rc2/Cargo.toml +13 -4
- perspective_python-3.0.0rc2/PKG-INFO +12 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/__init__.py +63 -7
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/handlers/__init__.py +3 -5
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/handlers/aiohttp.py +14 -25
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/handlers/starlette.py +15 -26
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/handlers/tornado.py +27 -29
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/templates/exported_widget.html.jinja +1 -1
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/conftest.py +41 -7
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/core/test_async.py +107 -102
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/core/test_threadpool.py +17 -10
- perspective_python-3.0.0rc2/perspective/tests/server/test_server.py +1058 -0
- perspective_python-3.0.0rc2/perspective/tests/server/test_session.py +55 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/single_threaded/test_single_threaded.py +15 -6
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/object_sequence.py +145 -35
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_delete.py +8 -5
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_exception.py +12 -7
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_leaks.py +9 -1
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_ports.py +18 -5
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_remove.py +7 -4
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_table.py +286 -131
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_arrow.py +193 -72
- perspective_python-3.0.0rc2/perspective/tests/table/test_table_datetime.py +2409 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_infer.py +73 -38
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_limit.py +21 -9
- perspective_python-3.0.0rc2/perspective/tests/table/test_table_numpy.py +1022 -0
- perspective_python-3.0.0rc2/perspective/tests/table/test_table_pandas.py +1018 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_to_arrow.py +193 -98
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_to_arrow_lz4.py +5 -3
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_to_format.py +126 -78
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_update.py +191 -71
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_update_arrow.py +282 -146
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_update_pandas.py +90 -48
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_view.py +279 -168
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/test_view_expression.py +509 -292
- perspective_python-3.0.0rc2/perspective/tests/viewer/test_validate.py +69 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/viewer/test_viewer.py +22 -11
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/widget/test_widget.py +77 -23
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/widget/test_widget_pandas.py +240 -39
- perspective-python-2.9.0/perspective/manager/__init__.py → perspective_python-3.0.0rc2/perspective/viewer/validate.py +9 -3
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/viewer/viewer.py +87 -71
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/viewer/viewer_traitlets.py +40 -43
- perspective_python-3.0.0rc2/perspective/widget/widget.py +269 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/pyproject.toml +19 -12
- perspective-python-2.9.0/perspective/libpsp.py → perspective_python-3.0.0rc2/rust/perspective-client/Cargo.toml +47 -33
- perspective_python-3.0.0rc2/rust/perspective-client/build.rs +65 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/client/get_hosted_table_names.md +20 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/client/open_table.md +16 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/client/set_loop_callback.md +7 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/client/system_info.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/client/table.md +58 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/client/terminate.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/client.md +18 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/clear.md +5 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/columns.md +10 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/delete.md +6 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/get_client.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/get_features.md +2 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/get_index.md +25 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/get_limit.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/get_num_views.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/make_port.md +2 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/on_delete.md +5 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/remove.md +18 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/remove_delete.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/replace.md +2 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/schema.md +13 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/size.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/update.md +6 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/validate_expressions.md +11 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/view.md +3 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table.md +14 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/collapse.md +11 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/column_paths.md +3 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/delete.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/dimensions.md +11 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/expand.md +11 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/expression_schema.md +3 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/get_config.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/get_min_max.md +5 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/num_columns.md +5 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/num_rows.md +5 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/on_delete.md +8 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/on_update.md +19 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/remove_delete.md +9 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/remove_update.md +9 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/schema.md +13 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/set_depth.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/to_arrow.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/to_columns.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/to_columns_string.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/to_csv.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/to_json.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/to_json_string.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view.md +387 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/client.rs +356 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/config/aggregates.rs +312 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/config/column_type.rs +74 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/config/expressions.rs +104 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/config/filters.rs +195 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/config/mod.rs +29 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/config/plugin.rs +67 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/config/sort.rs +146 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/config/view_config.rs +259 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/lib.rs +104 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/proto.rs +1065 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/session.rs +141 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/table.rs +357 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/table_data.rs +75 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/utils/clone.rs +83 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/utils/logging.rs +108 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/utils/mod.rs +71 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/utils/tests/clone.rs +83 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/utils/tests/mod.rs +13 -0
- perspective_python-3.0.0rc2/rust/perspective-client/src/rust/view.rs +376 -0
- perspective-python-2.9.0/perspective/tests/core/test_layout.py → perspective_python-3.0.0rc2/rust/perspective-python/Cargo.toml +47 -28
- {perspective-python-2.9.0/perspective/core/data → perspective_python-3.0.0rc2/rust/perspective-python/bench/runtime}/__init__.py +3 -2
- perspective_python-3.0.0rc2/rust/perspective-python/bench/runtime/bench.py +349 -0
- perspective_python-3.0.0rc2/rust/perspective-python/bench/runtime/perspective_benchmark.py +242 -0
- perspective_python-3.0.0rc2/rust/perspective-python/bench/runtime/run_perspective_benchmark.py +80 -0
- perspective_python-3.0.0rc2/rust/perspective-python/bench/tornado/__init__.py +15 -0
- perspective_python-3.0.0rc2/rust/perspective-python/bench/tornado/async_server.py +163 -0
- perspective_python-3.0.0rc2/rust/perspective-python/bench/tornado/bench.py +196 -0
- perspective-python-2.9.0/perspective/manager/session.py → perspective_python-3.0.0rc2/rust/perspective-python/bench/tornado/distributed_mode.py +54 -41
- perspective_python-3.0.0rc2/rust/perspective-python/bench/tornado/server/new_api.py +111 -0
- perspective_python-3.0.0rc2/rust/perspective-python/bench/tornado/server/old_api.py +104 -0
- perspective-python-2.9.0/perspective/core/aggregate.py → perspective_python-3.0.0rc2/rust/perspective-python/bench/tornado/server_mode.py +37 -38
- perspective_python-3.0.0rc2/rust/perspective-python/docs/client/get_hosted_table_names.md +20 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/client/open_table.md +16 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/client/set_loop_callback.md +7 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/client/system_info.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/client/table.md +58 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/client/terminate.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/client.md +18 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/clear.md +5 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/columns.md +10 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/delete.md +6 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/get_client.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/get_features.md +2 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/get_index.md +25 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/get_limit.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/get_num_views.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/make_port.md +2 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/on_delete.md +5 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/remove.md +18 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/remove_delete.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/replace.md +2 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/schema.md +13 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/size.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/update.md +6 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/validate_expressions.md +11 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/view.md +3 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table.md +14 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/collapse.md +11 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/column_paths.md +3 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/delete.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/dimensions.md +11 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/expand.md +11 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/expression_schema.md +3 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/get_config.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/get_min_max.md +5 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/num_columns.md +5 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/num_rows.md +5 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/on_delete.md +8 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/on_update.md +19 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/remove_delete.md +9 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/remove_update.md +9 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/schema.md +13 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/set_depth.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/to_arrow.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/to_columns.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/to_columns_string.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/to_csv.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/to_json.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/to_json_string.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view.md +387 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/__init__.py +79 -0
- {perspective-python-2.9.0/perspective/client → perspective_python-3.0.0rc2/rust/perspective-python/perspective/handlers}/__init__.py +6 -3
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/handlers/aiohttp.py +54 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/handlers/starlette.py +51 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/handlers/tornado.py +61 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/conftest.py +272 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/core/__init__.py +11 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/core/test_async.py +413 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/core/test_threadpool.py +48 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/server/__init__.py +11 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/server/test_server.py +1058 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/server/test_session.py +55 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/single_threaded/test_single_threaded.py +61 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/__init__.py +11 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/object_sequence.py +402 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_delete.py +124 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_exception.py +53 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_leaks.py +54 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_ports.py +178 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_remove.py +102 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_table.py +612 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_table_arrow.py +452 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_table_datetime.py +2409 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_table_infer.py +201 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_table_limit.py +41 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_table_numpy.py +1022 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_table_pandas.py +1018 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_to_arrow.py +417 -0
- perspective-python-2.9.0/perspective/core/sort.py → perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_to_arrow_lz4.py +16 -20
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_to_format.py +1024 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_update.py +545 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_update_arrow.py +980 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_update_pandas.py +211 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_view.py +2234 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/table/test_view_expression.py +1940 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/viewer/__init__.py +11 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/viewer/test_validate.py +69 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/viewer/test_viewer.py +245 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/widget/__init__.py +11 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/widget/test_widget.py +278 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests/widget/test_widget_pandas.py +453 -0
- perspective-python-2.9.0/perspective/table/_constants.py → perspective_python-3.0.0rc2/rust/perspective-python/perspective/viewer/__init__.py +3 -1
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/viewer/validate.py +22 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/viewer/viewer.py +331 -0
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/viewer/viewer_traitlets.py +101 -0
- perspective-python-2.9.0/perspective/core/exception.py → perspective_python-3.0.0rc2/rust/perspective-python/perspective/widget/__init__.py +2 -3
- perspective_python-3.0.0rc2/rust/perspective-python/perspective/widget/widget.py +269 -0
- perspective_python-3.0.0rc2/rust/perspective-python/src/client/client_sync.rs +365 -0
- perspective_python-3.0.0rc2/rust/perspective-python/src/client/mod.rs +17 -0
- perspective_python-3.0.0rc2/rust/perspective-python/src/client/python.rs +680 -0
- perspective_python-3.0.0rc2/rust/perspective-python/src/lib.rs +55 -0
- perspective_python-3.0.0rc2/rust/perspective-python/src/server/mod.rs +15 -0
- perspective_python-3.0.0rc2/rust/perspective-python/src/server/server_sync.rs +114 -0
- perspective-python-2.9.0/perspective/core/plugin.py → perspective_python-3.0.0rc2/rust/perspective-server/Cargo.toml +41 -42
- perspective_python-3.0.0rc2/rust/perspective-server/build.rs +174 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/arrow/CMakeLists.txt +0 -6
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/hopscotch.txt.in +1 -1
- perspective_python-3.0.0rc2/rust/perspective-server/cmake/modules/.clangd.in +3 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/modules/FindInstallDependency.cmake +18 -3
- perspective_python-3.0.0rc2/rust/perspective-server/cmake/modules/FindProtoc.cmake +124 -0
- perspective_python-3.0.0rc2/rust/perspective-server/cmake/modules/SetupClangd.cmake +42 -0
- perspective_python-3.0.0rc2/rust/perspective-server/cmake/protobuf.txt.in +24 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/rapidjson.txt.in +1 -1
- perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective/.clangd.in +3 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/CMakeLists.txt +187 -152
- perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective/build.js +50 -0
- perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective/env.js +15 -0
- perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective/package.json +16 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/arrow_csv.cpp +5 -4
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/arrow_loader.cpp +50 -32
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/arrow_writer.cpp +1 -1
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/base.cpp +29 -21
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/column.cpp +6 -7
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/data_table.cpp +24 -23
- perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective/src/cpp/emscripten_api.cpp +156 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/gnode.cpp +3 -3
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/pool.cpp +30 -46
- perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective/src/cpp/proto_api.cpp +68 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/pyutils.cpp +3 -3
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/schema.cpp +2 -2
- perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective/src/cpp/server.cpp +2410 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/sparse_tree.cpp +39 -30
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/storage.cpp +3 -19
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/sym_table.cpp +0 -1
- perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective/src/cpp/table.cpp +1543 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/time.cpp +2 -2
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/update_task.cpp +4 -1
- perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective/src/cpp/utils.cpp +150 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/view.cpp +356 -63
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/arrow_csv.h +2 -2
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/arrow_loader.h +3 -3
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/base.h +35 -17
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/data_table.h +8 -8
- perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective/src/include/perspective/emscripten_api_utils.h +32 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/exception.h +3 -2
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/first.h +4 -4
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/gnode.h +3 -3
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/parallel_for.h +18 -1
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/pool.h +14 -20
- perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective/src/include/perspective/proto_api.h +46 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/pyutils.h +13 -16
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/scalar.h +1 -1
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/schema.h +1 -1
- perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective/src/include/perspective/server.h +595 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/storage.h +1 -1
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/table.h +55 -6
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/update_task.h +3 -1
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/utils.h +18 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/view.h +39 -8
- perspective_python-3.0.0rc2/rust/perspective-server/cpp/protos/CMakeLists.txt +34 -0
- perspective_python-3.0.0rc2/rust/perspective-server/cpp/protos/perspective.proto +503 -0
- perspective_python-3.0.0rc2/rust/perspective-server/include/server.h +32 -0
- perspective_python-3.0.0rc2/rust/perspective-server/src/ffi.rs +67 -0
- perspective_python-3.0.0rc2/rust/perspective-server/src/lib.rs +247 -0
- perspective_python-3.0.0rc2/rust/perspective-server/src/server.cpp +67 -0
- {perspective-python-2.9.0/perspective/extension → perspective_python-3.0.0rc2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab}/install.json +1 -1
- {perspective-python-2.9.0/perspective/labextension → perspective_python-3.0.0rc2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab}/package.json +23 -22
- perspective_python-3.0.0rc2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.62664683b16e6812e453.js +18 -0
- perspective_python-3.0.0rc2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/905.d3bbc3d5954582d507bb.js +1 -0
- perspective_python-3.0.0rc2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.18d5d740c252bde12d73.js +1 -0
- {perspective-python-2.9.0/perspective/labextension → perspective_python-3.0.0rc2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab}/static/third-party-licenses.json +2 -2
- perspective-python-2.9.0/MANIFEST.in +0 -40
- perspective-python-2.9.0/PKG-INFO +0 -169
- perspective-python-2.9.0/README.md +0 -63
- perspective-python-2.9.0/dist/LICENSE +0 -201
- perspective-python-2.9.0/dist/cmake/modules/FindNumPy.cmake +0 -37
- perspective-python-2.9.0/dist/cmake/modules/FindPybind.cmake +0 -40
- perspective-python-2.9.0/dist/cmake/modules/FindPythonHeaders.cmake +0 -270
- perspective-python-2.9.0/dist/src/cpp/emscripten.cpp +0 -2600
- perspective-python-2.9.0/dist/src/cpp/table.cpp +0 -293
- perspective-python-2.9.0/dist/src/cpp/utils.cpp +0 -29
- perspective-python-2.9.0/dist/src/include/perspective/emscripten.h +0 -68
- perspective-python-2.9.0/package.json +0 -16
- perspective-python-2.9.0/perspective/client/aiohttp.py +0 -98
- perspective-python-2.9.0/perspective/client/base.py +0 -146
- perspective-python-2.9.0/perspective/client/dispatch.py +0 -95
- perspective-python-2.9.0/perspective/client/starlette_test.py +0 -113
- perspective-python-2.9.0/perspective/client/table_api.py +0 -146
- perspective-python-2.9.0/perspective/client/tornado.py +0 -71
- perspective-python-2.9.0/perspective/client/view_api.py +0 -158
- perspective-python-2.9.0/perspective/client/websocket.py +0 -195
- perspective-python-2.9.0/perspective/core/__init__.py +0 -18
- perspective-python-2.9.0/perspective/core/_version.py +0 -2
- perspective-python-2.9.0/perspective/core/data/np.py +0 -102
- perspective-python-2.9.0/perspective/core/data/pd.py +0 -199
- perspective-python-2.9.0/perspective/core/filters.py +0 -18
- perspective-python-2.9.0/perspective/handlers/common.py +0 -126
- perspective-python-2.9.0/perspective/include/perspective/python/accessor.h +0 -44
- perspective-python-2.9.0/perspective/include/perspective/python/base.h +0 -46
- perspective-python-2.9.0/perspective/include/perspective/python/column.h +0 -31
- perspective-python-2.9.0/perspective/include/perspective/python/context.h +0 -62
- perspective-python-2.9.0/perspective/include/perspective/python/expressions.h +0 -38
- perspective-python-2.9.0/perspective/include/perspective/python/fill.h +0 -51
- perspective-python-2.9.0/perspective/include/perspective/python/numpy.h +0 -271
- perspective-python-2.9.0/perspective/include/perspective/python/serialization.h +0 -134
- perspective-python-2.9.0/perspective/include/perspective/python/table.h +0 -53
- perspective-python-2.9.0/perspective/include/perspective/python/utils.h +0 -80
- perspective-python-2.9.0/perspective/include/perspective/python/view.h +0 -175
- perspective-python-2.9.0/perspective/include/perspective/python.h +0 -505
- perspective-python-2.9.0/perspective/labextension/static/620.8cd0fc46c82634b68818.js +0 -18
- perspective-python-2.9.0/perspective/labextension/static/88.f37d368adffffd34c91b.js +0 -1
- perspective-python-2.9.0/perspective/labextension/static/remoteEntry.b126e5a754e1f659ef83.js +0 -1
- perspective-python-2.9.0/perspective/manager/manager.py +0 -146
- perspective-python-2.9.0/perspective/manager/manager_internal.py +0 -433
- perspective-python-2.9.0/perspective/nbextension/__init__.py +0 -22
- perspective-python-2.9.0/perspective/nbextension/static/extension.js +0 -13
- perspective-python-2.9.0/perspective/nbextension/static/extension.js.map +0 -7
- perspective-python-2.9.0/perspective/nbextension/static/index.js +0 -681
- perspective-python-2.9.0/perspective/nbextension/static/index.js.map +0 -7
- perspective-python-2.9.0/perspective/src/accessor.cpp +0 -251
- perspective-python-2.9.0/perspective/src/column.cpp +0 -47
- perspective-python-2.9.0/perspective/src/context.cpp +0 -198
- perspective-python-2.9.0/perspective/src/expressions.cpp +0 -74
- perspective-python-2.9.0/perspective/src/fill.cpp +0 -544
- perspective-python-2.9.0/perspective/src/numpy.cpp +0 -896
- perspective-python-2.9.0/perspective/src/python.cpp +0 -23
- perspective-python-2.9.0/perspective/src/serialization.cpp +0 -199
- perspective-python-2.9.0/perspective/src/table.cpp +0 -411
- perspective-python-2.9.0/perspective/src/utils.cpp +0 -210
- perspective-python-2.9.0/perspective/src/view.cpp +0 -574
- perspective-python-2.9.0/perspective/table/_accessor.py +0 -339
- perspective-python-2.9.0/perspective/table/_callback_cache.py +0 -65
- perspective-python-2.9.0/perspective/table/_data_formatter.py +0 -225
- perspective-python-2.9.0/perspective/table/_date_validator.py +0 -197
- perspective-python-2.9.0/perspective/table/_state.py +0 -96
- perspective-python-2.9.0/perspective/table/_utils.py +0 -259
- perspective-python-2.9.0/perspective/table/table.py +0 -532
- perspective-python-2.9.0/perspective/table/view.py +0 -740
- perspective-python-2.9.0/perspective/table/view_config.py +0 -138
- perspective-python-2.9.0/perspective/tests/client_mode/test_client_mode.py +0 -457
- perspective-python-2.9.0/perspective/tests/core/test_aggregates.py +0 -119
- perspective-python-2.9.0/perspective/tests/core/test_plugin.py +0 -76
- perspective-python-2.9.0/perspective/tests/core/test_sort.py +0 -71
- perspective-python-2.9.0/perspective/tests/handlers/test_aiohttp_async_mode.py +0 -87
- perspective-python-2.9.0/perspective/tests/handlers/test_aiohttp_handler.py +0 -299
- perspective-python-2.9.0/perspective/tests/handlers/test_aiohttp_handler_chunked.py +0 -120
- perspective-python-2.9.0/perspective/tests/handlers/test_aiohttp_lock.py +0 -77
- perspective-python-2.9.0/perspective/tests/handlers/test_starlette_async_mode.py +0 -90
- perspective-python-2.9.0/perspective/tests/handlers/test_starlette_handler.py +0 -322
- perspective-python-2.9.0/perspective/tests/handlers/test_starlette_handler_chunked.py +0 -125
- perspective-python-2.9.0/perspective/tests/handlers/test_starlette_lock.py +0 -95
- perspective-python-2.9.0/perspective/tests/handlers/test_tornado_async_mode.py +0 -120
- perspective-python-2.9.0/perspective/tests/handlers/test_tornado_handler.py +0 -303
- perspective-python-2.9.0/perspective/tests/handlers/test_tornado_handler_chunked.py +0 -122
- perspective-python-2.9.0/perspective/tests/handlers/test_tornado_lock.py +0 -98
- perspective-python-2.9.0/perspective/tests/handlers/test_tornado_thread_pool_executor.py +0 -130
- perspective-python-2.9.0/perspective/tests/manager/test_manager.py +0 -1325
- perspective-python-2.9.0/perspective/tests/manager/test_session.py +0 -239
- perspective-python-2.9.0/perspective/tests/table/test_table_datetime.py +0 -1312
- perspective-python-2.9.0/perspective/tests/table/test_table_numpy.py +0 -614
- perspective-python-2.9.0/perspective/tests/table/test_table_pandas.py +0 -611
- perspective-python-2.9.0/perspective/tests/table/test_update_numpy.py +0 -168
- perspective-python-2.9.0/perspective/tests/viewer/test_validate.py +0 -68
- perspective-python-2.9.0/perspective/viewer/validate.py +0 -173
- perspective-python-2.9.0/perspective/widget/widget.py +0 -563
- perspective-python-2.9.0/perspective_python.egg-info/PKG-INFO +0 -169
- perspective-python-2.9.0/perspective_python.egg-info/SOURCES.txt +0 -388
- perspective-python-2.9.0/perspective_python.egg-info/dependency_links.txt +0 -1
- perspective-python-2.9.0/perspective_python.egg-info/not-zip-safe +0 -1
- perspective-python-2.9.0/perspective_python.egg-info/requires.txt +0 -89
- perspective-python-2.9.0/perspective_python.egg-info/top_level.txt +0 -1
- perspective-python-2.9.0/setup.cfg +0 -19
- perspective-python-2.9.0/setup.py +0 -344
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/extension/finos-perspective-nbextension.json +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/__init__.py +0 -0
- {perspective-python-2.9.0/perspective/tests/client_mode → perspective_python-3.0.0rc2/perspective/tests/core}/__init__.py +0 -0
- {perspective-python-2.9.0/perspective/tests/core → perspective_python-3.0.0rc2/perspective/tests/server}/__init__.py +0 -0
- {perspective-python-2.9.0/perspective/tests/handlers → perspective_python-3.0.0rc2/perspective/tests/table}/__init__.py +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/date32.arrow +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/date64.arrow +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/dict.arrow +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/dict_update.arrow +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/int_float_str.arrow +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/int_float_str_file.arrow +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/int_float_str_update.arrow +0 -0
- {perspective-python-2.9.0/perspective/tests/manager → perspective_python-3.0.0rc2/perspective/tests/viewer}/__init__.py +0 -0
- {perspective-python-2.9.0/perspective/tests/table → perspective_python-3.0.0rc2/perspective/tests/widget}/__init__.py +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/viewer/__init__.py +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc2}/perspective/widget/__init__.py +0 -0
- {perspective-python-2.9.0/perspective/tests/viewer → perspective_python-3.0.0rc2/rust/perspective-python/bench}/__init__.py +0 -0
- {perspective-python-2.9.0/perspective/tests/widget → perspective_python-3.0.0rc2/rust/perspective-python/perspective/tests}/__init__.py +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/Pybind.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/arrow/config.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/arrow.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/date.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/double-conversion.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/exprtk.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/flatbuffers.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/lz4.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/modules/FindColor.cmake +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/modules/FindExprTk.cmake +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/modules/FindFlatbuffers.cmake +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/modules/FindRe2.cmake +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/modules/LLVMToolchain.cmake +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/ordered-map.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/re2/CMakeLists.txt +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server}/cmake/re2.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/aggregate.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/aggspec.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/arg_sort.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/base_impl_linux.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/base_impl_osx.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/base_impl_wasm.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/base_impl_win.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/binding.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/comparators.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/compat.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/compat_impl_linux.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/compat_impl_osx.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/compat_impl_wasm.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/compat_impl_win.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/computed_expression.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/computed_function.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/config.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/context_base.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/context_grouped_pkey.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/context_handle.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/context_iterators.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/context_one.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/context_two.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/context_unit.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/context_zero.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/data.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/data_slice.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/date.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/date_parser.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/dense_nodes.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/dense_tree.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/dense_tree_context.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/dependency.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/expression_tables.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/expression_vocab.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/extract_aggregate.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/filter.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/flat_traversal.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/get_data_extents.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/gnode_state.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/init.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/kernel_engine.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/main.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/mask.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/multi_sort.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/none.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/path.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/pivot.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/port.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/process_state.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/raii.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/raii_impl_linux.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/raii_impl_osx.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/raii_impl_win.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/range.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/regex.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/rlookup.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/scalar.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/schema_column.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/simple_bitmask.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/slice.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/sort_specification.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/sparse_tree_node.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/step_delta.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/storage_impl_linux.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/storage_impl_osx.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/storage_impl_win.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/tracing.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/tracing_impl_linux.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/tracing_impl_osx.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/traversal.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/traversal_nodes.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/tree_context_common.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/vendor/arrow_compute_registry.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/vendor/arrow_single_threaded_reader.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/vendor/single_threaded_reader.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/view_config.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/cpp/vocab.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/aggregate.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/aggspec.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/arg_sort.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/arrow_writer.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/binding.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/column.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/comparators.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/compat.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/computed_expression.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/computed_function.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/config.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/context_base.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/context_common_decls.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/context_grouped_pkey.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/context_handle.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/context_one.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/context_two.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/context_unit.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/context_zero.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/data.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/data_accessor.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/data_slice.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/date.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/date_parser.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/debug_helpers.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/defaults.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/dense_nodes.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/dense_tree.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/dense_tree_context.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/dependency.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/env_vars.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/exports.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/expression_tables.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/expression_vocab.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/exprtk.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/extract_aggregate.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/filter.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/filter_utils.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/flat_traversal.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/flatten.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/fragments.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/get_data_extents.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/gnode_state.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/index.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/init.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/iterator.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/kernel_engine.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/last.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/mask.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/multi_sort.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/node_processor.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/node_processor_types.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/none.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/partition.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/path.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/pivot.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/port.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/portable.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/process_state.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/raii.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/range.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/raw_types.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/regex.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/rlookup.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/schema_column.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/simple_bitmask.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/slice.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/sort_specification.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/sparse_tree.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/sparse_tree_node.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/step_delta.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/sym_table.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/time.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/tracing.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/tracing_impl_linux.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/tracing_impl_osx.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/tracing_impl_win.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/traversal.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/traversal_nodes.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/tree_context_common.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/tree_iterator.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/val.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/vendor/arrow_compute_registry.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/vendor/arrow_single_threaded_reader.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/view_config.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc2/rust/perspective-server/cpp/perspective}/src/include/perspective/vocab.h +0 -0
- /perspective-python-2.9.0/perspective/labextension/static/620.8cd0fc46c82634b68818.js.LICENSE.txt → /perspective_python-3.0.0rc2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.62664683b16e6812e453.js.LICENSE.txt +0 -0
- {perspective-python-2.9.0/perspective/labextension → perspective_python-3.0.0rc2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab}/static/style.js +0 -0
|
@@ -0,0 +1,3779 @@
|
|
|
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.21.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli 0.28.1",
|
|
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 = "aho-corasick"
|
|
22
|
+
version = "1.1.3"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"memchr",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "android-tzdata"
|
|
31
|
+
version = "0.1.1"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "android_system_properties"
|
|
37
|
+
version = "0.1.5"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"libc",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstream"
|
|
46
|
+
version = "0.6.14"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"anstyle",
|
|
51
|
+
"anstyle-parse",
|
|
52
|
+
"anstyle-query",
|
|
53
|
+
"anstyle-wincon",
|
|
54
|
+
"colorchoice",
|
|
55
|
+
"is_terminal_polyfill",
|
|
56
|
+
"utf8parse",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle"
|
|
61
|
+
version = "1.0.7"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "anstyle-parse"
|
|
67
|
+
version = "0.2.4"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"utf8parse",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "anstyle-query"
|
|
76
|
+
version = "1.0.3"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"windows-sys 0.52.0",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "anstyle-wincon"
|
|
85
|
+
version = "3.0.3"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"anstyle",
|
|
90
|
+
"windows-sys 0.52.0",
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "anyhow"
|
|
95
|
+
version = "1.0.86"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "anymap2"
|
|
101
|
+
version = "0.13.0"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "d301b3b94cb4b2f23d7917810addbbaff90738e0ca2be692bd027e70d7e0330c"
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "async-lock"
|
|
107
|
+
version = "2.8.0"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"event-listener",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "async-trait"
|
|
116
|
+
version = "0.1.80"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca"
|
|
119
|
+
dependencies = [
|
|
120
|
+
"proc-macro2 1.0.83",
|
|
121
|
+
"quote 1.0.36",
|
|
122
|
+
"syn 2.0.66",
|
|
123
|
+
]
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "atomic-waker"
|
|
127
|
+
version = "1.1.2"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "autocfg"
|
|
133
|
+
version = "1.3.0"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "axum"
|
|
139
|
+
version = "0.7.4"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "1236b4b292f6c4d6dc34604bb5120d85c3fe1d1aa596bd5cc52ca054d13e7b9e"
|
|
142
|
+
dependencies = [
|
|
143
|
+
"async-trait",
|
|
144
|
+
"axum-core",
|
|
145
|
+
"base64 0.21.7",
|
|
146
|
+
"bytes",
|
|
147
|
+
"futures-util",
|
|
148
|
+
"http 1.1.0",
|
|
149
|
+
"http-body",
|
|
150
|
+
"http-body-util",
|
|
151
|
+
"hyper",
|
|
152
|
+
"hyper-util",
|
|
153
|
+
"itoa",
|
|
154
|
+
"matchit",
|
|
155
|
+
"memchr",
|
|
156
|
+
"mime",
|
|
157
|
+
"percent-encoding",
|
|
158
|
+
"pin-project-lite",
|
|
159
|
+
"rustversion",
|
|
160
|
+
"serde",
|
|
161
|
+
"serde_json",
|
|
162
|
+
"serde_path_to_error",
|
|
163
|
+
"serde_urlencoded",
|
|
164
|
+
"sha1",
|
|
165
|
+
"sync_wrapper",
|
|
166
|
+
"tokio",
|
|
167
|
+
"tokio-tungstenite",
|
|
168
|
+
"tower",
|
|
169
|
+
"tower-layer",
|
|
170
|
+
"tower-service",
|
|
171
|
+
"tracing",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "axum-core"
|
|
176
|
+
version = "0.4.3"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"async-trait",
|
|
181
|
+
"bytes",
|
|
182
|
+
"futures-util",
|
|
183
|
+
"http 1.1.0",
|
|
184
|
+
"http-body",
|
|
185
|
+
"http-body-util",
|
|
186
|
+
"mime",
|
|
187
|
+
"pin-project-lite",
|
|
188
|
+
"rustversion",
|
|
189
|
+
"sync_wrapper",
|
|
190
|
+
"tower-layer",
|
|
191
|
+
"tower-service",
|
|
192
|
+
"tracing",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "backtrace"
|
|
197
|
+
version = "0.3.71"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"addr2line",
|
|
202
|
+
"cc",
|
|
203
|
+
"cfg-if",
|
|
204
|
+
"libc",
|
|
205
|
+
"miniz_oxide",
|
|
206
|
+
"object",
|
|
207
|
+
"rustc-demangle",
|
|
208
|
+
]
|
|
209
|
+
|
|
210
|
+
[[package]]
|
|
211
|
+
name = "base64"
|
|
212
|
+
version = "0.13.1"
|
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "base64"
|
|
218
|
+
version = "0.21.7"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "base64"
|
|
224
|
+
version = "0.22.1"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "basic-toml"
|
|
230
|
+
version = "0.1.9"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8"
|
|
233
|
+
dependencies = [
|
|
234
|
+
"serde",
|
|
235
|
+
]
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "bincode"
|
|
239
|
+
version = "1.3.3"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
242
|
+
dependencies = [
|
|
243
|
+
"serde",
|
|
244
|
+
]
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "bitflags"
|
|
248
|
+
version = "2.5.0"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "block-buffer"
|
|
254
|
+
version = "0.10.4"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"generic-array",
|
|
259
|
+
]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "boolinator"
|
|
263
|
+
version = "2.4.0"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "cfa8873f51c92e232f9bac4065cddef41b714152812bfc5f7672ba16d6ef8cd9"
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "bumpalo"
|
|
269
|
+
version = "3.16.0"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "byteorder"
|
|
275
|
+
version = "1.5.0"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "bytes"
|
|
281
|
+
version = "1.6.0"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
|
|
284
|
+
|
|
285
|
+
[[package]]
|
|
286
|
+
name = "cc"
|
|
287
|
+
version = "1.0.98"
|
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
+
checksum = "41c270e7540d725e65ac7f1b212ac8ce349719624d7bcff99f8e2e488e8cf03f"
|
|
290
|
+
dependencies = [
|
|
291
|
+
"jobserver",
|
|
292
|
+
"libc",
|
|
293
|
+
"once_cell",
|
|
294
|
+
]
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "cfg-if"
|
|
298
|
+
version = "1.0.0"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "chrono"
|
|
304
|
+
version = "0.4.38"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
|
|
307
|
+
dependencies = [
|
|
308
|
+
"android-tzdata",
|
|
309
|
+
"iana-time-zone",
|
|
310
|
+
"js-sys",
|
|
311
|
+
"num-traits",
|
|
312
|
+
"serde",
|
|
313
|
+
"wasm-bindgen",
|
|
314
|
+
"windows-targets 0.52.5",
|
|
315
|
+
]
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "clap"
|
|
319
|
+
version = "4.5.4"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
|
|
322
|
+
dependencies = [
|
|
323
|
+
"clap_builder",
|
|
324
|
+
"clap_derive",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "clap_builder"
|
|
329
|
+
version = "4.5.2"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"anstream",
|
|
334
|
+
"anstyle",
|
|
335
|
+
"clap_lex",
|
|
336
|
+
"strsim",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "clap_derive"
|
|
341
|
+
version = "4.5.4"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"heck 0.5.0",
|
|
346
|
+
"proc-macro2 1.0.83",
|
|
347
|
+
"quote 1.0.36",
|
|
348
|
+
"syn 2.0.66",
|
|
349
|
+
]
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "clap_lex"
|
|
353
|
+
version = "0.7.0"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "cmake"
|
|
359
|
+
version = "0.1.50"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130"
|
|
362
|
+
dependencies = [
|
|
363
|
+
"cc",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "codespan-reporting"
|
|
368
|
+
version = "0.11.1"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"termcolor",
|
|
373
|
+
"unicode-width",
|
|
374
|
+
]
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "colorchoice"
|
|
378
|
+
version = "1.0.1"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "console_error_panic_hook"
|
|
384
|
+
version = "0.1.7"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"cfg-if",
|
|
389
|
+
"wasm-bindgen",
|
|
390
|
+
]
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "core-foundation-sys"
|
|
394
|
+
version = "0.8.6"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "cpufeatures"
|
|
400
|
+
version = "0.2.12"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"libc",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "crc32fast"
|
|
409
|
+
version = "1.4.2"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"cfg-if",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "crypto-common"
|
|
418
|
+
version = "0.1.6"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
421
|
+
dependencies = [
|
|
422
|
+
"generic-array",
|
|
423
|
+
"typenum",
|
|
424
|
+
]
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "cxx"
|
|
428
|
+
version = "1.0.122"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "bb497fad022245b29c2a0351df572e2d67c1046bcef2260ebc022aec81efea82"
|
|
431
|
+
dependencies = [
|
|
432
|
+
"cc",
|
|
433
|
+
"cxxbridge-flags",
|
|
434
|
+
"cxxbridge-macro",
|
|
435
|
+
"link-cplusplus",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "cxx-build"
|
|
440
|
+
version = "1.0.122"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "9327c7f9fbd6329a200a5d4aa6f674c60ab256525ff0084b52a889d4e4c60cee"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"cc",
|
|
445
|
+
"codespan-reporting",
|
|
446
|
+
"once_cell",
|
|
447
|
+
"proc-macro2 1.0.83",
|
|
448
|
+
"quote 1.0.36",
|
|
449
|
+
"scratch",
|
|
450
|
+
"syn 2.0.66",
|
|
451
|
+
]
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "cxxbridge-flags"
|
|
455
|
+
version = "1.0.122"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "688c799a4a846f1c0acb9f36bb9c6272d9b3d9457f3633c7753c6057270df13c"
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "cxxbridge-macro"
|
|
461
|
+
version = "1.0.122"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "928bc249a7e3cd554fd2e8e08a426e9670c50bbfc9a621653cfa9accc9641783"
|
|
464
|
+
dependencies = [
|
|
465
|
+
"proc-macro2 1.0.83",
|
|
466
|
+
"quote 1.0.36",
|
|
467
|
+
"syn 2.0.66",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "darling"
|
|
472
|
+
version = "0.20.9"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "83b2eb4d90d12bdda5ed17de686c2acb4c57914f8f921b8da7e112b5a36f3fe1"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"darling_core",
|
|
477
|
+
"darling_macro",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "darling_core"
|
|
482
|
+
version = "0.20.9"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "622687fe0bac72a04e5599029151f5796111b90f1baaa9b544d807a5e31cd120"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"fnv",
|
|
487
|
+
"ident_case",
|
|
488
|
+
"proc-macro2 1.0.83",
|
|
489
|
+
"quote 1.0.36",
|
|
490
|
+
"strsim",
|
|
491
|
+
"syn 2.0.66",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "darling_macro"
|
|
496
|
+
version = "0.20.9"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "733cabb43482b1a1b53eee8583c2b9e8684d592215ea83efd305dd31bc2f0178"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"darling_core",
|
|
501
|
+
"quote 1.0.36",
|
|
502
|
+
"syn 2.0.66",
|
|
503
|
+
]
|
|
504
|
+
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "data-encoding"
|
|
507
|
+
version = "2.6.0"
|
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
+
checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "deranged"
|
|
513
|
+
version = "0.3.11"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
|
516
|
+
dependencies = [
|
|
517
|
+
"powerfmt",
|
|
518
|
+
"serde",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "derivative"
|
|
523
|
+
version = "2.2.0"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"proc-macro2 1.0.83",
|
|
528
|
+
"quote 1.0.36",
|
|
529
|
+
"syn 1.0.109",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "difflib"
|
|
534
|
+
version = "0.4.0"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "diffy"
|
|
540
|
+
version = "0.3.0"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "e616e59155c92257e84970156f506287853355f58cd4a6eb167385722c32b790"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"nu-ansi-term",
|
|
545
|
+
]
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "digest"
|
|
549
|
+
version = "0.10.7"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
552
|
+
dependencies = [
|
|
553
|
+
"block-buffer",
|
|
554
|
+
"crypto-common",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "dirs"
|
|
559
|
+
version = "5.0.1"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
|
562
|
+
dependencies = [
|
|
563
|
+
"dirs-sys",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "dirs-sys"
|
|
568
|
+
version = "0.4.1"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"libc",
|
|
573
|
+
"option-ext",
|
|
574
|
+
"redox_users",
|
|
575
|
+
"windows-sys 0.48.0",
|
|
576
|
+
]
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "downcast"
|
|
580
|
+
version = "0.11.0"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "either"
|
|
586
|
+
version = "1.12.0"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b"
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "equivalent"
|
|
592
|
+
version = "1.0.1"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "errno"
|
|
598
|
+
version = "0.3.9"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
601
|
+
dependencies = [
|
|
602
|
+
"libc",
|
|
603
|
+
"windows-sys 0.52.0",
|
|
604
|
+
]
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "event-listener"
|
|
608
|
+
version = "2.5.3"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "extend"
|
|
614
|
+
version = "1.2.0"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "311a6d2f1f9d60bff73d2c78a0af97ed27f79672f15c238192a5bbb64db56d00"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"proc-macro2 1.0.83",
|
|
619
|
+
"quote 1.0.36",
|
|
620
|
+
"syn 2.0.66",
|
|
621
|
+
]
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "fallible-iterator"
|
|
625
|
+
version = "0.2.0"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "fastrand"
|
|
631
|
+
version = "2.1.0"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "fixedbitset"
|
|
637
|
+
version = "0.4.2"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "flate2"
|
|
643
|
+
version = "1.0.30"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
|
|
646
|
+
dependencies = [
|
|
647
|
+
"crc32fast",
|
|
648
|
+
"miniz_oxide",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "float-cmp"
|
|
653
|
+
version = "0.9.0"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"num-traits",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "fnv"
|
|
662
|
+
version = "1.0.7"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "form_urlencoded"
|
|
668
|
+
version = "1.2.1"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"percent-encoding",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "fragile"
|
|
677
|
+
version = "2.0.0"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "futures"
|
|
683
|
+
version = "0.3.30"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
|
686
|
+
dependencies = [
|
|
687
|
+
"futures-channel",
|
|
688
|
+
"futures-core",
|
|
689
|
+
"futures-executor",
|
|
690
|
+
"futures-io",
|
|
691
|
+
"futures-sink",
|
|
692
|
+
"futures-task",
|
|
693
|
+
"futures-util",
|
|
694
|
+
]
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "futures-channel"
|
|
698
|
+
version = "0.3.30"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"futures-core",
|
|
703
|
+
"futures-sink",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "futures-core"
|
|
708
|
+
version = "0.3.30"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "futures-executor"
|
|
714
|
+
version = "0.3.30"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"futures-core",
|
|
719
|
+
"futures-task",
|
|
720
|
+
"futures-util",
|
|
721
|
+
]
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "futures-io"
|
|
725
|
+
version = "0.3.30"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "futures-macro"
|
|
731
|
+
version = "0.3.30"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
734
|
+
dependencies = [
|
|
735
|
+
"proc-macro2 1.0.83",
|
|
736
|
+
"quote 1.0.36",
|
|
737
|
+
"syn 2.0.66",
|
|
738
|
+
]
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "futures-sink"
|
|
742
|
+
version = "0.3.30"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "futures-task"
|
|
748
|
+
version = "0.3.30"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "futures-util"
|
|
754
|
+
version = "0.3.30"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"futures-channel",
|
|
759
|
+
"futures-core",
|
|
760
|
+
"futures-io",
|
|
761
|
+
"futures-macro",
|
|
762
|
+
"futures-sink",
|
|
763
|
+
"futures-task",
|
|
764
|
+
"memchr",
|
|
765
|
+
"pin-project-lite",
|
|
766
|
+
"pin-utils",
|
|
767
|
+
"slab",
|
|
768
|
+
]
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "generic-array"
|
|
772
|
+
version = "0.14.7"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
775
|
+
dependencies = [
|
|
776
|
+
"typenum",
|
|
777
|
+
"version_check",
|
|
778
|
+
]
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "getrandom"
|
|
782
|
+
version = "0.2.15"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
785
|
+
dependencies = [
|
|
786
|
+
"cfg-if",
|
|
787
|
+
"js-sys",
|
|
788
|
+
"libc",
|
|
789
|
+
"wasi",
|
|
790
|
+
"wasm-bindgen",
|
|
791
|
+
]
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "gimli"
|
|
795
|
+
version = "0.26.2"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
|
|
798
|
+
dependencies = [
|
|
799
|
+
"fallible-iterator",
|
|
800
|
+
"indexmap 1.9.3",
|
|
801
|
+
"stable_deref_trait",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "gimli"
|
|
806
|
+
version = "0.28.1"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "glob"
|
|
812
|
+
version = "0.3.1"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "gloo"
|
|
818
|
+
version = "0.8.1"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "28999cda5ef6916ffd33fb4a7b87e1de633c47c0dc6d97905fee1cdaa142b94d"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"gloo-console 0.2.3",
|
|
823
|
+
"gloo-dialogs 0.1.1",
|
|
824
|
+
"gloo-events 0.1.2",
|
|
825
|
+
"gloo-file 0.2.3",
|
|
826
|
+
"gloo-history 0.1.5",
|
|
827
|
+
"gloo-net 0.3.1",
|
|
828
|
+
"gloo-render 0.1.1",
|
|
829
|
+
"gloo-storage 0.2.2",
|
|
830
|
+
"gloo-timers 0.2.6",
|
|
831
|
+
"gloo-utils 0.1.7",
|
|
832
|
+
"gloo-worker 0.2.1",
|
|
833
|
+
]
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "gloo"
|
|
837
|
+
version = "0.10.0"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "cd35526c28cc55c1db77aed6296de58677dbab863b118483a27845631d870249"
|
|
840
|
+
dependencies = [
|
|
841
|
+
"gloo-console 0.3.0",
|
|
842
|
+
"gloo-dialogs 0.2.0",
|
|
843
|
+
"gloo-events 0.2.0",
|
|
844
|
+
"gloo-file 0.3.0",
|
|
845
|
+
"gloo-history 0.2.2",
|
|
846
|
+
"gloo-net 0.4.0",
|
|
847
|
+
"gloo-render 0.2.0",
|
|
848
|
+
"gloo-storage 0.3.0",
|
|
849
|
+
"gloo-timers 0.3.0",
|
|
850
|
+
"gloo-utils 0.2.0",
|
|
851
|
+
"gloo-worker 0.4.0",
|
|
852
|
+
]
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "gloo-console"
|
|
856
|
+
version = "0.2.3"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "82b7ce3c05debe147233596904981848862b068862e9ec3e34be446077190d3f"
|
|
859
|
+
dependencies = [
|
|
860
|
+
"gloo-utils 0.1.7",
|
|
861
|
+
"js-sys",
|
|
862
|
+
"serde",
|
|
863
|
+
"wasm-bindgen",
|
|
864
|
+
"web-sys",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "gloo-console"
|
|
869
|
+
version = "0.3.0"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "2a17868f56b4a24f677b17c8cb69958385102fa879418052d60b50bc1727e261"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"gloo-utils 0.2.0",
|
|
874
|
+
"js-sys",
|
|
875
|
+
"serde",
|
|
876
|
+
"wasm-bindgen",
|
|
877
|
+
"web-sys",
|
|
878
|
+
]
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "gloo-dialogs"
|
|
882
|
+
version = "0.1.1"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "67062364ac72d27f08445a46cab428188e2e224ec9e37efdba48ae8c289002e6"
|
|
885
|
+
dependencies = [
|
|
886
|
+
"wasm-bindgen",
|
|
887
|
+
"web-sys",
|
|
888
|
+
]
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "gloo-dialogs"
|
|
892
|
+
version = "0.2.0"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "bf4748e10122b01435750ff530095b1217cf6546173459448b83913ebe7815df"
|
|
895
|
+
dependencies = [
|
|
896
|
+
"wasm-bindgen",
|
|
897
|
+
"web-sys",
|
|
898
|
+
]
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "gloo-events"
|
|
902
|
+
version = "0.1.2"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "68b107f8abed8105e4182de63845afcc7b69c098b7852a813ea7462a320992fc"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"wasm-bindgen",
|
|
907
|
+
"web-sys",
|
|
908
|
+
]
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "gloo-events"
|
|
912
|
+
version = "0.2.0"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "27c26fb45f7c385ba980f5fa87ac677e363949e065a083722697ef1b2cc91e41"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"wasm-bindgen",
|
|
917
|
+
"web-sys",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "gloo-file"
|
|
922
|
+
version = "0.2.3"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "a8d5564e570a38b43d78bdc063374a0c3098c4f0d64005b12f9bbe87e869b6d7"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"gloo-events 0.1.2",
|
|
927
|
+
"js-sys",
|
|
928
|
+
"wasm-bindgen",
|
|
929
|
+
"web-sys",
|
|
930
|
+
]
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "gloo-file"
|
|
934
|
+
version = "0.3.0"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "97563d71863fb2824b2e974e754a81d19c4a7ec47b09ced8a0e6656b6d54bd1f"
|
|
937
|
+
dependencies = [
|
|
938
|
+
"gloo-events 0.2.0",
|
|
939
|
+
"js-sys",
|
|
940
|
+
"wasm-bindgen",
|
|
941
|
+
"web-sys",
|
|
942
|
+
]
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "gloo-history"
|
|
946
|
+
version = "0.1.5"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "85725d90bf0ed47063b3930ef28e863658a7905989e9929a8708aab74a1d5e7f"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"gloo-events 0.1.2",
|
|
951
|
+
"gloo-utils 0.1.7",
|
|
952
|
+
"serde",
|
|
953
|
+
"serde-wasm-bindgen 0.5.0",
|
|
954
|
+
"serde_urlencoded",
|
|
955
|
+
"thiserror",
|
|
956
|
+
"wasm-bindgen",
|
|
957
|
+
"web-sys",
|
|
958
|
+
]
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "gloo-history"
|
|
962
|
+
version = "0.2.2"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "903f432be5ba34427eac5e16048ef65604a82061fe93789f2212afc73d8617d6"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"getrandom",
|
|
967
|
+
"gloo-events 0.2.0",
|
|
968
|
+
"gloo-utils 0.2.0",
|
|
969
|
+
"serde",
|
|
970
|
+
"serde-wasm-bindgen 0.6.5",
|
|
971
|
+
"serde_urlencoded",
|
|
972
|
+
"thiserror",
|
|
973
|
+
"wasm-bindgen",
|
|
974
|
+
"web-sys",
|
|
975
|
+
]
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "gloo-net"
|
|
979
|
+
version = "0.3.1"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "a66b4e3c7d9ed8d315fd6b97c8b1f74a7c6ecbbc2320e65ae7ed38b7068cc620"
|
|
982
|
+
dependencies = [
|
|
983
|
+
"futures-channel",
|
|
984
|
+
"futures-core",
|
|
985
|
+
"futures-sink",
|
|
986
|
+
"gloo-utils 0.1.7",
|
|
987
|
+
"http 0.2.12",
|
|
988
|
+
"js-sys",
|
|
989
|
+
"pin-project",
|
|
990
|
+
"serde",
|
|
991
|
+
"serde_json",
|
|
992
|
+
"thiserror",
|
|
993
|
+
"wasm-bindgen",
|
|
994
|
+
"wasm-bindgen-futures",
|
|
995
|
+
"web-sys",
|
|
996
|
+
]
|
|
997
|
+
|
|
998
|
+
[[package]]
|
|
999
|
+
name = "gloo-net"
|
|
1000
|
+
version = "0.4.0"
|
|
1001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
+
checksum = "8ac9e8288ae2c632fa9f8657ac70bfe38a1530f345282d7ba66a1f70b72b7dc4"
|
|
1003
|
+
dependencies = [
|
|
1004
|
+
"futures-channel",
|
|
1005
|
+
"futures-core",
|
|
1006
|
+
"futures-sink",
|
|
1007
|
+
"gloo-utils 0.2.0",
|
|
1008
|
+
"http 0.2.12",
|
|
1009
|
+
"js-sys",
|
|
1010
|
+
"pin-project",
|
|
1011
|
+
"serde",
|
|
1012
|
+
"serde_json",
|
|
1013
|
+
"thiserror",
|
|
1014
|
+
"wasm-bindgen",
|
|
1015
|
+
"wasm-bindgen-futures",
|
|
1016
|
+
"web-sys",
|
|
1017
|
+
]
|
|
1018
|
+
|
|
1019
|
+
[[package]]
|
|
1020
|
+
name = "gloo-render"
|
|
1021
|
+
version = "0.1.1"
|
|
1022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
+
checksum = "2fd9306aef67cfd4449823aadcd14e3958e0800aa2183955a309112a84ec7764"
|
|
1024
|
+
dependencies = [
|
|
1025
|
+
"wasm-bindgen",
|
|
1026
|
+
"web-sys",
|
|
1027
|
+
]
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "gloo-render"
|
|
1031
|
+
version = "0.2.0"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "56008b6744713a8e8d98ac3dcb7d06543d5662358c9c805b4ce2167ad4649833"
|
|
1034
|
+
dependencies = [
|
|
1035
|
+
"wasm-bindgen",
|
|
1036
|
+
"web-sys",
|
|
1037
|
+
]
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "gloo-storage"
|
|
1041
|
+
version = "0.2.2"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "5d6ab60bf5dbfd6f0ed1f7843da31b41010515c745735c970e821945ca91e480"
|
|
1044
|
+
dependencies = [
|
|
1045
|
+
"gloo-utils 0.1.7",
|
|
1046
|
+
"js-sys",
|
|
1047
|
+
"serde",
|
|
1048
|
+
"serde_json",
|
|
1049
|
+
"thiserror",
|
|
1050
|
+
"wasm-bindgen",
|
|
1051
|
+
"web-sys",
|
|
1052
|
+
]
|
|
1053
|
+
|
|
1054
|
+
[[package]]
|
|
1055
|
+
name = "gloo-storage"
|
|
1056
|
+
version = "0.3.0"
|
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
+
checksum = "fbc8031e8c92758af912f9bc08fbbadd3c6f3cfcbf6b64cdf3d6a81f0139277a"
|
|
1059
|
+
dependencies = [
|
|
1060
|
+
"gloo-utils 0.2.0",
|
|
1061
|
+
"js-sys",
|
|
1062
|
+
"serde",
|
|
1063
|
+
"serde_json",
|
|
1064
|
+
"thiserror",
|
|
1065
|
+
"wasm-bindgen",
|
|
1066
|
+
"web-sys",
|
|
1067
|
+
]
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "gloo-timers"
|
|
1071
|
+
version = "0.2.6"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
|
|
1074
|
+
dependencies = [
|
|
1075
|
+
"js-sys",
|
|
1076
|
+
"wasm-bindgen",
|
|
1077
|
+
]
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "gloo-timers"
|
|
1081
|
+
version = "0.3.0"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"js-sys",
|
|
1086
|
+
"wasm-bindgen",
|
|
1087
|
+
]
|
|
1088
|
+
|
|
1089
|
+
[[package]]
|
|
1090
|
+
name = "gloo-utils"
|
|
1091
|
+
version = "0.1.7"
|
|
1092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1093
|
+
checksum = "037fcb07216cb3a30f7292bd0176b050b7b9a052ba830ef7d5d65f6dc64ba58e"
|
|
1094
|
+
dependencies = [
|
|
1095
|
+
"js-sys",
|
|
1096
|
+
"serde",
|
|
1097
|
+
"serde_json",
|
|
1098
|
+
"wasm-bindgen",
|
|
1099
|
+
"web-sys",
|
|
1100
|
+
]
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "gloo-utils"
|
|
1104
|
+
version = "0.2.0"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa"
|
|
1107
|
+
dependencies = [
|
|
1108
|
+
"js-sys",
|
|
1109
|
+
"serde",
|
|
1110
|
+
"serde_json",
|
|
1111
|
+
"wasm-bindgen",
|
|
1112
|
+
"web-sys",
|
|
1113
|
+
]
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "gloo-worker"
|
|
1117
|
+
version = "0.2.1"
|
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
+
checksum = "13471584da78061a28306d1359dd0178d8d6fc1c7c80e5e35d27260346e0516a"
|
|
1120
|
+
dependencies = [
|
|
1121
|
+
"anymap2",
|
|
1122
|
+
"bincode",
|
|
1123
|
+
"gloo-console 0.2.3",
|
|
1124
|
+
"gloo-utils 0.1.7",
|
|
1125
|
+
"js-sys",
|
|
1126
|
+
"serde",
|
|
1127
|
+
"wasm-bindgen",
|
|
1128
|
+
"wasm-bindgen-futures",
|
|
1129
|
+
"web-sys",
|
|
1130
|
+
]
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "gloo-worker"
|
|
1134
|
+
version = "0.4.0"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "76495d3dd87de51da268fa3a593da118ab43eb7f8809e17eb38d3319b424e400"
|
|
1137
|
+
dependencies = [
|
|
1138
|
+
"bincode",
|
|
1139
|
+
"futures",
|
|
1140
|
+
"gloo-utils 0.2.0",
|
|
1141
|
+
"gloo-worker-macros",
|
|
1142
|
+
"js-sys",
|
|
1143
|
+
"pinned",
|
|
1144
|
+
"serde",
|
|
1145
|
+
"thiserror",
|
|
1146
|
+
"wasm-bindgen",
|
|
1147
|
+
"wasm-bindgen-futures",
|
|
1148
|
+
"web-sys",
|
|
1149
|
+
]
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "gloo-worker-macros"
|
|
1153
|
+
version = "0.1.0"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "956caa58d4857bc9941749d55e4bd3000032d8212762586fa5705632967140e7"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"proc-macro-crate",
|
|
1158
|
+
"proc-macro2 1.0.83",
|
|
1159
|
+
"quote 1.0.36",
|
|
1160
|
+
"syn 2.0.66",
|
|
1161
|
+
]
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "h2"
|
|
1165
|
+
version = "0.4.5"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab"
|
|
1168
|
+
dependencies = [
|
|
1169
|
+
"atomic-waker",
|
|
1170
|
+
"bytes",
|
|
1171
|
+
"fnv",
|
|
1172
|
+
"futures-core",
|
|
1173
|
+
"futures-sink",
|
|
1174
|
+
"http 1.1.0",
|
|
1175
|
+
"indexmap 2.2.6",
|
|
1176
|
+
"slab",
|
|
1177
|
+
"tokio",
|
|
1178
|
+
"tokio-util",
|
|
1179
|
+
"tracing",
|
|
1180
|
+
]
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "hashbrown"
|
|
1184
|
+
version = "0.12.3"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "hashbrown"
|
|
1190
|
+
version = "0.14.5"
|
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "heck"
|
|
1196
|
+
version = "0.3.3"
|
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
+
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
|
|
1199
|
+
dependencies = [
|
|
1200
|
+
"unicode-segmentation",
|
|
1201
|
+
]
|
|
1202
|
+
|
|
1203
|
+
[[package]]
|
|
1204
|
+
name = "heck"
|
|
1205
|
+
version = "0.4.1"
|
|
1206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "heck"
|
|
1211
|
+
version = "0.5.0"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "hermit-abi"
|
|
1217
|
+
version = "0.3.9"
|
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "hex"
|
|
1223
|
+
version = "0.4.3"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "http"
|
|
1229
|
+
version = "0.2.12"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
1232
|
+
dependencies = [
|
|
1233
|
+
"bytes",
|
|
1234
|
+
"fnv",
|
|
1235
|
+
"itoa",
|
|
1236
|
+
]
|
|
1237
|
+
|
|
1238
|
+
[[package]]
|
|
1239
|
+
name = "http"
|
|
1240
|
+
version = "1.1.0"
|
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1242
|
+
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
|
|
1243
|
+
dependencies = [
|
|
1244
|
+
"bytes",
|
|
1245
|
+
"fnv",
|
|
1246
|
+
"itoa",
|
|
1247
|
+
]
|
|
1248
|
+
|
|
1249
|
+
[[package]]
|
|
1250
|
+
name = "http-body"
|
|
1251
|
+
version = "1.0.0"
|
|
1252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1253
|
+
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
|
|
1254
|
+
dependencies = [
|
|
1255
|
+
"bytes",
|
|
1256
|
+
"http 1.1.0",
|
|
1257
|
+
]
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "http-body-util"
|
|
1261
|
+
version = "0.1.2"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
|
|
1264
|
+
dependencies = [
|
|
1265
|
+
"bytes",
|
|
1266
|
+
"futures-util",
|
|
1267
|
+
"http 1.1.0",
|
|
1268
|
+
"http-body",
|
|
1269
|
+
"pin-project-lite",
|
|
1270
|
+
]
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "http-range-header"
|
|
1274
|
+
version = "0.4.1"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "08a397c49fec283e3d6211adbe480be95aae5f304cfb923e9970e08956d5168a"
|
|
1277
|
+
|
|
1278
|
+
[[package]]
|
|
1279
|
+
name = "httparse"
|
|
1280
|
+
version = "1.9.4"
|
|
1281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1282
|
+
checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
|
|
1283
|
+
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "httpdate"
|
|
1286
|
+
version = "1.0.3"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "hyper"
|
|
1292
|
+
version = "1.3.1"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"bytes",
|
|
1297
|
+
"futures-channel",
|
|
1298
|
+
"futures-util",
|
|
1299
|
+
"h2",
|
|
1300
|
+
"http 1.1.0",
|
|
1301
|
+
"http-body",
|
|
1302
|
+
"httparse",
|
|
1303
|
+
"httpdate",
|
|
1304
|
+
"itoa",
|
|
1305
|
+
"pin-project-lite",
|
|
1306
|
+
"smallvec",
|
|
1307
|
+
"tokio",
|
|
1308
|
+
]
|
|
1309
|
+
|
|
1310
|
+
[[package]]
|
|
1311
|
+
name = "hyper-util"
|
|
1312
|
+
version = "0.1.5"
|
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
+
checksum = "7b875924a60b96e5d7b9ae7b066540b1dd1cbd90d1828f54c92e02a283351c56"
|
|
1315
|
+
dependencies = [
|
|
1316
|
+
"bytes",
|
|
1317
|
+
"futures-util",
|
|
1318
|
+
"http 1.1.0",
|
|
1319
|
+
"http-body",
|
|
1320
|
+
"hyper",
|
|
1321
|
+
"pin-project-lite",
|
|
1322
|
+
"tokio",
|
|
1323
|
+
]
|
|
1324
|
+
|
|
1325
|
+
[[package]]
|
|
1326
|
+
name = "iana-time-zone"
|
|
1327
|
+
version = "0.1.60"
|
|
1328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
+
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
|
|
1330
|
+
dependencies = [
|
|
1331
|
+
"android_system_properties",
|
|
1332
|
+
"core-foundation-sys",
|
|
1333
|
+
"iana-time-zone-haiku",
|
|
1334
|
+
"js-sys",
|
|
1335
|
+
"wasm-bindgen",
|
|
1336
|
+
"windows-core",
|
|
1337
|
+
]
|
|
1338
|
+
|
|
1339
|
+
[[package]]
|
|
1340
|
+
name = "iana-time-zone-haiku"
|
|
1341
|
+
version = "0.1.2"
|
|
1342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1344
|
+
dependencies = [
|
|
1345
|
+
"cc",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "id-arena"
|
|
1350
|
+
version = "2.2.1"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005"
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "ident_case"
|
|
1356
|
+
version = "1.0.1"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "idna"
|
|
1362
|
+
version = "0.5.0"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
|
1365
|
+
dependencies = [
|
|
1366
|
+
"unicode-bidi",
|
|
1367
|
+
"unicode-normalization",
|
|
1368
|
+
]
|
|
1369
|
+
|
|
1370
|
+
[[package]]
|
|
1371
|
+
name = "implicit-clone"
|
|
1372
|
+
version = "0.4.9"
|
|
1373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
+
checksum = "f8a9aa791c7b5a71b636b7a68207fdebf171ddfc593d9c8506ec4cbc527b6a84"
|
|
1375
|
+
dependencies = [
|
|
1376
|
+
"implicit-clone-derive",
|
|
1377
|
+
"indexmap 2.2.6",
|
|
1378
|
+
]
|
|
1379
|
+
|
|
1380
|
+
[[package]]
|
|
1381
|
+
name = "implicit-clone-derive"
|
|
1382
|
+
version = "0.1.1"
|
|
1383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
+
checksum = "9311685eb9a34808bbb0608ad2fcab9ae216266beca5848613e95553ac914e3b"
|
|
1385
|
+
dependencies = [
|
|
1386
|
+
"quote 1.0.36",
|
|
1387
|
+
"syn 2.0.66",
|
|
1388
|
+
]
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "indexmap"
|
|
1392
|
+
version = "1.9.3"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1395
|
+
dependencies = [
|
|
1396
|
+
"autocfg",
|
|
1397
|
+
"hashbrown 0.12.3",
|
|
1398
|
+
"serde",
|
|
1399
|
+
]
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "indexmap"
|
|
1403
|
+
version = "2.2.6"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
|
1406
|
+
dependencies = [
|
|
1407
|
+
"equivalent",
|
|
1408
|
+
"hashbrown 0.14.5",
|
|
1409
|
+
"serde",
|
|
1410
|
+
]
|
|
1411
|
+
|
|
1412
|
+
[[package]]
|
|
1413
|
+
name = "indoc"
|
|
1414
|
+
version = "2.0.5"
|
|
1415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1416
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
1417
|
+
|
|
1418
|
+
[[package]]
|
|
1419
|
+
name = "is_terminal_polyfill"
|
|
1420
|
+
version = "1.70.0"
|
|
1421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
+
checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
|
|
1423
|
+
|
|
1424
|
+
[[package]]
|
|
1425
|
+
name = "itertools"
|
|
1426
|
+
version = "0.10.5"
|
|
1427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1428
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1429
|
+
dependencies = [
|
|
1430
|
+
"either",
|
|
1431
|
+
]
|
|
1432
|
+
|
|
1433
|
+
[[package]]
|
|
1434
|
+
name = "itertools"
|
|
1435
|
+
version = "0.12.1"
|
|
1436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1437
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
1438
|
+
dependencies = [
|
|
1439
|
+
"either",
|
|
1440
|
+
]
|
|
1441
|
+
|
|
1442
|
+
[[package]]
|
|
1443
|
+
name = "itoa"
|
|
1444
|
+
version = "1.0.11"
|
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
1447
|
+
|
|
1448
|
+
[[package]]
|
|
1449
|
+
name = "jobserver"
|
|
1450
|
+
version = "0.1.31"
|
|
1451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
+
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
|
|
1453
|
+
dependencies = [
|
|
1454
|
+
"libc",
|
|
1455
|
+
]
|
|
1456
|
+
|
|
1457
|
+
[[package]]
|
|
1458
|
+
name = "js-intern"
|
|
1459
|
+
version = "0.3.1"
|
|
1460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1461
|
+
checksum = "5c990eb036ec10245857e507891035d416a5643faea23abbd81abae1b8d0fd84"
|
|
1462
|
+
dependencies = [
|
|
1463
|
+
"js-intern-core",
|
|
1464
|
+
"js-intern-proc-macro",
|
|
1465
|
+
"wasm-bindgen",
|
|
1466
|
+
]
|
|
1467
|
+
|
|
1468
|
+
[[package]]
|
|
1469
|
+
name = "js-intern-core"
|
|
1470
|
+
version = "0.3.1"
|
|
1471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
+
checksum = "ef256c1dbfac46ee4d02e57fd8184a601c6d5c3a96ac33be220af8fecfb335ef"
|
|
1473
|
+
dependencies = [
|
|
1474
|
+
"wasm-bindgen",
|
|
1475
|
+
]
|
|
1476
|
+
|
|
1477
|
+
[[package]]
|
|
1478
|
+
name = "js-intern-proc-macro"
|
|
1479
|
+
version = "0.3.1"
|
|
1480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
+
checksum = "8ebce85d841c91828ae4400cc10fdd30020f3667f9e10e592c102d0c5fed13a3"
|
|
1482
|
+
dependencies = [
|
|
1483
|
+
"js-intern-core",
|
|
1484
|
+
"proc-macro2 0.4.30",
|
|
1485
|
+
"quote 0.6.13",
|
|
1486
|
+
"syn 0.15.44",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "js-sys"
|
|
1491
|
+
version = "0.3.69"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"wasm-bindgen",
|
|
1496
|
+
]
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "lazy_static"
|
|
1500
|
+
version = "1.4.0"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
1503
|
+
|
|
1504
|
+
[[package]]
|
|
1505
|
+
name = "leb128"
|
|
1506
|
+
version = "0.2.5"
|
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
+
checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
1509
|
+
|
|
1510
|
+
[[package]]
|
|
1511
|
+
name = "libc"
|
|
1512
|
+
version = "0.2.155"
|
|
1513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
|
1515
|
+
|
|
1516
|
+
[[package]]
|
|
1517
|
+
name = "libredox"
|
|
1518
|
+
version = "0.1.3"
|
|
1519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
+
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1521
|
+
dependencies = [
|
|
1522
|
+
"bitflags",
|
|
1523
|
+
"libc",
|
|
1524
|
+
]
|
|
1525
|
+
|
|
1526
|
+
[[package]]
|
|
1527
|
+
name = "link-cplusplus"
|
|
1528
|
+
version = "1.0.9"
|
|
1529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1530
|
+
checksum = "9d240c6f7e1ba3a28b0249f774e6a9dd0175054b52dfbb61b16eb8505c3785c9"
|
|
1531
|
+
dependencies = [
|
|
1532
|
+
"cc",
|
|
1533
|
+
]
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "linux-raw-sys"
|
|
1537
|
+
version = "0.4.14"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
1540
|
+
|
|
1541
|
+
[[package]]
|
|
1542
|
+
name = "lock_api"
|
|
1543
|
+
version = "0.4.12"
|
|
1544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
1546
|
+
dependencies = [
|
|
1547
|
+
"autocfg",
|
|
1548
|
+
"scopeguard",
|
|
1549
|
+
]
|
|
1550
|
+
|
|
1551
|
+
[[package]]
|
|
1552
|
+
name = "log"
|
|
1553
|
+
version = "0.4.21"
|
|
1554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1555
|
+
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
|
1556
|
+
|
|
1557
|
+
[[package]]
|
|
1558
|
+
name = "matchers"
|
|
1559
|
+
version = "0.1.0"
|
|
1560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
+
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
|
1562
|
+
dependencies = [
|
|
1563
|
+
"regex-automata 0.1.10",
|
|
1564
|
+
]
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "matchit"
|
|
1568
|
+
version = "0.7.3"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
|
|
1571
|
+
|
|
1572
|
+
[[package]]
|
|
1573
|
+
name = "memchr"
|
|
1574
|
+
version = "2.7.2"
|
|
1575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1576
|
+
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
|
|
1577
|
+
|
|
1578
|
+
[[package]]
|
|
1579
|
+
name = "memoffset"
|
|
1580
|
+
version = "0.9.1"
|
|
1581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1582
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1583
|
+
dependencies = [
|
|
1584
|
+
"autocfg",
|
|
1585
|
+
]
|
|
1586
|
+
|
|
1587
|
+
[[package]]
|
|
1588
|
+
name = "mime"
|
|
1589
|
+
version = "0.3.17"
|
|
1590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1591
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1592
|
+
|
|
1593
|
+
[[package]]
|
|
1594
|
+
name = "mime_guess"
|
|
1595
|
+
version = "2.0.5"
|
|
1596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
1598
|
+
dependencies = [
|
|
1599
|
+
"mime",
|
|
1600
|
+
"unicase",
|
|
1601
|
+
]
|
|
1602
|
+
|
|
1603
|
+
[[package]]
|
|
1604
|
+
name = "minimal-lexical"
|
|
1605
|
+
version = "0.2.1"
|
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1608
|
+
|
|
1609
|
+
[[package]]
|
|
1610
|
+
name = "miniz_oxide"
|
|
1611
|
+
version = "0.7.3"
|
|
1612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1613
|
+
checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae"
|
|
1614
|
+
dependencies = [
|
|
1615
|
+
"adler",
|
|
1616
|
+
]
|
|
1617
|
+
|
|
1618
|
+
[[package]]
|
|
1619
|
+
name = "mio"
|
|
1620
|
+
version = "0.8.11"
|
|
1621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
+
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
1623
|
+
dependencies = [
|
|
1624
|
+
"libc",
|
|
1625
|
+
"wasi",
|
|
1626
|
+
"windows-sys 0.48.0",
|
|
1627
|
+
]
|
|
1628
|
+
|
|
1629
|
+
[[package]]
|
|
1630
|
+
name = "mockall"
|
|
1631
|
+
version = "0.11.4"
|
|
1632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1633
|
+
checksum = "4c84490118f2ee2d74570d114f3d0493cbf02790df303d2707606c3e14e07c96"
|
|
1634
|
+
dependencies = [
|
|
1635
|
+
"cfg-if",
|
|
1636
|
+
"downcast",
|
|
1637
|
+
"fragile",
|
|
1638
|
+
"lazy_static",
|
|
1639
|
+
"mockall_derive",
|
|
1640
|
+
"predicates",
|
|
1641
|
+
"predicates-tree",
|
|
1642
|
+
]
|
|
1643
|
+
|
|
1644
|
+
[[package]]
|
|
1645
|
+
name = "mockall_derive"
|
|
1646
|
+
version = "0.11.4"
|
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
+
checksum = "22ce75669015c4f47b289fd4d4f56e894e4c96003ffdf3ac51313126f94c6cbb"
|
|
1649
|
+
dependencies = [
|
|
1650
|
+
"cfg-if",
|
|
1651
|
+
"proc-macro2 1.0.83",
|
|
1652
|
+
"quote 1.0.36",
|
|
1653
|
+
"syn 1.0.109",
|
|
1654
|
+
]
|
|
1655
|
+
|
|
1656
|
+
[[package]]
|
|
1657
|
+
name = "multimap"
|
|
1658
|
+
version = "0.10.0"
|
|
1659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
+
checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
|
|
1661
|
+
|
|
1662
|
+
[[package]]
|
|
1663
|
+
name = "nanoid"
|
|
1664
|
+
version = "0.4.0"
|
|
1665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
+
checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8"
|
|
1667
|
+
dependencies = [
|
|
1668
|
+
"rand",
|
|
1669
|
+
]
|
|
1670
|
+
|
|
1671
|
+
[[package]]
|
|
1672
|
+
name = "nom"
|
|
1673
|
+
version = "7.1.3"
|
|
1674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1675
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1676
|
+
dependencies = [
|
|
1677
|
+
"memchr",
|
|
1678
|
+
"minimal-lexical",
|
|
1679
|
+
]
|
|
1680
|
+
|
|
1681
|
+
[[package]]
|
|
1682
|
+
name = "normalize-line-endings"
|
|
1683
|
+
version = "0.3.0"
|
|
1684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1685
|
+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
1686
|
+
|
|
1687
|
+
[[package]]
|
|
1688
|
+
name = "nu-ansi-term"
|
|
1689
|
+
version = "0.46.0"
|
|
1690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
+
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
|
|
1692
|
+
dependencies = [
|
|
1693
|
+
"overload",
|
|
1694
|
+
"winapi",
|
|
1695
|
+
]
|
|
1696
|
+
|
|
1697
|
+
[[package]]
|
|
1698
|
+
name = "num-conv"
|
|
1699
|
+
version = "0.1.0"
|
|
1700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1701
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "num-traits"
|
|
1705
|
+
version = "0.2.19"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1708
|
+
dependencies = [
|
|
1709
|
+
"autocfg",
|
|
1710
|
+
]
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "num_cpus"
|
|
1714
|
+
version = "1.16.0"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
1717
|
+
dependencies = [
|
|
1718
|
+
"hermit-abi",
|
|
1719
|
+
"libc",
|
|
1720
|
+
]
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "object"
|
|
1724
|
+
version = "0.32.2"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
|
1727
|
+
dependencies = [
|
|
1728
|
+
"memchr",
|
|
1729
|
+
]
|
|
1730
|
+
|
|
1731
|
+
[[package]]
|
|
1732
|
+
name = "once_cell"
|
|
1733
|
+
version = "1.19.0"
|
|
1734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1735
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
1736
|
+
|
|
1737
|
+
[[package]]
|
|
1738
|
+
name = "option-ext"
|
|
1739
|
+
version = "0.2.0"
|
|
1740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1742
|
+
|
|
1743
|
+
[[package]]
|
|
1744
|
+
name = "overload"
|
|
1745
|
+
version = "0.1.1"
|
|
1746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1747
|
+
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
1748
|
+
|
|
1749
|
+
[[package]]
|
|
1750
|
+
name = "parking_lot"
|
|
1751
|
+
version = "0.12.3"
|
|
1752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1753
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
1754
|
+
dependencies = [
|
|
1755
|
+
"lock_api",
|
|
1756
|
+
"parking_lot_core",
|
|
1757
|
+
]
|
|
1758
|
+
|
|
1759
|
+
[[package]]
|
|
1760
|
+
name = "parking_lot_core"
|
|
1761
|
+
version = "0.9.10"
|
|
1762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1763
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
1764
|
+
dependencies = [
|
|
1765
|
+
"cfg-if",
|
|
1766
|
+
"libc",
|
|
1767
|
+
"redox_syscall",
|
|
1768
|
+
"smallvec",
|
|
1769
|
+
"windows-targets 0.52.5",
|
|
1770
|
+
]
|
|
1771
|
+
|
|
1772
|
+
[[package]]
|
|
1773
|
+
name = "paste"
|
|
1774
|
+
version = "1.0.15"
|
|
1775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1776
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1777
|
+
|
|
1778
|
+
[[package]]
|
|
1779
|
+
name = "percent-encoding"
|
|
1780
|
+
version = "2.3.1"
|
|
1781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
1783
|
+
|
|
1784
|
+
[[package]]
|
|
1785
|
+
name = "perspective"
|
|
1786
|
+
version = "3.0.0-rc.2"
|
|
1787
|
+
dependencies = [
|
|
1788
|
+
"async-lock",
|
|
1789
|
+
"perspective-client",
|
|
1790
|
+
"perspective-server",
|
|
1791
|
+
"tokio",
|
|
1792
|
+
"tracing",
|
|
1793
|
+
]
|
|
1794
|
+
|
|
1795
|
+
[[package]]
|
|
1796
|
+
name = "perspective-bootstrap"
|
|
1797
|
+
version = "0.0.0"
|
|
1798
|
+
dependencies = [
|
|
1799
|
+
"clap",
|
|
1800
|
+
"flate2",
|
|
1801
|
+
"wasm-opt",
|
|
1802
|
+
]
|
|
1803
|
+
|
|
1804
|
+
[[package]]
|
|
1805
|
+
name = "perspective-bootstrap-runtime"
|
|
1806
|
+
version = "0.0.0"
|
|
1807
|
+
dependencies = [
|
|
1808
|
+
"simd-adler32",
|
|
1809
|
+
"talc",
|
|
1810
|
+
"zune-inflate",
|
|
1811
|
+
]
|
|
1812
|
+
|
|
1813
|
+
[[package]]
|
|
1814
|
+
name = "perspective-bundle"
|
|
1815
|
+
version = "0.0.0"
|
|
1816
|
+
dependencies = [
|
|
1817
|
+
"clap",
|
|
1818
|
+
"wasm-bindgen-cli-support",
|
|
1819
|
+
"wasm-opt",
|
|
1820
|
+
]
|
|
1821
|
+
|
|
1822
|
+
[[package]]
|
|
1823
|
+
name = "perspective-client"
|
|
1824
|
+
version = "3.0.0-rc.2"
|
|
1825
|
+
dependencies = [
|
|
1826
|
+
"async-lock",
|
|
1827
|
+
"futures",
|
|
1828
|
+
"itertools 0.10.5",
|
|
1829
|
+
"nanoid",
|
|
1830
|
+
"paste",
|
|
1831
|
+
"prost",
|
|
1832
|
+
"prost-build",
|
|
1833
|
+
"prost-types",
|
|
1834
|
+
"protobuf-src",
|
|
1835
|
+
"serde",
|
|
1836
|
+
"serde_bytes",
|
|
1837
|
+
"serde_json",
|
|
1838
|
+
"thiserror",
|
|
1839
|
+
"tracing",
|
|
1840
|
+
"tracing-unwrap",
|
|
1841
|
+
"ts-rs",
|
|
1842
|
+
]
|
|
1843
|
+
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "perspective-js"
|
|
1846
|
+
version = "3.0.0-rc.2"
|
|
1847
|
+
dependencies = [
|
|
1848
|
+
"anyhow",
|
|
1849
|
+
"base64 0.13.1",
|
|
1850
|
+
"chrono",
|
|
1851
|
+
"console_error_panic_hook",
|
|
1852
|
+
"extend",
|
|
1853
|
+
"futures",
|
|
1854
|
+
"getrandom",
|
|
1855
|
+
"js-intern",
|
|
1856
|
+
"js-sys",
|
|
1857
|
+
"perspective-client",
|
|
1858
|
+
"prost",
|
|
1859
|
+
"rmp-serde",
|
|
1860
|
+
"serde",
|
|
1861
|
+
"serde-wasm-bindgen 0.6.5",
|
|
1862
|
+
"serde_bytes",
|
|
1863
|
+
"serde_json",
|
|
1864
|
+
"tracing",
|
|
1865
|
+
"tracing-subscriber",
|
|
1866
|
+
"ts-rs",
|
|
1867
|
+
"wasm-bindgen",
|
|
1868
|
+
"wasm-bindgen-futures",
|
|
1869
|
+
"wasm-bindgen-test",
|
|
1870
|
+
"web-sys",
|
|
1871
|
+
]
|
|
1872
|
+
|
|
1873
|
+
[[package]]
|
|
1874
|
+
name = "perspective-lint"
|
|
1875
|
+
version = "3.0.0-rc.2"
|
|
1876
|
+
dependencies = [
|
|
1877
|
+
"glob",
|
|
1878
|
+
"yew-fmt",
|
|
1879
|
+
]
|
|
1880
|
+
|
|
1881
|
+
[[package]]
|
|
1882
|
+
name = "perspective-python"
|
|
1883
|
+
version = "3.0.0-rc.2"
|
|
1884
|
+
dependencies = [
|
|
1885
|
+
"async-lock",
|
|
1886
|
+
"extend",
|
|
1887
|
+
"futures",
|
|
1888
|
+
"perspective-client",
|
|
1889
|
+
"perspective-server",
|
|
1890
|
+
"pollster",
|
|
1891
|
+
"pyo3",
|
|
1892
|
+
"pyo3-build-config 0.20.3",
|
|
1893
|
+
"python-config-rs",
|
|
1894
|
+
"pythonize",
|
|
1895
|
+
"tracing",
|
|
1896
|
+
"tracing-subscriber",
|
|
1897
|
+
]
|
|
1898
|
+
|
|
1899
|
+
[[package]]
|
|
1900
|
+
name = "perspective-server"
|
|
1901
|
+
version = "3.0.0-rc.2"
|
|
1902
|
+
dependencies = [
|
|
1903
|
+
"async-lock",
|
|
1904
|
+
"cmake",
|
|
1905
|
+
"cxx",
|
|
1906
|
+
"cxx-build",
|
|
1907
|
+
"futures",
|
|
1908
|
+
"num_cpus",
|
|
1909
|
+
"perspective-client",
|
|
1910
|
+
"tracing",
|
|
1911
|
+
]
|
|
1912
|
+
|
|
1913
|
+
[[package]]
|
|
1914
|
+
name = "perspective-viewer"
|
|
1915
|
+
version = "3.0.0-rc.2"
|
|
1916
|
+
dependencies = [
|
|
1917
|
+
"anyhow",
|
|
1918
|
+
"async-lock",
|
|
1919
|
+
"base64 0.13.1",
|
|
1920
|
+
"chrono",
|
|
1921
|
+
"derivative",
|
|
1922
|
+
"extend",
|
|
1923
|
+
"flate2",
|
|
1924
|
+
"futures",
|
|
1925
|
+
"glob",
|
|
1926
|
+
"itertools 0.10.5",
|
|
1927
|
+
"js-intern",
|
|
1928
|
+
"js-sys",
|
|
1929
|
+
"nom",
|
|
1930
|
+
"perspective-client",
|
|
1931
|
+
"perspective-js",
|
|
1932
|
+
"procss",
|
|
1933
|
+
"rmp-serde",
|
|
1934
|
+
"serde",
|
|
1935
|
+
"serde-wasm-bindgen 0.6.5",
|
|
1936
|
+
"serde_bytes",
|
|
1937
|
+
"serde_json",
|
|
1938
|
+
"serde_with",
|
|
1939
|
+
"strum 0.26.2",
|
|
1940
|
+
"tracing",
|
|
1941
|
+
"tracing-subscriber",
|
|
1942
|
+
"ts-rs",
|
|
1943
|
+
"wasm-bindgen",
|
|
1944
|
+
"wasm-bindgen-futures",
|
|
1945
|
+
"wasm-bindgen-test",
|
|
1946
|
+
"web-sys",
|
|
1947
|
+
"yew",
|
|
1948
|
+
]
|
|
1949
|
+
|
|
1950
|
+
[[package]]
|
|
1951
|
+
name = "petgraph"
|
|
1952
|
+
version = "0.6.5"
|
|
1953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1954
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
1955
|
+
dependencies = [
|
|
1956
|
+
"fixedbitset",
|
|
1957
|
+
"indexmap 2.2.6",
|
|
1958
|
+
]
|
|
1959
|
+
|
|
1960
|
+
[[package]]
|
|
1961
|
+
name = "pin-project"
|
|
1962
|
+
version = "1.1.5"
|
|
1963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
+
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
|
|
1965
|
+
dependencies = [
|
|
1966
|
+
"pin-project-internal",
|
|
1967
|
+
]
|
|
1968
|
+
|
|
1969
|
+
[[package]]
|
|
1970
|
+
name = "pin-project-internal"
|
|
1971
|
+
version = "1.1.5"
|
|
1972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1973
|
+
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
|
|
1974
|
+
dependencies = [
|
|
1975
|
+
"proc-macro2 1.0.83",
|
|
1976
|
+
"quote 1.0.36",
|
|
1977
|
+
"syn 2.0.66",
|
|
1978
|
+
]
|
|
1979
|
+
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "pin-project-lite"
|
|
1982
|
+
version = "0.2.14"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
|
1985
|
+
|
|
1986
|
+
[[package]]
|
|
1987
|
+
name = "pin-utils"
|
|
1988
|
+
version = "0.1.0"
|
|
1989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1990
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1991
|
+
|
|
1992
|
+
[[package]]
|
|
1993
|
+
name = "pinned"
|
|
1994
|
+
version = "0.1.0"
|
|
1995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1996
|
+
checksum = "a829027bd95e54cfe13e3e258a1ae7b645960553fb82b75ff852c29688ee595b"
|
|
1997
|
+
dependencies = [
|
|
1998
|
+
"futures",
|
|
1999
|
+
"rustversion",
|
|
2000
|
+
"thiserror",
|
|
2001
|
+
]
|
|
2002
|
+
|
|
2003
|
+
[[package]]
|
|
2004
|
+
name = "pollster"
|
|
2005
|
+
version = "0.3.0"
|
|
2006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2007
|
+
checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2"
|
|
2008
|
+
|
|
2009
|
+
[[package]]
|
|
2010
|
+
name = "portable-atomic"
|
|
2011
|
+
version = "1.6.0"
|
|
2012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2013
|
+
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
|
|
2014
|
+
|
|
2015
|
+
[[package]]
|
|
2016
|
+
name = "powerfmt"
|
|
2017
|
+
version = "0.2.0"
|
|
2018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
2020
|
+
|
|
2021
|
+
[[package]]
|
|
2022
|
+
name = "ppv-lite86"
|
|
2023
|
+
version = "0.2.17"
|
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
2026
|
+
|
|
2027
|
+
[[package]]
|
|
2028
|
+
name = "predicates"
|
|
2029
|
+
version = "2.1.5"
|
|
2030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2031
|
+
checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd"
|
|
2032
|
+
dependencies = [
|
|
2033
|
+
"difflib",
|
|
2034
|
+
"float-cmp",
|
|
2035
|
+
"itertools 0.10.5",
|
|
2036
|
+
"normalize-line-endings",
|
|
2037
|
+
"predicates-core",
|
|
2038
|
+
"regex",
|
|
2039
|
+
]
|
|
2040
|
+
|
|
2041
|
+
[[package]]
|
|
2042
|
+
name = "predicates-core"
|
|
2043
|
+
version = "1.0.6"
|
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
+
checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174"
|
|
2046
|
+
|
|
2047
|
+
[[package]]
|
|
2048
|
+
name = "predicates-tree"
|
|
2049
|
+
version = "1.0.9"
|
|
2050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
+
checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf"
|
|
2052
|
+
dependencies = [
|
|
2053
|
+
"predicates-core",
|
|
2054
|
+
"termtree",
|
|
2055
|
+
]
|
|
2056
|
+
|
|
2057
|
+
[[package]]
|
|
2058
|
+
name = "prettyplease"
|
|
2059
|
+
version = "0.2.20"
|
|
2060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
+
checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e"
|
|
2062
|
+
dependencies = [
|
|
2063
|
+
"proc-macro2 1.0.83",
|
|
2064
|
+
"syn 2.0.66",
|
|
2065
|
+
]
|
|
2066
|
+
|
|
2067
|
+
[[package]]
|
|
2068
|
+
name = "proc-macro-crate"
|
|
2069
|
+
version = "1.3.1"
|
|
2070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2071
|
+
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
|
|
2072
|
+
dependencies = [
|
|
2073
|
+
"once_cell",
|
|
2074
|
+
"toml_edit",
|
|
2075
|
+
]
|
|
2076
|
+
|
|
2077
|
+
[[package]]
|
|
2078
|
+
name = "proc-macro-error"
|
|
2079
|
+
version = "1.0.4"
|
|
2080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2081
|
+
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
|
2082
|
+
dependencies = [
|
|
2083
|
+
"proc-macro-error-attr",
|
|
2084
|
+
"proc-macro2 1.0.83",
|
|
2085
|
+
"quote 1.0.36",
|
|
2086
|
+
"syn 1.0.109",
|
|
2087
|
+
"version_check",
|
|
2088
|
+
]
|
|
2089
|
+
|
|
2090
|
+
[[package]]
|
|
2091
|
+
name = "proc-macro-error-attr"
|
|
2092
|
+
version = "1.0.4"
|
|
2093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2094
|
+
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
|
2095
|
+
dependencies = [
|
|
2096
|
+
"proc-macro2 1.0.83",
|
|
2097
|
+
"quote 1.0.36",
|
|
2098
|
+
"version_check",
|
|
2099
|
+
]
|
|
2100
|
+
|
|
2101
|
+
[[package]]
|
|
2102
|
+
name = "proc-macro2"
|
|
2103
|
+
version = "0.4.30"
|
|
2104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
+
checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
|
|
2106
|
+
dependencies = [
|
|
2107
|
+
"unicode-xid",
|
|
2108
|
+
]
|
|
2109
|
+
|
|
2110
|
+
[[package]]
|
|
2111
|
+
name = "proc-macro2"
|
|
2112
|
+
version = "1.0.83"
|
|
2113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2114
|
+
checksum = "0b33eb56c327dec362a9e55b3ad14f9d2f0904fb5a5b03b513ab5465399e9f43"
|
|
2115
|
+
dependencies = [
|
|
2116
|
+
"unicode-ident",
|
|
2117
|
+
]
|
|
2118
|
+
|
|
2119
|
+
[[package]]
|
|
2120
|
+
name = "procss"
|
|
2121
|
+
version = "0.1.16"
|
|
2122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2123
|
+
checksum = "24fd6979bf7b925902a304e2aecdb8689c9daab4b7b79ab96002da5bbcdfb46c"
|
|
2124
|
+
dependencies = [
|
|
2125
|
+
"anyhow",
|
|
2126
|
+
"base64 0.13.1",
|
|
2127
|
+
"console_error_panic_hook",
|
|
2128
|
+
"js-sys",
|
|
2129
|
+
"mockall",
|
|
2130
|
+
"nom",
|
|
2131
|
+
"serde-wasm-bindgen 0.4.5",
|
|
2132
|
+
"wasm-bindgen",
|
|
2133
|
+
"web-sys",
|
|
2134
|
+
]
|
|
2135
|
+
|
|
2136
|
+
[[package]]
|
|
2137
|
+
name = "prokio"
|
|
2138
|
+
version = "0.1.0"
|
|
2139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2140
|
+
checksum = "03b55e106e5791fa5a13abd13c85d6127312e8e09098059ca2bc9b03ca4cf488"
|
|
2141
|
+
dependencies = [
|
|
2142
|
+
"futures",
|
|
2143
|
+
"gloo 0.8.1",
|
|
2144
|
+
"num_cpus",
|
|
2145
|
+
"once_cell",
|
|
2146
|
+
"pin-project",
|
|
2147
|
+
"pinned",
|
|
2148
|
+
"tokio",
|
|
2149
|
+
"tokio-stream",
|
|
2150
|
+
"wasm-bindgen-futures",
|
|
2151
|
+
]
|
|
2152
|
+
|
|
2153
|
+
[[package]]
|
|
2154
|
+
name = "prost"
|
|
2155
|
+
version = "0.12.6"
|
|
2156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2157
|
+
checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29"
|
|
2158
|
+
dependencies = [
|
|
2159
|
+
"bytes",
|
|
2160
|
+
"prost-derive",
|
|
2161
|
+
]
|
|
2162
|
+
|
|
2163
|
+
[[package]]
|
|
2164
|
+
name = "prost-build"
|
|
2165
|
+
version = "0.12.6"
|
|
2166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2167
|
+
checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4"
|
|
2168
|
+
dependencies = [
|
|
2169
|
+
"bytes",
|
|
2170
|
+
"heck 0.5.0",
|
|
2171
|
+
"itertools 0.12.1",
|
|
2172
|
+
"log",
|
|
2173
|
+
"multimap",
|
|
2174
|
+
"once_cell",
|
|
2175
|
+
"petgraph",
|
|
2176
|
+
"prettyplease",
|
|
2177
|
+
"prost",
|
|
2178
|
+
"prost-types",
|
|
2179
|
+
"regex",
|
|
2180
|
+
"syn 2.0.66",
|
|
2181
|
+
"tempfile",
|
|
2182
|
+
]
|
|
2183
|
+
|
|
2184
|
+
[[package]]
|
|
2185
|
+
name = "prost-derive"
|
|
2186
|
+
version = "0.12.6"
|
|
2187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2188
|
+
checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1"
|
|
2189
|
+
dependencies = [
|
|
2190
|
+
"anyhow",
|
|
2191
|
+
"itertools 0.12.1",
|
|
2192
|
+
"proc-macro2 1.0.83",
|
|
2193
|
+
"quote 1.0.36",
|
|
2194
|
+
"syn 2.0.66",
|
|
2195
|
+
]
|
|
2196
|
+
|
|
2197
|
+
[[package]]
|
|
2198
|
+
name = "prost-types"
|
|
2199
|
+
version = "0.12.6"
|
|
2200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2201
|
+
checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0"
|
|
2202
|
+
dependencies = [
|
|
2203
|
+
"prost",
|
|
2204
|
+
]
|
|
2205
|
+
|
|
2206
|
+
[[package]]
|
|
2207
|
+
name = "protobuf-src"
|
|
2208
|
+
version = "2.0.1+26.1"
|
|
2209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2210
|
+
checksum = "f8ba1cfa4b9dc098926b8cce388bf434b93516db3ecf6e8b1a37eb643d733ee7"
|
|
2211
|
+
dependencies = [
|
|
2212
|
+
"cmake",
|
|
2213
|
+
]
|
|
2214
|
+
|
|
2215
|
+
[[package]]
|
|
2216
|
+
name = "pyo3"
|
|
2217
|
+
version = "0.21.2"
|
|
2218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2219
|
+
checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
|
|
2220
|
+
dependencies = [
|
|
2221
|
+
"cfg-if",
|
|
2222
|
+
"indoc",
|
|
2223
|
+
"libc",
|
|
2224
|
+
"memoffset",
|
|
2225
|
+
"parking_lot",
|
|
2226
|
+
"portable-atomic",
|
|
2227
|
+
"pyo3-build-config 0.21.2",
|
|
2228
|
+
"pyo3-ffi",
|
|
2229
|
+
"pyo3-macros",
|
|
2230
|
+
"serde",
|
|
2231
|
+
"unindent",
|
|
2232
|
+
]
|
|
2233
|
+
|
|
2234
|
+
[[package]]
|
|
2235
|
+
name = "pyo3-build-config"
|
|
2236
|
+
version = "0.20.3"
|
|
2237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2238
|
+
checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
|
|
2239
|
+
dependencies = [
|
|
2240
|
+
"once_cell",
|
|
2241
|
+
"target-lexicon",
|
|
2242
|
+
]
|
|
2243
|
+
|
|
2244
|
+
[[package]]
|
|
2245
|
+
name = "pyo3-build-config"
|
|
2246
|
+
version = "0.21.2"
|
|
2247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
+
checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
|
|
2249
|
+
dependencies = [
|
|
2250
|
+
"once_cell",
|
|
2251
|
+
"target-lexicon",
|
|
2252
|
+
]
|
|
2253
|
+
|
|
2254
|
+
[[package]]
|
|
2255
|
+
name = "pyo3-ffi"
|
|
2256
|
+
version = "0.21.2"
|
|
2257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2258
|
+
checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
|
|
2259
|
+
dependencies = [
|
|
2260
|
+
"libc",
|
|
2261
|
+
"pyo3-build-config 0.21.2",
|
|
2262
|
+
]
|
|
2263
|
+
|
|
2264
|
+
[[package]]
|
|
2265
|
+
name = "pyo3-macros"
|
|
2266
|
+
version = "0.21.2"
|
|
2267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2268
|
+
checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
|
|
2269
|
+
dependencies = [
|
|
2270
|
+
"proc-macro2 1.0.83",
|
|
2271
|
+
"pyo3-macros-backend",
|
|
2272
|
+
"quote 1.0.36",
|
|
2273
|
+
"syn 2.0.66",
|
|
2274
|
+
]
|
|
2275
|
+
|
|
2276
|
+
[[package]]
|
|
2277
|
+
name = "pyo3-macros-backend"
|
|
2278
|
+
version = "0.21.2"
|
|
2279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2280
|
+
checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
|
|
2281
|
+
dependencies = [
|
|
2282
|
+
"heck 0.4.1",
|
|
2283
|
+
"proc-macro2 1.0.83",
|
|
2284
|
+
"pyo3-build-config 0.21.2",
|
|
2285
|
+
"quote 1.0.36",
|
|
2286
|
+
"syn 2.0.66",
|
|
2287
|
+
]
|
|
2288
|
+
|
|
2289
|
+
[[package]]
|
|
2290
|
+
name = "python-config-rs"
|
|
2291
|
+
version = "0.1.2"
|
|
2292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2293
|
+
checksum = "24336969a51336e6d27256c81456d25f6b533952c60ef495b33e3288461b9484"
|
|
2294
|
+
dependencies = [
|
|
2295
|
+
"semver",
|
|
2296
|
+
]
|
|
2297
|
+
|
|
2298
|
+
[[package]]
|
|
2299
|
+
name = "pythonize"
|
|
2300
|
+
version = "0.21.1"
|
|
2301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2302
|
+
checksum = "9d0664248812c38cc55a4ed07f88e4df516ce82604b93b1ffdc041aa77a6cb3c"
|
|
2303
|
+
dependencies = [
|
|
2304
|
+
"pyo3",
|
|
2305
|
+
"serde",
|
|
2306
|
+
]
|
|
2307
|
+
|
|
2308
|
+
[[package]]
|
|
2309
|
+
name = "quote"
|
|
2310
|
+
version = "0.6.13"
|
|
2311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2312
|
+
checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
|
|
2313
|
+
dependencies = [
|
|
2314
|
+
"proc-macro2 0.4.30",
|
|
2315
|
+
]
|
|
2316
|
+
|
|
2317
|
+
[[package]]
|
|
2318
|
+
name = "quote"
|
|
2319
|
+
version = "1.0.36"
|
|
2320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2321
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
2322
|
+
dependencies = [
|
|
2323
|
+
"proc-macro2 1.0.83",
|
|
2324
|
+
]
|
|
2325
|
+
|
|
2326
|
+
[[package]]
|
|
2327
|
+
name = "rand"
|
|
2328
|
+
version = "0.8.5"
|
|
2329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2330
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2331
|
+
dependencies = [
|
|
2332
|
+
"libc",
|
|
2333
|
+
"rand_chacha",
|
|
2334
|
+
"rand_core",
|
|
2335
|
+
]
|
|
2336
|
+
|
|
2337
|
+
[[package]]
|
|
2338
|
+
name = "rand_chacha"
|
|
2339
|
+
version = "0.3.1"
|
|
2340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2342
|
+
dependencies = [
|
|
2343
|
+
"ppv-lite86",
|
|
2344
|
+
"rand_core",
|
|
2345
|
+
]
|
|
2346
|
+
|
|
2347
|
+
[[package]]
|
|
2348
|
+
name = "rand_core"
|
|
2349
|
+
version = "0.6.4"
|
|
2350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2351
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2352
|
+
dependencies = [
|
|
2353
|
+
"getrandom",
|
|
2354
|
+
]
|
|
2355
|
+
|
|
2356
|
+
[[package]]
|
|
2357
|
+
name = "redox_syscall"
|
|
2358
|
+
version = "0.5.1"
|
|
2359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2360
|
+
checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e"
|
|
2361
|
+
dependencies = [
|
|
2362
|
+
"bitflags",
|
|
2363
|
+
]
|
|
2364
|
+
|
|
2365
|
+
[[package]]
|
|
2366
|
+
name = "redox_users"
|
|
2367
|
+
version = "0.4.5"
|
|
2368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2369
|
+
checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
|
|
2370
|
+
dependencies = [
|
|
2371
|
+
"getrandom",
|
|
2372
|
+
"libredox",
|
|
2373
|
+
"thiserror",
|
|
2374
|
+
]
|
|
2375
|
+
|
|
2376
|
+
[[package]]
|
|
2377
|
+
name = "regex"
|
|
2378
|
+
version = "1.10.4"
|
|
2379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2380
|
+
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
|
|
2381
|
+
dependencies = [
|
|
2382
|
+
"aho-corasick",
|
|
2383
|
+
"memchr",
|
|
2384
|
+
"regex-automata 0.4.6",
|
|
2385
|
+
"regex-syntax 0.8.3",
|
|
2386
|
+
]
|
|
2387
|
+
|
|
2388
|
+
[[package]]
|
|
2389
|
+
name = "regex-automata"
|
|
2390
|
+
version = "0.1.10"
|
|
2391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2392
|
+
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
|
2393
|
+
dependencies = [
|
|
2394
|
+
"regex-syntax 0.6.29",
|
|
2395
|
+
]
|
|
2396
|
+
|
|
2397
|
+
[[package]]
|
|
2398
|
+
name = "regex-automata"
|
|
2399
|
+
version = "0.4.6"
|
|
2400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
|
+
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
|
|
2402
|
+
dependencies = [
|
|
2403
|
+
"aho-corasick",
|
|
2404
|
+
"memchr",
|
|
2405
|
+
"regex-syntax 0.8.3",
|
|
2406
|
+
]
|
|
2407
|
+
|
|
2408
|
+
[[package]]
|
|
2409
|
+
name = "regex-syntax"
|
|
2410
|
+
version = "0.6.29"
|
|
2411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2412
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
2413
|
+
|
|
2414
|
+
[[package]]
|
|
2415
|
+
name = "regex-syntax"
|
|
2416
|
+
version = "0.8.3"
|
|
2417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2418
|
+
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
|
|
2419
|
+
|
|
2420
|
+
[[package]]
|
|
2421
|
+
name = "rmp"
|
|
2422
|
+
version = "0.8.14"
|
|
2423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2424
|
+
checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
|
|
2425
|
+
dependencies = [
|
|
2426
|
+
"byteorder",
|
|
2427
|
+
"num-traits",
|
|
2428
|
+
"paste",
|
|
2429
|
+
]
|
|
2430
|
+
|
|
2431
|
+
[[package]]
|
|
2432
|
+
name = "rmp-serde"
|
|
2433
|
+
version = "1.3.0"
|
|
2434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2435
|
+
checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db"
|
|
2436
|
+
dependencies = [
|
|
2437
|
+
"byteorder",
|
|
2438
|
+
"rmp",
|
|
2439
|
+
"serde",
|
|
2440
|
+
]
|
|
2441
|
+
|
|
2442
|
+
[[package]]
|
|
2443
|
+
name = "rust-axum"
|
|
2444
|
+
version = "0.1.0"
|
|
2445
|
+
dependencies = [
|
|
2446
|
+
"axum",
|
|
2447
|
+
"futures",
|
|
2448
|
+
"perspective",
|
|
2449
|
+
"tokio",
|
|
2450
|
+
"tower-http",
|
|
2451
|
+
"tracing",
|
|
2452
|
+
"tracing-subscriber",
|
|
2453
|
+
]
|
|
2454
|
+
|
|
2455
|
+
[[package]]
|
|
2456
|
+
name = "rustc-demangle"
|
|
2457
|
+
version = "0.1.24"
|
|
2458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2459
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
2460
|
+
|
|
2461
|
+
[[package]]
|
|
2462
|
+
name = "rustix"
|
|
2463
|
+
version = "0.38.34"
|
|
2464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2465
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
|
2466
|
+
dependencies = [
|
|
2467
|
+
"bitflags",
|
|
2468
|
+
"errno",
|
|
2469
|
+
"libc",
|
|
2470
|
+
"linux-raw-sys",
|
|
2471
|
+
"windows-sys 0.52.0",
|
|
2472
|
+
]
|
|
2473
|
+
|
|
2474
|
+
[[package]]
|
|
2475
|
+
name = "rustversion"
|
|
2476
|
+
version = "1.0.17"
|
|
2477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2478
|
+
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
|
|
2479
|
+
|
|
2480
|
+
[[package]]
|
|
2481
|
+
name = "ryu"
|
|
2482
|
+
version = "1.0.18"
|
|
2483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2484
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
2485
|
+
|
|
2486
|
+
[[package]]
|
|
2487
|
+
name = "scoped-tls"
|
|
2488
|
+
version = "1.0.1"
|
|
2489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2490
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
2491
|
+
|
|
2492
|
+
[[package]]
|
|
2493
|
+
name = "scopeguard"
|
|
2494
|
+
version = "1.2.0"
|
|
2495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2496
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2497
|
+
|
|
2498
|
+
[[package]]
|
|
2499
|
+
name = "scratch"
|
|
2500
|
+
version = "1.0.7"
|
|
2501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2502
|
+
checksum = "a3cf7c11c38cb994f3d40e8a8cde3bbd1f72a435e4c49e85d6553d8312306152"
|
|
2503
|
+
|
|
2504
|
+
[[package]]
|
|
2505
|
+
name = "semver"
|
|
2506
|
+
version = "0.9.0"
|
|
2507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2508
|
+
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
|
|
2509
|
+
dependencies = [
|
|
2510
|
+
"semver-parser",
|
|
2511
|
+
]
|
|
2512
|
+
|
|
2513
|
+
[[package]]
|
|
2514
|
+
name = "semver-parser"
|
|
2515
|
+
version = "0.7.0"
|
|
2516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2517
|
+
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
|
2518
|
+
|
|
2519
|
+
[[package]]
|
|
2520
|
+
name = "serde"
|
|
2521
|
+
version = "1.0.202"
|
|
2522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2523
|
+
checksum = "226b61a0d411b2ba5ff6d7f73a476ac4f8bb900373459cd00fab8512828ba395"
|
|
2524
|
+
dependencies = [
|
|
2525
|
+
"serde_derive",
|
|
2526
|
+
]
|
|
2527
|
+
|
|
2528
|
+
[[package]]
|
|
2529
|
+
name = "serde-wasm-bindgen"
|
|
2530
|
+
version = "0.4.5"
|
|
2531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2532
|
+
checksum = "e3b4c031cd0d9014307d82b8abf653c0290fbdaeb4c02d00c63cf52f728628bf"
|
|
2533
|
+
dependencies = [
|
|
2534
|
+
"js-sys",
|
|
2535
|
+
"serde",
|
|
2536
|
+
"wasm-bindgen",
|
|
2537
|
+
]
|
|
2538
|
+
|
|
2539
|
+
[[package]]
|
|
2540
|
+
name = "serde-wasm-bindgen"
|
|
2541
|
+
version = "0.5.0"
|
|
2542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2543
|
+
checksum = "f3b143e2833c57ab9ad3ea280d21fd34e285a42837aeb0ee301f4f41890fa00e"
|
|
2544
|
+
dependencies = [
|
|
2545
|
+
"js-sys",
|
|
2546
|
+
"serde",
|
|
2547
|
+
"wasm-bindgen",
|
|
2548
|
+
]
|
|
2549
|
+
|
|
2550
|
+
[[package]]
|
|
2551
|
+
name = "serde-wasm-bindgen"
|
|
2552
|
+
version = "0.6.5"
|
|
2553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2554
|
+
checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
|
|
2555
|
+
dependencies = [
|
|
2556
|
+
"js-sys",
|
|
2557
|
+
"serde",
|
|
2558
|
+
"wasm-bindgen",
|
|
2559
|
+
]
|
|
2560
|
+
|
|
2561
|
+
[[package]]
|
|
2562
|
+
name = "serde_bytes"
|
|
2563
|
+
version = "0.11.14"
|
|
2564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2565
|
+
checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734"
|
|
2566
|
+
dependencies = [
|
|
2567
|
+
"serde",
|
|
2568
|
+
]
|
|
2569
|
+
|
|
2570
|
+
[[package]]
|
|
2571
|
+
name = "serde_derive"
|
|
2572
|
+
version = "1.0.202"
|
|
2573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2574
|
+
checksum = "6048858004bcff69094cd972ed40a32500f153bd3be9f716b2eed2e8217c4838"
|
|
2575
|
+
dependencies = [
|
|
2576
|
+
"proc-macro2 1.0.83",
|
|
2577
|
+
"quote 1.0.36",
|
|
2578
|
+
"syn 2.0.66",
|
|
2579
|
+
]
|
|
2580
|
+
|
|
2581
|
+
[[package]]
|
|
2582
|
+
name = "serde_json"
|
|
2583
|
+
version = "1.0.117"
|
|
2584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2585
|
+
checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3"
|
|
2586
|
+
dependencies = [
|
|
2587
|
+
"itoa",
|
|
2588
|
+
"ryu",
|
|
2589
|
+
"serde",
|
|
2590
|
+
]
|
|
2591
|
+
|
|
2592
|
+
[[package]]
|
|
2593
|
+
name = "serde_path_to_error"
|
|
2594
|
+
version = "0.1.16"
|
|
2595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2596
|
+
checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6"
|
|
2597
|
+
dependencies = [
|
|
2598
|
+
"itoa",
|
|
2599
|
+
"serde",
|
|
2600
|
+
]
|
|
2601
|
+
|
|
2602
|
+
[[package]]
|
|
2603
|
+
name = "serde_urlencoded"
|
|
2604
|
+
version = "0.7.1"
|
|
2605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2606
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2607
|
+
dependencies = [
|
|
2608
|
+
"form_urlencoded",
|
|
2609
|
+
"itoa",
|
|
2610
|
+
"ryu",
|
|
2611
|
+
"serde",
|
|
2612
|
+
]
|
|
2613
|
+
|
|
2614
|
+
[[package]]
|
|
2615
|
+
name = "serde_with"
|
|
2616
|
+
version = "3.8.1"
|
|
2617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2618
|
+
checksum = "0ad483d2ab0149d5a5ebcd9972a3852711e0153d863bf5a5d0391d28883c4a20"
|
|
2619
|
+
dependencies = [
|
|
2620
|
+
"base64 0.22.1",
|
|
2621
|
+
"chrono",
|
|
2622
|
+
"hex",
|
|
2623
|
+
"indexmap 1.9.3",
|
|
2624
|
+
"indexmap 2.2.6",
|
|
2625
|
+
"serde",
|
|
2626
|
+
"serde_derive",
|
|
2627
|
+
"serde_json",
|
|
2628
|
+
"serde_with_macros",
|
|
2629
|
+
"time",
|
|
2630
|
+
]
|
|
2631
|
+
|
|
2632
|
+
[[package]]
|
|
2633
|
+
name = "serde_with_macros"
|
|
2634
|
+
version = "3.8.1"
|
|
2635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2636
|
+
checksum = "65569b702f41443e8bc8bbb1c5779bd0450bbe723b56198980e80ec45780bce2"
|
|
2637
|
+
dependencies = [
|
|
2638
|
+
"darling",
|
|
2639
|
+
"proc-macro2 1.0.83",
|
|
2640
|
+
"quote 1.0.36",
|
|
2641
|
+
"syn 2.0.66",
|
|
2642
|
+
]
|
|
2643
|
+
|
|
2644
|
+
[[package]]
|
|
2645
|
+
name = "sha1"
|
|
2646
|
+
version = "0.10.6"
|
|
2647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2648
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
2649
|
+
dependencies = [
|
|
2650
|
+
"cfg-if",
|
|
2651
|
+
"cpufeatures",
|
|
2652
|
+
"digest",
|
|
2653
|
+
]
|
|
2654
|
+
|
|
2655
|
+
[[package]]
|
|
2656
|
+
name = "sharded-slab"
|
|
2657
|
+
version = "0.1.7"
|
|
2658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2659
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
2660
|
+
dependencies = [
|
|
2661
|
+
"lazy_static",
|
|
2662
|
+
]
|
|
2663
|
+
|
|
2664
|
+
[[package]]
|
|
2665
|
+
name = "signal-hook-registry"
|
|
2666
|
+
version = "1.4.2"
|
|
2667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2668
|
+
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
|
2669
|
+
dependencies = [
|
|
2670
|
+
"libc",
|
|
2671
|
+
]
|
|
2672
|
+
|
|
2673
|
+
[[package]]
|
|
2674
|
+
name = "simd-adler32"
|
|
2675
|
+
version = "0.3.7"
|
|
2676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2677
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
2678
|
+
|
|
2679
|
+
[[package]]
|
|
2680
|
+
name = "slab"
|
|
2681
|
+
version = "0.4.9"
|
|
2682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2683
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
2684
|
+
dependencies = [
|
|
2685
|
+
"autocfg",
|
|
2686
|
+
]
|
|
2687
|
+
|
|
2688
|
+
[[package]]
|
|
2689
|
+
name = "smallvec"
|
|
2690
|
+
version = "1.13.2"
|
|
2691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2692
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
2693
|
+
|
|
2694
|
+
[[package]]
|
|
2695
|
+
name = "socket2"
|
|
2696
|
+
version = "0.5.7"
|
|
2697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2698
|
+
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
|
2699
|
+
dependencies = [
|
|
2700
|
+
"libc",
|
|
2701
|
+
"windows-sys 0.52.0",
|
|
2702
|
+
]
|
|
2703
|
+
|
|
2704
|
+
[[package]]
|
|
2705
|
+
name = "stable_deref_trait"
|
|
2706
|
+
version = "1.2.0"
|
|
2707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2708
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
2709
|
+
|
|
2710
|
+
[[package]]
|
|
2711
|
+
name = "strsim"
|
|
2712
|
+
version = "0.11.1"
|
|
2713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2714
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2715
|
+
|
|
2716
|
+
[[package]]
|
|
2717
|
+
name = "strum"
|
|
2718
|
+
version = "0.24.1"
|
|
2719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2720
|
+
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
|
|
2721
|
+
|
|
2722
|
+
[[package]]
|
|
2723
|
+
name = "strum"
|
|
2724
|
+
version = "0.26.2"
|
|
2725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2726
|
+
checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29"
|
|
2727
|
+
dependencies = [
|
|
2728
|
+
"strum_macros 0.26.2",
|
|
2729
|
+
]
|
|
2730
|
+
|
|
2731
|
+
[[package]]
|
|
2732
|
+
name = "strum_macros"
|
|
2733
|
+
version = "0.24.3"
|
|
2734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2735
|
+
checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
|
|
2736
|
+
dependencies = [
|
|
2737
|
+
"heck 0.4.1",
|
|
2738
|
+
"proc-macro2 1.0.83",
|
|
2739
|
+
"quote 1.0.36",
|
|
2740
|
+
"rustversion",
|
|
2741
|
+
"syn 1.0.109",
|
|
2742
|
+
]
|
|
2743
|
+
|
|
2744
|
+
[[package]]
|
|
2745
|
+
name = "strum_macros"
|
|
2746
|
+
version = "0.26.2"
|
|
2747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2748
|
+
checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946"
|
|
2749
|
+
dependencies = [
|
|
2750
|
+
"heck 0.4.1",
|
|
2751
|
+
"proc-macro2 1.0.83",
|
|
2752
|
+
"quote 1.0.36",
|
|
2753
|
+
"rustversion",
|
|
2754
|
+
"syn 2.0.66",
|
|
2755
|
+
]
|
|
2756
|
+
|
|
2757
|
+
[[package]]
|
|
2758
|
+
name = "syn"
|
|
2759
|
+
version = "0.15.44"
|
|
2760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2761
|
+
checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5"
|
|
2762
|
+
dependencies = [
|
|
2763
|
+
"proc-macro2 0.4.30",
|
|
2764
|
+
"quote 0.6.13",
|
|
2765
|
+
"unicode-xid",
|
|
2766
|
+
]
|
|
2767
|
+
|
|
2768
|
+
[[package]]
|
|
2769
|
+
name = "syn"
|
|
2770
|
+
version = "1.0.109"
|
|
2771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2772
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
2773
|
+
dependencies = [
|
|
2774
|
+
"proc-macro2 1.0.83",
|
|
2775
|
+
"quote 1.0.36",
|
|
2776
|
+
"unicode-ident",
|
|
2777
|
+
]
|
|
2778
|
+
|
|
2779
|
+
[[package]]
|
|
2780
|
+
name = "syn"
|
|
2781
|
+
version = "2.0.66"
|
|
2782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2783
|
+
checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5"
|
|
2784
|
+
dependencies = [
|
|
2785
|
+
"proc-macro2 1.0.83",
|
|
2786
|
+
"quote 1.0.36",
|
|
2787
|
+
"unicode-ident",
|
|
2788
|
+
]
|
|
2789
|
+
|
|
2790
|
+
[[package]]
|
|
2791
|
+
name = "sync_wrapper"
|
|
2792
|
+
version = "0.1.2"
|
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
+
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
2795
|
+
|
|
2796
|
+
[[package]]
|
|
2797
|
+
name = "talc"
|
|
2798
|
+
version = "4.4.1"
|
|
2799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
+
checksum = "04be12ec299aadd63a0bf781d893e4b6139d33cdca6dcd6f6be31f849cedcac8"
|
|
2801
|
+
dependencies = [
|
|
2802
|
+
"lock_api",
|
|
2803
|
+
]
|
|
2804
|
+
|
|
2805
|
+
[[package]]
|
|
2806
|
+
name = "target-lexicon"
|
|
2807
|
+
version = "0.12.14"
|
|
2808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2809
|
+
checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
|
|
2810
|
+
|
|
2811
|
+
[[package]]
|
|
2812
|
+
name = "tempfile"
|
|
2813
|
+
version = "3.10.1"
|
|
2814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2815
|
+
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
|
2816
|
+
dependencies = [
|
|
2817
|
+
"cfg-if",
|
|
2818
|
+
"fastrand",
|
|
2819
|
+
"rustix",
|
|
2820
|
+
"windows-sys 0.52.0",
|
|
2821
|
+
]
|
|
2822
|
+
|
|
2823
|
+
[[package]]
|
|
2824
|
+
name = "termcolor"
|
|
2825
|
+
version = "1.4.1"
|
|
2826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2827
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
2828
|
+
dependencies = [
|
|
2829
|
+
"winapi-util",
|
|
2830
|
+
]
|
|
2831
|
+
|
|
2832
|
+
[[package]]
|
|
2833
|
+
name = "termtree"
|
|
2834
|
+
version = "0.4.1"
|
|
2835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2836
|
+
checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
|
|
2837
|
+
|
|
2838
|
+
[[package]]
|
|
2839
|
+
name = "thiserror"
|
|
2840
|
+
version = "1.0.61"
|
|
2841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2842
|
+
checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
|
|
2843
|
+
dependencies = [
|
|
2844
|
+
"thiserror-impl",
|
|
2845
|
+
]
|
|
2846
|
+
|
|
2847
|
+
[[package]]
|
|
2848
|
+
name = "thiserror-impl"
|
|
2849
|
+
version = "1.0.61"
|
|
2850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2851
|
+
checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
|
|
2852
|
+
dependencies = [
|
|
2853
|
+
"proc-macro2 1.0.83",
|
|
2854
|
+
"quote 1.0.36",
|
|
2855
|
+
"syn 2.0.66",
|
|
2856
|
+
]
|
|
2857
|
+
|
|
2858
|
+
[[package]]
|
|
2859
|
+
name = "thread_local"
|
|
2860
|
+
version = "1.1.8"
|
|
2861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2862
|
+
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
|
2863
|
+
dependencies = [
|
|
2864
|
+
"cfg-if",
|
|
2865
|
+
"once_cell",
|
|
2866
|
+
]
|
|
2867
|
+
|
|
2868
|
+
[[package]]
|
|
2869
|
+
name = "time"
|
|
2870
|
+
version = "0.3.36"
|
|
2871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2872
|
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
|
|
2873
|
+
dependencies = [
|
|
2874
|
+
"deranged",
|
|
2875
|
+
"itoa",
|
|
2876
|
+
"num-conv",
|
|
2877
|
+
"powerfmt",
|
|
2878
|
+
"serde",
|
|
2879
|
+
"time-core",
|
|
2880
|
+
"time-macros",
|
|
2881
|
+
]
|
|
2882
|
+
|
|
2883
|
+
[[package]]
|
|
2884
|
+
name = "time-core"
|
|
2885
|
+
version = "0.1.2"
|
|
2886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2887
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
2888
|
+
|
|
2889
|
+
[[package]]
|
|
2890
|
+
name = "time-macros"
|
|
2891
|
+
version = "0.2.18"
|
|
2892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2893
|
+
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
|
|
2894
|
+
dependencies = [
|
|
2895
|
+
"num-conv",
|
|
2896
|
+
"time-core",
|
|
2897
|
+
]
|
|
2898
|
+
|
|
2899
|
+
[[package]]
|
|
2900
|
+
name = "tinyvec"
|
|
2901
|
+
version = "1.6.0"
|
|
2902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2903
|
+
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
|
2904
|
+
dependencies = [
|
|
2905
|
+
"tinyvec_macros",
|
|
2906
|
+
]
|
|
2907
|
+
|
|
2908
|
+
[[package]]
|
|
2909
|
+
name = "tinyvec_macros"
|
|
2910
|
+
version = "0.1.1"
|
|
2911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2912
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2913
|
+
|
|
2914
|
+
[[package]]
|
|
2915
|
+
name = "tokio"
|
|
2916
|
+
version = "1.37.0"
|
|
2917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2918
|
+
checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
|
|
2919
|
+
dependencies = [
|
|
2920
|
+
"backtrace",
|
|
2921
|
+
"bytes",
|
|
2922
|
+
"libc",
|
|
2923
|
+
"mio",
|
|
2924
|
+
"num_cpus",
|
|
2925
|
+
"parking_lot",
|
|
2926
|
+
"pin-project-lite",
|
|
2927
|
+
"signal-hook-registry",
|
|
2928
|
+
"socket2",
|
|
2929
|
+
"tokio-macros",
|
|
2930
|
+
"windows-sys 0.48.0",
|
|
2931
|
+
]
|
|
2932
|
+
|
|
2933
|
+
[[package]]
|
|
2934
|
+
name = "tokio-macros"
|
|
2935
|
+
version = "2.2.0"
|
|
2936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2937
|
+
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
|
|
2938
|
+
dependencies = [
|
|
2939
|
+
"proc-macro2 1.0.83",
|
|
2940
|
+
"quote 1.0.36",
|
|
2941
|
+
"syn 2.0.66",
|
|
2942
|
+
]
|
|
2943
|
+
|
|
2944
|
+
[[package]]
|
|
2945
|
+
name = "tokio-stream"
|
|
2946
|
+
version = "0.1.15"
|
|
2947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2948
|
+
checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
|
|
2949
|
+
dependencies = [
|
|
2950
|
+
"futures-core",
|
|
2951
|
+
"pin-project-lite",
|
|
2952
|
+
"tokio",
|
|
2953
|
+
]
|
|
2954
|
+
|
|
2955
|
+
[[package]]
|
|
2956
|
+
name = "tokio-tungstenite"
|
|
2957
|
+
version = "0.21.0"
|
|
2958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2959
|
+
checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38"
|
|
2960
|
+
dependencies = [
|
|
2961
|
+
"futures-util",
|
|
2962
|
+
"log",
|
|
2963
|
+
"tokio",
|
|
2964
|
+
"tungstenite",
|
|
2965
|
+
]
|
|
2966
|
+
|
|
2967
|
+
[[package]]
|
|
2968
|
+
name = "tokio-util"
|
|
2969
|
+
version = "0.7.11"
|
|
2970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2971
|
+
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
|
|
2972
|
+
dependencies = [
|
|
2973
|
+
"bytes",
|
|
2974
|
+
"futures-core",
|
|
2975
|
+
"futures-sink",
|
|
2976
|
+
"pin-project-lite",
|
|
2977
|
+
"tokio",
|
|
2978
|
+
]
|
|
2979
|
+
|
|
2980
|
+
[[package]]
|
|
2981
|
+
name = "toml_datetime"
|
|
2982
|
+
version = "0.6.6"
|
|
2983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
+
checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf"
|
|
2985
|
+
|
|
2986
|
+
[[package]]
|
|
2987
|
+
name = "toml_edit"
|
|
2988
|
+
version = "0.19.15"
|
|
2989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2990
|
+
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
|
|
2991
|
+
dependencies = [
|
|
2992
|
+
"indexmap 2.2.6",
|
|
2993
|
+
"toml_datetime",
|
|
2994
|
+
"winnow",
|
|
2995
|
+
]
|
|
2996
|
+
|
|
2997
|
+
[[package]]
|
|
2998
|
+
name = "tower"
|
|
2999
|
+
version = "0.4.13"
|
|
3000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3001
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
3002
|
+
dependencies = [
|
|
3003
|
+
"futures-core",
|
|
3004
|
+
"futures-util",
|
|
3005
|
+
"pin-project",
|
|
3006
|
+
"pin-project-lite",
|
|
3007
|
+
"tokio",
|
|
3008
|
+
"tower-layer",
|
|
3009
|
+
"tower-service",
|
|
3010
|
+
"tracing",
|
|
3011
|
+
]
|
|
3012
|
+
|
|
3013
|
+
[[package]]
|
|
3014
|
+
name = "tower-http"
|
|
3015
|
+
version = "0.5.2"
|
|
3016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3017
|
+
checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
|
|
3018
|
+
dependencies = [
|
|
3019
|
+
"bitflags",
|
|
3020
|
+
"bytes",
|
|
3021
|
+
"futures-util",
|
|
3022
|
+
"http 1.1.0",
|
|
3023
|
+
"http-body",
|
|
3024
|
+
"http-body-util",
|
|
3025
|
+
"http-range-header",
|
|
3026
|
+
"httpdate",
|
|
3027
|
+
"mime",
|
|
3028
|
+
"mime_guess",
|
|
3029
|
+
"percent-encoding",
|
|
3030
|
+
"pin-project-lite",
|
|
3031
|
+
"tokio",
|
|
3032
|
+
"tokio-util",
|
|
3033
|
+
"tower-layer",
|
|
3034
|
+
"tower-service",
|
|
3035
|
+
"tracing",
|
|
3036
|
+
]
|
|
3037
|
+
|
|
3038
|
+
[[package]]
|
|
3039
|
+
name = "tower-layer"
|
|
3040
|
+
version = "0.3.2"
|
|
3041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3042
|
+
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
|
|
3043
|
+
|
|
3044
|
+
[[package]]
|
|
3045
|
+
name = "tower-service"
|
|
3046
|
+
version = "0.3.2"
|
|
3047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3048
|
+
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
3049
|
+
|
|
3050
|
+
[[package]]
|
|
3051
|
+
name = "tracing"
|
|
3052
|
+
version = "0.1.40"
|
|
3053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3054
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
3055
|
+
dependencies = [
|
|
3056
|
+
"log",
|
|
3057
|
+
"pin-project-lite",
|
|
3058
|
+
"tracing-attributes",
|
|
3059
|
+
"tracing-core",
|
|
3060
|
+
]
|
|
3061
|
+
|
|
3062
|
+
[[package]]
|
|
3063
|
+
name = "tracing-attributes"
|
|
3064
|
+
version = "0.1.27"
|
|
3065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3066
|
+
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
3067
|
+
dependencies = [
|
|
3068
|
+
"proc-macro2 1.0.83",
|
|
3069
|
+
"quote 1.0.36",
|
|
3070
|
+
"syn 2.0.66",
|
|
3071
|
+
]
|
|
3072
|
+
|
|
3073
|
+
[[package]]
|
|
3074
|
+
name = "tracing-core"
|
|
3075
|
+
version = "0.1.32"
|
|
3076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
3078
|
+
dependencies = [
|
|
3079
|
+
"once_cell",
|
|
3080
|
+
"valuable",
|
|
3081
|
+
]
|
|
3082
|
+
|
|
3083
|
+
[[package]]
|
|
3084
|
+
name = "tracing-log"
|
|
3085
|
+
version = "0.2.0"
|
|
3086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3087
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3088
|
+
dependencies = [
|
|
3089
|
+
"log",
|
|
3090
|
+
"once_cell",
|
|
3091
|
+
"tracing-core",
|
|
3092
|
+
]
|
|
3093
|
+
|
|
3094
|
+
[[package]]
|
|
3095
|
+
name = "tracing-subscriber"
|
|
3096
|
+
version = "0.3.18"
|
|
3097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3098
|
+
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
|
|
3099
|
+
dependencies = [
|
|
3100
|
+
"matchers",
|
|
3101
|
+
"nu-ansi-term",
|
|
3102
|
+
"once_cell",
|
|
3103
|
+
"regex",
|
|
3104
|
+
"sharded-slab",
|
|
3105
|
+
"smallvec",
|
|
3106
|
+
"thread_local",
|
|
3107
|
+
"tracing",
|
|
3108
|
+
"tracing-core",
|
|
3109
|
+
"tracing-log",
|
|
3110
|
+
]
|
|
3111
|
+
|
|
3112
|
+
[[package]]
|
|
3113
|
+
name = "tracing-unwrap"
|
|
3114
|
+
version = "1.0.1"
|
|
3115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
|
+
checksum = "c4e33415be97f5ae70322d6fefc696bbc08887d8835400d6c77f059469b30354"
|
|
3117
|
+
dependencies = [
|
|
3118
|
+
"tracing",
|
|
3119
|
+
]
|
|
3120
|
+
|
|
3121
|
+
[[package]]
|
|
3122
|
+
name = "ts-rs"
|
|
3123
|
+
version = "9.0.1"
|
|
3124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3125
|
+
checksum = "b44017f9f875786e543595076374b9ef7d13465a518dd93d6ccdbf5b432dde8c"
|
|
3126
|
+
dependencies = [
|
|
3127
|
+
"serde_json",
|
|
3128
|
+
"thiserror",
|
|
3129
|
+
"ts-rs-macros",
|
|
3130
|
+
]
|
|
3131
|
+
|
|
3132
|
+
[[package]]
|
|
3133
|
+
name = "ts-rs-macros"
|
|
3134
|
+
version = "9.0.1"
|
|
3135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3136
|
+
checksum = "c88cc88fd23b5a04528f3a8436024f20010a16ec18eb23c164b1242f65860130"
|
|
3137
|
+
dependencies = [
|
|
3138
|
+
"proc-macro2 1.0.83",
|
|
3139
|
+
"quote 1.0.36",
|
|
3140
|
+
"syn 2.0.66",
|
|
3141
|
+
"termcolor",
|
|
3142
|
+
]
|
|
3143
|
+
|
|
3144
|
+
[[package]]
|
|
3145
|
+
name = "tungstenite"
|
|
3146
|
+
version = "0.21.0"
|
|
3147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3148
|
+
checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1"
|
|
3149
|
+
dependencies = [
|
|
3150
|
+
"byteorder",
|
|
3151
|
+
"bytes",
|
|
3152
|
+
"data-encoding",
|
|
3153
|
+
"http 1.1.0",
|
|
3154
|
+
"httparse",
|
|
3155
|
+
"log",
|
|
3156
|
+
"rand",
|
|
3157
|
+
"sha1",
|
|
3158
|
+
"thiserror",
|
|
3159
|
+
"url",
|
|
3160
|
+
"utf-8",
|
|
3161
|
+
]
|
|
3162
|
+
|
|
3163
|
+
[[package]]
|
|
3164
|
+
name = "typenum"
|
|
3165
|
+
version = "1.17.0"
|
|
3166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3167
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
3168
|
+
|
|
3169
|
+
[[package]]
|
|
3170
|
+
name = "unicase"
|
|
3171
|
+
version = "2.7.0"
|
|
3172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3173
|
+
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
|
|
3174
|
+
dependencies = [
|
|
3175
|
+
"version_check",
|
|
3176
|
+
]
|
|
3177
|
+
|
|
3178
|
+
[[package]]
|
|
3179
|
+
name = "unicode-bidi"
|
|
3180
|
+
version = "0.3.15"
|
|
3181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3182
|
+
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
|
3183
|
+
|
|
3184
|
+
[[package]]
|
|
3185
|
+
name = "unicode-ident"
|
|
3186
|
+
version = "1.0.12"
|
|
3187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3188
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
3189
|
+
|
|
3190
|
+
[[package]]
|
|
3191
|
+
name = "unicode-normalization"
|
|
3192
|
+
version = "0.1.23"
|
|
3193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3194
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
|
3195
|
+
dependencies = [
|
|
3196
|
+
"tinyvec",
|
|
3197
|
+
]
|
|
3198
|
+
|
|
3199
|
+
[[package]]
|
|
3200
|
+
name = "unicode-segmentation"
|
|
3201
|
+
version = "1.11.0"
|
|
3202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3203
|
+
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
|
|
3204
|
+
|
|
3205
|
+
[[package]]
|
|
3206
|
+
name = "unicode-width"
|
|
3207
|
+
version = "0.1.12"
|
|
3208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3209
|
+
checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6"
|
|
3210
|
+
|
|
3211
|
+
[[package]]
|
|
3212
|
+
name = "unicode-xid"
|
|
3213
|
+
version = "0.1.0"
|
|
3214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3215
|
+
checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
|
|
3216
|
+
|
|
3217
|
+
[[package]]
|
|
3218
|
+
name = "unindent"
|
|
3219
|
+
version = "0.2.3"
|
|
3220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3221
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
3222
|
+
|
|
3223
|
+
[[package]]
|
|
3224
|
+
name = "url"
|
|
3225
|
+
version = "2.5.2"
|
|
3226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3227
|
+
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
|
|
3228
|
+
dependencies = [
|
|
3229
|
+
"form_urlencoded",
|
|
3230
|
+
"idna",
|
|
3231
|
+
"percent-encoding",
|
|
3232
|
+
]
|
|
3233
|
+
|
|
3234
|
+
[[package]]
|
|
3235
|
+
name = "utf-8"
|
|
3236
|
+
version = "0.7.6"
|
|
3237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3238
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
3239
|
+
|
|
3240
|
+
[[package]]
|
|
3241
|
+
name = "utf8parse"
|
|
3242
|
+
version = "0.2.1"
|
|
3243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3244
|
+
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
|
|
3245
|
+
|
|
3246
|
+
[[package]]
|
|
3247
|
+
name = "valuable"
|
|
3248
|
+
version = "0.1.0"
|
|
3249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3250
|
+
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
|
3251
|
+
|
|
3252
|
+
[[package]]
|
|
3253
|
+
name = "version_check"
|
|
3254
|
+
version = "0.9.4"
|
|
3255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3256
|
+
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
|
3257
|
+
|
|
3258
|
+
[[package]]
|
|
3259
|
+
name = "walrus"
|
|
3260
|
+
version = "0.20.3"
|
|
3261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3262
|
+
checksum = "2c03529cd0c4400a2449f640d2f27cd1b48c3065226d15e26d98e4429ab0adb7"
|
|
3263
|
+
dependencies = [
|
|
3264
|
+
"anyhow",
|
|
3265
|
+
"gimli 0.26.2",
|
|
3266
|
+
"id-arena",
|
|
3267
|
+
"leb128",
|
|
3268
|
+
"log",
|
|
3269
|
+
"walrus-macro",
|
|
3270
|
+
"wasm-encoder",
|
|
3271
|
+
"wasmparser",
|
|
3272
|
+
]
|
|
3273
|
+
|
|
3274
|
+
[[package]]
|
|
3275
|
+
name = "walrus-macro"
|
|
3276
|
+
version = "0.19.0"
|
|
3277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3278
|
+
checksum = "0a6e5bd22c71e77d60140b0bd5be56155a37e5bd14e24f5f87298040d0cc40d7"
|
|
3279
|
+
dependencies = [
|
|
3280
|
+
"heck 0.3.3",
|
|
3281
|
+
"proc-macro2 1.0.83",
|
|
3282
|
+
"quote 1.0.36",
|
|
3283
|
+
"syn 1.0.109",
|
|
3284
|
+
]
|
|
3285
|
+
|
|
3286
|
+
[[package]]
|
|
3287
|
+
name = "wasi"
|
|
3288
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
3289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3290
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3291
|
+
|
|
3292
|
+
[[package]]
|
|
3293
|
+
name = "wasm-bindgen"
|
|
3294
|
+
version = "0.2.92"
|
|
3295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3296
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
|
3297
|
+
dependencies = [
|
|
3298
|
+
"cfg-if",
|
|
3299
|
+
"serde",
|
|
3300
|
+
"serde_json",
|
|
3301
|
+
"wasm-bindgen-macro",
|
|
3302
|
+
]
|
|
3303
|
+
|
|
3304
|
+
[[package]]
|
|
3305
|
+
name = "wasm-bindgen-backend"
|
|
3306
|
+
version = "0.2.92"
|
|
3307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3308
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
|
3309
|
+
dependencies = [
|
|
3310
|
+
"bumpalo",
|
|
3311
|
+
"log",
|
|
3312
|
+
"once_cell",
|
|
3313
|
+
"proc-macro2 1.0.83",
|
|
3314
|
+
"quote 1.0.36",
|
|
3315
|
+
"syn 2.0.66",
|
|
3316
|
+
"wasm-bindgen-shared",
|
|
3317
|
+
]
|
|
3318
|
+
|
|
3319
|
+
[[package]]
|
|
3320
|
+
name = "wasm-bindgen-cli-support"
|
|
3321
|
+
version = "0.2.92"
|
|
3322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3323
|
+
checksum = "ca821da8c1ae6c87c5e94493939a206daa8587caff227c6032e0061a3d80817f"
|
|
3324
|
+
dependencies = [
|
|
3325
|
+
"anyhow",
|
|
3326
|
+
"base64 0.21.7",
|
|
3327
|
+
"log",
|
|
3328
|
+
"rustc-demangle",
|
|
3329
|
+
"serde_json",
|
|
3330
|
+
"tempfile",
|
|
3331
|
+
"unicode-ident",
|
|
3332
|
+
"walrus",
|
|
3333
|
+
"wasm-bindgen-externref-xform",
|
|
3334
|
+
"wasm-bindgen-multi-value-xform",
|
|
3335
|
+
"wasm-bindgen-shared",
|
|
3336
|
+
"wasm-bindgen-threads-xform",
|
|
3337
|
+
"wasm-bindgen-wasm-conventions",
|
|
3338
|
+
"wasm-bindgen-wasm-interpreter",
|
|
3339
|
+
]
|
|
3340
|
+
|
|
3341
|
+
[[package]]
|
|
3342
|
+
name = "wasm-bindgen-externref-xform"
|
|
3343
|
+
version = "0.2.92"
|
|
3344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3345
|
+
checksum = "102582726b35a30d53157fbf8de3d0f0fed4c40c0c7951d69a034e9ef01da725"
|
|
3346
|
+
dependencies = [
|
|
3347
|
+
"anyhow",
|
|
3348
|
+
"walrus",
|
|
3349
|
+
]
|
|
3350
|
+
|
|
3351
|
+
[[package]]
|
|
3352
|
+
name = "wasm-bindgen-futures"
|
|
3353
|
+
version = "0.4.42"
|
|
3354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3355
|
+
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
|
|
3356
|
+
dependencies = [
|
|
3357
|
+
"cfg-if",
|
|
3358
|
+
"js-sys",
|
|
3359
|
+
"wasm-bindgen",
|
|
3360
|
+
"web-sys",
|
|
3361
|
+
]
|
|
3362
|
+
|
|
3363
|
+
[[package]]
|
|
3364
|
+
name = "wasm-bindgen-macro"
|
|
3365
|
+
version = "0.2.92"
|
|
3366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3367
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
|
3368
|
+
dependencies = [
|
|
3369
|
+
"quote 1.0.36",
|
|
3370
|
+
"wasm-bindgen-macro-support",
|
|
3371
|
+
]
|
|
3372
|
+
|
|
3373
|
+
[[package]]
|
|
3374
|
+
name = "wasm-bindgen-macro-support"
|
|
3375
|
+
version = "0.2.92"
|
|
3376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3377
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
3378
|
+
dependencies = [
|
|
3379
|
+
"proc-macro2 1.0.83",
|
|
3380
|
+
"quote 1.0.36",
|
|
3381
|
+
"syn 2.0.66",
|
|
3382
|
+
"wasm-bindgen-backend",
|
|
3383
|
+
"wasm-bindgen-shared",
|
|
3384
|
+
]
|
|
3385
|
+
|
|
3386
|
+
[[package]]
|
|
3387
|
+
name = "wasm-bindgen-multi-value-xform"
|
|
3388
|
+
version = "0.2.92"
|
|
3389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3390
|
+
checksum = "3498e4799f43523d780ceff498f04d882a8dbc9719c28020034822e5952f32a4"
|
|
3391
|
+
dependencies = [
|
|
3392
|
+
"anyhow",
|
|
3393
|
+
"walrus",
|
|
3394
|
+
]
|
|
3395
|
+
|
|
3396
|
+
[[package]]
|
|
3397
|
+
name = "wasm-bindgen-shared"
|
|
3398
|
+
version = "0.2.92"
|
|
3399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3400
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
|
3401
|
+
|
|
3402
|
+
[[package]]
|
|
3403
|
+
name = "wasm-bindgen-test"
|
|
3404
|
+
version = "0.3.42"
|
|
3405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3406
|
+
checksum = "d9bf62a58e0780af3e852044583deee40983e5886da43a271dd772379987667b"
|
|
3407
|
+
dependencies = [
|
|
3408
|
+
"console_error_panic_hook",
|
|
3409
|
+
"js-sys",
|
|
3410
|
+
"scoped-tls",
|
|
3411
|
+
"wasm-bindgen",
|
|
3412
|
+
"wasm-bindgen-futures",
|
|
3413
|
+
"wasm-bindgen-test-macro",
|
|
3414
|
+
]
|
|
3415
|
+
|
|
3416
|
+
[[package]]
|
|
3417
|
+
name = "wasm-bindgen-test-macro"
|
|
3418
|
+
version = "0.3.42"
|
|
3419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3420
|
+
checksum = "b7f89739351a2e03cb94beb799d47fb2cac01759b40ec441f7de39b00cbf7ef0"
|
|
3421
|
+
dependencies = [
|
|
3422
|
+
"proc-macro2 1.0.83",
|
|
3423
|
+
"quote 1.0.36",
|
|
3424
|
+
"syn 2.0.66",
|
|
3425
|
+
]
|
|
3426
|
+
|
|
3427
|
+
[[package]]
|
|
3428
|
+
name = "wasm-bindgen-threads-xform"
|
|
3429
|
+
version = "0.2.92"
|
|
3430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3431
|
+
checksum = "2d5add359b7f7d09a55299a9d29be54414264f2b8cf84f8c8fda5be9269b5dd9"
|
|
3432
|
+
dependencies = [
|
|
3433
|
+
"anyhow",
|
|
3434
|
+
"walrus",
|
|
3435
|
+
"wasm-bindgen-wasm-conventions",
|
|
3436
|
+
]
|
|
3437
|
+
|
|
3438
|
+
[[package]]
|
|
3439
|
+
name = "wasm-bindgen-wasm-conventions"
|
|
3440
|
+
version = "0.2.92"
|
|
3441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3442
|
+
checksum = "8c04e3607b810e76768260db3a5f2e8beb477cb089ef8726da85c8eb9bd3b575"
|
|
3443
|
+
dependencies = [
|
|
3444
|
+
"anyhow",
|
|
3445
|
+
"walrus",
|
|
3446
|
+
]
|
|
3447
|
+
|
|
3448
|
+
[[package]]
|
|
3449
|
+
name = "wasm-bindgen-wasm-interpreter"
|
|
3450
|
+
version = "0.2.92"
|
|
3451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3452
|
+
checksum = "9ea966593c8243a33eb4d643254eb97a69de04e89462f46cf6b4f506aae89b3a"
|
|
3453
|
+
dependencies = [
|
|
3454
|
+
"anyhow",
|
|
3455
|
+
"log",
|
|
3456
|
+
"walrus",
|
|
3457
|
+
"wasm-bindgen-wasm-conventions",
|
|
3458
|
+
]
|
|
3459
|
+
|
|
3460
|
+
[[package]]
|
|
3461
|
+
name = "wasm-encoder"
|
|
3462
|
+
version = "0.29.0"
|
|
3463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3464
|
+
checksum = "18c41dbd92eaebf3612a39be316540b8377c871cb9bde6b064af962984912881"
|
|
3465
|
+
dependencies = [
|
|
3466
|
+
"leb128",
|
|
3467
|
+
]
|
|
3468
|
+
|
|
3469
|
+
[[package]]
|
|
3470
|
+
name = "wasm-opt"
|
|
3471
|
+
version = "0.116.1"
|
|
3472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3473
|
+
checksum = "2fd87a4c135535ffed86123b6fb0f0a5a0bc89e50416c942c5f0662c645f679c"
|
|
3474
|
+
dependencies = [
|
|
3475
|
+
"anyhow",
|
|
3476
|
+
"libc",
|
|
3477
|
+
"strum 0.24.1",
|
|
3478
|
+
"strum_macros 0.24.3",
|
|
3479
|
+
"tempfile",
|
|
3480
|
+
"thiserror",
|
|
3481
|
+
"wasm-opt-cxx-sys",
|
|
3482
|
+
"wasm-opt-sys",
|
|
3483
|
+
]
|
|
3484
|
+
|
|
3485
|
+
[[package]]
|
|
3486
|
+
name = "wasm-opt-cxx-sys"
|
|
3487
|
+
version = "0.116.0"
|
|
3488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3489
|
+
checksum = "8c57b28207aa724318fcec6575fe74803c23f6f266fce10cbc9f3f116762f12e"
|
|
3490
|
+
dependencies = [
|
|
3491
|
+
"anyhow",
|
|
3492
|
+
"cxx",
|
|
3493
|
+
"cxx-build",
|
|
3494
|
+
"wasm-opt-sys",
|
|
3495
|
+
]
|
|
3496
|
+
|
|
3497
|
+
[[package]]
|
|
3498
|
+
name = "wasm-opt-sys"
|
|
3499
|
+
version = "0.116.0"
|
|
3500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3501
|
+
checksum = "8a1cce564dc768dacbdb718fc29df2dba80bd21cb47d8f77ae7e3d95ceb98cbe"
|
|
3502
|
+
dependencies = [
|
|
3503
|
+
"anyhow",
|
|
3504
|
+
"cc",
|
|
3505
|
+
"cxx",
|
|
3506
|
+
"cxx-build",
|
|
3507
|
+
]
|
|
3508
|
+
|
|
3509
|
+
[[package]]
|
|
3510
|
+
name = "wasmparser"
|
|
3511
|
+
version = "0.80.2"
|
|
3512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3513
|
+
checksum = "449167e2832691a1bff24cde28d2804e90e09586a448c8e76984792c44334a6b"
|
|
3514
|
+
|
|
3515
|
+
[[package]]
|
|
3516
|
+
name = "web-sys"
|
|
3517
|
+
version = "0.3.69"
|
|
3518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3519
|
+
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
|
|
3520
|
+
dependencies = [
|
|
3521
|
+
"js-sys",
|
|
3522
|
+
"wasm-bindgen",
|
|
3523
|
+
]
|
|
3524
|
+
|
|
3525
|
+
[[package]]
|
|
3526
|
+
name = "winapi"
|
|
3527
|
+
version = "0.3.9"
|
|
3528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3529
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3530
|
+
dependencies = [
|
|
3531
|
+
"winapi-i686-pc-windows-gnu",
|
|
3532
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3533
|
+
]
|
|
3534
|
+
|
|
3535
|
+
[[package]]
|
|
3536
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3537
|
+
version = "0.4.0"
|
|
3538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3539
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3540
|
+
|
|
3541
|
+
[[package]]
|
|
3542
|
+
name = "winapi-util"
|
|
3543
|
+
version = "0.1.8"
|
|
3544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3545
|
+
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
|
|
3546
|
+
dependencies = [
|
|
3547
|
+
"windows-sys 0.52.0",
|
|
3548
|
+
]
|
|
3549
|
+
|
|
3550
|
+
[[package]]
|
|
3551
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3552
|
+
version = "0.4.0"
|
|
3553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3554
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3555
|
+
|
|
3556
|
+
[[package]]
|
|
3557
|
+
name = "windows-core"
|
|
3558
|
+
version = "0.52.0"
|
|
3559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3560
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
3561
|
+
dependencies = [
|
|
3562
|
+
"windows-targets 0.52.5",
|
|
3563
|
+
]
|
|
3564
|
+
|
|
3565
|
+
[[package]]
|
|
3566
|
+
name = "windows-sys"
|
|
3567
|
+
version = "0.48.0"
|
|
3568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3569
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
3570
|
+
dependencies = [
|
|
3571
|
+
"windows-targets 0.48.5",
|
|
3572
|
+
]
|
|
3573
|
+
|
|
3574
|
+
[[package]]
|
|
3575
|
+
name = "windows-sys"
|
|
3576
|
+
version = "0.52.0"
|
|
3577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3578
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3579
|
+
dependencies = [
|
|
3580
|
+
"windows-targets 0.52.5",
|
|
3581
|
+
]
|
|
3582
|
+
|
|
3583
|
+
[[package]]
|
|
3584
|
+
name = "windows-targets"
|
|
3585
|
+
version = "0.48.5"
|
|
3586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3587
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
3588
|
+
dependencies = [
|
|
3589
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
3590
|
+
"windows_aarch64_msvc 0.48.5",
|
|
3591
|
+
"windows_i686_gnu 0.48.5",
|
|
3592
|
+
"windows_i686_msvc 0.48.5",
|
|
3593
|
+
"windows_x86_64_gnu 0.48.5",
|
|
3594
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
3595
|
+
"windows_x86_64_msvc 0.48.5",
|
|
3596
|
+
]
|
|
3597
|
+
|
|
3598
|
+
[[package]]
|
|
3599
|
+
name = "windows-targets"
|
|
3600
|
+
version = "0.52.5"
|
|
3601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3602
|
+
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
|
3603
|
+
dependencies = [
|
|
3604
|
+
"windows_aarch64_gnullvm 0.52.5",
|
|
3605
|
+
"windows_aarch64_msvc 0.52.5",
|
|
3606
|
+
"windows_i686_gnu 0.52.5",
|
|
3607
|
+
"windows_i686_gnullvm",
|
|
3608
|
+
"windows_i686_msvc 0.52.5",
|
|
3609
|
+
"windows_x86_64_gnu 0.52.5",
|
|
3610
|
+
"windows_x86_64_gnullvm 0.52.5",
|
|
3611
|
+
"windows_x86_64_msvc 0.52.5",
|
|
3612
|
+
]
|
|
3613
|
+
|
|
3614
|
+
[[package]]
|
|
3615
|
+
name = "windows_aarch64_gnullvm"
|
|
3616
|
+
version = "0.48.5"
|
|
3617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3618
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
3619
|
+
|
|
3620
|
+
[[package]]
|
|
3621
|
+
name = "windows_aarch64_gnullvm"
|
|
3622
|
+
version = "0.52.5"
|
|
3623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3624
|
+
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
|
3625
|
+
|
|
3626
|
+
[[package]]
|
|
3627
|
+
name = "windows_aarch64_msvc"
|
|
3628
|
+
version = "0.48.5"
|
|
3629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3630
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
3631
|
+
|
|
3632
|
+
[[package]]
|
|
3633
|
+
name = "windows_aarch64_msvc"
|
|
3634
|
+
version = "0.52.5"
|
|
3635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3636
|
+
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
|
3637
|
+
|
|
3638
|
+
[[package]]
|
|
3639
|
+
name = "windows_i686_gnu"
|
|
3640
|
+
version = "0.48.5"
|
|
3641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3642
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
3643
|
+
|
|
3644
|
+
[[package]]
|
|
3645
|
+
name = "windows_i686_gnu"
|
|
3646
|
+
version = "0.52.5"
|
|
3647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3648
|
+
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
|
3649
|
+
|
|
3650
|
+
[[package]]
|
|
3651
|
+
name = "windows_i686_gnullvm"
|
|
3652
|
+
version = "0.52.5"
|
|
3653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3654
|
+
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
|
3655
|
+
|
|
3656
|
+
[[package]]
|
|
3657
|
+
name = "windows_i686_msvc"
|
|
3658
|
+
version = "0.48.5"
|
|
3659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3660
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
3661
|
+
|
|
3662
|
+
[[package]]
|
|
3663
|
+
name = "windows_i686_msvc"
|
|
3664
|
+
version = "0.52.5"
|
|
3665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3666
|
+
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
|
3667
|
+
|
|
3668
|
+
[[package]]
|
|
3669
|
+
name = "windows_x86_64_gnu"
|
|
3670
|
+
version = "0.48.5"
|
|
3671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3672
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
3673
|
+
|
|
3674
|
+
[[package]]
|
|
3675
|
+
name = "windows_x86_64_gnu"
|
|
3676
|
+
version = "0.52.5"
|
|
3677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3678
|
+
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
|
3679
|
+
|
|
3680
|
+
[[package]]
|
|
3681
|
+
name = "windows_x86_64_gnullvm"
|
|
3682
|
+
version = "0.48.5"
|
|
3683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3684
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
3685
|
+
|
|
3686
|
+
[[package]]
|
|
3687
|
+
name = "windows_x86_64_gnullvm"
|
|
3688
|
+
version = "0.52.5"
|
|
3689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3690
|
+
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
|
3691
|
+
|
|
3692
|
+
[[package]]
|
|
3693
|
+
name = "windows_x86_64_msvc"
|
|
3694
|
+
version = "0.48.5"
|
|
3695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3696
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
3697
|
+
|
|
3698
|
+
[[package]]
|
|
3699
|
+
name = "windows_x86_64_msvc"
|
|
3700
|
+
version = "0.52.5"
|
|
3701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3702
|
+
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|
|
3703
|
+
|
|
3704
|
+
[[package]]
|
|
3705
|
+
name = "winnow"
|
|
3706
|
+
version = "0.5.40"
|
|
3707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3708
|
+
checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
|
|
3709
|
+
dependencies = [
|
|
3710
|
+
"memchr",
|
|
3711
|
+
]
|
|
3712
|
+
|
|
3713
|
+
[[package]]
|
|
3714
|
+
name = "yew"
|
|
3715
|
+
version = "0.21.0"
|
|
3716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3717
|
+
checksum = "5f1a03f255c70c7aa3e9c62e15292f142ede0564123543c1cc0c7a4f31660cac"
|
|
3718
|
+
dependencies = [
|
|
3719
|
+
"console_error_panic_hook",
|
|
3720
|
+
"futures",
|
|
3721
|
+
"gloo 0.10.0",
|
|
3722
|
+
"implicit-clone",
|
|
3723
|
+
"indexmap 2.2.6",
|
|
3724
|
+
"js-sys",
|
|
3725
|
+
"prokio",
|
|
3726
|
+
"rustversion",
|
|
3727
|
+
"serde",
|
|
3728
|
+
"slab",
|
|
3729
|
+
"thiserror",
|
|
3730
|
+
"tokio",
|
|
3731
|
+
"tracing",
|
|
3732
|
+
"wasm-bindgen",
|
|
3733
|
+
"wasm-bindgen-futures",
|
|
3734
|
+
"web-sys",
|
|
3735
|
+
"yew-macro",
|
|
3736
|
+
]
|
|
3737
|
+
|
|
3738
|
+
[[package]]
|
|
3739
|
+
name = "yew-fmt"
|
|
3740
|
+
version = "0.5.1"
|
|
3741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3742
|
+
checksum = "5dd6092bf0a95eb3d61a085a9f079c67fa19ba365455df6b6036c544e22b5ce0"
|
|
3743
|
+
dependencies = [
|
|
3744
|
+
"anyhow",
|
|
3745
|
+
"basic-toml",
|
|
3746
|
+
"bumpalo",
|
|
3747
|
+
"clap",
|
|
3748
|
+
"codespan-reporting",
|
|
3749
|
+
"diffy",
|
|
3750
|
+
"dirs",
|
|
3751
|
+
"proc-macro2 1.0.83",
|
|
3752
|
+
"quote 1.0.36",
|
|
3753
|
+
"serde",
|
|
3754
|
+
"syn 2.0.66",
|
|
3755
|
+
]
|
|
3756
|
+
|
|
3757
|
+
[[package]]
|
|
3758
|
+
name = "yew-macro"
|
|
3759
|
+
version = "0.21.0"
|
|
3760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3761
|
+
checksum = "02fd8ca5166d69e59f796500a2ce432ff751edecbbb308ca59fd3fe4d0343de2"
|
|
3762
|
+
dependencies = [
|
|
3763
|
+
"boolinator",
|
|
3764
|
+
"once_cell",
|
|
3765
|
+
"prettyplease",
|
|
3766
|
+
"proc-macro-error",
|
|
3767
|
+
"proc-macro2 1.0.83",
|
|
3768
|
+
"quote 1.0.36",
|
|
3769
|
+
"syn 2.0.66",
|
|
3770
|
+
]
|
|
3771
|
+
|
|
3772
|
+
[[package]]
|
|
3773
|
+
name = "zune-inflate"
|
|
3774
|
+
version = "0.2.54"
|
|
3775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3776
|
+
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
|
|
3777
|
+
dependencies = [
|
|
3778
|
+
"simd-adler32",
|
|
3779
|
+
]
|