perspective-python 4.1.1__tar.gz → 4.3.0__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 (109) hide show
  1. {perspective_python-4.1.1 → perspective_python-4.3.0}/Cargo.toml +7 -7
  2. {perspective_python-4.1.1 → perspective_python-4.3.0}/LICENSE_THIRDPARTY_cargo.yml +272 -35
  3. {perspective_python-4.1.1 → perspective_python-4.3.0}/PKG-INFO +1 -1
  4. {perspective_python-4.1.1 → perspective_python-4.3.0}/package.json +3 -2
  5. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/__init__.py +3 -1
  6. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_view_expression.py +2 -2
  7. perspective_python-4.3.0/perspective/tests/virtual_servers/__init__.py +12 -0
  8. perspective_python-4.3.0/perspective/tests/virtual_servers/test_duckdb.py +858 -0
  9. perspective_python-4.3.0/perspective/tests/virtual_servers/test_polars.py +1032 -0
  10. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/virtual_servers/__init__.py +1 -1
  11. perspective_python-4.3.0/perspective/virtual_servers/clickhouse.py +247 -0
  12. perspective_python-4.3.0/perspective/virtual_servers/duckdb.py +238 -0
  13. perspective_python-4.3.0/perspective/virtual_servers/polars.py +698 -0
  14. {perspective_python-4.1.1/perspective_python-4.1.1.data → perspective_python-4.3.0/perspective_python-4.3.0.data}/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/package.json +2 -2
  15. perspective_python-4.3.0/perspective_python-4.3.0.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/253.d124f5d4afecc67c70fd.js +2 -0
  16. perspective_python-4.1.1/perspective_python-4.1.1.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/523.c030af5d3c4f67ff83f6.js → perspective_python-4.3.0/perspective_python-4.3.0.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/523.fc330bee439d24a70841.js +1 -1
  17. perspective_python-4.3.0/perspective_python-4.3.0.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/remoteEntry.3e2b6fe2f12428d2f45b.js +1 -0
  18. {perspective_python-4.1.1 → perspective_python-4.3.0}/pyproject.toml +1 -1
  19. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/client/client_async.rs +12 -0
  20. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/client/client_sync.rs +11 -0
  21. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/lib.rs +1 -0
  22. perspective_python-4.3.0/src/server/generic_sql_model.rs +167 -0
  23. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/server/mod.rs +1 -0
  24. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/server/virtual_server_sync.rs +35 -31
  25. perspective_python-4.1.1/perspective/virtual_servers/duckdb.py +0 -436
  26. perspective_python-4.1.1/perspective_python-4.1.1.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/253.237a44566dca7b64bf21.js +0 -2
  27. perspective_python-4.1.1/perspective_python-4.1.1.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/remoteEntry.4593f39aaa7f286796fd.js +0 -1
  28. {perspective_python-4.1.1 → perspective_python-4.3.0}/LICENSE.md +0 -0
  29. {perspective_python-4.1.1 → perspective_python-4.3.0}/README.md +0 -0
  30. {perspective_python-4.1.1 → perspective_python-4.3.0}/build.rs +0 -0
  31. {perspective_python-4.1.1 → perspective_python-4.3.0}/docs/index.html +0 -0
  32. {perspective_python-4.1.1 → perspective_python-4.3.0}/docs/lib.md +0 -0
  33. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/extension/finos-perspective-nbextension.json +0 -0
  34. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/handlers/__init__.py +0 -0
  35. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/handlers/aiohttp.py +0 -0
  36. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/handlers/starlette.py +0 -0
  37. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/handlers/tornado.py +0 -0
  38. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/templates/exported_widget.html.template +0 -0
  39. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/__init__.py +0 -0
  40. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/async/test_async_client.py +0 -0
  41. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/async/test_websocket_client.py +0 -0
  42. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/conftest.py +0 -0
  43. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/core/__init__.py +0 -0
  44. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/core/test_async.py +0 -0
  45. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/multi_threaded/__init__.py +0 -0
  46. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/multi_threaded/test_multi_threaded.py +0 -0
  47. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/server/__init__.py +0 -0
  48. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/server/test_server.py +0 -0
  49. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/server/test_session.py +0 -0
  50. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/__init__.py +0 -0
  51. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/arrow/date32.arrow +0 -0
  52. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/arrow/date64.arrow +0 -0
  53. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/arrow/dict.arrow +0 -0
  54. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/arrow/dict_update.arrow +0 -0
  55. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/arrow/int_float_str.arrow +0 -0
  56. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/arrow/int_float_str_file.arrow +0 -0
  57. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/arrow/int_float_str_update.arrow +0 -0
  58. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/object_sequence.py +0 -0
  59. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_column_paths.py +0 -0
  60. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_delete.py +0 -0
  61. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_exception.py +0 -0
  62. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_leaks.py +0 -0
  63. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_ports.py +0 -0
  64. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_remove.py +0 -0
  65. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_table.py +0 -0
  66. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_table_arrow.py +0 -0
  67. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_table_datetime.py +0 -0
  68. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_table_infer.py +0 -0
  69. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_table_limit.py +0 -0
  70. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_table_numpy.py +0 -0
  71. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_table_pandas.py +0 -0
  72. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_table_polars.py +0 -0
  73. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_table_view_table.py +0 -0
  74. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_to_arrow.py +0 -0
  75. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_to_arrow_lz4.py +0 -0
  76. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_to_format.py +0 -0
  77. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_to_polars.py +0 -0
  78. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_update.py +0 -0
  79. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_update_arrow.py +0 -0
  80. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_update_pandas.py +0 -0
  81. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/table/test_view.py +0 -0
  82. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/test_dependencies.py +0 -0
  83. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/viewer/__init__.py +0 -0
  84. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/viewer/test_viewer.py +0 -0
  85. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/widget/__init__.py +0 -0
  86. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/widget/test_widget.py +0 -0
  87. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/tests/widget/test_widget_pandas.py +0 -0
  88. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/widget/__init__.py +0 -0
  89. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/widget/viewer/__init__.py +0 -0
  90. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/widget/viewer/validate.py +0 -0
  91. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/widget/viewer/viewer.py +0 -0
  92. {perspective_python-4.1.1 → perspective_python-4.3.0}/perspective/widget/viewer/viewer_traitlets.py +0 -0
  93. {perspective_python-4.1.1/perspective_python-4.1.1.data → perspective_python-4.3.0/perspective_python-4.3.0.data}/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/install.json +0 -0
  94. /perspective_python-4.1.1/perspective_python-4.1.1.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/253.237a44566dca7b64bf21.js.LICENSE.txt → /perspective_python-4.3.0/perspective_python-4.3.0.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/253.d124f5d4afecc67c70fd.js.LICENSE.txt +0 -0
  95. {perspective_python-4.1.1/perspective_python-4.1.1.data → perspective_python-4.3.0/perspective_python-4.3.0.data}/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/style.js +0 -0
  96. {perspective_python-4.1.1/perspective_python-4.1.1.data → perspective_python-4.3.0/perspective_python-4.3.0.data}/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/third-party-licenses.json +0 -0
  97. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/client/mod.rs +0 -0
  98. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/client/pandas.rs +0 -0
  99. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/client/polars.rs +0 -0
  100. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/client/proxy_session.rs +0 -0
  101. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/client/pyarrow.rs +0 -0
  102. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/client/table_data.rs +0 -0
  103. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/client/update_data.rs +0 -0
  104. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/py_async.rs +0 -0
  105. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/py_err.rs +0 -0
  106. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/server/server_async.rs +0 -0
  107. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/server/server_sync.rs +0 -0
  108. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/server/session_async.rs +0 -0
  109. {perspective_python-4.1.1 → perspective_python-4.3.0}/src/server/session_sync.rs +0 -0
