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.
Files changed (601) hide show
  1. {perspective-python-2.9.0/perspective/extension → perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab}/install.json +1 -1
  2. {perspective-python-2.9.0/perspective/labextension → perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab}/package.json +22 -20
  3. perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.d2836dfacdf59284d040.js +18 -0
  4. perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/905.d3bbc3d5954582d507bb.js +1 -0
  5. perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.2d936c1eb55465604308.js +1 -0
  6. {perspective-python-2.9.0/perspective/labextension → perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab}/static/third-party-licenses.json +2 -2
  7. perspective_python-3.0.0rc1/Cargo.lock +3779 -0
  8. perspective-python-2.9.0/perspective/table/__init__.py → perspective_python-3.0.0rc1/Cargo.toml +13 -4
  9. perspective_python-3.0.0rc1/PKG-INFO +13 -0
  10. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/__init__.py +62 -7
  11. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/handlers/__init__.py +3 -5
  12. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/handlers/aiohttp.py +14 -25
  13. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/handlers/starlette.py +15 -26
  14. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/handlers/tornado.py +27 -29
  15. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/templates/exported_widget.html.jinja +1 -1
  16. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/conftest.py +37 -7
  17. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/core/test_async.py +115 -87
  18. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/core/test_threadpool.py +17 -10
  19. perspective_python-3.0.0rc1/perspective/tests/server/test_server.py +1062 -0
  20. perspective_python-3.0.0rc1/perspective/tests/server/test_session.py +55 -0
  21. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/single_threaded/test_single_threaded.py +15 -6
  22. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/object_sequence.py +145 -35
  23. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_delete.py +8 -5
  24. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_exception.py +12 -7
  25. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_leaks.py +9 -1
  26. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_ports.py +18 -5
  27. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_remove.py +7 -4
  28. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_table.py +284 -131
  29. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_table_arrow.py +193 -72
  30. perspective_python-3.0.0rc1/perspective/tests/table/test_table_datetime.py +2409 -0
  31. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_table_infer.py +72 -37
  32. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_table_limit.py +22 -8
  33. perspective_python-3.0.0rc1/perspective/tests/table/test_table_numpy.py +1022 -0
  34. perspective_python-3.0.0rc1/perspective/tests/table/test_table_pandas.py +1018 -0
  35. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_to_arrow.py +190 -98
  36. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_to_arrow_lz4.py +5 -2
  37. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_to_format.py +126 -78
  38. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_update.py +191 -71
  39. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_update_arrow.py +282 -146
  40. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_update_numpy.py +138 -54
  41. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_update_pandas.py +90 -48
  42. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_view.py +279 -167
  43. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/test_view_expression.py +505 -288
  44. perspective_python-3.0.0rc1/perspective/tests/viewer/test_validate.py +70 -0
  45. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/viewer/test_viewer.py +22 -11
  46. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/widget/test_widget.py +77 -23
  47. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/widget/test_widget_pandas.py +240 -39
  48. perspective-python-2.9.0/perspective/manager/__init__.py → perspective_python-3.0.0rc1/perspective/viewer/validate.py +9 -3
  49. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/viewer/viewer.py +87 -71
  50. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/viewer/viewer_traitlets.py +40 -43
  51. perspective_python-3.0.0rc1/perspective/widget/widget.py +269 -0
  52. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/pyproject.toml +20 -12
  53. perspective-python-2.9.0/perspective/libpsp.py → perspective_python-3.0.0rc1/rust/perspective-client/Cargo.toml +47 -33
  54. perspective_python-3.0.0rc1/rust/perspective-client/build.rs +65 -0
  55. perspective_python-3.0.0rc1/rust/perspective-client/docs/client/get_hosted_table_names.md +20 -0
  56. perspective_python-3.0.0rc1/rust/perspective-client/docs/client/open_table.md +16 -0
  57. perspective_python-3.0.0rc1/rust/perspective-client/docs/client/set_loop_callback.md +7 -0
  58. perspective_python-3.0.0rc1/rust/perspective-client/docs/client/system_info.md +1 -0
  59. perspective_python-3.0.0rc1/rust/perspective-client/docs/client/table.md +58 -0
  60. perspective_python-3.0.0rc1/rust/perspective-client/docs/client/terminate.md +1 -0
  61. perspective_python-3.0.0rc1/rust/perspective-client/docs/client.md +18 -0
  62. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/clear.md +5 -0
  63. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/columns.md +10 -0
  64. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/delete.md +6 -0
  65. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/get_client.md +0 -0
  66. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/get_features.md +0 -0
  67. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/get_index.md +25 -0
  68. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/get_limit.md +1 -0
  69. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/get_num_views.md +1 -0
  70. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/make_port.md +2 -0
  71. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/on_delete.md +5 -0
  72. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/remove.md +18 -0
  73. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/remove_delete.md +1 -0
  74. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/replace.md +2 -0
  75. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/schema.md +13 -0
  76. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/size.md +1 -0
  77. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/update.md +6 -0
  78. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/validate_expressions.md +11 -0
  79. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/view.md +3 -0
  80. perspective_python-3.0.0rc1/rust/perspective-client/docs/table.md +14 -0
  81. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/collapse.md +11 -0
  82. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/column_paths.md +3 -0
  83. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/delete.md +1 -0
  84. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/dimensions.md +11 -0
  85. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/expand.md +11 -0
  86. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/expression_schema.md +3 -0
  87. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/get_config.md +1 -0
  88. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/get_min_max.md +5 -0
  89. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/num_columns.md +5 -0
  90. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/num_rows.md +5 -0
  91. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/on_delete.md +8 -0
  92. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/on_update.md +19 -0
  93. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/remove_delete.md +9 -0
  94. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/remove_update.md +9 -0
  95. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/schema.md +13 -0
  96. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/set_depth.md +1 -0
  97. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/to_arrow.md +1 -0
  98. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/to_columns.md +1 -0
  99. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/to_columns_string.md +1 -0
  100. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/to_csv.md +1 -0
  101. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/to_json.md +1 -0
  102. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/to_json_string.md +1 -0
  103. perspective_python-3.0.0rc1/rust/perspective-client/docs/view.md +387 -0
  104. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/client.rs +356 -0
  105. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/aggregates.rs +312 -0
  106. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/column_type.rs +74 -0
  107. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/expressions.rs +104 -0
  108. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/filters.rs +195 -0
  109. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/mod.rs +29 -0
  110. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/plugin.rs +67 -0
  111. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/sort.rs +146 -0
  112. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/config/view_config.rs +259 -0
  113. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/lib.rs +104 -0
  114. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/proto.rs +1065 -0
  115. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/session.rs +141 -0
  116. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/table.rs +357 -0
  117. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/table_data.rs +75 -0
  118. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/utils/clone.rs +83 -0
  119. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/utils/logging.rs +108 -0
  120. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/utils/mod.rs +71 -0
  121. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/utils/tests/clone.rs +83 -0
  122. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/utils/tests/mod.rs +13 -0
  123. perspective_python-3.0.0rc1/rust/perspective-client/src/rust/view.rs +376 -0
  124. perspective-python-2.9.0/perspective/tests/core/test_layout.py → perspective_python-3.0.0rc1/rust/perspective-python/Cargo.toml +48 -28
  125. {perspective-python-2.9.0/perspective/core/data → perspective_python-3.0.0rc1/rust/perspective-python/bench/runtime}/__init__.py +3 -2
  126. perspective_python-3.0.0rc1/rust/perspective-python/bench/runtime/bench.py +349 -0
  127. perspective_python-3.0.0rc1/rust/perspective-python/bench/runtime/perspective_benchmark.py +242 -0
  128. perspective_python-3.0.0rc1/rust/perspective-python/bench/runtime/run_perspective_benchmark.py +80 -0
  129. perspective_python-3.0.0rc1/rust/perspective-python/bench/tornado/__init__.py +15 -0
  130. perspective_python-3.0.0rc1/rust/perspective-python/bench/tornado/async_server.py +163 -0
  131. perspective_python-3.0.0rc1/rust/perspective-python/bench/tornado/bench.py +196 -0
  132. perspective-python-2.9.0/perspective/manager/session.py → perspective_python-3.0.0rc1/rust/perspective-python/bench/tornado/distributed_mode.py +54 -41
  133. perspective_python-3.0.0rc1/rust/perspective-python/bench/tornado/server/new_api.py +113 -0
  134. perspective_python-3.0.0rc1/rust/perspective-python/bench/tornado/server/old_api.py +104 -0
  135. perspective-python-2.9.0/perspective/core/aggregate.py → perspective_python-3.0.0rc1/rust/perspective-python/bench/tornado/server_mode.py +37 -38
  136. perspective_python-3.0.0rc1/rust/perspective-python/docs/client/get_hosted_table_names.md +20 -0
  137. perspective_python-3.0.0rc1/rust/perspective-python/docs/client/open_table.md +16 -0
  138. perspective_python-3.0.0rc1/rust/perspective-python/docs/client/set_loop_callback.md +7 -0
  139. perspective_python-3.0.0rc1/rust/perspective-python/docs/client/system_info.md +1 -0
  140. perspective_python-3.0.0rc1/rust/perspective-python/docs/client/table.md +58 -0
  141. perspective_python-3.0.0rc1/rust/perspective-python/docs/client/terminate.md +1 -0
  142. perspective_python-3.0.0rc1/rust/perspective-python/docs/client.md +18 -0
  143. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/clear.md +5 -0
  144. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/columns.md +10 -0
  145. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/delete.md +6 -0
  146. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/get_client.md +0 -0
  147. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/get_features.md +0 -0
  148. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/get_index.md +25 -0
  149. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/get_limit.md +1 -0
  150. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/get_num_views.md +1 -0
  151. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/make_port.md +2 -0
  152. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/on_delete.md +5 -0
  153. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/remove.md +18 -0
  154. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/remove_delete.md +1 -0
  155. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/replace.md +2 -0
  156. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/schema.md +13 -0
  157. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/size.md +1 -0
  158. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/update.md +6 -0
  159. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/validate_expressions.md +11 -0
  160. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/view.md +3 -0
  161. perspective_python-3.0.0rc1/rust/perspective-python/docs/table.md +14 -0
  162. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/collapse.md +11 -0
  163. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/column_paths.md +3 -0
  164. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/delete.md +1 -0
  165. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/dimensions.md +11 -0
  166. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/expand.md +11 -0
  167. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/expression_schema.md +3 -0
  168. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/get_config.md +1 -0
  169. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/get_min_max.md +5 -0
  170. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/num_columns.md +5 -0
  171. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/num_rows.md +5 -0
  172. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/on_delete.md +8 -0
  173. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/on_update.md +19 -0
  174. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/remove_delete.md +9 -0
  175. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/remove_update.md +9 -0
  176. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/schema.md +13 -0
  177. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/set_depth.md +1 -0
  178. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/to_arrow.md +1 -0
  179. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/to_columns.md +1 -0
  180. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/to_columns_string.md +1 -0
  181. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/to_csv.md +1 -0
  182. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/to_json.md +1 -0
  183. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/to_json_string.md +1 -0
  184. perspective_python-3.0.0rc1/rust/perspective-python/docs/view.md +387 -0
  185. perspective_python-3.0.0rc1/rust/perspective-python/perspective/__init__.py +78 -0
  186. {perspective-python-2.9.0/perspective/client → perspective_python-3.0.0rc1/rust/perspective-python/perspective/handlers}/__init__.py +6 -3
  187. perspective_python-3.0.0rc1/rust/perspective-python/perspective/handlers/aiohttp.py +54 -0
  188. perspective_python-3.0.0rc1/rust/perspective-python/perspective/handlers/starlette.py +51 -0
  189. perspective_python-3.0.0rc1/rust/perspective-python/perspective/handlers/tornado.py +61 -0
  190. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/conftest.py +268 -0
  191. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/core/__init__.py +11 -0
  192. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/core/test_async.py +436 -0
  193. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/core/test_threadpool.py +48 -0
  194. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/server/__init__.py +11 -0
  195. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/server/test_server.py +1062 -0
  196. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/server/test_session.py +55 -0
  197. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/single_threaded/test_single_threaded.py +61 -0
  198. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/__init__.py +11 -0
  199. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/object_sequence.py +402 -0
  200. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_delete.py +124 -0
  201. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_exception.py +53 -0
  202. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_leaks.py +54 -0
  203. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_ports.py +178 -0
  204. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_remove.py +102 -0
  205. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_table.py +610 -0
  206. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_table_arrow.py +452 -0
  207. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_table_datetime.py +2409 -0
  208. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_table_infer.py +201 -0
  209. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_table_limit.py +43 -0
  210. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_table_numpy.py +1022 -0
  211. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_table_pandas.py +1018 -0
  212. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_to_arrow.py +414 -0
  213. 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
  214. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_to_format.py +1024 -0
  215. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_update.py +545 -0
  216. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_update_arrow.py +980 -0
  217. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_update_numpy.py +252 -0
  218. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_update_pandas.py +211 -0
  219. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_view.py +2235 -0
  220. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_view_expression.py +1940 -0
  221. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/viewer/__init__.py +11 -0
  222. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/viewer/test_validate.py +70 -0
  223. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/viewer/test_viewer.py +245 -0
  224. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/widget/__init__.py +11 -0
  225. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/widget/test_widget.py +278 -0
  226. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/widget/test_widget_pandas.py +453 -0
  227. perspective-python-2.9.0/perspective/table/_constants.py → perspective_python-3.0.0rc1/rust/perspective-python/perspective/viewer/__init__.py +3 -1
  228. perspective_python-3.0.0rc1/rust/perspective-python/perspective/viewer/validate.py +22 -0
  229. perspective_python-3.0.0rc1/rust/perspective-python/perspective/viewer/viewer.py +331 -0
  230. perspective_python-3.0.0rc1/rust/perspective-python/perspective/viewer/viewer_traitlets.py +101 -0
  231. perspective-python-2.9.0/perspective/core/exception.py → perspective_python-3.0.0rc1/rust/perspective-python/perspective/widget/__init__.py +2 -3
  232. perspective_python-3.0.0rc1/rust/perspective-python/perspective/widget/widget.py +269 -0
  233. perspective_python-3.0.0rc1/rust/perspective-python/src/client/client_sync.rs +365 -0
  234. perspective_python-3.0.0rc1/rust/perspective-python/src/client/mod.rs +17 -0
  235. perspective_python-3.0.0rc1/rust/perspective-python/src/client/python.rs +680 -0
  236. perspective_python-3.0.0rc1/rust/perspective-python/src/lib.rs +55 -0
  237. perspective_python-3.0.0rc1/rust/perspective-python/src/server/mod.rs +15 -0
  238. perspective_python-3.0.0rc1/rust/perspective-python/src/server/server_sync.rs +114 -0
  239. perspective-python-2.9.0/perspective/core/plugin.py → perspective_python-3.0.0rc1/rust/perspective-server/Cargo.toml +41 -42
  240. perspective_python-3.0.0rc1/rust/perspective-server/build.rs +171 -0
  241. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/arrow/CMakeLists.txt +0 -6
  242. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/hopscotch.txt.in +1 -1
  243. perspective_python-3.0.0rc1/rust/perspective-server/cmake/modules/.clangd.in +3 -0
  244. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/modules/FindInstallDependency.cmake +18 -3
  245. perspective_python-3.0.0rc1/rust/perspective-server/cmake/modules/FindProtoc.cmake +124 -0
  246. perspective_python-3.0.0rc1/rust/perspective-server/cmake/modules/SetupClangd.cmake +42 -0
  247. perspective_python-3.0.0rc1/rust/perspective-server/cmake/protobuf.txt.in +24 -0
  248. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/rapidjson.txt.in +1 -1
  249. perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/.clangd.in +3 -0
  250. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/CMakeLists.txt +187 -152
  251. perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/build.js +50 -0
  252. perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/env.js +15 -0
  253. perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/package.json +16 -0
  254. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/arrow_csv.cpp +5 -4
  255. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/arrow_loader.cpp +50 -32
  256. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/arrow_writer.cpp +1 -1
  257. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/base.cpp +29 -21
  258. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/column.cpp +6 -7
  259. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/data_table.cpp +24 -23
  260. perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/cpp/emscripten_api.cpp +156 -0
  261. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/gnode.cpp +3 -3
  262. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/pool.cpp +30 -46
  263. perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/cpp/proto_api.cpp +68 -0
  264. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/pyutils.cpp +3 -3
  265. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/schema.cpp +2 -2
  266. perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/cpp/server.cpp +2410 -0
  267. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/storage.cpp +3 -19
  268. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/sym_table.cpp +0 -1
  269. perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/cpp/table.cpp +1543 -0
  270. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/time.cpp +2 -2
  271. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/update_task.cpp +4 -1
  272. perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/cpp/utils.cpp +150 -0
  273. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/view.cpp +356 -63
  274. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/arrow_csv.h +2 -2
  275. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/arrow_loader.h +3 -3
  276. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/base.h +35 -17
  277. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/data_table.h +8 -8
  278. perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/include/perspective/emscripten_api_utils.h +32 -0
  279. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/exception.h +3 -2
  280. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/first.h +4 -4
  281. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/gnode.h +3 -3
  282. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/parallel_for.h +18 -1
  283. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/pool.h +14 -20
  284. perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/include/perspective/proto_api.h +46 -0
  285. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/pyutils.h +13 -16
  286. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/scalar.h +1 -1
  287. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/schema.h +1 -1
  288. perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective/src/include/perspective/server.h +595 -0
  289. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/storage.h +1 -1
  290. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/table.h +55 -6
  291. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/update_task.h +3 -1
  292. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/utils.h +18 -0
  293. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/view.h +39 -8
  294. perspective_python-3.0.0rc1/rust/perspective-server/cpp/protos/CMakeLists.txt +34 -0
  295. perspective_python-3.0.0rc1/rust/perspective-server/cpp/protos/perspective.proto +503 -0
  296. perspective_python-3.0.0rc1/rust/perspective-server/include/server.h +32 -0
  297. perspective_python-3.0.0rc1/rust/perspective-server/src/ffi.rs +67 -0
  298. perspective_python-3.0.0rc1/rust/perspective-server/src/lib.rs +247 -0
  299. perspective_python-3.0.0rc1/rust/perspective-server/src/server.cpp +67 -0
  300. perspective-python-2.9.0/MANIFEST.in +0 -40
  301. perspective-python-2.9.0/PKG-INFO +0 -169
  302. perspective-python-2.9.0/README.md +0 -63
  303. perspective-python-2.9.0/dist/LICENSE +0 -201
  304. perspective-python-2.9.0/dist/cmake/modules/FindNumPy.cmake +0 -37
  305. perspective-python-2.9.0/dist/cmake/modules/FindPybind.cmake +0 -40
  306. perspective-python-2.9.0/dist/cmake/modules/FindPythonHeaders.cmake +0 -270
  307. perspective-python-2.9.0/dist/src/cpp/emscripten.cpp +0 -2600
  308. perspective-python-2.9.0/dist/src/cpp/table.cpp +0 -293
  309. perspective-python-2.9.0/dist/src/cpp/utils.cpp +0 -29
  310. perspective-python-2.9.0/dist/src/include/perspective/emscripten.h +0 -68
  311. perspective-python-2.9.0/package.json +0 -16
  312. perspective-python-2.9.0/perspective/client/aiohttp.py +0 -98
  313. perspective-python-2.9.0/perspective/client/base.py +0 -146
  314. perspective-python-2.9.0/perspective/client/dispatch.py +0 -95
  315. perspective-python-2.9.0/perspective/client/starlette_test.py +0 -113
  316. perspective-python-2.9.0/perspective/client/table_api.py +0 -146
  317. perspective-python-2.9.0/perspective/client/tornado.py +0 -71
  318. perspective-python-2.9.0/perspective/client/view_api.py +0 -158
  319. perspective-python-2.9.0/perspective/client/websocket.py +0 -195
  320. perspective-python-2.9.0/perspective/core/__init__.py +0 -18
  321. perspective-python-2.9.0/perspective/core/_version.py +0 -2
  322. perspective-python-2.9.0/perspective/core/data/np.py +0 -102
  323. perspective-python-2.9.0/perspective/core/data/pd.py +0 -199
  324. perspective-python-2.9.0/perspective/core/filters.py +0 -18
  325. perspective-python-2.9.0/perspective/handlers/common.py +0 -126
  326. perspective-python-2.9.0/perspective/include/perspective/python/accessor.h +0 -44
  327. perspective-python-2.9.0/perspective/include/perspective/python/base.h +0 -46
  328. perspective-python-2.9.0/perspective/include/perspective/python/column.h +0 -31
  329. perspective-python-2.9.0/perspective/include/perspective/python/context.h +0 -62
  330. perspective-python-2.9.0/perspective/include/perspective/python/expressions.h +0 -38
  331. perspective-python-2.9.0/perspective/include/perspective/python/fill.h +0 -51
  332. perspective-python-2.9.0/perspective/include/perspective/python/numpy.h +0 -271
  333. perspective-python-2.9.0/perspective/include/perspective/python/serialization.h +0 -134
  334. perspective-python-2.9.0/perspective/include/perspective/python/table.h +0 -53
  335. perspective-python-2.9.0/perspective/include/perspective/python/utils.h +0 -80
  336. perspective-python-2.9.0/perspective/include/perspective/python/view.h +0 -175
  337. perspective-python-2.9.0/perspective/include/perspective/python.h +0 -505
  338. perspective-python-2.9.0/perspective/labextension/static/620.8cd0fc46c82634b68818.js +0 -18
  339. perspective-python-2.9.0/perspective/labextension/static/88.f37d368adffffd34c91b.js +0 -1
  340. perspective-python-2.9.0/perspective/labextension/static/remoteEntry.b126e5a754e1f659ef83.js +0 -1
  341. perspective-python-2.9.0/perspective/manager/manager.py +0 -146
  342. perspective-python-2.9.0/perspective/manager/manager_internal.py +0 -433
  343. perspective-python-2.9.0/perspective/nbextension/__init__.py +0 -22
  344. perspective-python-2.9.0/perspective/nbextension/static/extension.js +0 -13
  345. perspective-python-2.9.0/perspective/nbextension/static/extension.js.map +0 -7
  346. perspective-python-2.9.0/perspective/nbextension/static/index.js +0 -681
  347. perspective-python-2.9.0/perspective/nbextension/static/index.js.map +0 -7
  348. perspective-python-2.9.0/perspective/src/accessor.cpp +0 -251
  349. perspective-python-2.9.0/perspective/src/column.cpp +0 -47
  350. perspective-python-2.9.0/perspective/src/context.cpp +0 -198
  351. perspective-python-2.9.0/perspective/src/expressions.cpp +0 -74
  352. perspective-python-2.9.0/perspective/src/fill.cpp +0 -544
  353. perspective-python-2.9.0/perspective/src/numpy.cpp +0 -896
  354. perspective-python-2.9.0/perspective/src/python.cpp +0 -23
  355. perspective-python-2.9.0/perspective/src/serialization.cpp +0 -199
  356. perspective-python-2.9.0/perspective/src/table.cpp +0 -411
  357. perspective-python-2.9.0/perspective/src/utils.cpp +0 -210
  358. perspective-python-2.9.0/perspective/src/view.cpp +0 -574
  359. perspective-python-2.9.0/perspective/table/_accessor.py +0 -339
  360. perspective-python-2.9.0/perspective/table/_callback_cache.py +0 -65
  361. perspective-python-2.9.0/perspective/table/_data_formatter.py +0 -225
  362. perspective-python-2.9.0/perspective/table/_date_validator.py +0 -197
  363. perspective-python-2.9.0/perspective/table/_state.py +0 -96
  364. perspective-python-2.9.0/perspective/table/_utils.py +0 -259
  365. perspective-python-2.9.0/perspective/table/table.py +0 -532
  366. perspective-python-2.9.0/perspective/table/view.py +0 -740
  367. perspective-python-2.9.0/perspective/table/view_config.py +0 -138
  368. perspective-python-2.9.0/perspective/tests/client_mode/test_client_mode.py +0 -457
  369. perspective-python-2.9.0/perspective/tests/core/test_aggregates.py +0 -119
  370. perspective-python-2.9.0/perspective/tests/core/test_plugin.py +0 -76
  371. perspective-python-2.9.0/perspective/tests/core/test_sort.py +0 -71
  372. perspective-python-2.9.0/perspective/tests/handlers/test_aiohttp_async_mode.py +0 -87
  373. perspective-python-2.9.0/perspective/tests/handlers/test_aiohttp_handler.py +0 -299
  374. perspective-python-2.9.0/perspective/tests/handlers/test_aiohttp_handler_chunked.py +0 -120
  375. perspective-python-2.9.0/perspective/tests/handlers/test_aiohttp_lock.py +0 -77
  376. perspective-python-2.9.0/perspective/tests/handlers/test_starlette_async_mode.py +0 -90
  377. perspective-python-2.9.0/perspective/tests/handlers/test_starlette_handler.py +0 -322
  378. perspective-python-2.9.0/perspective/tests/handlers/test_starlette_handler_chunked.py +0 -125
  379. perspective-python-2.9.0/perspective/tests/handlers/test_starlette_lock.py +0 -95
  380. perspective-python-2.9.0/perspective/tests/handlers/test_tornado_async_mode.py +0 -120
  381. perspective-python-2.9.0/perspective/tests/handlers/test_tornado_handler.py +0 -303
  382. perspective-python-2.9.0/perspective/tests/handlers/test_tornado_handler_chunked.py +0 -122
  383. perspective-python-2.9.0/perspective/tests/handlers/test_tornado_lock.py +0 -98
  384. perspective-python-2.9.0/perspective/tests/handlers/test_tornado_thread_pool_executor.py +0 -130
  385. perspective-python-2.9.0/perspective/tests/manager/test_manager.py +0 -1325
  386. perspective-python-2.9.0/perspective/tests/manager/test_session.py +0 -239
  387. perspective-python-2.9.0/perspective/tests/table/test_table_datetime.py +0 -1312
  388. perspective-python-2.9.0/perspective/tests/table/test_table_numpy.py +0 -614
  389. perspective-python-2.9.0/perspective/tests/table/test_table_pandas.py +0 -611
  390. perspective-python-2.9.0/perspective/tests/viewer/test_validate.py +0 -68
  391. perspective-python-2.9.0/perspective/viewer/validate.py +0 -173
  392. perspective-python-2.9.0/perspective/widget/widget.py +0 -563
  393. perspective-python-2.9.0/perspective_python.egg-info/PKG-INFO +0 -169
  394. perspective-python-2.9.0/perspective_python.egg-info/SOURCES.txt +0 -388
  395. perspective-python-2.9.0/perspective_python.egg-info/dependency_links.txt +0 -1
  396. perspective-python-2.9.0/perspective_python.egg-info/not-zip-safe +0 -1
  397. perspective-python-2.9.0/perspective_python.egg-info/requires.txt +0 -89
  398. perspective-python-2.9.0/perspective_python.egg-info/top_level.txt +0 -1
  399. perspective-python-2.9.0/setup.cfg +0 -19
  400. perspective-python-2.9.0/setup.py +0 -344
  401. /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
  402. {perspective-python-2.9.0/perspective/labextension → perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab}/static/style.js +0 -0
  403. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/extension/finos-perspective-nbextension.json +0 -0
  404. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/__init__.py +0 -0
  405. {perspective-python-2.9.0/perspective/tests/client_mode → perspective_python-3.0.0rc1/perspective/tests/core}/__init__.py +0 -0
  406. {perspective-python-2.9.0/perspective/tests/core → perspective_python-3.0.0rc1/perspective/tests/server}/__init__.py +0 -0
  407. {perspective-python-2.9.0/perspective/tests/handlers → perspective_python-3.0.0rc1/perspective/tests/table}/__init__.py +0 -0
  408. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/arrow/date32.arrow +0 -0
  409. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/arrow/date64.arrow +0 -0
  410. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/arrow/dict.arrow +0 -0
  411. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/arrow/dict_update.arrow +0 -0
  412. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/arrow/int_float_str.arrow +0 -0
  413. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/arrow/int_float_str_file.arrow +0 -0
  414. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/tests/table/arrow/int_float_str_update.arrow +0 -0
  415. {perspective-python-2.9.0/perspective/tests/manager → perspective_python-3.0.0rc1/perspective/tests/viewer}/__init__.py +0 -0
  416. {perspective-python-2.9.0/perspective/tests/table → perspective_python-3.0.0rc1/perspective/tests/widget}/__init__.py +0 -0
  417. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/viewer/__init__.py +0 -0
  418. {perspective-python-2.9.0 → perspective_python-3.0.0rc1}/perspective/widget/__init__.py +0 -0
  419. {perspective-python-2.9.0/perspective/tests/viewer → perspective_python-3.0.0rc1/rust/perspective-python/bench}/__init__.py +0 -0
  420. {perspective-python-2.9.0/perspective/tests/widget → perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests}/__init__.py +0 -0
  421. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/Pybind.txt.in +0 -0
  422. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/arrow/config.h +0 -0
  423. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/arrow.txt.in +0 -0
  424. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/date.txt.in +0 -0
  425. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/double-conversion.txt.in +0 -0
  426. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/exprtk.txt.in +0 -0
  427. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/flatbuffers.txt.in +0 -0
  428. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/lz4.txt.in +0 -0
  429. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/modules/FindColor.cmake +0 -0
  430. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/modules/FindExprTk.cmake +0 -0
  431. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/modules/FindFlatbuffers.cmake +0 -0
  432. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/modules/FindRe2.cmake +0 -0
  433. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/modules/LLVMToolchain.cmake +0 -0
  434. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/ordered-map.txt.in +0 -0
  435. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/re2/CMakeLists.txt +0 -0
  436. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server}/cmake/re2.txt.in +0 -0
  437. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/aggregate.cpp +0 -0
  438. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/aggspec.cpp +0 -0
  439. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/arg_sort.cpp +0 -0
  440. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/base_impl_linux.cpp +0 -0
  441. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/base_impl_osx.cpp +0 -0
  442. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/base_impl_wasm.cpp +0 -0
  443. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/base_impl_win.cpp +0 -0
  444. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/binding.cpp +0 -0
  445. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/comparators.cpp +0 -0
  446. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/compat.cpp +0 -0
  447. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/compat_impl_linux.cpp +0 -0
  448. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/compat_impl_osx.cpp +0 -0
  449. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/compat_impl_wasm.cpp +0 -0
  450. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/compat_impl_win.cpp +0 -0
  451. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/computed_expression.cpp +0 -0
  452. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/computed_function.cpp +0 -0
  453. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/config.cpp +0 -0
  454. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_base.cpp +0 -0
  455. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_grouped_pkey.cpp +0 -0
  456. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_handle.cpp +0 -0
  457. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_iterators.cpp +0 -0
  458. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_one.cpp +0 -0
  459. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_two.cpp +0 -0
  460. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_unit.cpp +0 -0
  461. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/context_zero.cpp +0 -0
  462. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/data.cpp +0 -0
  463. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/data_slice.cpp +0 -0
  464. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/date.cpp +0 -0
  465. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/date_parser.cpp +0 -0
  466. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/dense_nodes.cpp +0 -0
  467. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/dense_tree.cpp +0 -0
  468. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/dense_tree_context.cpp +0 -0
  469. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/dependency.cpp +0 -0
  470. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/expression_tables.cpp +0 -0
  471. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/expression_vocab.cpp +0 -0
  472. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/extract_aggregate.cpp +0 -0
  473. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/filter.cpp +0 -0
  474. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/flat_traversal.cpp +0 -0
  475. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/get_data_extents.cpp +0 -0
  476. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/gnode_state.cpp +0 -0
  477. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/init.cpp +0 -0
  478. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/kernel_engine.cpp +0 -0
  479. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/main.cpp +0 -0
  480. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/mask.cpp +0 -0
  481. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/multi_sort.cpp +0 -0
  482. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/none.cpp +0 -0
  483. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/path.cpp +0 -0
  484. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/pivot.cpp +0 -0
  485. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/port.cpp +0 -0
  486. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/process_state.cpp +0 -0
  487. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/raii.cpp +0 -0
  488. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/raii_impl_linux.cpp +0 -0
  489. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/raii_impl_osx.cpp +0 -0
  490. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/raii_impl_win.cpp +0 -0
  491. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/range.cpp +0 -0
  492. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/regex.cpp +0 -0
  493. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/rlookup.cpp +0 -0
  494. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/scalar.cpp +0 -0
  495. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/schema_column.cpp +0 -0
  496. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/simple_bitmask.cpp +0 -0
  497. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/slice.cpp +0 -0
  498. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/sort_specification.cpp +0 -0
  499. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/sparse_tree.cpp +0 -0
  500. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/sparse_tree_node.cpp +0 -0
  501. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/step_delta.cpp +0 -0
  502. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/storage_impl_linux.cpp +0 -0
  503. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/storage_impl_osx.cpp +0 -0
  504. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/storage_impl_win.cpp +0 -0
  505. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/tracing.cpp +0 -0
  506. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/tracing_impl_linux.cpp +0 -0
  507. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/tracing_impl_osx.cpp +0 -0
  508. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/traversal.cpp +0 -0
  509. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/traversal_nodes.cpp +0 -0
  510. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/tree_context_common.cpp +0 -0
  511. {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
  512. {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
  513. {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
  514. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/view_config.cpp +0 -0
  515. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/cpp/vocab.cpp +0 -0
  516. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/aggregate.h +0 -0
  517. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/aggspec.h +0 -0
  518. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/arg_sort.h +0 -0
  519. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/arrow_writer.h +0 -0
  520. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/binding.h +0 -0
  521. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/column.h +0 -0
  522. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/comparators.h +0 -0
  523. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/compat.h +0 -0
  524. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/computed_expression.h +0 -0
  525. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/computed_function.h +0 -0
  526. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/config.h +0 -0
  527. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/context_base.h +0 -0
  528. {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
  529. {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
  530. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/context_handle.h +0 -0
  531. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/context_one.h +0 -0
  532. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/context_two.h +0 -0
  533. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/context_unit.h +0 -0
  534. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/context_zero.h +0 -0
  535. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/data.h +0 -0
  536. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/data_accessor.h +0 -0
  537. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/data_slice.h +0 -0
  538. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/date.h +0 -0
  539. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/date_parser.h +0 -0
  540. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/debug_helpers.h +0 -0
  541. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/defaults.h +0 -0
  542. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/dense_nodes.h +0 -0
  543. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/dense_tree.h +0 -0
  544. {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
  545. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/dependency.h +0 -0
  546. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/env_vars.h +0 -0
  547. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/exports.h +0 -0
  548. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/expression_tables.h +0 -0
  549. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/expression_vocab.h +0 -0
  550. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/exprtk.h +0 -0
  551. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/extract_aggregate.h +0 -0
  552. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/filter.h +0 -0
  553. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/filter_utils.h +0 -0
  554. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/flat_traversal.h +0 -0
  555. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/flatten.h +0 -0
  556. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/fragments.h +0 -0
  557. {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
  558. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/gnode_state.h +0 -0
  559. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/index.h +0 -0
  560. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/init.h +0 -0
  561. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/iterator.h +0 -0
  562. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/kernel_engine.h +0 -0
  563. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/last.h +0 -0
  564. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/mask.h +0 -0
  565. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/multi_sort.h +0 -0
  566. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/node_processor.h +0 -0
  567. {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
  568. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/none.h +0 -0
  569. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/partition.h +0 -0
  570. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/path.h +0 -0
  571. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/pivot.h +0 -0
  572. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/port.h +0 -0
  573. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/portable.h +0 -0
  574. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/process_state.h +0 -0
  575. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/raii.h +0 -0
  576. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/range.h +0 -0
  577. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/raw_types.h +0 -0
  578. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/regex.h +0 -0
  579. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/rlookup.h +0 -0
  580. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/schema_column.h +0 -0
  581. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/simple_bitmask.h +0 -0
  582. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/slice.h +0 -0
  583. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/sort_specification.h +0 -0
  584. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/sparse_tree.h +0 -0
  585. {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
  586. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/step_delta.h +0 -0
  587. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/sym_table.h +0 -0
  588. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/time.h +0 -0
  589. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/tracing.h +0 -0
  590. {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
  591. {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
  592. {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
  593. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/traversal.h +0 -0
  594. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/traversal_nodes.h +0 -0
  595. {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
  596. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/tree_iterator.h +0 -0
  597. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/val.h +0 -0
  598. {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
  599. {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
  600. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/view_config.h +0 -0
  601. {perspective-python-2.9.0/dist → perspective_python-3.0.0rc1/rust/perspective-server/cpp/perspective}/src/include/perspective/vocab.h +0 -0
@@ -2,4 +2,4 @@
2
2
  "packageManager": "python",
3
3
  "packageName": "perspective-python",
4
4
  "uninstallInstructions": "Use your Python package manager (pip, conda, etc.) to uninstall the package perspective-python"
5
- }
5
+ }
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@finos/perspective-jupyterlab",
3
- "version": "2.9.0",
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.js",
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 ../../python/perspective/perspective/labextension",
29
- "clean:nbextension": "rimraf ../../python/perspective/perspective/nbextension/static",
30
- "test:build": "node build.js --test",
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.js -- --jupyter",
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": "^2.9.0",
38
- "@finos/perspective-viewer": "^2.9.0",
39
- "@finos/perspective-viewer-d3fc": "^2.9.0",
40
- "@finos/perspective-viewer-datagrid": "^2.9.0",
41
- "@finos/perspective-viewer-openlayers": "^2.9.0",
42
- "@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
43
- "@jupyterlab/application": "^3.6.1",
44
- "@lumino/application": "^1.27.0",
45
- "@lumino/widgets": "^1.37.0"
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": "^2.9.0",
49
- "@finos/perspective-test": "^2.9.0",
50
- "@jupyterlab/builder": "^3.4.0",
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/labextension",
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.b126e5a754e1f659ef83.js",
76
+ "load": "static/remoteEntry.2d936c1eb55465604308.js",
75
77
  "extension": "./extension",
76
78
  "style": "./style"
77
79
  }