perspective-python 3.7.0__tar.gz → 3.7.2__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 (99) hide show
  1. {perspective_python-3.7.0 → perspective_python-3.7.2}/Cargo.toml +3 -3
  2. {perspective_python-3.7.0 → perspective_python-3.7.2}/LICENSE_THIRDPARTY_cargo.yml +183 -70
  3. {perspective_python-3.7.0 → perspective_python-3.7.2}/PKG-INFO +1 -1
  4. {perspective_python-3.7.0 → perspective_python-3.7.2}/package.json +3 -2
  5. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/__init__.py +9 -4
  6. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/handlers/aiohttp.py +9 -8
  7. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/handlers/starlette.py +12 -11
  8. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/handlers/tornado.py +18 -16
  9. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/widget/__init__.py +61 -63
  10. {perspective_python-3.7.0/perspective_python-3.7.0.data → perspective_python-3.7.2/perspective_python-3.7.2.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/package.json +2 -2
  11. perspective_python-3.7.2/perspective_python-3.7.2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.bd5b70fcb9496ba1b887.js +16 -0
  12. perspective_python-3.7.2/perspective_python-3.7.2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.bd5b70fcb9496ba1b887.js.LICENSE.txt +63 -0
  13. perspective_python-3.7.2/perspective_python-3.7.2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/815.de1b4b53d57212354a6c.js +1 -0
  14. perspective_python-3.7.2/perspective_python-3.7.2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.6c620635cc748d645b1d.js +1 -0
  15. {perspective_python-3.7.0 → perspective_python-3.7.2}/pyproject.toml +1 -1
  16. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/client/client_async.rs +7 -6
  17. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/client/client_sync.rs +204 -11
  18. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/client/table_data.rs +1 -1
  19. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/lib.rs +7 -2
  20. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/py_err.rs +1 -1
  21. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/server/server_async.rs +5 -4
  22. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/server/server_sync.rs +38 -19
  23. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/server/session_async.rs +1 -1
  24. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/server/session_sync.rs +4 -4
  25. perspective_python-3.7.0/perspective_python-3.7.0.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.0776e42a13a241471666.js +0 -16
  26. perspective_python-3.7.0/perspective_python-3.7.0.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.0776e42a13a241471666.js.LICENSE.txt +0 -59
  27. perspective_python-3.7.0/perspective_python-3.7.0.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/985.db6bcc3586aa631e772d.js +0 -1
  28. perspective_python-3.7.0/perspective_python-3.7.0.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.ec025c1fe3681f6695de.js +0 -1
  29. {perspective_python-3.7.0 → perspective_python-3.7.2}/LICENSE.md +0 -0
  30. {perspective_python-3.7.0 → perspective_python-3.7.2}/README.md +0 -0
  31. {perspective_python-3.7.0 → perspective_python-3.7.2}/build.rs +0 -0
  32. {perspective_python-3.7.0 → perspective_python-3.7.2}/docs/index.html +0 -0
  33. {perspective_python-3.7.0 → perspective_python-3.7.2}/docs/lib.md +0 -0
  34. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/extension/finos-perspective-nbextension.json +0 -0
  35. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/handlers/__init__.py +0 -0
  36. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/templates/exported_widget.html.template +0 -0
  37. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/__init__.py +0 -0
  38. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/async/test_async_client.py +0 -0
  39. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/async/test_websocket_client.py +0 -0
  40. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/conftest.py +0 -0
  41. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/core/__init__.py +0 -0
  42. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/core/test_async.py +0 -0
  43. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/multi_threaded/__init__.py +0 -0
  44. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/multi_threaded/test_multi_threaded.py +0 -0
  45. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/server/__init__.py +0 -0
  46. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/server/test_server.py +0 -0
  47. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/server/test_session.py +0 -0
  48. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/__init__.py +0 -0
  49. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/arrow/date32.arrow +0 -0
  50. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/arrow/date64.arrow +0 -0
  51. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/arrow/dict.arrow +0 -0
  52. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/arrow/dict_update.arrow +0 -0
  53. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/arrow/int_float_str.arrow +0 -0
  54. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/arrow/int_float_str_file.arrow +0 -0
  55. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/arrow/int_float_str_update.arrow +0 -0
  56. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/object_sequence.py +0 -0
  57. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_delete.py +0 -0
  58. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_exception.py +0 -0
  59. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_leaks.py +0 -0
  60. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_ports.py +0 -0
  61. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_remove.py +0 -0
  62. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_table.py +0 -0
  63. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_table_arrow.py +0 -0
  64. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_table_datetime.py +0 -0
  65. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_table_infer.py +0 -0
  66. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_table_limit.py +0 -0
  67. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_table_numpy.py +0 -0
  68. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_table_pandas.py +0 -0
  69. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_table_polars.py +0 -0
  70. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_to_arrow.py +0 -0
  71. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_to_arrow_lz4.py +0 -0
  72. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_to_format.py +0 -0
  73. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_to_polars.py +0 -0
  74. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_update.py +0 -0
  75. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_update_arrow.py +0 -0
  76. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_update_pandas.py +0 -0
  77. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_view.py +0 -0
  78. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/table/test_view_expression.py +0 -0
  79. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/test_dependencies.py +0 -0
  80. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/viewer/__init__.py +0 -0
  81. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/viewer/test_viewer.py +0 -0
  82. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/widget/__init__.py +0 -0
  83. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/widget/test_widget.py +0 -0
  84. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/tests/widget/test_widget_pandas.py +0 -0
  85. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/widget/viewer/__init__.py +0 -0
  86. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/widget/viewer/validate.py +0 -0
  87. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/widget/viewer/viewer.py +0 -0
  88. {perspective_python-3.7.0 → perspective_python-3.7.2}/perspective/widget/viewer/viewer_traitlets.py +0 -0
  89. {perspective_python-3.7.0/perspective_python-3.7.0.data → perspective_python-3.7.2/perspective_python-3.7.2.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/install.json +0 -0
  90. {perspective_python-3.7.0/perspective_python-3.7.0.data → perspective_python-3.7.2/perspective_python-3.7.2.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/style.js +0 -0
  91. {perspective_python-3.7.0/perspective_python-3.7.0.data → perspective_python-3.7.2/perspective_python-3.7.2.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/third-party-licenses.json +0 -0
  92. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/client/mod.rs +0 -0
  93. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/client/pandas.rs +0 -0
  94. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/client/polars.rs +0 -0
  95. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/client/proxy_session.rs +0 -0
  96. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/client/pyarrow.rs +0 -0
  97. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/client/update_data.rs +0 -0
  98. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/py_async.rs +0 -0
  99. {perspective_python-3.7.0 → perspective_python-3.7.2}/src/server/mod.rs +0 -0
@@ -12,7 +12,7 @@
12
12
 
13
13
  [package]
14
14
  name = "perspective-python"
15
- version = "3.7.0"
15
+ version = "3.7.2"
16
16
  edition = "2024"
17
17
  description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets."
18
18
  repository = "https://github.com/finos/perspective"
@@ -57,8 +57,8 @@ pyo3-build-config = "0.22.6"
57
57
  python-config-rs = "0.1.2"
58
58
 
59
59
  [dependencies]
60
- perspective-client = { version = "3.7.0" }
61
- perspective-server = { version = "3.7.0" }
60
+ perspective-client = { version = "3.7.2" }
61
+ perspective-server = { version = "3.7.2" }
62
62
  macro_rules_attribute = "0.2.0"
63
63
  async-lock = "2.5.0"
64
64
  pollster = "0.3.0"
@@ -477,7 +477,7 @@ third_party_libraries:
477
477
  - license: Apache-2.0
478
478
  text: " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n\thttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
479
479
  - package_name: bytes
480
- package_version: 1.7.1
480
+ package_version: 1.10.1
481
481
  repository: https://github.com/tokio-rs/bytes
482
482
  license: MIT
483
483
  licenses:
@@ -949,41 +949,6 @@ third_party_libraries:
949
949
  DEALINGS IN THE SOFTWARE.
950
950
  - license: Apache-2.0
951
951
  text: " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\nCopyright (c) 2016 Alex Crichton\nCopyright (c) 2017 The Tokio Authors\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n\thttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
952
- - package_name: getrandom
953
- package_version: 0.2.15
954
- repository: https://github.com/rust-random/getrandom
955
- license: MIT OR Apache-2.0
956
- licenses:
957
- - license: MIT
958
- text: |
959
- Copyright (c) 2018-2024 The rust-random Project Developers
960
- Copyright (c) 2014 The Rust Project Developers
961
-
962
- Permission is hereby granted, free of charge, to any
963
- person obtaining a copy of this software and associated
964
- documentation files (the "Software"), to deal in the
965
- Software without restriction, including without
966
- limitation the rights to use, copy, modify, merge,
967
- publish, distribute, sublicense, and/or sell copies of
968
- the Software, and to permit persons to whom the Software
969
- is furnished to do so, subject to the following
970
- conditions:
971
-
972
- The above copyright notice and this permission notice
973
- shall be included in all copies or substantial portions
974
- of the Software.
975
-
976
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
977
- ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
978
- TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
979
- PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
980
- SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
981
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
982
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
983
- IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
984
- DEALINGS IN THE SOFTWARE.
985
- - license: Apache-2.0
986
- text: " Apache License\n Version 2.0, January 2004\n https://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n\thttps://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
987
952
  - package_name: getrandom
988
953
  package_version: 0.3.2
989
954
  repository: https://github.com/rust-random/getrandom
@@ -2533,34 +2498,6 @@ third_party_libraries:
2533
2498
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2534
2499
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2535
2500
  THE SOFTWARE.
2536
- - package_name: nanoid
2537
- package_version: 0.4.0
2538
- repository: https://github.com/nikolay-govorov/nanoid.git
2539
- license: MIT
2540
- licenses:
2541
- - license: MIT
2542
- text: |
2543
- MIT License
2544
-
2545
- Copyright (c) 2017 Nikolay Govorov
2546
-
2547
- Permission is hereby granted, free of charge, to any person obtaining a copy
2548
- of this software and associated documentation files (the "Software"), to deal
2549
- in the Software without restriction, including without limitation the rights
2550
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2551
- copies of the Software, and to permit persons to whom the Software is
2552
- furnished to do so, subject to the following conditions:
2553
-
2554
- The above copyright notice and this permission notice shall be included in all
2555
- copies or substantial portions of the Software.
2556
-
2557
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2558
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2559
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2560
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2561
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2562
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2563
- SOFTWARE.
2564
2501
  - package_name: nu-ansi-term
2565
2502
  package_version: 0.46.0
2566
2503
  repository: https://github.com/nushell/nu-ansi-term
@@ -2974,14 +2911,14 @@ third_party_libraries:
2974
2911
 
2975
2912
  END OF TERMS AND CONDITIONS
2976
2913
  - package_name: perspective-client
2977
- package_version: 3.7.0
2914
+ package_version: 3.7.2
2978
2915
  repository: https://github.com/finos/perspective
2979
2916
  license: Apache-2.0
2980
2917
  licenses:
2981
2918
  - license: Apache-2.0
2982
2919
  text: "# Apache License\n\n_Version 2.0, January 2004_ \n_&lt;<http://www.apache.org/licenses/>&gt;_\n\n### Terms and Conditions for use, reproduction, and distribution\n\n#### 1. Definitions\n\n“License” shall mean the terms and conditions for use, reproduction, and\ndistribution as defined by Sections 1 through 9 of this document.\n\n“Licensor” shall mean the copyright owner or entity authorized by the copyright\nowner that is granting the License.\n\n“Legal Entity” shall mean the union of the acting entity and all other entities\nthat control, are controlled by, or are under common control with that entity.\nFor the purposes of this definition, “control” means **(i)** the power, direct or\nindirect, to cause the direction or management of such entity, whether by\ncontract or otherwise, or **(ii)** ownership of fifty percent (50%) or more of the\noutstanding shares, or **(iii)** beneficial ownership of such entity.\n\n“You” (or “Your”) shall mean an individual or Legal Entity exercising\npermissions granted by this License.\n\n“Source” form shall mean the preferred form for making modifications, including\nbut not limited to software source code, documentation source, and configuration\nfiles.\n\n“Object” form shall mean any form resulting from mechanical transformation or\ntranslation of a Source form, including but not limited to compiled object code,\ngenerated documentation, and conversions to other media types.\n\n“Work” shall mean the work of authorship, whether in Source or Object form, made\navailable under the License, as indicated by a copyright notice that is included\nin or attached to the work (an example is provided in the Appendix below).\n\n“Derivative Works” shall mean any work, whether in Source or Object form, that\nis based on (or derived from) the Work and for which the editorial revisions,\nannotations, elaborations, or other modifications represent, as a whole, an\noriginal work of authorship. For the purposes of this License, Derivative Works\nshall not include works that remain separable from, or merely link (or bind by\nname) to the interfaces of, the Work and Derivative Works thereof.\n\n“Contribution” shall mean any work of authorship, including the original version\nof the Work and any modifications or additions to that Work or Derivative Works\nthereof, that is intentionally submitted to Licensor for inclusion in the Work\nby the copyright owner or by an individual or Legal Entity authorized to submit\non behalf of the copyright owner. For the purposes of this definition,\n“submitted” means any form of electronic, verbal, or written communication sent\nto the Licensor or its representatives, including but not limited to\ncommunication on electronic mailing lists, source code control systems, and\nissue tracking systems that are managed by, or on behalf of, the Licensor for\nthe purpose of discussing and improving the Work, but excluding communication\nthat is conspicuously marked or otherwise designated in writing by the copyright\nowner as “Not a Contribution.”\n\n“Contributor” shall mean Licensor and any individual or Legal Entity on behalf\nof whom a Contribution has been received by Licensor and subsequently\nincorporated within the Work.\n\n#### 2. Grant of Copyright License\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable copyright license to reproduce, prepare Derivative Works of,\npublicly display, publicly perform, sublicense, and distribute the Work and such\nDerivative Works in Source or Object form.\n\n#### 3. Grant of Patent License\n\nSubject to the terms and conditions of this License, each Contributor hereby\ngrants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free,\nirrevocable (except as stated in this section) patent license to make, have\nmade, use, offer to sell, sell, import, and otherwise transfer the Work, where\nsuch license applies only to those patent claims licensable by such Contributor\nthat are necessarily infringed by their Contribution(s) alone or by combination\nof their Contribution(s) with the Work to which such Contribution(s) was\nsubmitted. If You institute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Work or a\nContribution incorporated within the Work constitutes direct or contributory\npatent infringement, then any patent licenses granted to You under this License\nfor that Work shall terminate as of the date such litigation is filed.\n\n#### 4. Redistribution\n\nYou may reproduce and distribute copies of the Work or Derivative Works thereof\nin any medium, with or without modifications, and in Source or Object form,\nprovided that You meet the following conditions:\n\n- **(a)** You must give any other recipients of the Work or Derivative Works a copy of\n this License; and\n- **(b)** You must cause any modified files to carry prominent notices stating that You\n changed the files; and\n- **(c)** You must retain, in the Source form of any Derivative Works that You distribute,\n all copyright, patent, trademark, and attribution notices from the Source form\n of the Work, excluding those notices that do not pertain to any part of the\n Derivative Works; and\n- **(d)** If the Work includes a “NOTICE” text file as part of its distribution, then any\n Derivative Works that You distribute must include a readable copy of the\n attribution notices contained within such NOTICE file, excluding those notices\n that do not pertain to any part of the Derivative Works, in at least one of the\n following places: within a NOTICE text file distributed as part of the\n Derivative Works; within the Source form or documentation, if provided along\n with the Derivative Works; or, within a display generated by the Derivative\n Works, if and wherever such third-party notices normally appear. The contents of\n the NOTICE file are for informational purposes only and do not modify the\n License. You may add Your own attribution notices within Derivative Works that\n You distribute, alongside or as an addendum to the NOTICE text from the Work,\n provided that such additional attribution notices cannot be construed as\n modifying the License.\n\nYou may add Your own copyright statement to Your modifications and may provide\nadditional or different license terms and conditions for use, reproduction, or\ndistribution of Your modifications, or for any such Derivative Works as a whole,\nprovided Your use, reproduction, and distribution of the Work otherwise complies\nwith the conditions stated in this License.\n\n#### 5. Submission of Contributions\n\nUnless You explicitly state otherwise, any Contribution intentionally submitted\nfor inclusion in the Work by You to the Licensor shall be under the terms and\nconditions of this License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify the terms of\nany separate license agreement you may have executed with Licensor regarding\nsuch Contributions.\n\n#### 6. Trademarks\n\nThis License does not grant permission to use the trade names, trademarks,\nservice marks, or product names of the Licensor, except as required for\nreasonable and customary use in describing the origin of the Work and\nreproducing the content of the NOTICE file.\n\n#### 7. Disclaimer of Warranty\n\nUnless required by applicable law or agreed to in writing, Licensor provides the\nWork (and each Contributor provides its Contributions) on an “AS IS” BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,\nincluding, without limitation, any warranties or conditions of TITLE,\nNON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are\nsolely responsible for determining the appropriateness of using or\nredistributing the Work and assume any risks associated with Your exercise of\npermissions under this License.\n\n#### 8. Limitation of Liability\n\nIn no event and under no legal theory, whether in tort (including negligence),\ncontract, or otherwise, unless required by applicable law (such as deliberate\nand grossly negligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special, incidental,\nor consequential damages of any character arising as a result of this License or\nout of the use or inability to use the Work (including but not limited to\ndamages for loss of goodwill, work stoppage, computer failure or malfunction, or\nany and all other commercial damages or losses), even if such Contributor has\nbeen advised of the possibility of such damages.\n\n#### 9. Accepting Warranty or Additional Liability\n\nWhile redistributing the Work or Derivative Works thereof, You may choose to\noffer, and charge a fee for, acceptance of support, warranty, indemnity, or\nother liability obligations and/or rights consistent with this License. However,\nin accepting such obligations, You may act only on Your own behalf and on Your\nsole responsibility, not on behalf of any other Contributor, and only if You\nagree to indemnify, defend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against, such Contributor by reason of your\naccepting any such warranty or additional liability.\n\n_END OF TERMS AND CONDITIONS_\n\n### APPENDIX: How to apply the Apache License to your work\n\nTo apply the Apache License to your work, attach the following boilerplate\nnotice, with the fields enclosed by brackets `[]` replaced with your own\nidentifying information. (Don't include the brackets!) The text should be\nenclosed in the appropriate comment syntax for the file format. We also\nrecommend that a file or class name and description of purpose be included on\nthe same “printed page” as the copyright notice for easier identification within\nthird-party archives.\n\n Copyright 2019 The Perspective Authors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
2983
2920
  - package_name: perspective-server
2984
- package_version: 3.7.0
2921
+ package_version: 3.7.2
2985
2922
  repository: https://github.com/finos/perspective
2986
2923
  license: Apache-2.0
2987
2924
  licenses:
@@ -5446,7 +5383,7 @@ third_party_libraries:
5446
5383
  - license: LGPL-2.1-or-later
5447
5384
  text: NOT FOUND
5448
5385
  - package_name: rand
5449
- package_version: 0.8.5
5386
+ package_version: 0.9.1
5450
5387
  repository: https://github.com/rust-random/rand
5451
5388
  license: MIT OR Apache-2.0
5452
5389
  licenses:
@@ -5685,7 +5622,7 @@ third_party_libraries:
5685
5622
  - license: Apache-2.0
5686
5623
  text: " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\nCopyright 2023 Liam Gray <gmail@liamg.me>\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n\thttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
5687
5624
  - package_name: rand_chacha
5688
- package_version: 0.3.1
5625
+ package_version: 0.9.0
5689
5626
  repository: https://github.com/rust-random/rand
5690
5627
  license: MIT OR Apache-2.0
5691
5628
  licenses:
@@ -5718,9 +5655,185 @@ third_party_libraries:
5718
5655
  IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
5719
5656
  DEALINGS IN THE SOFTWARE.
5720
5657
  - license: Apache-2.0
5721
- text: " Apache License\n Version 2.0, January 2004\n https://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n\thttps://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
5658
+ text: |2
5659
+ Apache License
5660
+ Version 2.0, January 2004
5661
+ https://www.apache.org/licenses/
5662
+
5663
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
5664
+
5665
+ 1. Definitions.
5666
+
5667
+ "License" shall mean the terms and conditions for use, reproduction,
5668
+ and distribution as defined by Sections 1 through 9 of this document.
5669
+
5670
+ "Licensor" shall mean the copyright owner or entity authorized by
5671
+ the copyright owner that is granting the License.
5672
+
5673
+ "Legal Entity" shall mean the union of the acting entity and all
5674
+ other entities that control, are controlled by, or are under common
5675
+ control with that entity. For the purposes of this definition,
5676
+ "control" means (i) the power, direct or indirect, to cause the
5677
+ direction or management of such entity, whether by contract or
5678
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
5679
+ outstanding shares, or (iii) beneficial ownership of such entity.
5680
+
5681
+ "You" (or "Your") shall mean an individual or Legal Entity
5682
+ exercising permissions granted by this License.
5683
+
5684
+ "Source" form shall mean the preferred form for making modifications,
5685
+ including but not limited to software source code, documentation
5686
+ source, and configuration files.
5687
+
5688
+ "Object" form shall mean any form resulting from mechanical
5689
+ transformation or translation of a Source form, including but
5690
+ not limited to compiled object code, generated documentation,
5691
+ and conversions to other media types.
5692
+
5693
+ "Work" shall mean the work of authorship, whether in Source or
5694
+ Object form, made available under the License, as indicated by a
5695
+ copyright notice that is included in or attached to the work
5696
+ (an example is provided in the Appendix below).
5697
+
5698
+ "Derivative Works" shall mean any work, whether in Source or Object
5699
+ form, that is based on (or derived from) the Work and for which the
5700
+ editorial revisions, annotations, elaborations, or other modifications
5701
+ represent, as a whole, an original work of authorship. For the purposes
5702
+ of this License, Derivative Works shall not include works that remain
5703
+ separable from, or merely link (or bind by name) to the interfaces of,
5704
+ the Work and Derivative Works thereof.
5705
+
5706
+ "Contribution" shall mean any work of authorship, including
5707
+ the original version of the Work and any modifications or additions
5708
+ to that Work or Derivative Works thereof, that is intentionally
5709
+ submitted to Licensor for inclusion in the Work by the copyright owner
5710
+ or by an individual or Legal Entity authorized to submit on behalf of
5711
+ the copyright owner. For the purposes of this definition, "submitted"
5712
+ means any form of electronic, verbal, or written communication sent
5713
+ to the Licensor or its representatives, including but not limited to
5714
+ communication on electronic mailing lists, source code control systems,
5715
+ and issue tracking systems that are managed by, or on behalf of, the
5716
+ Licensor for the purpose of discussing and improving the Work, but
5717
+ excluding communication that is conspicuously marked or otherwise
5718
+ designated in writing by the copyright owner as "Not a Contribution."
5719
+
5720
+ "Contributor" shall mean Licensor and any individual or Legal Entity
5721
+ on behalf of whom a Contribution has been received by Licensor and
5722
+ subsequently incorporated within the Work.
5723
+
5724
+ 2. Grant of Copyright License. Subject to the terms and conditions of
5725
+ this License, each Contributor hereby grants to You a perpetual,
5726
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
5727
+ copyright license to reproduce, prepare Derivative Works of,
5728
+ publicly display, publicly perform, sublicense, and distribute the
5729
+ Work and such Derivative Works in Source or Object form.
5730
+
5731
+ 3. Grant of Patent License. Subject to the terms and conditions of
5732
+ this License, each Contributor hereby grants to You a perpetual,
5733
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
5734
+ (except as stated in this section) patent license to make, have made,
5735
+ use, offer to sell, sell, import, and otherwise transfer the Work,
5736
+ where such license applies only to those patent claims licensable
5737
+ by such Contributor that are necessarily infringed by their
5738
+ Contribution(s) alone or by combination of their Contribution(s)
5739
+ with the Work to which such Contribution(s) was submitted. If You
5740
+ institute patent litigation against any entity (including a
5741
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
5742
+ or a Contribution incorporated within the Work constitutes direct
5743
+ or contributory patent infringement, then any patent licenses
5744
+ granted to You under this License for that Work shall terminate
5745
+ as of the date such litigation is filed.
5746
+
5747
+ 4. Redistribution. You may reproduce and distribute copies of the
5748
+ Work or Derivative Works thereof in any medium, with or without
5749
+ modifications, and in Source or Object form, provided that You
5750
+ meet the following conditions:
5751
+
5752
+ (a) You must give any other recipients of the Work or
5753
+ Derivative Works a copy of this License; and
5754
+
5755
+ (b) You must cause any modified files to carry prominent notices
5756
+ stating that You changed the files; and
5757
+
5758
+ (c) You must retain, in the Source form of any Derivative Works
5759
+ that You distribute, all copyright, patent, trademark, and
5760
+ attribution notices from the Source form of the Work,
5761
+ excluding those notices that do not pertain to any part of
5762
+ the Derivative Works; and
5763
+
5764
+ (d) If the Work includes a "NOTICE" text file as part of its
5765
+ distribution, then any Derivative Works that You distribute must
5766
+ include a readable copy of the attribution notices contained
5767
+ within such NOTICE file, excluding those notices that do not
5768
+ pertain to any part of the Derivative Works, in at least one
5769
+ of the following places: within a NOTICE text file distributed
5770
+ as part of the Derivative Works; within the Source form or
5771
+ documentation, if provided along with the Derivative Works; or,
5772
+ within a display generated by the Derivative Works, if and
5773
+ wherever such third-party notices normally appear. The contents
5774
+ of the NOTICE file are for informational purposes only and
5775
+ do not modify the License. You may add Your own attribution
5776
+ notices within Derivative Works that You distribute, alongside
5777
+ or as an addendum to the NOTICE text from the Work, provided
5778
+ that such additional attribution notices cannot be construed
5779
+ as modifying the License.
5780
+
5781
+ You may add Your own copyright statement to Your modifications and
5782
+ may provide additional or different license terms and conditions
5783
+ for use, reproduction, or distribution of Your modifications, or
5784
+ for any such Derivative Works as a whole, provided Your use,
5785
+ reproduction, and distribution of the Work otherwise complies with
5786
+ the conditions stated in this License.
5787
+
5788
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
5789
+ any Contribution intentionally submitted for inclusion in the Work
5790
+ by You to the Licensor shall be under the terms and conditions of
5791
+ this License, without any additional terms or conditions.
5792
+ Notwithstanding the above, nothing herein shall supersede or modify
5793
+ the terms of any separate license agreement you may have executed
5794
+ with Licensor regarding such Contributions.
5795
+
5796
+ 6. Trademarks. This License does not grant permission to use the trade
5797
+ names, trademarks, service marks, or product names of the Licensor,
5798
+ except as required for reasonable and customary use in describing the
5799
+ origin of the Work and reproducing the content of the NOTICE file.
5800
+
5801
+ 7. Disclaimer of Warranty. Unless required by applicable law or
5802
+ agreed to in writing, Licensor provides the Work (and each
5803
+ Contributor provides its Contributions) on an "AS IS" BASIS,
5804
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
5805
+ implied, including, without limitation, any warranties or conditions
5806
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
5807
+ PARTICULAR PURPOSE. You are solely responsible for determining the
5808
+ appropriateness of using or redistributing the Work and assume any
5809
+ risks associated with Your exercise of permissions under this License.
5810
+
5811
+ 8. Limitation of Liability. In no event and under no legal theory,
5812
+ whether in tort (including negligence), contract, or otherwise,
5813
+ unless required by applicable law (such as deliberate and grossly
5814
+ negligent acts) or agreed to in writing, shall any Contributor be
5815
+ liable to You for damages, including any direct, indirect, special,
5816
+ incidental, or consequential damages of any character arising as a
5817
+ result of this License or out of the use or inability to use the
5818
+ Work (including but not limited to damages for loss of goodwill,
5819
+ work stoppage, computer failure or malfunction, or any and all
5820
+ other commercial damages or losses), even if such Contributor
5821
+ has been advised of the possibility of such damages.
5822
+
5823
+ 9. Accepting Warranty or Additional Liability. While redistributing
5824
+ the Work or Derivative Works thereof, You may choose to offer,
5825
+ and charge a fee for, acceptance of support, warranty, indemnity,
5826
+ or other liability obligations and/or rights consistent with this
5827
+ License. However, in accepting such obligations, You may act only
5828
+ on Your own behalf and on Your sole responsibility, not on behalf
5829
+ of any other Contributor, and only if You agree to indemnify,
5830
+ defend, and hold each Contributor harmless for any liability
5831
+ incurred by, or claims asserted against, such Contributor by reason
5832
+ of your accepting any such warranty or additional liability.
5833
+
5834
+ END OF TERMS AND CONDITIONS
5722
5835
  - package_name: rand_core
5723
- package_version: 0.6.4
5836
+ package_version: 0.9.3
5724
5837
  repository: https://github.com/rust-random/rand
5725
5838
  license: MIT OR Apache-2.0
5726
5839
  licenses:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: perspective-python
3
- Version: 3.7.0
3
+ Version: 3.7.2
4
4
  Classifier: Development Status :: 5 - Production/Stable
5
5
  Classifier: Programming Language :: Rust
6
6
  Classifier: Programming Language :: Python :: Implementation :: CPython
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finos/perspective-python",
3
- "version": "3.7.0",
3
+ "version": "3.7.2",
4
4
  "description": "",
5
5
  "private": true,
6
6
  "repository": {
@@ -12,7 +12,8 @@
12
12
  "scripts": {
13
13
  "build": "node build.mjs",
14
14
  "clean": "rimraf *.data && rimraf dist && rimraf build",
15
- "test": "node test.mjs"
15
+ "test": "node test.mjs",
16
+ "docs": "pdoc perspective/__init__.py perspective/handlers/aiohttp.py, perspective/handlers/starlette.py perspective/handlers/tornado.py perspective/widget/__init__.py -o ../../docs/static/python && node docs.mjs"
16
17
  },
17
18
  "devDependencies": {
18
19
  "@finos/perspective-scripts": "workspace:*",
@@ -10,11 +10,13 @@
10
10
  # ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
11
  # ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
12
 
13
- __version__ = "3.7.0"
13
+ __version__ = "3.7.2"
14
14
  __all__ = [
15
15
  "_jupyter_labextension_paths",
16
16
  "Server",
17
17
  "Client",
18
+ "Table",
19
+ "View",
18
20
  "PerspectiveError",
19
21
  "ProxySession",
20
22
  "AsyncClient",
@@ -29,8 +31,8 @@ from .perspective import (
29
31
  Client,
30
32
  PerspectiveError,
31
33
  ProxySession,
32
- PyServer as Server,
33
- PyAsyncServer as AsyncServer,
34
+ Server,
35
+ AsyncServer,
34
36
  AsyncClient,
35
37
  # NOTE: these are classes without constructors,
36
38
  # so we import them just for type hinting
@@ -60,6 +62,9 @@ def get_hosted_table_names(*args, **kwargs):
60
62
  return GLOBAL_CLIENT.get_hosted_table_names(*args, **kwargs)
61
63
 
62
64
 
63
- # Read by `jupyter labextension develop`
64
65
  def _jupyter_labextension_paths():
66
+ """
67
+ Read by `jupyter labextension develop`
68
+ @private
69
+ """
65
70
  return [{"src": "labextension", "dest": "@finos/perspective-jupyterlab"}]
@@ -16,7 +16,7 @@ import asyncio
16
16
 
17
17
 
18
18
  class PerspectiveAIOHTTPHandler(object):
19
- """PerspectiveAIOHTTPHandler is a drop-in implementation of Perspective.
19
+ """`PerspectiveAIOHTTPHandler` is a drop-in implementation of Perspective.
20
20
 
21
21
  Use it inside AIOHTTP routing to create a server-side Perspective that is
22
22
  ready to receive websocket messages from the front-end `perspective-viewer`.
@@ -24,14 +24,15 @@ class PerspectiveAIOHTTPHandler(object):
24
24
  The Perspective client and server will automatically keep the Websocket
25
25
  alive without timing out.
26
26
 
27
- Examples:
28
- >>> server = Server()
29
- >>> async def websocket_handler(request):
30
- ... handler = PerspectiveAIOHTTPHandler(perspective_server=server, request=request)
31
- ... await handler.run()
27
+ # Examples
32
28
 
33
- >>> app = web.Application()
34
- >>> app.router.add_get("/websocket", websocket_handler)
29
+ >>> server = Server()
30
+ >>> async def websocket_handler(request):
31
+ ... handler = PerspectiveAIOHTTPHandler(perspective_server=server, request=request)
32
+ ... await handler.run()
33
+
34
+ >>> app = web.Application()
35
+ >>> app.router.add_get("/websocket", websocket_handler)
35
36
  """
36
37
 
37
38
  def __init__(self, **kwargs):
@@ -15,17 +15,18 @@ import perspective
15
15
 
16
16
 
17
17
  class PerspectiveStarletteHandler(object):
18
- """PerspectiveStarletteHandler is a drop-in implementation of Perspective.
19
-
20
- Examples:
21
- >>> server = Server()
22
- >>> client = server.client()
23
- >>> client.table(pd.read_csv("superstore.csv"), name="data_source_one")
24
- >>> app = FastAPI()
25
- >>> async def endpoint(websocket: Websocket):
26
- ... handler = PerspectiveStarletteHandler(server, websocket)
27
- ... await handler.run()
28
- ... app.add_api_websocket_route('/websocket', endpoint)
18
+ """`PerspectiveStarletteHandler` is a drop-in implementation of Perspective.
19
+
20
+ # Examples
21
+
22
+ >>> server = Server()
23
+ >>> client = server.client()
24
+ >>> client.table(pd.read_csv("superstore.csv"), name="data_source_one")
25
+ >>> app = FastAPI()
26
+ >>> async def endpoint(websocket: Websocket):
27
+ ... handler = PerspectiveStarletteHandler(server, websocket)
28
+ ... await handler.run()
29
+ ... app.add_api_websocket_route('/websocket', endpoint)
29
30
  """
30
31
 
31
32
  def __init__(self, **kwargs):