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