@@ -12,7 +12,7 @@
12
12
 
13
13
  [package]
14
14
  name = "perspective-python"
15
- version = "4.1.1"
15
+ version = "4.3.0"
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/perspective-dev/perspective"
@@ -42,7 +42,7 @@ rustdoc-args = ["--html-in-header", "docs/index.html"]
42
42
 
43
43
  [features]
44
44
  default = []
45
- abi3 = ["pyo3/abi3-py39"]
45
+ abi3 = ["pyo3/abi3-py311"]
46
46
  external-cpp = ["perspective-server/external-cpp"]
47
47
  generate-proto = ["perspective-client/generate-proto"]
48
48
  protobuf-src = ["perspective-client/protobuf-src"]
@@ -53,19 +53,19 @@ crate-type = ["cdylib"]
53
53
  [build-dependencies]
54
54
  cmake = "0.1.50"
55
55
  num_cpus = "^1.16.0"
56
- pyo3-build-config = "0.22.6"
56
+ pyo3-build-config = "0.25.1"
57
57
  python-config-rs = "0.1.2"
58
58
 
59
59
  [dependencies]
60
- perspective-client = { version = "4.1.1" }
61
- perspective-server = { version = "4.1.1" }
60
+ perspective-client = { version = "4.3.0" }
61
+ perspective-server = { version = "4.3.0" }
62
62
  bytes = "1.10.1"
