bashkit 0.1.19__tar.gz → 0.1.21__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 (440) hide show
  1. {bashkit-0.1.19 → bashkit-0.1.21}/Cargo.lock +163 -692
  2. {bashkit-0.1.19 → bashkit-0.1.21}/Cargo.toml +4 -2
  3. {bashkit-0.1.19 → bashkit-0.1.21}/PKG-INFO +137 -7
  4. {bashkit-0.1.19/crates/bashkit-python → bashkit-0.1.21}/README.md +135 -6
  5. {bashkit-0.1.19 → bashkit-0.1.21}/bashkit/__init__.py +6 -0
  6. {bashkit-0.1.19 → bashkit-0.1.21}/bashkit/_bashkit.pyi +214 -16
  7. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/Cargo.toml +1 -2
  8. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/README.md +10 -5
  9. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/docs/compatibility.md +3 -3
  10. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/docs/credential-injection.md +2 -2
  11. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/docs/custom_builtins.md +35 -0
  12. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/docs/live_mounts.md +1 -1
  13. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/docs/python.md +10 -4
  14. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/docs/ssh.md +2 -2
  15. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/docs/threat-model.md +3 -2
  16. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/docs/typescript.md +2 -2
  17. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/python_external_functions.rs +1 -0
  18. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/python_scripts.rs +4 -1
  19. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/archive.rs +137 -21
  20. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/awk.rs +173 -112
  21. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/date.rs +17 -1
  22. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/dirstack.rs +18 -0
  23. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/expand.rs +22 -1
  24. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/expr.rs +15 -1
  25. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/fileops.rs +80 -39
  26. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/git.rs +1 -1
  27. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/grep.rs +192 -35
  28. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/jq.rs +16 -0
  29. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/ls.rs +91 -16
  30. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/mod.rs +73 -0
  31. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/nl.rs +15 -1
  32. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/numfmt.rs +35 -6
  33. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/python.rs +155 -22
  34. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/read.rs +74 -8
  35. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/retry.rs +14 -0
  36. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/rg.rs +11 -1
  37. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/sed.rs +168 -14
  38. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/sortuniq.rs +28 -8
  39. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/split.rs +32 -3
  40. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/strings.rs +20 -8
  41. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/timeout.rs +23 -4
  42. bashkit-0.1.21/crates/bashkit/src/builtins/yes.rs +86 -0
  43. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/zip_cmd.rs +58 -2
  44. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/credential.rs +39 -14
  45. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/fs/limits.rs +1 -1
  46. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/fs/memory.rs +45 -3
  47. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/fs/overlay.rs +112 -21
  48. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/fs/posix.rs +114 -1
  49. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/fs/realfs.rs +109 -41
  50. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/git/config.rs +64 -14
  51. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/git/mod.rs +1 -1
  52. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/interpreter/glob.rs +85 -24
  53. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/interpreter/mod.rs +2346 -1000
  54. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/lib.rs +506 -27
  55. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/limits.rs +59 -18
  56. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/logging_impl.rs +70 -5
  57. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/network/allowlist.rs +1 -1
  58. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/network/bot_auth.rs +57 -11
  59. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/network/client.rs +219 -84
  60. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/parser/ast.rs +31 -26
  61. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/parser/budget.rs +18 -14
  62. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/parser/lexer.rs +89 -8
  63. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/parser/mod.rs +222 -199
  64. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/parser/span.rs +2 -2
  65. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/scripted_tool/execute.rs +13 -1
  66. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/scripted_tool/mod.rs +24 -0
  67. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/scripted_tool/toolset.rs +48 -0
  68. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/snapshot.rs +64 -37
  69. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/ssh/mod.rs +1 -1
  70. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/ssh/russh_handler.rs +7 -9
  71. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/tool.rs +4 -1
  72. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/trace.rs +9 -2
  73. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/awk_pattern_tests.rs +18 -0
  74. bashkit-0.1.21/crates/bashkit/tests/awk_range_pattern_tests.rs +108 -0
  75. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/background_exec_tests.rs +13 -0
  76. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/byte_range_panic_tests.rs +26 -0
  77. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/coproc_tests.rs +32 -0
  78. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/credential_injection_tests.rs +1 -1
  79. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/final_env_tests.rs +25 -0
  80. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/find_multi_path_tests.rs +26 -0
  81. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/git_remote_security_tests.rs +13 -3
  82. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/git_security_tests.rs +1 -1
  83. bashkit-0.1.21/crates/bashkit/tests/harness_example_tests.rs +136 -0
  84. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/issue_274_test.rs +17 -0
  85. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/issue_853_test.rs +22 -0
  86. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/logging_security_tests.rs +1 -1
  87. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/network_security_tests.rs +1 -1
  88. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/output_truncation_tests.rs +14 -0
  89. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/python_integration_tests.rs +19 -4
  90. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/python_security_tests.rs +43 -3
  91. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/realfs_tests.rs +57 -0
  92. bashkit-0.1.21/crates/bashkit/tests/release_profile_tests.rs +39 -0
  93. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/set_e_and_or_tests.rs +32 -1
  94. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/snapshot_tests.rs +250 -1
  95. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +23 -0
  96. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +17 -0
  97. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +13 -0
  98. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +10 -0
  99. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +10 -0
  100. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +23 -0
  101. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +9 -0
  102. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +10 -0
  103. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +8 -0
  104. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/source.test.sh +34 -0
  105. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +19 -0
  106. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_tests.rs +9 -2
  107. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/threat_model_tests.rs +108 -5
  108. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/unicode_security_tests.rs +1 -1
  109. {bashkit-0.1.19 → bashkit-0.1.21/crates/bashkit-python}/README.md +135 -6
  110. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/examples/bash_basics.py +67 -2
  111. bashkit-0.1.21/crates/bashkit-python/examples/jupyter_async_test.ipynb +641 -0
  112. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/src/lib.rs +1964 -448
  113. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/_bashkit_categories.py +400 -3
  114. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/_security_core.py +1 -1
  115. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_ai_adapters.py +12 -0
  116. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_async_callbacks.py +164 -0
  117. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_basic.py +12 -0
  118. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_error_handling.py +2 -0
  119. bashkit-0.1.21/crates/bashkit-python/tests/test_fastapi_integration.py +289 -0
  120. bashkit-0.1.21/crates/bashkit-python/tests/test_jupyter_compat.py +220 -0
  121. bashkit-0.1.21/crates/bashkit-python/tests/test_registered_tools.py +326 -0
  122. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_security.py +1 -1
  123. bashkit-0.1.21/crates/bashkit-python/tests/test_streaming_output.py +207 -0
  124. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_vfs.py +1 -0
  125. {bashkit-0.1.19 → bashkit-0.1.21}/pyproject.toml +1 -0
  126. bashkit-0.1.19/crates/bashkit/src/builtins/yes.rs +0 -44
  127. bashkit-0.1.19/crates/bashkit-python/tests/test_fastapi_integration.py +0 -192
  128. {bashkit-0.1.19 → bashkit-0.1.21}/bashkit/deepagents.py +0 -0
  129. {bashkit-0.1.19 → bashkit-0.1.21}/bashkit/langchain.py +0 -0
  130. {bashkit-0.1.19 → bashkit-0.1.21}/bashkit/py.typed +0 -0
  131. {bashkit-0.1.19 → bashkit-0.1.21}/bashkit/pydantic_ai.py +0 -0
  132. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/benches/parallel_execution.rs +0 -0
  133. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/docs/hooks.md +0 -0
  134. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/docs/logging.md +0 -0
  135. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/agent_tool.rs +0 -0
  136. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/basic.rs +0 -0
  137. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/custom_backend.rs +0 -0
  138. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/custom_builtins.rs +0 -0
  139. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
  140. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/custom_fs.rs +0 -0
  141. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/git_workflow.rs +0 -0
  142. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/live_mounts.rs +0 -0
  143. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/realfs_readonly.rs +0 -0
  144. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
  145. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/resource_limits.rs +0 -0
  146. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/scripted_tool.rs +0 -0
  147. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/show_tool_output.rs +0 -0
  148. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/ssh_supabase.rs +0 -0
  149. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/streaming_output.rs +0 -0
  150. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/text_files.rs +0 -0
  151. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/text_processing.rs +0 -0
  152. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
  153. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/typescript_scripts.rs +0 -0
  154. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/examples/virtual_identity.rs +0 -0
  155. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/alias.rs +0 -0
  156. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
  157. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/assert.rs +0 -0
  158. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/base64.rs +0 -0
  159. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/bc.rs +0 -0
  160. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/caller.rs +0 -0
  161. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/cat.rs +0 -0
  162. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/checksum.rs +0 -0
  163. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/clear.rs +0 -0
  164. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/column.rs +0 -0
  165. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/comm.rs +0 -0
  166. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/compgen.rs +0 -0
  167. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/csv.rs +0 -0
  168. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/curl.rs +0 -0
  169. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/cuttr.rs +0 -0
  170. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/diff.rs +0 -0
  171. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/disk.rs +0 -0
  172. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/dotenv.rs +0 -0
  173. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/echo.rs +0 -0
  174. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/environ.rs +0 -0
  175. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/envsubst.rs +0 -0
  176. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/export.rs +0 -0
  177. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/fc.rs +0 -0
  178. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/flow.rs +0 -0
  179. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/fold.rs +0 -0
  180. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
  181. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/headtail.rs +0 -0
  182. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/help.rs +0 -0
  183. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/hextools.rs +0 -0
  184. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/http.rs +0 -0
  185. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/iconv.rs +0 -0
  186. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/inspect.rs +0 -0
  187. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/introspect.rs +0 -0
  188. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/join.rs +0 -0
  189. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/json.rs +0 -0
  190. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/log.rs +0 -0
  191. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/mapfile.rs +0 -0
  192. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
  193. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/navigation.rs +0 -0
  194. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/parallel.rs +0 -0
  195. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/paste.rs +0 -0
  196. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/patch.rs +0 -0
  197. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/path.rs +0 -0
  198. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/pipeline.rs +0 -0
  199. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/printf.rs +0 -0
  200. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/search_common.rs +0 -0
  201. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/semver.rs +0 -0
  202. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/seq.rs +0 -0
  203. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/sleep.rs +0 -0
  204. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/source.rs +0 -0
  205. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/ssh.rs +0 -0
  206. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/system.rs +0 -0
  207. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/template.rs +0 -0
  208. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/test.rs +0 -0
  209. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/textrev.rs +0 -0
  210. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/tomlq.rs +0 -0
  211. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/trap.rs +0 -0
  212. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/tree.rs +0 -0
  213. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/typescript.rs +0 -0
  214. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/vars.rs +0 -0
  215. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/verify.rs +0 -0
  216. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/wait.rs +0 -0
  217. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/wc.rs +0 -0
  218. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/builtins/yaml.rs +0 -0
  219. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/error.rs +0 -0
  220. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/fs/backend.rs +0 -0
  221. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/fs/mod.rs +0 -0
  222. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/fs/mountable.rs +0 -0
  223. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/fs/search.rs +0 -0
  224. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/fs/traits.rs +0 -0
  225. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/git/client.rs +0 -0
  226. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/hooks.rs +0 -0
  227. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/interpreter/jobs.rs +0 -0
  228. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/interpreter/state.rs +0 -0
  229. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/network/mod.rs +0 -0
  230. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/parser/tokens.rs +0 -0
  231. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/ssh/allowlist.rs +0 -0
  232. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/ssh/client.rs +0 -0
  233. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/ssh/config.rs +0 -0
  234. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/ssh/handler.rs +0 -0
  235. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/src/tool_def.rs +0 -0
  236. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/allexport_tests.rs +0 -0
  237. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/awk_fuzz_scaffold_tests.rs +0 -0
  238. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/awk_newline_tests.rs +0 -0
  239. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/awk_printf_expr_test.rs +0 -0
  240. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/bash_source_tests.rs +0 -0
  241. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/blackbox_security_tests.rs +0 -0
  242. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/builtin_error_security_tests.rs +0 -0
  243. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/cancellation_tests.rs +0 -0
  244. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/cmdsub_quote_test.rs +0 -0
  245. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/custom_builtins_tests.rs +0 -0
  246. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/custom_fs_tests.rs +0 -0
  247. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/dev_null_tests.rs +0 -0
  248. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/git_advanced_tests.rs +0 -0
  249. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/git_inspection_tests.rs +0 -0
  250. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/git_integration_tests.rs +0 -0
  251. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/history_tests.rs +0 -0
  252. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/issue_1175_test.rs +0 -0
  253. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/issue_275_279_282_test.rs +0 -0
  254. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/issue_276_test.rs +0 -0
  255. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/issue_277_test.rs +0 -0
  256. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/issue_289_test.rs +0 -0
  257. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/issue_290_test.rs +0 -0
  258. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/issue_291_test.rs +0 -0
  259. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/issue_872_test.rs +0 -0
  260. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/issue_873_test.rs +0 -0
  261. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/issue_875_test.rs +0 -0
  262. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/jq_fuzz_scaffold_tests.rs +0 -0
  263. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/live_mount_tests.rs +0 -0
  264. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/mkfifo_tests.rs +0 -0
  265. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/nested_subscript_tests.rs +0 -0
  266. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/overlay_path_validation_tests.rs +0 -0
  267. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/proptest_differential.rs +0 -0
  268. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/proptest_security.rs +0 -0
  269. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/regex_limit_tests.rs +0 -0
  270. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/script_execution_tests.rs +0 -0
  271. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/security_audit_pocs.rs +0 -0
  272. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
  273. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
  274. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
  275. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
  276. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
  277. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
  278. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
  279. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
  280. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
  281. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
  282. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
  283. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/skills_tests.rs +0 -0
  284. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/source_function_tests.rs +0 -0
  285. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
  286. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
  287. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
  288. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
  289. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
  290. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
  291. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
  292. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
  293. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
  294. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
  295. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
  296. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
  297. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
  298. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
  299. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
  300. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
  301. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
  302. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
  303. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
  304. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
  305. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
  306. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
  307. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
  308. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
  309. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
  310. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
  311. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
  312. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
  313. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
  314. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
  315. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
  316. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
  317. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
  318. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
  319. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
  320. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
  321. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
  322. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
  323. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
  324. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
  325. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
  326. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
  327. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
  328. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
  329. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
  330. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
  331. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
  332. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
  333. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
  334. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
  335. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
  336. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
  337. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
  338. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
  339. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
  340. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
  341. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
  342. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
  343. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
  344. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
  345. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
  346. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
  347. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
  348. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
  349. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
  350. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
  351. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
  352. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
  353. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
  354. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
  355. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
  356. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
  357. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
  358. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
  359. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
  360. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
  361. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
  362. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
  363. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
  364. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
  365. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
  366. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
  367. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
  368. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
  369. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
  370. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
  371. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
  372. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
  373. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
  374. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
  375. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
  376. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
  377. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
  378. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
  379. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
  380. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
  381. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
  382. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
  383. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
  384. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
  385. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
  386. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
  387. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
  388. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
  389. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
  390. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
  391. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
  392. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
  393. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
  394. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
  395. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
  396. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
  397. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
  398. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
  399. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
  400. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
  401. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
  402. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
  403. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
  404. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
  405. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
  406. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
  407. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
  408. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
  409. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
  410. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
  411. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
  412. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
  413. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
  414. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/spec_runner.rs +0 -0
  415. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
  416. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
  417. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/stack_overflow_regression_tests.rs +0 -0
  418. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/subst_depth_limit_tests.rs +0 -0
  419. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/symlink_overlay_security_tests.rs +0 -0
  420. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/tty_tests.rs +0 -0
  421. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/typescript_integration_tests.rs +0 -0
  422. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/typescript_security_tests.rs +0 -0
  423. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/unset_function_tests.rs +0 -0
  424. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit/tests/urandom_tests.rs +0 -0
  425. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/Cargo.toml +0 -0
  426. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/examples/data_pipeline.py +0 -0
  427. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
  428. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
  429. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
  430. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/examples/llm_tool.py +0 -0
  431. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/_security_advanced.py +0 -0
  432. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_builtins.py +0 -0
  433. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_control_flow.py +0 -0
  434. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_integration.py +0 -0
  435. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
  436. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_python_security.py +0 -0
  437. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_scripts.py +0 -0
  438. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
  439. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
  440. {bashkit-0.1.19 → bashkit-0.1.21}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
