perspective-python 2.9.0__tar.gz → 3.0.0rc1__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-2.9.0/perspective/extension → perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab}/install.json +1 -1
- {perspective-python-2.9.0/perspective/labextension → perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab}/package.json +22 -20
- perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.d2836dfacdf59284d040.js +18 -0
- perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/905.d3bbc3d5954582d507bb.js +1 -0
- perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.2d936c1eb55465604308.js +1 -0
- {perspective-python-2.9.0/perspective/labextension → perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab}/static/third-party-licenses.json +2 -2
- perspective_python-3.0.0rc1/Cargo.lock +3779 -0
- perspective-python-2.9.0/perspective/table/__init__.py → perspective_python-3.0.0rc1/Cargo.toml +13 -4
- perspective_python-3.0.0rc1/PKG-INFO +13 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/__init__.py +62 -7
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/handlers/__init__.py +3 -5
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/handlers/aiohttp.py +14 -25
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/handlers/starlette.py +15 -26
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/handlers/tornado.py +27 -29
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/templates/exported_widget.html.jinja +1 -1
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/conftest.py +37 -7
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/core/test_async.py +115 -87
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/core/test_threadpool.py +17 -10
- perspective_python-3.0.0rc1/perspective/tests/server/test_server.py +1062 -0
- perspective_python-3.0.0rc1/perspective/tests/server/test_session.py +55 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/single_threaded/test_single_threaded.py +15 -6
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/object_sequence.py +145 -35
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_delete.py +8 -5
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_exception.py +12 -7
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_leaks.py +9 -1
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_ports.py +18 -5
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_remove.py +7 -4
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_table.py +284 -131
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_table_arrow.py +193 -72
- perspective_python-3.0.0rc1/perspective/tests/table/test_table_datetime.py +2409 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_table_infer.py +72 -37
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_table_limit.py +22 -8
- perspective_python-3.0.0rc1/perspective/tests/table/test_table_numpy.py +1022 -0
- perspective_python-3.0.0rc1/perspective/tests/table/test_table_pandas.py +1018 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_to_arrow.py +190 -98
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_to_arrow_lz4.py +5 -2
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_to_format.py +126 -78
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_update.py +191 -71
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_update_arrow.py +282 -146
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_update_numpy.py +138 -54
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_update_pandas.py +90 -48
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_view.py +279 -167
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_view_expression.py +505 -288
- perspective_python-3.0.0rc1/perspective/tests/viewer/test_validate.py +70 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/viewer/test_viewer.py +22 -11
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/widget/test_widget.py +77 -23
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/widget/test_widget_pandas.py +240 -39
- perspective-python-2.9.0/perspective/manager/__init__.py → perspective_python-3.0.0rc1/perspective/viewer/validate.py +9 -3
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/viewer/viewer.py +87 -71
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/viewer/viewer_traitlets.py +40 -43
- perspective_python-3.0.0rc1/perspective/widget/widget.py +269 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/pyproject.toml +20 -12
- perspective-python-2.9.0/perspective/libpsp.py → perspective_python-3.0.0rc1/rust/perspective-client/Cargo.toml +47 -33
- perspective_python-3.0.0rc1/rust/perspective-client/build.rs +65 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/client/get_hosted_table_names.md +20 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/client/open_table.md +16 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/client/set_loop_callback.md +7 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/client/system_info.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/client/table.md +58 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/client/terminate.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/client.md +18 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/clear.md +5 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/columns.md +10 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/delete.md +6 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/get_client.md +0 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/get_features.md +0 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/get_index.md +25 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/get_limit.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/get_num_views.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/make_port.md +2 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/on_delete.md +5 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/remove.md +18 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/remove_delete.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/replace.md +2 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/schema.md +13 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/size.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/update.md +6 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/validate_expressions.md +11 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/view.md +3 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table.md +14 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/collapse.md +11 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/column_paths.md +3 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/delete.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/dimensions.md +11 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/expand.md +11 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/expression_schema.md +3 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/get_config.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/get_min_max.md +5 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/num_columns.md +5 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/num_rows.md +5 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/on_delete.md +8 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/on_update.md +19 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/remove_delete.md +9 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/remove_update.md +9 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/schema.md +13 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/set_depth.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/to_arrow.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/to_columns.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/to_columns_string.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/to_csv.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/to_json.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/to_json_string.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view.md +387 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/client.rs +356 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/aggregates.rs +312 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/column_type.rs +74 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/expressions.rs +104 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/filters.rs +195 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/mod.rs +29 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/plugin.rs +67 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/sort.rs +146 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/view_config.rs +259 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/lib.rs +104 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/proto.rs +1065 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/session.rs +141 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/table.rs +357 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/table_data.rs +75 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/utils/clone.rs +83 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/utils/logging.rs +108 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/utils/mod.rs +71 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/utils/tests/clone.rs +83 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/utils/tests/mod.rs +13 -0
- perspective_python-3.0.0rc1/rust/perspective-client/src/rust/view.rs +376 -0
- perspective-python-2.9.0/perspective/tests/core/test_layout.py → perspective_python-3.0.0rc1/rust/perspective-python/Cargo.toml +48 -28
- {perspective-python-2.9.0/perspective/core/data → perspective_python-3.0.0rc1/rust/perspective-python/bench/runtime}/__init__.py +3 -2
- perspective_python-3.0.0rc1/rust/perspective-python/bench/runtime/bench.py +349 -0
- perspective_python-3.0.0rc1/rust/perspective-python/bench/runtime/perspective_benchmark.py +242 -0
- perspective_python-3.0.0rc1/rust/perspective-python/bench/runtime/run_perspective_benchmark.py +80 -0
- perspective_python-3.0.0rc1/rust/perspective-python/bench/tornado/__init__.py +15 -0
- perspective_python-3.0.0rc1/rust/perspective-python/bench/tornado/async_server.py +163 -0
- perspective_python-3.0.0rc1/rust/perspective-python/bench/tornado/bench.py +196 -0
- perspective-python-2.9.0/perspective/manager/session.py → perspective_python-3.0.0rc1/rust/perspective-python/bench/tornado/distributed_mode.py +54 -41
- perspective_python-3.0.0rc1/rust/perspective-python/bench/tornado/server/new_api.py +113 -0
- perspective_python-3.0.0rc1/rust/perspective-python/bench/tornado/server/old_api.py +104 -0
- perspective-python-2.9.0/perspective/core/aggregate.py → perspective_python-3.0.0rc1/rust/perspective-python/bench/tornado/server_mode.py +37 -38
- perspective_python-3.0.0rc1/rust/perspective-python/docs/client/get_hosted_table_names.md +20 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/client/open_table.md +16 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/client/set_loop_callback.md +7 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/client/system_info.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/client/table.md +58 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/client/terminate.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/client.md +18 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/clear.md +5 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/columns.md +10 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/delete.md +6 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/get_client.md +0 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/get_features.md +0 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/get_index.md +25 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/get_limit.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/get_num_views.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/make_port.md +2 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/on_delete.md +5 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/remove.md +18 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/remove_delete.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/replace.md +2 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/schema.md +13 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/size.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/update.md +6 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/validate_expressions.md +11 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/view.md +3 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table.md +14 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/collapse.md +11 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/column_paths.md +3 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/delete.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/dimensions.md +11 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/expand.md +11 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/expression_schema.md +3 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/get_config.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/get_min_max.md +5 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/num_columns.md +5 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/num_rows.md +5 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/on_delete.md +8 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/on_update.md +19 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/remove_delete.md +9 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/remove_update.md +9 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/schema.md +13 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/set_depth.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/to_arrow.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/to_columns.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/to_columns_string.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/to_csv.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/to_json.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/to_json_string.md +1 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view.md +387 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/__init__.py +78 -0
- {perspective-python-2.9.0/perspective/client → perspective_python-3.0.0rc1/rust/perspective-python/perspective/handlers}/__init__.py +6 -3
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/handlers/aiohttp.py +54 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/handlers/starlette.py +51 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/handlers/tornado.py +61 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/conftest.py +268 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/core/__init__.py +11 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/core/test_async.py +436 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/core/test_threadpool.py +48 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/server/__init__.py +11 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/server/test_server.py +1062 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/server/test_session.py +55 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/single_threaded/test_single_threaded.py +61 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/__init__.py +11 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/object_sequence.py +402 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_delete.py +124 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_exception.py +53 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_leaks.py +54 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_ports.py +178 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_remove.py +102 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_table.py +610 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_table_arrow.py +452 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_table_datetime.py +2409 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_table_infer.py +201 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_table_limit.py +43 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_table_numpy.py +1022 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_table_pandas.py +1018 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_to_arrow.py +414 -0
- perspective-python-2.9.0/perspective/core/sort.py → perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_to_arrow_lz4.py +17 -20
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_to_format.py +1024 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_update.py +545 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_update_arrow.py +980 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_update_numpy.py +252 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_update_pandas.py +211 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_view.py +2235 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_view_expression.py +1940 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/viewer/__init__.py +11 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/viewer/test_validate.py +70 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/viewer/test_viewer.py +245 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/widget/__init__.py +11 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/widget/test_widget.py +278 -0
- perspective_python-3.0.0rc1/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.0rc1/rust/perspective-python/perspective/viewer/__init__.py +3 -1
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/viewer/validate.py +22 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/viewer/viewer.py +331 -0
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/viewer/viewer_traitlets.py +101 -0
- perspective-python-2.9.0/perspective/core/exception.py → perspective_python-3.0.0rc1/rust/perspective-python/perspective/widget/__init__.py +2 -3
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/widget/widget.py +269 -0
- perspective_python-3.0.0rc1/rust/perspective-python/src/client/client_sync.rs +365 -0
- perspective_python-3.0.0rc1/rust/perspective-python/src/client/mod.rs +17 -0
- perspective_python-3.0.0rc1/rust/perspective-python/src/client/python.rs +680 -0
- perspective_python-3.0.0rc1/rust/perspective-python/src/lib.rs +55 -0
- perspective_python-3.0.0rc1/rust/perspective-python/src/server/mod.rs +15 -0
- perspective_python-3.0.0rc1/rust/perspective-python/src/server/server_sync.rs +114 -0
- perspective-python-2.9.0/perspective/core/plugin.py → perspective_python-3.0.0rc1/rust/perspective-server/Cargo.toml +41 -42
- perspective_python-3.0.0rc1/rust/perspective-server/build.rs +171 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/arrow/CMakeLists.txt +0 -6
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/hopscotch.txt.in +1 -1
- perspective_python-3.0.0rc1/rust/perspective-server/cmake/modules/.clangd.in +3 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/modules/FindInstallDependency.cmake +18 -3
- perspective_python-3.0.0rc1/rust/perspective-server/cmake/modules/FindProtoc.cmake +124 -0
- perspective_python-3.0.0rc1/rust/perspective-server/cmake/modules/SetupClangd.cmake +42 -0
- perspective_python-3.0.0rc1/rust/perspective-server/cmake/protobuf.txt.in +24 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/rapidjson.txt.in +1 -1
- perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/.clangd.in +3 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/CMakeLists.txt +187 -152
- perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/build.js +50 -0
- perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/env.js +15 -0
- perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/package.json +16 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/arrow_csv.cpp +5 -4
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/arrow_loader.cpp +50 -32
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/arrow_writer.cpp +1 -1
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/base.cpp +29 -21
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/column.cpp +6 -7
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/data_table.cpp +24 -23
- perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/cpp/emscripten_api.cpp +156 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/gnode.cpp +3 -3
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/pool.cpp +30 -46
- perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/cpp/proto_api.cpp +68 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/pyutils.cpp +3 -3
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/schema.cpp +2 -2
- perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/cpp/server.cpp +2410 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/storage.cpp +3 -19
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/sym_table.cpp +0 -1
- perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/cpp/table.cpp +1543 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/time.cpp +2 -2
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/update_task.cpp +4 -1
- perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/cpp/utils.cpp +150 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/view.cpp +356 -63
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/arrow_csv.h +2 -2
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/arrow_loader.h +3 -3
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/base.h +35 -17
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/data_table.h +8 -8
- perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/include/perspective/emscripten_api_utils.h +32 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/exception.h +3 -2
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/first.h +4 -4
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/gnode.h +3 -3
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/parallel_for.h +18 -1
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/pool.h +14 -20
- perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/include/perspective/proto_api.h +46 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/pyutils.h +13 -16
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/scalar.h +1 -1
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/schema.h +1 -1
- perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/include/perspective/server.h +595 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/storage.h +1 -1
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/table.h +55 -6
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/update_task.h +3 -1
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/utils.h +18 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/view.h +39 -8
- perspective_python-3.0.0rc1/rust/perspective-server/cpp/protos/CMakeLists.txt +34 -0
- perspective_python-3.0.0rc1/rust/perspective-server/cpp/protos/perspective.proto +503 -0
- perspective_python-3.0.0rc1/rust/perspective-server/include/server.h +32 -0
- perspective_python-3.0.0rc1/rust/perspective-server/src/ffi.rs +67 -0
- perspective_python-3.0.0rc1/rust/perspective-server/src/lib.rs +247 -0
- perspective_python-3.0.0rc1/rust/perspective-server/src/server.cpp +67 -0
- 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/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/labextension/static/620.8cd0fc46c82634b68818.js.LICENSE.txt → /perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.d2836dfacdf59284d040.js.LICENSE.txt +0 -0
- {perspective-python-2.9.0/perspective/labextension → perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab}/static/style.js +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/extension/finos-perspective-nbextension.json +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/__init__.py +0 -0
- {perspective-python-2.9.0/perspective/tests/client_mode → perspective_python-3.0.0rc1/perspective/tests/core}/__init__.py +0 -0
- {perspective-python-2.9.0/perspective/tests/core → perspective_python-3.0.0rc1/perspective/tests/server}/__init__.py +0 -0
- {perspective-python-2.9.0/perspective/tests/handlers → perspective_python-3.0.0rc1/perspective/tests/table}/__init__.py +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/arrow/date32.arrow +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/arrow/date64.arrow +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/arrow/dict.arrow +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/arrow/dict_update.arrow +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/arrow/int_float_str.arrow +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/arrow/int_float_str_file.arrow +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/arrow/int_float_str_update.arrow +0 -0
- {perspective-python-2.9.0/perspective/tests/manager → perspective_python-3.0.0rc1/perspective/tests/viewer}/__init__.py +0 -0
- {perspective-python-2.9.0/perspective/tests/table → perspective_python-3.0.0rc1/perspective/tests/widget}/__init__.py +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/viewer/__init__.py +0 -0
- {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/widget/__init__.py +0 -0
- {perspective-python-2.9.0/perspective/tests/viewer → perspective_python-3.0.0rc1/rust/perspective-python/bench}/__init__.py +0 -0
- {perspective-python-2.9.0/perspective/tests/widget → perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests}/__init__.py +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/Pybind.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/arrow/config.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/arrow.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/date.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/double-conversion.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/exprtk.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/flatbuffers.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/lz4.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/modules/FindColor.cmake +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/modules/FindExprTk.cmake +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/modules/FindFlatbuffers.cmake +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/modules/FindRe2.cmake +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/modules/LLVMToolchain.cmake +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/ordered-map.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/re2/CMakeLists.txt +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/re2.txt.in +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/aggregate.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/aggspec.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/arg_sort.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/base_impl_linux.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/base_impl_osx.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/base_impl_wasm.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/base_impl_win.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/binding.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/comparators.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/compat.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/compat_impl_linux.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/compat_impl_osx.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/compat_impl_wasm.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/compat_impl_win.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/computed_expression.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/computed_function.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/config.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_base.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_grouped_pkey.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_handle.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_iterators.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_one.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_two.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_unit.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_zero.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/data.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/data_slice.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/date.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/date_parser.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/dense_nodes.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/dense_tree.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/dense_tree_context.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/dependency.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/expression_tables.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/expression_vocab.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/extract_aggregate.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/filter.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/flat_traversal.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/get_data_extents.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/gnode_state.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/init.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/kernel_engine.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/main.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/mask.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/multi_sort.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/none.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/path.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/pivot.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/port.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/process_state.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/raii.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/raii_impl_linux.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/raii_impl_osx.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/raii_impl_win.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/range.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/regex.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/rlookup.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/scalar.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/schema_column.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/simple_bitmask.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/slice.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/sort_specification.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/sparse_tree.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/sparse_tree_node.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/step_delta.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/storage_impl_linux.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/storage_impl_osx.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/storage_impl_win.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/tracing.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/tracing_impl_linux.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/tracing_impl_osx.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/traversal.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/traversal_nodes.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/tree_context_common.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/vendor/arrow_compute_registry.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/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.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/vendor/single_threaded_reader.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/view_config.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/vocab.cpp +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/aggregate.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/aggspec.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/arg_sort.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/arrow_writer.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/binding.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/column.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/comparators.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/compat.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/computed_expression.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/computed_function.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/config.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/context_base.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/context_common_decls.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/context_grouped_pkey.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/context_handle.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/context_one.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/context_two.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/context_unit.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/context_zero.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/data.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/data_accessor.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/data_slice.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/date.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/date_parser.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/debug_helpers.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/defaults.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/dense_nodes.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/dense_tree.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/dense_tree_context.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/dependency.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/env_vars.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/exports.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/expression_tables.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/expression_vocab.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/exprtk.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/extract_aggregate.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/filter.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/filter_utils.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/flat_traversal.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/flatten.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/fragments.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/get_data_extents.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/gnode_state.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/index.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/init.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/iterator.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/kernel_engine.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/last.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/mask.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/multi_sort.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/node_processor.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/node_processor_types.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/none.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/partition.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/path.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/pivot.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/port.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/portable.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/process_state.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/raii.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/range.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/raw_types.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/regex.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/rlookup.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/schema_column.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/simple_bitmask.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/slice.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/sort_specification.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/sparse_tree.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/sparse_tree_node.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/step_delta.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/sym_table.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/time.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/tracing.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/tracing_impl_linux.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/tracing_impl_osx.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/tracing_impl_win.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/traversal.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/traversal_nodes.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/tree_context_common.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/tree_iterator.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/val.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/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.0rc1/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.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/view_config.h +0 -0
- {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/vocab.h +0 -0
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finos/perspective-jupyterlab",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-rc.1",
|
|
4
4
|
"description": "A Jupyterlab extension for the Perspective library, designed to be used with perspective-python.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/**/*",
|
|
7
7
|
"src/**/*"
|
|
8
8
|
],
|
|
9
|
+
"type": "commonjs",
|
|
9
10
|
"main": "dist/esm/perspective-jupyterlab.js",
|
|
10
11
|
"style": "dist/css/perspective-jupyterlab.css",
|
|
11
12
|
"directories": {
|
|
@@ -20,40 +21,41 @@
|
|
|
20
21
|
"bench:build": "echo \"No Benchmarks\"",
|
|
21
22
|
"bench:run": "echo \"No Benchmarks\"",
|
|
22
23
|
"build": "npm-run-all build:js build:labextension",
|
|
23
|
-
"build:js": "node build.
|
|
24
|
+
"build:js": "node build.mjs",
|
|
24
25
|
"build:labextension": "jupyter labextension build .",
|
|
25
26
|
"clean": "npm-run-all clean:*",
|
|
26
27
|
"clean:dist": "rimraf dist",
|
|
27
28
|
"clean:lib": "rimraf lib",
|
|
28
|
-
"clean:labextension": "rimraf ../../
|
|
29
|
-
"clean:nbextension": "rimraf ../../
|
|
30
|
-
"test:build": "node build.
|
|
29
|
+
"clean:labextension": "rimraf ../../rust/perspective-python/perspective/labextension",
|
|
30
|
+
"clean:nbextension": "rimraf ../../rust/perspective-python/perspective/nbextension/static",
|
|
31
|
+
"test:build": "node build.mjs --test",
|
|
31
32
|
"test:jupyter:build": "cpy \"test/arrow/*\" dist/esm",
|
|
32
|
-
"test:jupyter": "__JUPYTERLAB_PORT__=6538 npx playwright test --config ../../tools/perspective-test/playwright.config.
|
|
33
|
+
"test:jupyter": "__JUPYTERLAB_PORT__=6538 npx playwright test --config ../../tools/perspective-test/playwright.config.ts -- --jupyter",
|
|
33
34
|
"test": "npm-run-all test:build",
|
|
34
35
|
"version": "yarn build"
|
|
35
36
|
},
|
|
36
37
|
"dependencies": {
|
|
37
|
-
"@finos/perspective": "
|
|
38
|
-
"@finos/perspective-viewer": "
|
|
39
|
-
"@finos/perspective-viewer-d3fc": "
|
|
40
|
-
"@finos/perspective-viewer-datagrid": "
|
|
41
|
-
"@finos/perspective-viewer-openlayers": "
|
|
42
|
-
"@jupyter-widgets/base": "
|
|
43
|
-
"@jupyterlab/application": "
|
|
44
|
-
"@lumino/application": "
|
|
45
|
-
"@lumino/widgets": "
|
|
38
|
+
"@finos/perspective": "workspace:^",
|
|
39
|
+
"@finos/perspective-viewer": "workspace:^",
|
|
40
|
+
"@finos/perspective-viewer-d3fc": "workspace:^",
|
|
41
|
+
"@finos/perspective-viewer-datagrid": "workspace:^",
|
|
42
|
+
"@finos/perspective-viewer-openlayers": "workspace:^",
|
|
43
|
+
"@jupyter-widgets/base": ">2 <5",
|
|
44
|
+
"@jupyterlab/application": ">2 <5",
|
|
45
|
+
"@lumino/application": "<3",
|
|
46
|
+
"@lumino/widgets": "<3"
|
|
46
47
|
},
|
|
47
48
|
"devDependencies": {
|
|
48
|
-
"@finos/perspective-esbuild-plugin": "
|
|
49
|
-
"@finos/perspective-test": "
|
|
50
|
-
"@jupyterlab/builder": "^
|
|
49
|
+
"@finos/perspective-esbuild-plugin": "workspace:^",
|
|
50
|
+
"@finos/perspective-test": "workspace:^",
|
|
51
|
+
"@jupyterlab/builder": "^4",
|
|
51
52
|
"@prospective.co/procss": "^0.1.15",
|
|
52
53
|
"cpy": "^9.0.1"
|
|
53
54
|
},
|
|
54
55
|
"jupyterlab": {
|
|
56
|
+
"webpackConfig": "./webpack.config.js",
|
|
55
57
|
"extension": true,
|
|
56
|
-
"outputDir": "../../python/perspective/perspective
|
|
58
|
+
"outputDir": "../../rust/perspective-python/perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab",
|
|
57
59
|
"sharedPackages": {
|
|
58
60
|
"@jupyter-widgets/base": {
|
|
59
61
|
"bundled": false,
|
|
@@ -71,7 +73,7 @@
|
|
|
71
73
|
}
|
|
72
74
|
},
|
|
73
75
|
"_build": {
|
|
74
|
-
"load": "static/remoteEntry.
|
|
76
|
+
"load": "static/remoteEntry.2d936c1eb55465604308.js",
|
|
75
77
|
"extension": "./extension",
|
|
76
78
|
"style": "./style"
|
|
77
79
|
}
|