63
63
  chrono = "0.4"
64
- macro_rules_attribute = "0.2.0"
64
+ macro_rules_attribute = "0.2.2"
65
65
  async-lock = "2.5.0"
66
66
  pollster = "0.3.0"
67
67
  extend = "1.1.2"
68
- indexmap = "2.2.6"
68
+ indexmap = "2.12.1"
69
69
  futures = "0.3.28"
70
70
  serde = { version = "1.0" }
71
71
  pyo3 = { version = "0.25.1", features = [
@@ -1644,7 +1644,7 @@ third_party_libraries:
1644
1644
 
1645
1645
  END OF TERMS AND CONDITIONS
1646
1646
  - package_name: js-sys
1647
- package_version: 0.3.82
1647
+ package_version: 0.3.85
1648
1648
  repository: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/js-sys
1649
1649
  license: MIT OR Apache-2.0
1650
1650
  licenses:
@@ -1921,6 +1921,271 @@ third_party_libraries:
1921
1921
  of your accepting any such warranty or additional liability.
1922
1922
 
1923
1923
  END OF TERMS AND CONDITIONS
1924
+ - package_name: libm
1925
+ package_version: 0.2.16
1926
+ repository: https://github.com/rust-lang/compiler-builtins
1927
+ license: MIT
1928
+ licenses:
1929
+ - license: MIT
1930
+ text: |
1931
+ rust-lang/libm as a whole is available for use under the MIT license:
1932
+
1933
+ ------------------------------------------------------------------------------
1934
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1935
+ of this software and associated documentation files (the "Software"), to deal
1936
+ in the Software without restriction, including without limitation the rights
1937
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1938
+ copies of the Software, and to permit persons to whom the Software is
1939
+ furnished to do so, subject to the following conditions:
1940
+
1941
+ The above copyright notice and this permission notice shall be included in all
1942
+ copies or substantial portions of the Software.
1943
+
1944
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1945
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1946
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1947
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1948
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1949
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1950
+ SOFTWARE.
1951
+ ------------------------------------------------------------------------------
1952
+
1953
+ As a contributor, you agree that your code can be used under either the MIT
1954
+ license or the Apache-2.0 license:
1955
+
1956
+ ------------------------------------------------------------------------------
1957
+ Apache License
1958
+ Version 2.0, January 2004
1959
+ http://www.apache.org/licenses/
1960
+
1961
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1962
+
1963
+ 1. Definitions.
1964
+
1965
+ "License" shall mean the terms and conditions for use, reproduction,
1966
+ and distribution as defined by Sections 1 through 9 of this document.
1967
+
1968
+ "Licensor" shall mean the copyright owner or entity authorized by
1969
+ the copyright owner that is granting the License.
1970
+
1971
+ "Legal Entity" shall mean the union of the acting entity and all
1972
+ other entities that control, are controlled by, or are under common
1973
+ control with that entity. For the purposes of this definition,
1974
+ "control" means (i) the power, direct or indirect, to cause the
1975
+ direction or management of such entity, whether by contract or
1976
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1977
+ outstanding shares, or (iii) beneficial ownership of such entity.
1978
+
1979
+ "You" (or "Your") shall mean an individual or Legal Entity
1980
+ exercising permissions granted by this License.
1981
+
1982
+ "Source" form shall mean the preferred form for making modifications,
1983
+ including but not limited to software source code, documentation
1984
+ source, and configuration files.
1985
+
1986
+ "Object" form shall mean any form resulting from mechanical
1987
+ transformation or translation of a Source form, including but
1988
+ not limited to compiled object code, generated documentation,
1989
+ and conversions to other media types.
1990
+
1991
+ "Work" shall mean the work of authorship, whether in Source or
1992
+ Object form, made available under the License, as indicated by a
1993
+ copyright notice that is included in or attached to the work
1994
+ (an example is provided in the Appendix below).
1995
+
1996
+ "Derivative Works" shall mean any work, whether in Source or Object
1997
+ form, that is based on (or derived from) the Work and for which the
1998
+ editorial revisions, annotations, elaborations, or other modifications
1999
+ represent, as a whole, an original work of authorship. For the purposes
2000
+ of this License, Derivative Works shall not include works that remain
2001
+ separable from, or merely link (or bind by name) to the interfaces of,
2002
+ the Work and Derivative Works thereof.
2003
+
2004
+ "Contribution" shall mean any work of authorship, including
2005
+ the original version of the Work and any modifications or additions
2006
+ to that Work or Derivative Works thereof, that is intentionally
2007
+ submitted to Licensor for inclusion in the Work by the copyright owner
2008
+ or by an individual or Legal Entity authorized to submit on behalf of
2009
+ the copyright owner. For the purposes of this definition, "submitted"
2010
+ means any form of electronic, verbal, or written communication sent
2011
+ to the Licensor or its representatives, including but not limited to
2012
+ communication on electronic mailing lists, source code control systems,
2013
+ and issue tracking systems that are managed by, or on behalf of, the
2014
+ Licensor for the purpose of discussing and improving the Work, but
2015
+ excluding communication that is conspicuously marked or otherwise
2016
+ designated in writing by the copyright owner as "Not a Contribution."
2017
+
2018
+ "Contributor" shall mean Licensor and any individual or Legal Entity
2019
+ on behalf of whom a Contribution has been received by Licensor and
2020
+ subsequently incorporated within the Work.
2021
+
2022
+ 2. Grant of Copyright License. Subject to the terms and conditions of
2023
+ this License, each Contributor hereby grants to You a perpetual,
2024
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2025
+ copyright license to reproduce, prepare Derivative Works of,
2026
+ publicly display, publicly perform, sublicense, and distribute the
2027
+ Work and such Derivative Works in Source or Object form.
2028
+
2029
+ 3. Grant of Patent License. Subject to the terms and conditions of
2030
+ this License, each Contributor hereby grants to You a perpetual,
2031
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2032
+ (except as stated in this section) patent license to make, have made,
2033
+ use, offer to sell, sell, import, and otherwise transfer the Work,
2034
+ where such license applies only to those patent claims licensable
2035
+ by such Contributor that are necessarily infringed by their
2036
+ Contribution(s) alone or by combination of their Contribution(s)
2037
+ with the Work to which such Contribution(s) was submitted. If You
2038
+ institute patent litigation against any entity (including a
2039
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
2040
+ or a Contribution incorporated within the Work constitutes direct
2041
+ or contributory patent infringement, then any patent licenses
2042
+ granted to You under this License for that Work shall terminate
2043
+ as of the date such litigation is filed.
2044
+
2045
+ 4. Redistribution. You may reproduce and distribute copies of the
2046
+ Work or Derivative Works thereof in any medium, with or without
2047
+ modifications, and in Source or Object form, provided that You
2048
+ meet the following conditions:
2049
+
2050
+ (a) You must give any other recipients of the Work or
2051
+ Derivative Works a copy of this License; and
2052
+
2053
+ (b) You must cause any modified files to carry prominent notices
2054
+ stating that You changed the files; and
2055
+
2056
+ (c) You must retain, in the Source form of any Derivative Works
2057
+ that You distribute, all copyright, patent, trademark, and
2058
+ attribution notices from the Source form of the Work,
2059
+ excluding those notices that do not pertain to any part of
2060
+ the Derivative Works; and
2061
+
2062
+ (d) If the Work includes a "NOTICE" text file as part of its
2063
+ distribution, then any Derivative Works that You distribute must
2064
+ include a readable copy of the attribution notices contained
2065
+ within such NOTICE file, excluding those notices that do not
2066
+ pertain to any part of the Derivative Works, in at least one
2067
+ of the following places: within a NOTICE text file distributed
2068
+ as part of the Derivative Works; within the Source form or
2069
+ documentation, if provided along with the Derivative Works; or,
2070
+ within a display generated by the Derivative Works, if and
2071
+ wherever such third-party notices normally appear. The contents
2072
+ of the NOTICE file are for informational purposes only and
2073
+ do not modify the License. You may add Your own attribution
2074
+ notices within Derivative Works that You distribute, alongside
2075
+ or as an addendum to the NOTICE text from the Work, provided
2076
+ that such additional attribution notices cannot be construed
2077
+ as modifying the License.
2078
+
2079
+ You may add Your own copyright statement to Your modifications and
2080
+ may provide additional or different license terms and conditions
2081
+ for use, reproduction, or distribution of Your modifications, or
2082
+ for any such Derivative Works as a whole, provided Your use,
2083
+ reproduction, and distribution of the Work otherwise complies with
2084
+ the conditions stated in this License.
2085
+
2086
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
2087
+ any Contribution intentionally submitted for inclusion in the Work
2088
+ by You to the Licensor shall be under the terms and conditions of
2089
+ this License, without any additional terms or conditions.
2090
+ Notwithstanding the above, nothing herein shall supersede or modify
2091
+ the terms of any separate license agreement you may have executed
2092
+ with Licensor regarding such Contributions.
2093
+
2094
+ 6. Trademarks. This License does not grant permission to use the trade
2095
+ names, trademarks, service marks, or product names of the Licensor,
2096
+ except as required for reasonable and customary use in describing the
2097
+ origin of the Work and reproducing the content of the NOTICE file.
2098
+
2099
+ 7. Disclaimer of Warranty. Unless required by applicable law or
2100
+ agreed to in writing, Licensor provides the Work (and each
2101
+ Contributor provides its Contributions) on an "AS IS" BASIS,
2102
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2103
+ implied, including, without limitation, any warranties or conditions
2104
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2105
+ PARTICULAR PURPOSE. You are solely responsible for determining the
2106
+ appropriateness of using or redistributing the Work and assume any
2107
+ risks associated with Your exercise of permissions under this License.
2108
+
2109
+ 8. Limitation of Liability. In no event and under no legal theory,
2110
+ whether in tort (including negligence), contract, or otherwise,
2111
+ unless required by applicable law (such as deliberate and grossly
2112
+ negligent acts) or agreed to in writing, shall any Contributor be
2113
+ liable to You for damages, including any direct, indirect, special,
2114
+ incidental, or consequential damages of any character arising as a
2115
+ result of this License or out of the use or inability to use the
2116
+ Work (including but not limited to damages for loss of goodwill,
2117
+ work stoppage, computer failure or malfunction, or any and all
2118
+ other commercial damages or losses), even if such Contributor
2119
+ has been advised of the possibility of such damages.
2120
+
2121
+ 9. Accepting Warranty or Additional Liability. While redistributing
2122
+ the Work or Derivative Works thereof, You may choose to offer,
2123
+ and charge a fee for, acceptance of support, warranty, indemnity,
2124
+ or other liability obligations and/or rights consistent with this
2125
+ License. However, in accepting such obligations, You may act only
2126
+ on Your own behalf and on Your sole responsibility, not on behalf
2127
+ of any other Contributor, and only if You agree to indemnify,
2128
+ defend, and hold each Contributor harmless for any liability
2129
+ incurred by, or claims asserted against, such Contributor by reason
2130
+ of your accepting any such warranty or additional liability.
2131
+
2132
+ END OF TERMS AND CONDITIONS
2133
+
2134
+ APPENDIX: How to apply the Apache License to your work.
2135
+
2136
+ To apply the Apache License to your work, attach the following
2137
+ boilerplate notice, with the fields enclosed by brackets "[]"
2138
+ replaced with your own identifying information. (Don't include
2139
+ the brackets!) The text should be enclosed in the appropriate
2140
+ comment syntax for the file format. We also recommend that a
2141
+ file or class name and description of purpose be included on the
2142
+ same "printed page" as the copyright notice for easier
2143
+ identification within third-party archives.
2144
+
2145
+ Licensed under the Apache License, Version 2.0 (the "License");
2146
+ you may not use this file except in compliance with the License.
2147
+ You may obtain a copy of the License at
2148
+
2149
+ http://www.apache.org/licenses/LICENSE-2.0
2150
+
2151
+ Unless required by applicable law or agreed to in writing, software
2152
+ distributed under the License is distributed on an "AS IS" BASIS,
2153
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2154
+ See the License for the specific language governing permissions and
2155
+ limitations under the License.
2156
+ ------------------------------------------------------------------------------
2157
+
2158
+ This Rust library contains the following copyrights:
2159
+
2160
+ Copyright (c) 2018 Jorge Aparicio
2161
+
2162
+ Portions of this software are derived from third-party works licensed under
2163
+ terms compatible with the above MIT license:
2164
+
2165
+ * musl libc https://www.musl-libc.org/. This library contains the following
2166
+ copyright:
2167
+
2168
+ Copyright © 2005-2020 Rich Felker, et al.
2169
+
2170
+ * The CORE-MATH project https://core-math.gitlabpages.inria.fr/. CORE-MATH
2171
+ routines are available under the MIT license on a per-file basis.
2172
+
2173
+ The musl libc COPYRIGHT file also includes the following notice relevant to
2174
+ math portions of the library:
2175
+
2176
+ ------------------------------------------------------------------------------
2177
+ Much of the math library code (src/math/* and src/complex/*) is
2178
+ Copyright © 1993,2004 Sun Microsystems or
2179
+ Copyright © 2003-2011 David Schultz or
2180
+ Copyright © 2003-2009 Steven G. Kargl or
2181
+ Copyright © 2003-2009 Bruce D. Evans or
2182
+ Copyright © 2008 Stephen L. Moshier or
2183
+ Copyright © 2017-2018 Arm Limited
2184
+ and labelled as such in comments in the individual source files. All
2185
+ have been licensed under extremely permissive terms.
2186
+ ------------------------------------------------------------------------------
2187
+
2188
+ Copyright notices are retained in src/* files where relevant.
1924
2189
  - package_name: link-cplusplus
1925
2190
  package_version: 1.0.12
1926
2191
  repository: https://github.com/dtolnay/link-cplusplus
@@ -3183,14 +3448,14 @@ third_party_libraries:
3183
3448
 
3184
3449
  END OF TERMS AND CONDITIONS
3185
3450
  - package_name: perspective-client
3186
- package_version: 4.1.1
3451
+ package_version: 4.3.0
3187
3452
  repository: https://github.com/perspective-dev/perspective
3188
3453
  license: Apache-2.0
3189
3454
  licenses:
3190
3455
  - license: Apache-2.0
3191
3456
  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"
3192
3457
  - package_name: perspective-server
3193
- package_version: 4.1.1
3458
+ package_version: 4.3.0
3194
3459
  repository: https://github.com/perspective-dev/perspective
3195
3460
  license: Apache-2.0
3196
3461
  licenses:
@@ -5865,34 +6130,6 @@ third_party_libraries:
5865
6130
  of your accepting any such warranty or additional liability.
5866
6131
 
5867
6132
  END OF TERMS AND CONDITIONS
5868
- - package_name: rand-unique
5869
- package_version: 0.2.2
5870
- repository: https://github.com/hoxxep/rand-unique
5871
- license: MIT OR Apache-2.0
5872
- licenses:
5873
- - license: MIT
5874
- text: |
5875
- Copyright (c) 2023 Liam Gray <gmail@liamg.me>
5876
-
5877
- Permission is hereby granted, free of charge, to any person obtaining a copy
5878
- of this software and associated documentation files (the "Software"), to deal
5879
- in the Software without restriction, including without limitation the rights
5880
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5881
- copies of the Software, and to permit persons to whom the Software is
5882
- furnished to do so, subject to the following conditions:
5883
-
5884
- The above copyright notice and this permission notice shall be included in all
5885
- copies or substantial portions of the Software.
5886
-
5887
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
5888
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
5889
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
5890
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
5891
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
5892
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
5893
- SOFTWARE.
5894
- - license: Apache-2.0
5895
- 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"
5896
6133
  - package_name: rand_chacha
5897
6134
  package_version: 0.9.0
5898
6135
  repository: https://github.com/rust-random/rand
@@ -10181,7 +10418,7 @@ third_party_libraries:
10181
10418
  - license: MIT
10182
10419
  text: NOT FOUND
10183
10420
  - package_name: wasm-bindgen
10184
- package_version: 0.2.105
10421
+ package_version: 0.2.108
10185
10422
  repository: https://github.com/wasm-bindgen/wasm-bindgen
10186
10423
  license: MIT OR Apache-2.0
10187
10424
  licenses:
@@ -10215,7 +10452,7 @@ third_party_libraries:
10215
10452
  - license: Apache-2.0
10216
10453
  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"
10217
10454
  - package_name: wasm-bindgen-macro
10218
- package_version: 0.2.105
10455
+ package_version: 0.2.108
10219
10456
  repository: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro
10220
10457
  license: MIT OR Apache-2.0
10221
10458
  licenses:
@@ -10249,7 +10486,7 @@ third_party_libraries:
10249
10486
  - license: Apache-2.0
10250
10487
  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"
10251
10488
  - package_name: wasm-bindgen-macro-support
10252
- package_version: 0.2.105
10489
+ package_version: 0.2.108
10253
10490
  repository: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro-support
10254
10491
  license: MIT OR Apache-2.0
10255
10492
  licenses:
@@ -10283,7 +10520,7 @@ third_party_libraries:
10283
10520
  - license: Apache-2.0
10284
10521
  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"
10285
10522
  - package_name: wasm-bindgen-shared
10286
- package_version: 0.2.105
10523
+ package_version: 0.2.108
10287
10524
  repository: https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/shared
10288
10525
  license: MIT OR Apache-2.0
10289
10526
  licenses:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: perspective-python
3
- Version: 4.1.1
3
+ Version: 4.3.0
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": "@perspective-dev/python",
3
- "version": "4.1.1",
3
+ "version": "4.3.0",
4
4
  "description": "",
5
5
  "private": true,
6
6
  "repository": {
@@ -13,11 +13,12 @@
13
13
  "build": "node ./build.mjs",
14
14
  "clean": "node ./clean.mjs",
15
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
+ "docs": "node docs.mjs"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@perspective-dev/scripts": "workspace:*",
20
20
  "@iarna/toml": "catalog:",
21
+ "superstore-arrow": "catalog:",
21
22
  "tar": "catalog:",
22
23
  "zx": "catalog:"
23
24
  },
@@ -10,7 +10,7 @@
10
10
  # ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
11
  # ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
12
 
13
- __version__ = "4.1.1"
13
+ __version__ = "4.3.0"
14
14
  __all__ = [
15
15
  "_jupyter_labextension_paths",
16
16
  "Server",
@@ -21,6 +21,7 @@ __all__ = [
21
21
  "ProxySession",
22
22
  "AsyncClient",
23
23
  "AsyncServer",
24
+ "GenericSQLVirtualServerModel",
24
25
  "VirtualServer",
25
26
  "num_cpus",
26
27
  "set_num_cpus",
@@ -353,6 +354,7 @@ from .perspective import (
353
354
  AsyncServer,
354
355
  AsyncClient,
355
356
  VirtualServer,
357
+ GenericSQLVirtualServerModel,
356
358
  # NOTE: these are classes without constructors,
357
359
  # so we import them just for type hinting
358
360
  Table, # noqa: F401
@@ -1838,10 +1838,10 @@ class TestViewExpression(object):
1838
1838
  source = results["a"][i]
1839
1839
  idx = results["b"][i]
1840
1840
  assert results["w"][i] == "abcdef-hijk"
1841
- assert results["x"][i] == re.sub(r"[0-9]{4}$", idx, source, 1)
1841
+ assert results["x"][i] == re.sub(r"[0-9]{4}$", idx, source, count=1)
1842
1842
  assert results["y"][i] == source
1843
1843
  assert results["z"][i] == re.sub(
1844
- r"^[0-9]{4}", "long string, very cool!", source, 1
1844
+ r"^[0-9]{4}", "long string, very cool!", source, count=1
1845
1845
  )
1846
1846
 
1847
1847
  def test_view_replace_invalid(self):
@@ -0,0 +1,12 @@
1
+ # ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
2
+ # ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
3
+ # ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
4
+ # ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
5
+ # ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
6
+ # ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
7
+ # ┃ Copyright (c) 2017, the Perspective Authors. ┃
8
+ # ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
9
+ # ┃ This file is part of the Perspective library, distributed under the terms ┃
10
+ # ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
+ # ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
+