@@ -41,13 +41,13 @@ dependencies = [
41
41
 
42
42
  [[package]]
43
43
  name = "aes"
44
- version = "0.9.0-rc.4"
44
+ version = "0.9.0"
45
45
  source = "registry+https://github.com/rust-lang/crates.io-index"
46
- checksum = "04097e08a47d9ad181c2e1f4a5fabc9ae06ce8839a333ba9a949bcb0d31fd2a3"
46
+ checksum = "66bd29a732b644c0431c6140f370d097879203d79b80c94a6747ba0872adaef8"
47
47
  dependencies = [
48
48
  "cipher 0.5.1",
49
49
  "cpubits",
50
- "cpufeatures 0.2.17",
50
+ "cpufeatures 0.3.0",
51
51
  ]
52
52
 
53
53
  [[package]]
@@ -71,9 +71,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
71
71
  checksum = "e22c0c90bbe8d4f77c3ca9ddabe41a1f8382d6fc1f7cea89459d0f320371f972"
72
72
  dependencies = [
73
73
  "aead 0.6.0-rc.10",
74
- "aes 0.9.0-rc.4",
74
+ "aes 0.9.0",
75
75
  "cipher 0.5.1",
76
- "ctr 0.10.0-rc.4",
76
+ "ctr 0.10.0",
77
77
  "ghash 0.6.0",
78
78
  "subtle",
79
79
  ]
@@ -167,7 +167,7 @@ version = "1.1.5"
167
167
  source = "registry+https://github.com/rust-lang/crates.io-index"
168
168
  checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
169
169
  dependencies = [
170
- "windows-sys 0.61.2",
170
+ "windows-sys 0.60.2",
171
171
  ]
172
172
 
173
173
  [[package]]
@@ -178,7 +178,7 @@ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
178
178
  dependencies = [
179
179
  "anstyle",
180
180
  "once_cell_polyfill",
181
- "windows-sys 0.61.2",
181
+ "windows-sys 0.60.2",
182
182
  ]
183
183
 
184
184
  [[package]]
@@ -187,15 +187,6 @@ version = "1.0.102"
187
187
  source = "registry+https://github.com/rust-lang/crates.io-index"
188
188
  checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
189
189
 
190
- [[package]]
191
- name = "approx"
192
- version = "0.5.1"
193
- source = "registry+https://github.com/rust-lang/crates.io-index"
194
- checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
195
- dependencies = [
196
- "num-traits",
197
- ]
198
-
199
190
  [[package]]
200
191
  name = "argon2"
201
192
  version = "0.5.3"
@@ -293,12 +284,6 @@ dependencies = [
293
284
  "fs_extra",
294
285
  ]
295
286
 
296
- [[package]]
297
- name = "base16ct"
298
- version = "0.2.0"
299
- source = "registry+https://github.com/rust-lang/crates.io-index"
300
- checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
301
-
302
287
  [[package]]
303
288
  name = "base16ct"
304
289
  version = "1.0.0"
@@ -319,7 +304,7 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
319
304
 
320
305
  [[package]]
321
306
  name = "bashkit"
322
- version = "0.1.19"
307
+ version = "0.1.21"
323
308
  dependencies = [
324
309
  "anyhow",
325
310
  "async-trait",
@@ -345,7 +330,6 @@ dependencies = [
345
330
  "regex",
346
331
  "reqwest",
347
332
  "russh",
348
- "russh-keys",
349
333
  "schemars",
350
334
  "serde",
351
335
  "serde_json",
@@ -365,7 +349,7 @@ dependencies = [
365
349
 
366
350
  [[package]]
367
351
  name = "bashkit-bench"
368
- version = "0.1.19"
352
+ version = "0.1.21"
369
353
  dependencies = [
370
354
  "anyhow",
371
355
  "bashkit",
@@ -373,14 +357,13 @@ dependencies = [
373
357
  "colored",
374
358
  "serde",
375
359
  "serde_json",
376
- "statrs",
377
360
  "tabled",
378
361
  "tokio",
379
362
  ]
380
363
 
381
364
  [[package]]
382
365
  name = "bashkit-cli"
383
- version = "0.1.19"
366
+ version = "0.1.21"
384
367
  dependencies = [
385
368
  "anyhow",
386
369
  "bashkit",
@@ -396,7 +379,7 @@ dependencies = [
396
379
 
397
380
  [[package]]
398
381
  name = "bashkit-eval"
399
- version = "0.1.19"
382
+ version = "0.1.21"
400
383
  dependencies = [
401
384
  "anyhow",
402
385
  "async-trait",
@@ -412,7 +395,7 @@ dependencies = [
412
395
 
413
396
  [[package]]
414
397
  name = "bashkit-js"
415
- version = "0.1.19"
398
+ version = "0.1.21"
416
399
  dependencies = [
417
400
  "bashkit",
418
401
  "napi",
@@ -425,7 +408,7 @@ dependencies = [
425
408
 
426
409
  [[package]]
427
410
  name = "bashkit-python"
428
- version = "0.1.19"
411
+ version = "0.1.21"
429
412
  dependencies = [
430
413
  "bashkit",
431
414
  "num-bigint",
@@ -463,9 +446,9 @@ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
463
446
 
464
447
  [[package]]
465
448
  name = "bitflags"
466
- version = "2.11.0"
449
+ version = "2.11.1"
467
450
  source = "registry+https://github.com/rust-lang/crates.io-index"
468
- checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
451
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
469
452
 
470
453
  [[package]]
471
454
  name = "bitvec"
@@ -615,18 +598,18 @@ dependencies = [
615
598
 
616
599
  [[package]]
617
600
  name = "cbc"
618
- version = "0.2.0-rc.4"
601
+ version = "0.2.0"
619
602
  source = "registry+https://github.com/rust-lang/crates.io-index"
620
- checksum = "ab1412b9ae2463ede01f1e591412dfbcfeacecf40e8c4c3e0655814c19065c38"
603
+ checksum = "98db6aeaef0eeef2c1e3ce9a27b739218825dae116076352ac3777076aa22225"
621
604
  dependencies = [
622
605
  "cipher 0.5.1",
623
606
  ]
624
607
 
625
608
  [[package]]
626
609
  name = "cc"
627
- version = "1.2.59"
610
+ version = "1.2.60"
628
611
  source = "registry+https://github.com/rust-lang/crates.io-index"
629
- checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
612
+ checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
630
613
  dependencies = [
631
614
  "find-msvc-tools",
632
615
  "jobserver",
@@ -671,7 +654,7 @@ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
671
654
  dependencies = [
672
655
  "cfg-if",
673
656
  "cpufeatures 0.3.0",
674
- "rand_core 0.10.0",
657
+ "rand_core 0.10.1",
675
658
  ]
676
659
 
677
660
  [[package]]
@@ -827,7 +810,7 @@ version = "3.1.1"
827
810
  source = "registry+https://github.com/rust-lang/crates.io-index"
828
811
  checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
829
812
  dependencies = [
830
- "windows-sys 0.61.2",
813
+ "windows-sys 0.52.0",
831
814
  ]
832
815
 
833
816
  [[package]]
@@ -1014,18 +997,6 @@ version = "0.2.4"
1014
997
  source = "registry+https://github.com/rust-lang/crates.io-index"
1015
998
  checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
1016
999
 
1017
- [[package]]
1018
- name = "crypto-bigint"
1019
- version = "0.5.5"
1020
- source = "registry+https://github.com/rust-lang/crates.io-index"
1021
- checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
1022
- dependencies = [
1023
- "generic-array 0.14.7",
1024
- "rand_core 0.6.4",
1025
- "subtle",
1026
- "zeroize",
1027
- ]
1028
-
1029
1000
  [[package]]
1030
1001
  name = "crypto-bigint"
1031
1002
  version = "0.7.3"
@@ -1037,7 +1008,7 @@ dependencies = [
1037
1008
  "getrandom 0.4.2",
1038
1009
  "hybrid-array",
1039
1010
  "num-traits",
1040
- "rand_core 0.10.0",
1011
+ "rand_core 0.10.1",
1041
1012
  "serdect",
1042
1013
  "subtle",
1043
1014
  "zeroize",
@@ -1061,7 +1032,7 @@ checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
1061
1032
  dependencies = [
1062
1033
  "getrandom 0.4.2",
1063
1034
  "hybrid-array",
1064
- "rand_core 0.10.0",
1035
+ "rand_core 0.10.1",
1065
1036
  ]
1066
1037
 
1067
1038
  [[package]]
@@ -1070,9 +1041,9 @@ version = "0.7.0"
1070
1041
  source = "registry+https://github.com/rust-lang/crates.io-index"
1071
1042
  checksum = "21f41f23de7d24cdbda7f0c4d9c0351f99a4ceb258ef30e5c1927af8987ffe5a"
1072
1043
  dependencies = [
1073
- "crypto-bigint 0.7.3",
1044
+ "crypto-bigint",
1074
1045
  "libm",
1075
- "rand_core 0.10.0",
1046
+ "rand_core 0.10.1",
1076
1047
  ]
1077
1048
 
1078
1049
  [[package]]
@@ -1102,9 +1073,9 @@ dependencies = [
1102
1073
 
1103
1074
  [[package]]
1104
1075
  name = "ctr"
1105
- version = "0.10.0-rc.4"
1076
+ version = "0.10.0"
1106
1077
  source = "registry+https://github.com/rust-lang/crates.io-index"
1107
- checksum = "fee683dd898fbd052617b4514bc31f98bc32081a83b69ec46adef3b1ef4ae36f"
1078
+ checksum = "17469f8eb9bdbfad10f71f4cfddfd38b01143520c0e717d8796ccb4d44d44e42"
1108
1079
  dependencies = [
1109
1080
  "cipher 0.5.1",
1110
1081
  ]
@@ -1186,7 +1157,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
1157
  checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
1187
1158
  dependencies = [
1188
1159
  "const-oid 0.9.6",
1189
- "pem-rfc7468 0.7.0",
1190
1160
  "zeroize",
1191
1161
  ]
1192
1162
 
@@ -1286,20 +1256,6 @@ version = "1.0.20"
1286
1256
  source = "registry+https://github.com/rust-lang/crates.io-index"
1287
1257
  checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
1288
1258
 
1289
- [[package]]
1290
- name = "ecdsa"
1291
- version = "0.16.9"
1292
- source = "registry+https://github.com/rust-lang/crates.io-index"
1293
- checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
1294
- dependencies = [
1295
- "der 0.7.10",
1296
- "digest 0.10.7",
1297
- "elliptic-curve 0.13.8",
1298
- "rfc6979 0.4.0",
1299
- "signature 2.2.0",
1300
- "spki 0.7.3",
1301
- ]
1302
-
1303
1259
  [[package]]
1304
1260
  name = "ecdsa"
1305
1261
  version = "0.17.0-rc.16"
@@ -1308,8 +1264,8 @@ checksum = "91bbdd377139884fafcad8dc43a760a3e1e681aa26db910257fa6535b70e1829"
1308
1264
  dependencies = [
1309
1265
  "der 0.8.0",
1310
1266
  "digest 0.11.2",
1311
- "elliptic-curve 0.14.0-rc.29",
1312
- "rfc6979 0.5.0-rc.5",
1267
+ "elliptic-curve",
1268
+ "rfc6979",
1313
1269
  "signature 3.0.0-rc.10",
1314
1270
  "spki 0.8.0",
1315
1271
  "zeroize",
@@ -1358,7 +1314,7 @@ checksum = "053618a4c3d3bc24f188aa660ae75a46eeab74ef07fb415c61431e5e7cd4749b"
1358
1314
  dependencies = [
1359
1315
  "curve25519-dalek 5.0.0-pre.6",
1360
1316
  "ed25519 3.0.0-rc.4",
1361
- "rand_core 0.10.0",
1317
+ "rand_core 0.10.1",
1362
1318
  "serde",
1363
1319
  "sha2 0.11.0",
1364
1320
  "signature 3.0.0-rc.10",
@@ -1374,44 +1330,23 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1374
1330
 
1375
1331
  [[package]]
1376
1332
  name = "elliptic-curve"
1377
- version = "0.13.8"
1333
+ version = "0.14.0-rc.30"
1378
1334
  source = "registry+https://github.com/rust-lang/crates.io-index"
1379
- checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
1335
+ checksum = "7d7a0bfd012613a7bcfe02cbfccf2b846e9ef9e1bccb641c48d461253cfb034d"
1380
1336
  dependencies = [
1381
- "base16ct 0.2.0",
1382
- "crypto-bigint 0.5.5",
1383
- "digest 0.10.7",
1384
- "ff",
1385
- "generic-array 0.14.7",
1386
- "group",
1387
- "hkdf 0.12.4",
1388
- "pem-rfc7468 0.7.0",
1389
- "pkcs8 0.10.2",
1390
- "rand_core 0.6.4",
1391
- "sec1 0.7.3",
1392
- "subtle",
1393
- "zeroize",
1394
- ]
1395
-
1396
- [[package]]
1397
- name = "elliptic-curve"
1398
- version = "0.14.0-rc.29"
1399
- source = "registry+https://github.com/rust-lang/crates.io-index"
1400
- checksum = "e84043d573efd4ac9d2d125817979a379204bf7e328b25a4a30487e8d100e618"
1401
- dependencies = [
1402
- "base16ct 1.0.0",
1403
- "crypto-bigint 0.7.3",
1337
+ "base16ct",
1338
+ "crypto-bigint",
1404
1339
  "crypto-common 0.2.1",
1405
1340
  "digest 0.11.2",
1406
- "hkdf 0.13.0",
1341
+ "hkdf",
1407
1342
  "hybrid-array",
1408
1343
  "once_cell",
1409
1344
  "pem-rfc7468 1.0.0",
1410
1345
  "pkcs8 0.11.0-rc.11",
1411
- "rand_core 0.10.0",
1346
+ "rand_core 0.10.1",
1412
1347
  "rustcrypto-ff",
1413
1348
  "rustcrypto-group",
1414
- "sec1 0.8.1",
1349
+ "sec1",
1415
1350
  "subtle",
1416
1351
  "zeroize",
1417
1352
  ]
@@ -1465,7 +1400,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
1400
  checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1466
1401
  dependencies = [
1467
1402
  "libc",
1468
- "windows-sys 0.61.2",
1403
+ "windows-sys 0.52.0",
1469
1404
  ]
1470
1405
 
1471
1406
  [[package]]
@@ -1482,7 +1417,7 @@ checksum = "fe5e43d0f78a42ad591453aedb1d7ae631ce7ee445c7643691055a9ed8d3b01c"
1482
1417
  dependencies = [
1483
1418
  "log",
1484
1419
  "once_cell",
1485
- "rand 0.8.5",
1420
+ "rand 0.8.6",
1486
1421
  ]
1487
1422
 
1488
1423
  [[package]]
@@ -1502,16 +1437,6 @@ version = "2.4.1"
1502
1437
  source = "registry+https://github.com/rust-lang/crates.io-index"
1503
1438
  checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
1504
1439
 
1505
- [[package]]
1506
- name = "ff"
1507
- version = "0.13.1"
1508
- source = "registry+https://github.com/rust-lang/crates.io-index"
1509
- checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
1510
- dependencies = [
1511
- "rand_core 0.6.4",
1512
- "subtle",
1513
- ]
1514
-
1515
1440
  [[package]]
1516
1441
  name = "fiat-crypto"
1517
1442
  version = "0.2.9"
@@ -1675,7 +1600,6 @@ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1675
1600
  dependencies = [
1676
1601
  "typenum",
1677
1602
  "version_check",
1678
- "zeroize",
1679
1603
  ]
1680
1604
 
1681
1605
  [[package]]
@@ -1758,7 +1682,7 @@ dependencies = [
1758
1682
  "cfg-if",
1759
1683
  "libc",
1760
1684
  "r-efi 6.0.0",
1761
- "rand_core 0.10.0",
1685
+ "rand_core 0.10.1",
1762
1686
  "wasip2",
1763
1687
  "wasip3",
1764
1688
  ]
@@ -1782,17 +1706,6 @@ dependencies = [
1782
1706
  "polyval 0.7.1",
1783
1707
  ]
1784
1708
 
1785
- [[package]]
1786
- name = "group"
1787
- version = "0.13.0"
1788
- source = "registry+https://github.com/rust-lang/crates.io-index"
1789
- checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
1790
- dependencies = [
1791
- "ff",
1792
- "rand_core 0.6.4",
1793
- "subtle",
1794
- ]
1795
-
1796
1709
  [[package]]
1797
1710
  name = "half"
1798
1711
  version = "2.7.1"
@@ -1833,6 +1746,12 @@ dependencies = [
1833
1746
  "foldhash 0.2.0",
1834
1747
  ]
1835
1748
 
1749
+ [[package]]
1750
+ name = "hashbrown"
1751
+ version = "0.17.0"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
1754
+
1836
1755
  [[package]]
1837
1756
  name = "heapless"
1838
1757
  version = "0.7.17"
@@ -1871,15 +1790,6 @@ version = "0.5.0"
1871
1790
  source = "registry+https://github.com/rust-lang/crates.io-index"
1872
1791
  checksum = "242402749acf71e6f32f5857598b7002c4058a4e3c3b22b4c7d51cab9aea754e"
1873
1792
 
1874
- [[package]]
1875
- name = "hkdf"
1876
- version = "0.12.4"
1877
- source = "registry+https://github.com/rust-lang/crates.io-index"
1878
- checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1879
- dependencies = [
1880
- "hmac 0.12.1",
1881
- ]
1882
-
1883
1793
  [[package]]
1884
1794
  name = "hkdf"
1885
1795
  version = "0.13.0"
@@ -1989,15 +1899,14 @@ dependencies = [
1989
1899
 
1990
1900
  [[package]]
1991
1901
  name = "hyper-rustls"
1992
- version = "0.27.7"
1902
+ version = "0.27.9"
1993
1903
  source = "registry+https://github.com/rust-lang/crates.io-index"
1994
- checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1904
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1995
1905
  dependencies = [
1996
1906
  "http",
1997
1907
  "hyper",
1998
1908
  "hyper-util",
1999
1909
  "rustls",
2000
- "rustls-pki-types",
2001
1910
  "tokio",
2002
1911
  "tokio-rustls",
2003
1912
  "tower-service",
@@ -2038,7 +1947,7 @@ dependencies = [
2038
1947
  "js-sys",
2039
1948
  "log",
2040
1949
  "wasm-bindgen",
2041
- "windows-core 0.62.2",
1950
+ "windows-core",
2042
1951
  ]
2043
1952
 
2044
1953
  [[package]]
@@ -2161,12 +2070,12 @@ dependencies = [
2161
2070
 
2162
2071
  [[package]]
2163
2072
  name = "indexmap"
2164
- version = "2.13.1"
2073
+ version = "2.14.0"
2165
2074
  source = "registry+https://github.com/rust-lang/crates.io-index"
2166
- checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
2075
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
2167
2076
  dependencies = [
2168
2077
  "equivalent",
2169
- "hashbrown 0.16.1",
2078
+ "hashbrown 0.17.0",
2170
2079
  "serde",
2171
2080
  "serde_core",
2172
2081
  ]
@@ -2211,18 +2120,18 @@ checksum = "25f8a978272e3cbdf4768f7363eb1c8e1e6ba63c52a3ed05e29e222da4aec7cb"
2211
2120
  dependencies = [
2212
2121
  "argon2",
2213
2122
  "bcrypt-pbkdf",
2214
- "crypto-bigint 0.7.3",
2215
- "ecdsa 0.17.0-rc.16",
2123
+ "crypto-bigint",
2124
+ "ecdsa",
2216
2125
  "ed25519-dalek 3.0.0-pre.6",
2217
2126
  "hex",
2218
2127
  "hmac 0.13.0",
2219
2128
  "num-bigint-dig",
2220
- "p256 0.14.0-rc.8",
2221
- "p384 0.14.0-rc.8",
2222
- "p521 0.14.0-rc.8",
2223
- "rand_core 0.10.0",
2224
- "rsa 0.10.0-rc.17",
2225
- "sec1 0.8.1",
2129
+ "p256",
2130
+ "p384",
2131
+ "p521",
2132
+ "rand_core 0.10.1",
2133
+ "rsa",
2134
+ "sec1",
2226
2135
  "sha1 0.11.0",
2227
2136
  "sha2 0.11.0",
2228
2137
  "signature 3.0.0-rc.10",
@@ -2241,7 +2150,7 @@ dependencies = [
2241
2150
  "num-integer",
2242
2151
  "num-traits",
2243
2152
  "rand 0.10.1",
2244
- "rand_core 0.10.0",
2153
+ "rand_core 0.10.1",
2245
2154
  ]
2246
2155
 
2247
2156
  [[package]]
@@ -2367,7 +2276,7 @@ dependencies = [
2367
2276
  "portable-atomic",
2368
2277
  "portable-atomic-util",
2369
2278
  "serde_core",
2370
- "windows-sys 0.61.2",
2279
+ "windows-sys 0.52.0",
2371
2280
  ]
2372
2281
 
2373
2282
  [[package]]
@@ -2467,9 +2376,9 @@ dependencies = [
2467
2376
 
2468
2377
  [[package]]
2469
2378
  name = "js-sys"
2470
- version = "0.3.94"
2379
+ version = "0.3.95"
2471
2380
  source = "registry+https://github.com/rust-lang/crates.io-index"
2472
- checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
2381
+ checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
2473
2382
  dependencies = [
2474
2383
  "cfg-if",
2475
2384
  "futures-util",
@@ -2494,7 +2403,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2494
2403
  checksum = "01737161ba802849cfd486b5bd209d38ba4943494c249a8126005170c7621edd"
2495
2404
  dependencies = [
2496
2405
  "crypto-common 0.2.1",
2497
- "rand_core 0.10.0",
2406
+ "rand_core 0.10.1",
2498
2407
  ]
2499
2408
 
2500
2409
  [[package]]
@@ -2539,9 +2448,9 @@ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
2539
2448
 
2540
2449
  [[package]]
2541
2450
  name = "libc"
2542
- version = "0.2.184"
2451
+ version = "0.2.185"
2543
2452
  source = "registry+https://github.com/rust-lang/crates.io-index"
2544
- checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
2453
+ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
2545
2454
 
2546
2455
  [[package]]
2547
2456
  name = "libloading"
@@ -2615,16 +2524,6 @@ dependencies = [
2615
2524
  "quote",
2616
2525
  ]
2617
2526
 
2618
- [[package]]
2619
- name = "matrixmultiply"
2620
- version = "0.3.10"
2621
- source = "registry+https://github.com/rust-lang/crates.io-index"
2622
- checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
2623
- dependencies = [
2624
- "autocfg",
2625
- "rawpointer",
2626
- ]
2627
-
2628
2527
  [[package]]
2629
2528
  name = "md-5"
2630
2529
  version = "0.11.0"
@@ -2677,7 +2576,7 @@ dependencies = [
2677
2576
  "hybrid-array",
2678
2577
  "kem",
2679
2578
  "module-lattice",
2680
- "rand_core 0.10.0",
2579
+ "rand_core 0.10.1",
2681
2580
  "sha3",
2682
2581
  ]
2683
2582
 
@@ -2720,23 +2619,6 @@ dependencies = [
2720
2619
  "strum",
2721
2620
  ]
2722
2621
 
2723
- [[package]]
2724
- name = "nalgebra"
2725
- version = "0.33.3"
2726
- source = "registry+https://github.com/rust-lang/crates.io-index"
2727
- checksum = "9d43ddcacf343185dfd6de2ee786d9e8b1c2301622afab66b6c73baf9882abfd"
2728
- dependencies = [
2729
- "approx",
2730
- "matrixmultiply",
2731
- "num-complex",
2732
- "num-rational",
2733
- "num-traits",
2734
- "rand 0.8.5",
2735
- "rand_distr",
2736
- "simba",
2737
- "typenum",
2738
- ]
2739
-
2740
2622
  [[package]]
2741
2623
  name = "napi"
2742
2624
  version = "3.8.4"
@@ -2850,19 +2732,9 @@ dependencies = [
2850
2732
  "num-integer",
2851
2733
  "num-iter",
2852
2734
  "num-traits",
2853
- "rand 0.8.5",
2735
+ "rand 0.8.6",
2854
2736
  "serde",
2855
2737
  "smallvec",
2856
- "zeroize",
2857
- ]
2858
-
2859
- [[package]]
2860
- name = "num-complex"
2861
- version = "0.4.6"
2862
- source = "registry+https://github.com/rust-lang/crates.io-index"
2863
- checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
2864
- dependencies = [
2865
- "num-traits",
2866
2738
  ]
2867
2739
 
2868
2740
  [[package]]
@@ -2885,17 +2757,6 @@ dependencies = [
2885
2757
  "num-traits",
2886
2758
  ]
2887
2759
 
2888
- [[package]]
2889
- name = "num-rational"
2890
- version = "0.4.2"
2891
- source = "registry+https://github.com/rust-lang/crates.io-index"
2892
- checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
2893
- dependencies = [
2894
- "num-bigint",
2895
- "num-integer",
2896
- "num-traits",
2897
- ]
2898
-
2899
2760
  [[package]]
2900
2761
  name = "num-traits"
2901
2762
  version = "0.2.19"
@@ -2903,7 +2764,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
2764
  checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2904
2765
  dependencies = [
2905
2766
  "autocfg",
2906
- "libm",
2907
2767
  ]
2908
2768
 
2909
2769
  [[package]]
@@ -2938,9 +2798,9 @@ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
2938
2798
 
2939
2799
  [[package]]
2940
2800
  name = "ordermap"
2941
- version = "1.1.0"
2801
+ version = "1.2.0"
2942
2802
  source = "registry+https://github.com/rust-lang/crates.io-index"
2943
- checksum = "cfa78c92071bbd3628c22b1a964f7e0eb201dc1456555db072beb1662ecd6715"
2803
+ checksum = "7f7476a5b122ff1fce7208e7ee9dccd0a516e835f5b8b19b8f3c98a34cf757c1"
2944
2804
  dependencies = [
2945
2805
  "indexmap",
2946
2806
  ]
@@ -3151,82 +3011,44 @@ dependencies = [
3151
3011
  "unicode-id-start",
3152
3012
  ]
3153
3013
 
3154
- [[package]]
3155
- name = "p256"
3156
- version = "0.13.2"
3157
- source = "registry+https://github.com/rust-lang/crates.io-index"
3158
- checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
3159
- dependencies = [
3160
- "ecdsa 0.16.9",
3161
- "elliptic-curve 0.13.8",
3162
- "primeorder 0.13.6",
3163
- "sha2 0.10.9",
3164
- ]
3165
-
3166
3014
  [[package]]
3167
3015
  name = "p256"
3168
3016
  version = "0.14.0-rc.8"
3169
3017
  source = "registry+https://github.com/rust-lang/crates.io-index"
3170
3018
  checksum = "44f0a10fe314869359cb2901342b045f4e5a962ef9febc006f03d2a8c848fe4c"
3171
3019
  dependencies = [
3172
- "ecdsa 0.17.0-rc.16",
3173
- "elliptic-curve 0.14.0-rc.29",
3020
+ "ecdsa",
3021
+ "elliptic-curve",
3174
3022
  "primefield",
3175
- "primeorder 0.14.0-rc.8",
3023
+ "primeorder",
3176
3024
  "sha2 0.11.0",
3177
3025
  ]
3178
3026
 
3179
- [[package]]
3180
- name = "p384"
3181
- version = "0.13.1"
3182
- source = "registry+https://github.com/rust-lang/crates.io-index"
3183
- checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
3184
- dependencies = [
3185
- "ecdsa 0.16.9",
3186
- "elliptic-curve 0.13.8",
3187
- "primeorder 0.13.6",
3188
- "sha2 0.10.9",
3189
- ]
3190
-
3191
3027
  [[package]]
3192
3028
  name = "p384"
3193
3029
  version = "0.14.0-rc.8"
3194
3030
  source = "registry+https://github.com/rust-lang/crates.io-index"
3195
3031
  checksum = "b079e66810c55ab3d6ba424e056dc4aefcdb8046c8c3f3816142edbdd7af7721"
3196
3032
  dependencies = [
3197
- "ecdsa 0.17.0-rc.16",
3198
- "elliptic-curve 0.14.0-rc.29",
3033
+ "ecdsa",
3034
+ "elliptic-curve",
3199
3035
  "fiat-crypto 0.3.0",
3200
3036
  "primefield",
3201
- "primeorder 0.14.0-rc.8",
3037
+ "primeorder",
3202
3038
  "sha2 0.11.0",
3203
3039
  ]
3204
3040
 
3205
- [[package]]
3206
- name = "p521"
3207
- version = "0.13.3"
3208
- source = "registry+https://github.com/rust-lang/crates.io-index"
3209
- checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
3210
- dependencies = [
3211
- "base16ct 0.2.0",
3212
- "ecdsa 0.16.9",
3213
- "elliptic-curve 0.13.8",
3214
- "primeorder 0.13.6",
3215
- "rand_core 0.6.4",
3216
- "sha2 0.10.9",
3217
- ]
3218
-
3219
3041
  [[package]]
3220
3042
  name = "p521"
3221
3043
  version = "0.14.0-rc.8"
3222
3044
  source = "registry+https://github.com/rust-lang/crates.io-index"
3223
3045
  checksum = "9eecc34c4c6e6596d5271fecf90ac4f16593fa198e77282214d0c22736aa9266"
3224
3046
  dependencies = [
3225
- "base16ct 1.0.0",
3226
- "ecdsa 0.17.0-rc.16",
3227
- "elliptic-curve 0.14.0-rc.29",
3047
+ "base16ct",
3048
+ "ecdsa",
3049
+ "elliptic-curve",
3228
3050
  "primefield",
3229
- "primeorder 0.14.0-rc.8",
3051
+ "primeorder",
3230
3052
  "sha2 0.11.0",
3231
3053
  ]
3232
3054
 
@@ -3240,21 +3062,6 @@ dependencies = [
3240
3062
  "winapi",
3241
3063
  ]
3242
3064
 
3243
- [[package]]
3244
- name = "pageant"
3245
- version = "0.0.1"
3246
- source = "registry+https://github.com/rust-lang/crates.io-index"
3247
- checksum = "032d6201d2fb765158455ae0d5a510c016bb6da7232e5040e39e9c8db12b0afc"
3248
- dependencies = [
3249
- "bytes",
3250
- "delegate",
3251
- "futures",
3252
- "rand 0.8.5",
3253
- "thiserror 1.0.69",
3254
- "tokio",
3255
- "windows 0.58.0",
3256
- ]
3257
-
3258
3065
  [[package]]
3259
3066
  name = "pageant"
3260
3067
  version = "0.2.0"
@@ -3266,12 +3073,12 @@ dependencies = [
3266
3073
  "delegate",
3267
3074
  "futures",
3268
3075
  "log",
3269
- "rand 0.8.5",
3076
+ "rand 0.8.6",
3270
3077
  "sha2 0.10.9",
3271
3078
  "thiserror 1.0.69",
3272
3079
  "tokio",
3273
- "windows 0.62.2",
3274
- "windows-strings 0.5.1",
3080
+ "windows",
3081
+ "windows-strings",
3275
3082
  ]
3276
3083
 
3277
3084
  [[package]]
@@ -3319,12 +3126,6 @@ dependencies = [
3319
3126
  "subtle",
3320
3127
  ]
3321
3128
 
3322
- [[package]]
3323
- name = "paste"
3324
- version = "1.0.15"
3325
- source = "registry+https://github.com/rust-lang/crates.io-index"
3326
- checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
3327
-
3328
3129
  [[package]]
3329
3130
  name = "pbkdf2"
3330
3131
  version = "0.12.2"
@@ -3406,7 +3207,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3406
3207
  checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
3407
3208
  dependencies = [
3408
3209
  "phf_shared 0.11.3",
3409
- "rand 0.8.5",
3210
+ "rand 0.8.6",
3410
3211
  ]
3411
3212
 
3412
3213
  [[package]]
@@ -3456,17 +3257,6 @@ version = "0.2.17"
3456
3257
  source = "registry+https://github.com/rust-lang/crates.io-index"
3457
3258
  checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
3458
3259
 
3459
- [[package]]
3460
- name = "pkcs1"
3461
- version = "0.7.5"
3462
- source = "registry+https://github.com/rust-lang/crates.io-index"
3463
- checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
3464
- dependencies = [
3465
- "der 0.7.10",
3466
- "pkcs8 0.10.2",
3467
- "spki 0.7.3",
3468
- ]
3469
-
3470
3260
  [[package]]
3471
3261
  name = "pkcs1"
3472
3262
  version = "0.8.0-rc.4"
@@ -3477,34 +3267,19 @@ dependencies = [
3477
3267
  "spki 0.8.0",
3478
3268
  ]
3479
3269
 
3480
- [[package]]
3481
- name = "pkcs5"
3482
- version = "0.7.1"
3483
- source = "registry+https://github.com/rust-lang/crates.io-index"
3484
- checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6"
3485
- dependencies = [
3486
- "aes 0.8.4",
3487
- "cbc 0.1.2",
3488
- "der 0.7.10",
3489
- "pbkdf2 0.12.2",
3490
- "scrypt 0.11.0",
3491
- "sha2 0.10.9",
3492
- "spki 0.7.3",
3493
- ]
3494
-
3495
3270
  [[package]]
3496
3271
  name = "pkcs5"
3497
3272
  version = "0.8.0-rc.13"
3498
3273
  source = "registry+https://github.com/rust-lang/crates.io-index"
3499
3274
  checksum = "c5a777c6e26664bc9504b3ce3f6133f8f20d9071f130a4f9fcbd3186959d8dd6"
3500
3275
  dependencies = [
3501
- "aes 0.9.0-rc.4",
3276
+ "aes 0.9.0",
3502
3277
  "aes-gcm 0.11.0-rc.3",
3503
- "cbc 0.2.0-rc.4",
3278
+ "cbc 0.2.0",
3504
3279
  "der 0.8.0",
3505
3280
  "pbkdf2 0.13.0-rc.10",
3506
- "rand_core 0.10.0",
3507
- "scrypt 0.12.0-rc.10",
3281
+ "rand_core 0.10.1",
3282
+ "scrypt",
3508
3283
  "sha2 0.11.0",
3509
3284
  "spki 0.8.0",
3510
3285
  ]
@@ -3516,8 +3291,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3516
3291
  checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
3517
3292
  dependencies = [
3518
3293
  "der 0.7.10",
3519
- "pkcs5 0.7.1",
3520
- "rand_core 0.6.4",
3521
3294
  "spki 0.7.3",
3522
3295
  ]
3523
3296
 
@@ -3528,8 +3301,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3528
3301
  checksum = "12922b6296c06eb741b02d7b5161e3aaa22864af38dfa025a1a3ba3f68c84577"
3529
3302
  dependencies = [
3530
3303
  "der 0.8.0",
3531
- "pkcs5 0.8.0-rc.13",
3532
- "rand_core 0.10.0",
3304
+ "pkcs5",
3305
+ "rand_core 0.10.1",
3533
3306
  "spki 0.8.0",
3534
3307
  ]
3535
3308
 
@@ -3667,30 +3440,21 @@ version = "0.14.0-rc.8"
3667
3440
  source = "registry+https://github.com/rust-lang/crates.io-index"
3668
3441
  checksum = "c6543f5eec854fbf74ba5ef651fbdc9408919b47c3e1526623687135c16d12e9"
3669
3442
  dependencies = [
3670
- "crypto-bigint 0.7.3",
3443
+ "crypto-bigint",
3671
3444
  "crypto-common 0.2.1",
3672
- "rand_core 0.10.0",
3445
+ "rand_core 0.10.1",
3673
3446
  "rustcrypto-ff",
3674
3447
  "subtle",
3675
3448
  "zeroize",
3676
3449
  ]
3677
3450
 
3678
- [[package]]
3679
- name = "primeorder"
3680
- version = "0.13.6"
3681
- source = "registry+https://github.com/rust-lang/crates.io-index"
3682
- checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
3683
- dependencies = [
3684
- "elliptic-curve 0.13.8",
3685
- ]
3686
-
3687
3451
  [[package]]
3688
3452
  name = "primeorder"
3689
3453
  version = "0.14.0-rc.8"
3690
3454
  source = "registry+https://github.com/rust-lang/crates.io-index"
3691
3455
  checksum = "569d9ad6ef822bb0322c7e7d84e5e286244050bd5246cac4c013535ae91c2c90"
3692
3456
  dependencies = [
3693
- "elliptic-curve 0.14.0-rc.29",
3457
+ "elliptic-curve",
3694
3458
  ]
3695
3459
 
3696
3460
  [[package]]
@@ -3745,7 +3509,7 @@ dependencies = [
3745
3509
  "bit-vec",
3746
3510
  "bitflags",
3747
3511
  "num-traits",
3748
- "rand 0.9.2",
3512
+ "rand 0.9.4",
3749
3513
  "rand_chacha 0.9.0",
3750
3514
  "rand_xorshift",
3751
3515
  "regex-syntax",
@@ -3874,7 +3638,7 @@ dependencies = [
3874
3638
  "bytes",
3875
3639
  "getrandom 0.3.4",
3876
3640
  "lru-slab",
3877
- "rand 0.9.2",
3641
+ "rand 0.9.4",
3878
3642
  "ring",
3879
3643
  "rustc-hash",
3880
3644
  "rustls",
@@ -3961,9 +3725,9 @@ dependencies = [
3961
3725
 
3962
3726
  [[package]]
3963
3727
  name = "rand"
3964
- version = "0.8.5"
3728
+ version = "0.8.6"
3965
3729
  source = "registry+https://github.com/rust-lang/crates.io-index"
3966
- checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
3730
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
3967
3731
  dependencies = [
3968
3732
  "libc",
3969
3733
  "rand_chacha 0.3.1",
@@ -3972,9 +3736,9 @@ dependencies = [
3972
3736
 
3973
3737
  [[package]]
3974
3738
  name = "rand"
3975
- version = "0.9.2"
3739
+ version = "0.9.4"
3976
3740
  source = "registry+https://github.com/rust-lang/crates.io-index"
3977
- checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
3741
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
3978
3742
  dependencies = [
3979
3743
  "rand_chacha 0.9.0",
3980
3744
  "rand_core 0.9.5",
@@ -3988,7 +3752,7 @@ checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
3988
3752
  dependencies = [
3989
3753
  "chacha20 0.10.0",
3990
3754
  "getrandom 0.4.2",
3991
- "rand_core 0.10.0",
3755
+ "rand_core 0.10.1",
3992
3756
  ]
3993
3757
 
3994
3758
  [[package]]
@@ -4031,19 +3795,9 @@ dependencies = [
4031
3795
 
4032
3796
  [[package]]
4033
3797
  name = "rand_core"
4034
- version = "0.10.0"
4035
- source = "registry+https://github.com/rust-lang/crates.io-index"
4036
- checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
4037
-
4038
- [[package]]
4039
- name = "rand_distr"
4040
- version = "0.4.3"
3798
+ version = "0.10.1"
4041
3799
  source = "registry+https://github.com/rust-lang/crates.io-index"
4042
- checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
4043
- dependencies = [
4044
- "num-traits",
4045
- "rand 0.8.5",
4046
- ]
3800
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
4047
3801
 
4048
3802
  [[package]]
4049
3803
  name = "rand_xorshift"
@@ -4054,17 +3808,11 @@ dependencies = [
4054
3808
  "rand_core 0.9.5",
4055
3809
  ]
4056
3810
 
4057
- [[package]]
4058
- name = "rawpointer"
4059
- version = "0.2.1"
4060
- source = "registry+https://github.com/rust-lang/crates.io-index"
4061
- checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
4062
-
4063
3811
  [[package]]
4064
3812
  name = "rayon"
4065
- version = "1.11.0"
3813
+ version = "1.12.0"
4066
3814
  source = "registry+https://github.com/rust-lang/crates.io-index"
4067
- checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
3815
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
4068
3816
  dependencies = [
4069
3817
  "either",
4070
3818
  "rayon-core",
@@ -4184,16 +3932,6 @@ dependencies = [
4184
3932
  "web-sys",
4185
3933
  ]
4186
3934
 
4187
- [[package]]
4188
- name = "rfc6979"
4189
- version = "0.4.0"
4190
- source = "registry+https://github.com/rust-lang/crates.io-index"
4191
- checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
4192
- dependencies = [
4193
- "hmac 0.12.1",
4194
- "subtle",
4195
- ]
4196
-
4197
3935
  [[package]]
4198
3936
  name = "rfc6979"
4199
3937
  version = "0.5.0-rc.5"
@@ -4218,27 +3956,6 @@ dependencies = [
4218
3956
  "windows-sys 0.52.0",
4219
3957
  ]
4220
3958
 
4221
- [[package]]
4222
- name = "rsa"
4223
- version = "0.9.10"
4224
- source = "registry+https://github.com/rust-lang/crates.io-index"
4225
- checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
4226
- dependencies = [
4227
- "const-oid 0.9.6",
4228
- "digest 0.10.7",
4229
- "num-bigint-dig",
4230
- "num-integer",
4231
- "num-traits",
4232
- "pkcs1 0.7.5",
4233
- "pkcs8 0.10.2",
4234
- "rand_core 0.6.4",
4235
- "sha2 0.10.9",
4236
- "signature 2.2.0",
4237
- "spki 0.7.3",
4238
- "subtle",
4239
- "zeroize",
4240
- ]
4241
-
4242
3959
  [[package]]
4243
3960
  name = "rsa"
4244
3961
  version = "0.10.0-rc.17"
@@ -4246,12 +3963,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4246
3963
  checksum = "87ed3e93fc7e473e464b9726f4759659e72bc8665e4b8ea227547024f416d905"
4247
3964
  dependencies = [
4248
3965
  "const-oid 0.10.2",
4249
- "crypto-bigint 0.7.3",
3966
+ "crypto-bigint",
4250
3967
  "crypto-primes",
4251
3968
  "digest 0.11.2",
4252
- "pkcs1 0.8.0-rc.4",
3969
+ "pkcs1",
4253
3970
  "pkcs8 0.11.0-rc.11",
4254
- "rand_core 0.10.0",
3971
+ "rand_core 0.10.1",
4255
3972
  "sha2 0.11.0",
4256
3973
  "signature 3.0.0-rc.10",
4257
3974
  "spki 0.8.0",
@@ -4326,9 +4043,9 @@ dependencies = [
4326
4043
 
4327
4044
  [[package]]
4328
4045
  name = "russh"
4329
- version = "0.60.0"
4046
+ version = "0.60.1"
4330
4047
  source = "registry+https://github.com/rust-lang/crates.io-index"
4331
- checksum = "3b530252dc3ff163b73a7e48c97b925450d2ca53edcb466a46ad0a231e45f998"
4048
+ checksum = "d937f3f4a79bffd67fc12fd437785effdfc8b94edc89ab90392f9ac9e11cc9fc"
4332
4049
  dependencies = [
4333
4050
  "aes 0.8.4",
4334
4051
  "aws-lc-rs",
@@ -4338,16 +4055,16 @@ dependencies = [
4338
4055
  "bytes",
4339
4056
  "cbc 0.1.2",
4340
4057
  "cipher 0.5.1",
4341
- "crypto-bigint 0.7.3",
4058
+ "crypto-bigint",
4342
4059
  "ctr 0.9.2",
4343
4060
  "curve25519-dalek 5.0.0-pre.6",
4344
4061
  "data-encoding",
4345
4062
  "delegate",
4346
4063
  "der 0.8.0",
4347
4064
  "digest 0.10.7",
4348
- "ecdsa 0.17.0-rc.16",
4065
+ "ecdsa",
4349
4066
  "ed25519-dalek 3.0.0-pre.6",
4350
- "elliptic-curve 0.14.0-rc.29",
4067
+ "elliptic-curve",
4351
4068
  "enum_dispatch",
4352
4069
  "flate2",
4353
4070
  "futures",
@@ -4362,21 +4079,21 @@ dependencies = [
4362
4079
  "md5",
4363
4080
  "ml-kem",
4364
4081
  "module-lattice",
4365
- "p256 0.14.0-rc.8",
4366
- "p384 0.14.0-rc.8",
4367
- "p521 0.14.0-rc.8",
4368
- "pageant 0.2.0",
4082
+ "p256",
4083
+ "p384",
4084
+ "p521",
4085
+ "pageant",
4369
4086
  "pbkdf2 0.12.2",
4370
- "pkcs1 0.8.0-rc.4",
4371
- "pkcs5 0.8.0-rc.13",
4087
+ "pkcs1",
4088
+ "pkcs5",
4372
4089
  "pkcs8 0.11.0-rc.11",
4373
4090
  "polyval 0.7.1",
4374
4091
  "rand 0.10.1",
4375
- "rand_core 0.10.0",
4376
- "rsa 0.10.0-rc.17",
4377
- "russh-cryptovec 0.59.0",
4378
- "russh-util 0.52.0",
4379
- "sec1 0.8.1",
4092
+ "rand_core 0.10.1",
4093
+ "rsa",
4094
+ "russh-cryptovec",
4095
+ "russh-util",
4096
+ "sec1",
4380
4097
  "sha1 0.10.6",
4381
4098
  "sha2 0.10.9",
4382
4099
  "signature 3.0.0-rc.10",
@@ -4390,17 +4107,6 @@ dependencies = [
4390
4107
  "zeroize",
4391
4108
  ]
4392
4109
 
4393
- [[package]]
4394
- name = "russh-cryptovec"
4395
- version = "0.48.0"
4396
- source = "registry+https://github.com/rust-lang/crates.io-index"
4397
- checksum = "4d8e7e854e1a87e4be00fa287c98cad23faa064d0464434beaa9f014ec3baa98"
4398
- dependencies = [
4399
- "libc",
4400
- "ssh-encoding",
4401
- "winapi",
4402
- ]
4403
-
4404
4110
  [[package]]
4405
4111
  name = "russh-cryptovec"
4406
4112
  version = "0.59.0"
@@ -4413,74 +4119,6 @@ dependencies = [
4413
4119
  "windows-sys 0.61.2",
4414
4120
  ]
4415
4121
 
4416
- [[package]]
4417
- name = "russh-keys"
4418
- version = "0.49.2"
4419
- source = "registry+https://github.com/rust-lang/crates.io-index"
4420
- checksum = "788a2439ce385856585346beb37c48e7c9eb5de5f4f00736720a19ffdb3f5bb5"
4421
- dependencies = [
4422
- "aes 0.8.4",
4423
- "async-trait",
4424
- "bcrypt-pbkdf",
4425
- "block-padding 0.3.3",
4426
- "byteorder",
4427
- "bytes",
4428
- "cbc 0.1.2",
4429
- "ctr 0.9.2",
4430
- "data-encoding",
4431
- "der 0.7.10",
4432
- "digest 0.10.7",
4433
- "ecdsa 0.16.9",
4434
- "ed25519-dalek 2.2.0",
4435
- "elliptic-curve 0.13.8",
4436
- "futures",
4437
- "getrandom 0.2.17",
4438
- "hmac 0.12.1",
4439
- "home",
4440
- "inout 0.1.4",
4441
- "log",
4442
- "md5",
4443
- "num-integer",
4444
- "p256 0.13.2",
4445
- "p384 0.13.1",
4446
- "p521 0.13.3",
4447
- "pageant 0.0.1",
4448
- "pbkdf2 0.12.2",
4449
- "pkcs1 0.7.5",
4450
- "pkcs5 0.7.1",
4451
- "pkcs8 0.10.2",
4452
- "rand 0.8.5",
4453
- "rand_core 0.6.4",
4454
- "rsa 0.9.10",
4455
- "russh-cryptovec 0.48.0",
4456
- "russh-util 0.48.0",
4457
- "sec1 0.7.3",
4458
- "serde",
4459
- "sha1 0.10.6",
4460
- "sha2 0.10.9",
4461
- "signature 2.2.0",
4462
- "spki 0.7.3",
4463
- "ssh-encoding",
4464
- "ssh-key",
4465
- "thiserror 1.0.69",
4466
- "tokio",
4467
- "tokio-stream",
4468
- "typenum",
4469
- "zeroize",
4470
- ]
4471
-
4472
- [[package]]
4473
- name = "russh-util"
4474
- version = "0.48.0"
4475
- source = "registry+https://github.com/rust-lang/crates.io-index"
4476
- checksum = "92c7dd577958c0cefbc8f8a2c05c48c88c42e2fdb760dbe9b96ae31d4de97a1f"
4477
- dependencies = [
4478
- "chrono",
4479
- "tokio",
4480
- "wasm-bindgen",
4481
- "wasm-bindgen-futures",
4482
- ]
4483
-
4484
4122
  [[package]]
4485
4123
  name = "russh-util"
4486
4124
  version = "0.52.0"
@@ -4514,7 +4152,7 @@ version = "0.14.0-rc.1"
4514
4152
  source = "registry+https://github.com/rust-lang/crates.io-index"
4515
4153
  checksum = "fd2a8adb347447693cd2ba0d218c4b66c62da9b0a5672b17b981e4291ec65ff6"
4516
4154
  dependencies = [
4517
- "rand_core 0.10.0",
4155
+ "rand_core 0.10.1",
4518
4156
  "subtle",
4519
4157
  ]
4520
4158
 
@@ -4524,7 +4162,7 @@ version = "0.14.0-rc.1"
4524
4162
  source = "registry+https://github.com/rust-lang/crates.io-index"
4525
4163
  checksum = "369f9b61aa45933c062c9f6b5c3c50ab710687eca83dd3802653b140b43f85ed"
4526
4164
  dependencies = [
4527
- "rand_core 0.10.0",
4165
+ "rand_core 0.10.1",
4528
4166
  "rustcrypto-ff",
4529
4167
  "subtle",
4530
4168
  ]
@@ -4539,14 +4177,14 @@ dependencies = [
4539
4177
  "errno",
4540
4178
  "libc",
4541
4179
  "linux-raw-sys",
4542
- "windows-sys 0.61.2",
4180
+ "windows-sys 0.52.0",
4543
4181
  ]
4544
4182
 
4545
4183
  [[package]]
4546
4184
  name = "rustls"
4547
- version = "0.23.37"
4185
+ version = "0.23.38"
4548
4186
  source = "registry+https://github.com/rust-lang/crates.io-index"
4549
- checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
4187
+ checksum = "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21"
4550
4188
  dependencies = [
4551
4189
  "aws-lc-rs",
4552
4190
  "once_cell",
@@ -4596,7 +4234,7 @@ dependencies = [
4596
4234
  "security-framework",
4597
4235
  "security-framework-sys",
4598
4236
  "webpki-root-certs",
4599
- "windows-sys 0.61.2",
4237
+ "windows-sys 0.52.0",
4600
4238
  ]
4601
4239
 
4602
4240
  [[package]]
@@ -4607,9 +4245,9 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
4607
4245
 
4608
4246
  [[package]]
4609
4247
  name = "rustls-webpki"
4610
- version = "0.103.12"
4248
+ version = "0.103.13"
4611
4249
  source = "registry+https://github.com/rust-lang/crates.io-index"
4612
- checksum = "8279bb85272c9f10811ae6a6c547ff594d6a7f3c6c6b02ee9726d1d0dcfcdd06"
4250
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
4613
4251
  dependencies = [
4614
4252
  "aws-lc-rs",
4615
4253
  "ring",
@@ -4662,24 +4300,6 @@ version = "1.0.23"
4662
4300
  source = "registry+https://github.com/rust-lang/crates.io-index"
4663
4301
  checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
4664
4302
 
4665
- [[package]]
4666
- name = "safe_arch"
4667
- version = "0.7.4"
4668
- source = "registry+https://github.com/rust-lang/crates.io-index"
4669
- checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
4670
- dependencies = [
4671
- "bytemuck",
4672
- ]
4673
-
4674
- [[package]]
4675
- name = "salsa20"
4676
- version = "0.10.2"
4677
- source = "registry+https://github.com/rust-lang/crates.io-index"
4678
- checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
4679
- dependencies = [
4680
- "cipher 0.4.4",
4681
- ]
4682
-
4683
4303
  [[package]]
4684
4304
  name = "salsa20"
4685
4305
  version = "0.11.0"
@@ -4748,17 +4368,6 @@ version = "1.2.0"
4748
4368
  source = "registry+https://github.com/rust-lang/crates.io-index"
4749
4369
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
4750
4370
 
4751
- [[package]]
4752
- name = "scrypt"
4753
- version = "0.11.0"
4754
- source = "registry+https://github.com/rust-lang/crates.io-index"
4755
- checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
4756
- dependencies = [
4757
- "pbkdf2 0.12.2",
4758
- "salsa20 0.10.2",
4759
- "sha2 0.10.9",
4760
- ]
4761
-
4762
4371
  [[package]]
4763
4372
  name = "scrypt"
4764
4373
  version = "0.12.0-rc.10"
@@ -4767,7 +4376,7 @@ checksum = "e03ed5b54ed5fcc8e016cd94301416bc2c01c05c87a6742b97468337c8804598"
4767
4376
  dependencies = [
4768
4377
  "cfg-if",
4769
4378
  "pbkdf2 0.13.0-rc.10",
4770
- "salsa20 0.11.0",
4379
+ "salsa20",
4771
4380
  "sha2 0.11.0",
4772
4381
  ]
4773
4382
 
@@ -4777,27 +4386,13 @@ version = "3.0.10"
4777
4386
  source = "registry+https://github.com/rust-lang/crates.io-index"
4778
4387
  checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
4779
4388
 
4780
- [[package]]
4781
- name = "sec1"
4782
- version = "0.7.3"
4783
- source = "registry+https://github.com/rust-lang/crates.io-index"
4784
- checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
4785
- dependencies = [
4786
- "base16ct 0.2.0",
4787
- "der 0.7.10",
4788
- "generic-array 0.14.7",
4789
- "pkcs8 0.10.2",
4790
- "subtle",
4791
- "zeroize",
4792
- ]
4793
-
4794
4389
  [[package]]
4795
4390
  name = "sec1"
4796
4391
  version = "0.8.1"
4797
4392
  source = "registry+https://github.com/rust-lang/crates.io-index"
4798
4393
  checksum = "d56d437c2f19203ce5f7122e507831de96f3d2d4d3be5af44a0b0a09d8a80e4d"
4799
4394
  dependencies = [
4800
- "base16ct 1.0.0",
4395
+ "base16ct",
4801
4396
  "ctutils",
4802
4397
  "der 0.8.0",
4803
4398
  "hybrid-array",
@@ -4906,7 +4501,7 @@ version = "0.4.2"
4906
4501
  source = "registry+https://github.com/rust-lang/crates.io-index"
4907
4502
  checksum = "9af4a3e75ebd5599b30d4de5768e00b5095d518a79fefc3ecbaf77e665d1ec06"
4908
4503
  dependencies = [
4909
- "base16ct 1.0.0",
4504
+ "base16ct",
4910
4505
  "serde",
4911
4506
  ]
4912
4507
 
@@ -5022,7 +4617,6 @@ version = "2.2.0"
5022
4617
  source = "registry+https://github.com/rust-lang/crates.io-index"
5023
4618
  checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
5024
4619
  dependencies = [
5025
- "digest 0.10.7",
5026
4620
  "rand_core 0.6.4",
5027
4621
  ]
5028
4622
 
@@ -5033,20 +4627,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
5033
4627
  checksum = "7f1880df446116126965eeec169136b2e0251dba37c6223bcc819569550edea3"
5034
4628
  dependencies = [
5035
4629
  "digest 0.11.2",
5036
- "rand_core 0.10.0",
5037
- ]
5038
-
5039
- [[package]]
5040
- name = "simba"
5041
- version = "0.9.1"
5042
- source = "registry+https://github.com/rust-lang/crates.io-index"
5043
- checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
5044
- dependencies = [
5045
- "approx",
5046
- "num-complex",
5047
- "num-traits",
5048
- "paste",
5049
- "wide",
4630
+ "rand_core 0.10.1",
5050
4631
  ]
5051
4632
 
5052
4633
  [[package]]
@@ -5095,7 +4676,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
5095
4676
  checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
5096
4677
  dependencies = [
5097
4678
  "libc",
5098
- "windows-sys 0.61.2",
4679
+ "windows-sys 0.60.2",
5099
4680
  ]
5100
4681
 
5101
4682
  [[package]]
@@ -5167,29 +4748,6 @@ dependencies = [
5167
4748
  "sha2 0.10.9",
5168
4749
  ]
5169
4750
 
5170
- [[package]]
5171
- name = "ssh-key"
5172
- version = "0.6.7"
5173
- source = "registry+https://github.com/rust-lang/crates.io-index"
5174
- checksum = "3b86f5297f0f04d08cabaa0f6bff7cb6aec4d9c3b49d87990d63da9d9156a8c3"
5175
- dependencies = [
5176
- "bcrypt-pbkdf",
5177
- "ed25519-dalek 2.2.0",
5178
- "num-bigint-dig",
5179
- "p256 0.13.2",
5180
- "p384 0.13.1",
5181
- "p521 0.13.3",
5182
- "rand_core 0.6.4",
5183
- "rsa 0.9.10",
5184
- "sec1 0.7.3",
5185
- "sha2 0.10.9",
5186
- "signature 2.2.0",
5187
- "ssh-cipher",
5188
- "ssh-encoding",
5189
- "subtle",
5190
- "zeroize",
5191
- ]
5192
-
5193
4751
  [[package]]
5194
4752
  name = "stable_deref_trait"
5195
4753
  version = "1.2.1"
@@ -5202,18 +4760,6 @@ version = "1.1.0"
5202
4760
  source = "registry+https://github.com/rust-lang/crates.io-index"
5203
4761
  checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
5204
4762
 
5205
- [[package]]
5206
- name = "statrs"
5207
- version = "0.18.0"
5208
- source = "registry+https://github.com/rust-lang/crates.io-index"
5209
- checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e"
5210
- dependencies = [
5211
- "approx",
5212
- "nalgebra",
5213
- "num-traits",
5214
- "rand 0.8.5",
5215
- ]
5216
-
5217
4763
  [[package]]
5218
4764
  name = "strsim"
5219
4765
  version = "0.11.1"
@@ -5324,7 +4870,7 @@ dependencies = [
5324
4870
  "getrandom 0.4.2",
5325
4871
  "once_cell",
5326
4872
  "rustix",
5327
- "windows-sys 0.61.2",
4873
+ "windows-sys 0.52.0",
5328
4874
  ]
5329
4875
 
5330
4876
  [[package]]
@@ -5334,7 +4880,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
5334
4880
  checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
5335
4881
  dependencies = [
5336
4882
  "rustix",
5337
- "windows-sys 0.61.2",
4883
+ "windows-sys 0.60.2",
5338
4884
  ]
5339
4885
 
5340
4886
  [[package]]
@@ -5434,9 +4980,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
5434
4980
 
5435
4981
  [[package]]
5436
4982
  name = "tokio"
5437
- version = "1.51.1"
4983
+ version = "1.52.0"
5438
4984
  source = "registry+https://github.com/rust-lang/crates.io-index"
5439
- checksum = "f66bf9585cda4b724d3e78ab34b73fb2bbaba9011b9bfdf69dc836382ea13b8c"
4985
+ checksum = "a91135f59b1cbf38c91e73cf3386fca9bb77915c45ce2771460c9d92f0f3d776"
5440
4986
  dependencies = [
5441
4987
  "bytes",
5442
4988
  "libc",
@@ -5478,7 +5024,6 @@ dependencies = [
5478
5024
  "futures-core",
5479
5025
  "pin-project-lite",
5480
5026
  "tokio",
5481
- "tokio-util",
5482
5027
  ]
5483
5028
 
5484
5029
  [[package]]
@@ -5669,7 +5214,7 @@ dependencies = [
5669
5214
  "getopts",
5670
5215
  "log",
5671
5216
  "phf_codegen",
5672
- "rand 0.8.5",
5217
+ "rand 0.8.6",
5673
5218
  ]
5674
5219
 
5675
5220
  [[package]]
@@ -5794,9 +5339,9 @@ dependencies = [
5794
5339
 
5795
5340
  [[package]]
5796
5341
  name = "wasm-bindgen"
5797
- version = "0.2.117"
5342
+ version = "0.2.118"
5798
5343
  source = "registry+https://github.com/rust-lang/crates.io-index"
5799
- checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
5344
+ checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
5800
5345
  dependencies = [
5801
5346
  "cfg-if",
5802
5347
  "once_cell",
@@ -5807,9 +5352,9 @@ dependencies = [
5807
5352
 
5808
5353
  [[package]]
5809
5354
  name = "wasm-bindgen-futures"
5810
- version = "0.4.67"
5355
+ version = "0.4.68"
5811
5356
  source = "registry+https://github.com/rust-lang/crates.io-index"
5812
- checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
5357
+ checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8"
5813
5358
  dependencies = [
5814
5359
  "js-sys",
5815
5360
  "wasm-bindgen",
@@ -5817,9 +5362,9 @@ dependencies = [
5817
5362
 
5818
5363
  [[package]]
5819
5364
  name = "wasm-bindgen-macro"
5820
- version = "0.2.117"
5365
+ version = "0.2.118"
5821
5366
  source = "registry+https://github.com/rust-lang/crates.io-index"
5822
- checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
5367
+ checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
5823
5368
  dependencies = [
5824
5369
  "quote",
5825
5370
  "wasm-bindgen-macro-support",
@@ -5827,9 +5372,9 @@ dependencies = [
5827
5372
 
5828
5373
  [[package]]
5829
5374
  name = "wasm-bindgen-macro-support"
5830
- version = "0.2.117"
5375
+ version = "0.2.118"
5831
5376
  source = "registry+https://github.com/rust-lang/crates.io-index"
5832
- checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
5377
+ checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
5833
5378
  dependencies = [
5834
5379
  "bumpalo",
5835
5380
  "proc-macro2",
@@ -5840,9 +5385,9 @@ dependencies = [
5840
5385
 
5841
5386
  [[package]]
5842
5387
  name = "wasm-bindgen-shared"
5843
- version = "0.2.117"
5388
+ version = "0.2.118"
5844
5389
  source = "registry+https://github.com/rust-lang/crates.io-index"
5845
- checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
5390
+ checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
5846
5391
  dependencies = [
5847
5392
  "unicode-ident",
5848
5393
  ]
@@ -5896,9 +5441,9 @@ dependencies = [
5896
5441
 
5897
5442
  [[package]]
5898
5443
  name = "web-sys"
5899
- version = "0.3.94"
5444
+ version = "0.3.95"
5900
5445
  source = "registry+https://github.com/rust-lang/crates.io-index"
5901
- checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
5446
+ checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
5902
5447
  dependencies = [
5903
5448
  "js-sys",
5904
5449
  "wasm-bindgen",
@@ -5923,16 +5468,6 @@ dependencies = [
5923
5468
  "rustls-pki-types",
5924
5469
  ]
5925
5470
 
5926
- [[package]]
5927
- name = "wide"
5928
- version = "0.7.33"
5929
- source = "registry+https://github.com/rust-lang/crates.io-index"
5930
- checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
5931
- dependencies = [
5932
- "bytemuck",
5933
- "safe_arch",
5934
- ]
5935
-
5936
5471
  [[package]]
5937
5472
  name = "winapi"
5938
5473
  version = "0.3.9"
@@ -5955,7 +5490,7 @@ version = "0.1.11"
5955
5490
  source = "registry+https://github.com/rust-lang/crates.io-index"
5956
5491
  checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
5957
5492
  dependencies = [
5958
- "windows-sys 0.61.2",
5493
+ "windows-sys 0.52.0",
5959
5494
  ]
5960
5495
 
5961
5496
  [[package]]
@@ -5964,16 +5499,6 @@ version = "0.4.0"
5964
5499
  source = "registry+https://github.com/rust-lang/crates.io-index"
5965
5500
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
5966
5501
 
5967
- [[package]]
5968
- name = "windows"
5969
- version = "0.58.0"
5970
- source = "registry+https://github.com/rust-lang/crates.io-index"
5971
- checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
5972
- dependencies = [
5973
- "windows-core 0.58.0",
5974
- "windows-targets 0.52.6",
5975
- ]
5976
-
5977
5502
  [[package]]
5978
5503
  name = "windows"
5979
5504
  version = "0.62.2"
@@ -5981,7 +5506,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
5981
5506
  checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
5982
5507
  dependencies = [
5983
5508
  "windows-collections",
5984
- "windows-core 0.62.2",
5509
+ "windows-core",
5985
5510
  "windows-future",
5986
5511
  "windows-numerics",
5987
5512
  ]
@@ -5992,20 +5517,7 @@ version = "0.3.2"
5992
5517
  source = "registry+https://github.com/rust-lang/crates.io-index"
5993
5518
  checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
5994
5519
  dependencies = [
5995
- "windows-core 0.62.2",
5996
- ]
5997
-
5998
- [[package]]
5999
- name = "windows-core"
6000
- version = "0.58.0"
6001
- source = "registry+https://github.com/rust-lang/crates.io-index"
6002
- checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
6003
- dependencies = [
6004
- "windows-implement 0.58.0",
6005
- "windows-interface 0.58.0",
6006
- "windows-result 0.2.0",
6007
- "windows-strings 0.1.0",
6008
- "windows-targets 0.52.6",
5520
+ "windows-core",
6009
5521
  ]
6010
5522
 
6011
5523
  [[package]]
@@ -6014,11 +5526,11 @@ version = "0.62.2"
6014
5526
  source = "registry+https://github.com/rust-lang/crates.io-index"
6015
5527
  checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
6016
5528
  dependencies = [
6017
- "windows-implement 0.60.2",
6018
- "windows-interface 0.59.3",
5529
+ "windows-implement",
5530
+ "windows-interface",
6019
5531
  "windows-link",
6020
- "windows-result 0.4.1",
6021
- "windows-strings 0.5.1",
5532
+ "windows-result",
5533
+ "windows-strings",
6022
5534
  ]
6023
5535
 
6024
5536
  [[package]]
@@ -6027,22 +5539,11 @@ version = "0.3.2"
6027
5539
  source = "registry+https://github.com/rust-lang/crates.io-index"
6028
5540
  checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
6029
5541
  dependencies = [
6030
- "windows-core 0.62.2",
5542
+ "windows-core",
6031
5543
  "windows-link",
6032
5544
  "windows-threading",
6033
5545
  ]
6034
5546
 
6035
- [[package]]
6036
- name = "windows-implement"
6037
- version = "0.58.0"
6038
- source = "registry+https://github.com/rust-lang/crates.io-index"
6039
- checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
6040
- dependencies = [
6041
- "proc-macro2",
6042
- "quote",
6043
- "syn",
6044
- ]
6045
-
6046
5547
  [[package]]
6047
5548
  name = "windows-implement"
6048
5549
  version = "0.60.2"
@@ -6054,17 +5555,6 @@ dependencies = [
6054
5555
  "syn",
6055
5556
  ]
6056
5557
 
6057
- [[package]]
6058
- name = "windows-interface"
6059
- version = "0.58.0"
6060
- source = "registry+https://github.com/rust-lang/crates.io-index"
6061
- checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
6062
- dependencies = [
6063
- "proc-macro2",
6064
- "quote",
6065
- "syn",
6066
- ]
6067
-
6068
5558
  [[package]]
6069
5559
  name = "windows-interface"
6070
5560
  version = "0.59.3"
@@ -6088,19 +5578,10 @@ version = "0.3.1"
6088
5578
  source = "registry+https://github.com/rust-lang/crates.io-index"
6089
5579
  checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
6090
5580
  dependencies = [
6091
- "windows-core 0.62.2",
5581
+ "windows-core",
6092
5582
  "windows-link",
6093
5583
  ]
6094
5584
 
6095
- [[package]]
6096
- name = "windows-result"
6097
- version = "0.2.0"
6098
- source = "registry+https://github.com/rust-lang/crates.io-index"
6099
- checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
6100
- dependencies = [
6101
- "windows-targets 0.52.6",
6102
- ]
6103
-
6104
5585
  [[package]]
6105
5586
  name = "windows-result"
6106
5587
  version = "0.4.1"
@@ -6110,16 +5591,6 @@ dependencies = [
6110
5591
  "windows-link",
6111
5592
  ]
6112
5593
 
6113
- [[package]]
6114
- name = "windows-strings"
6115
- version = "0.1.0"
6116
- source = "registry+https://github.com/rust-lang/crates.io-index"
6117
- checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
6118
- dependencies = [
6119
- "windows-result 0.2.0",
6120
- "windows-targets 0.52.6",
6121
- ]
6122
-
6123
5594
  [[package]]
6124
5595
  name = "windows-strings"
6125
5596
  version = "0.5.1"