bashkit 0.7.2__tar.gz → 0.9.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (533) hide show
  1. {bashkit-0.7.2 → bashkit-0.9.0}/Cargo.lock +215 -285
  2. {bashkit-0.7.2 → bashkit-0.9.0}/Cargo.toml +2 -2
  3. {bashkit-0.7.2 → bashkit-0.9.0}/PKG-INFO +1 -1
  4. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/Cargo.toml +1 -1
  5. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/README.md +4 -4
  6. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/docs/hooks.md +2 -2
  7. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/docs/python.md +19 -15
  8. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/docs/threat-model.md +2 -2
  9. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/awk/parser.rs +35 -27
  10. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/awk/tests.rs +16 -0
  11. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/mod.rs +18 -0
  12. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/python.rs +157 -45
  13. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/rg/mod.rs +623 -82
  14. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/sqlite/dot_commands.rs +36 -24
  15. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/sqlite/engine.rs +54 -16
  16. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/sqlite/mod.rs +90 -14
  17. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/sqlite/tests.rs +67 -0
  18. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/sqlite/vfs_io.rs +26 -6
  19. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/interpreter/mod.rs +748 -151
  20. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/lib.rs +95 -12
  21. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/parser/lexer.rs +16 -1
  22. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/parser/mod.rs +200 -46
  23. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/scripted_tool/extension.rs +52 -12
  24. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/scripted_tool/mod.rs +29 -15
  25. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/snapshot.rs +10 -1
  26. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/tool.rs +2 -2
  27. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/tool_def.rs +114 -6
  28. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/byte_range_panic_tests.rs +46 -0
  29. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/python_integration_tests.rs +113 -0
  30. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/python_security_tests.rs +2 -2
  31. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/snapshot_tests.rs +73 -0
  32. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/sqlite_integration_tests.rs +39 -0
  33. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/threat_model_tests.rs +94 -6
  34. bashkit-0.9.0/crates/bashkit-python/Cargo.toml +50 -0
  35. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/src/lib.rs +298 -100
  36. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_streaming_output.py +22 -0
  37. bashkit-0.7.2/crates/bashkit-python/Cargo.toml +0 -35
  38. {bashkit-0.7.2 → bashkit-0.9.0}/README.md +0 -0
  39. {bashkit-0.7.2 → bashkit-0.9.0}/bashkit/__init__.py +0 -0
  40. {bashkit-0.7.2 → bashkit-0.9.0}/bashkit/_bashkit.pyi +0 -0
  41. {bashkit-0.7.2 → bashkit-0.9.0}/bashkit/deepagents.py +0 -0
  42. {bashkit-0.7.2 → bashkit-0.9.0}/bashkit/langchain.py +0 -0
  43. {bashkit-0.7.2 → bashkit-0.9.0}/bashkit/py.typed +0 -0
  44. {bashkit-0.7.2 → bashkit-0.9.0}/bashkit/pydantic_ai.py +0 -0
  45. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/benches/file_ops.rs +0 -0
  46. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/benches/hotpath.rs +0 -0
  47. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/benches/parallel_execution.rs +0 -0
  48. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/benches/results/README.md +0 -0
  49. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/benches/results/criterion-file_ops-linux-x86_64-1779759850.md +0 -0
  50. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/benches/results/criterion-hotpath-attrs+shopt-linux-x86_64-1779759850.md +0 -0
  51. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/benches/results/criterion-hotpath-perf-linux-x86_64-1779744742.md +0 -0
  52. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/benches/results/criterion-parallel-(none)-linux-x86_64-1773469129.md +0 -0
  53. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1777865268.md +0 -0
  54. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/benches/sqlite.rs +0 -0
  55. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/docs/clap-builtins.md +0 -0
  56. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/docs/compatibility.md +0 -0
  57. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/docs/credential-injection.md +0 -0
  58. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/docs/custom_builtins.md +0 -0
  59. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/docs/jq.md +0 -0
  60. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/docs/live_mounts.md +0 -0
  61. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/docs/logging.md +0 -0
  62. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/docs/sqlite.md +0 -0
  63. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/docs/ssh.md +0 -0
  64. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/docs/typescript.md +0 -0
  65. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/agent_tool.rs +0 -0
  66. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/basic.rs +0 -0
  67. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/clap_builtin.rs +0 -0
  68. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/clap_builtin_subcommands.rs +0 -0
  69. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/custom_backend.rs +0 -0
  70. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/custom_builtins.rs +0 -0
  71. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
  72. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/custom_fs.rs +0 -0
  73. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/git_workflow.rs +0 -0
  74. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/live_mounts.rs +0 -0
  75. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/python_external_functions.rs +0 -0
  76. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/python_scripts.rs +0 -0
  77. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/realfs_readonly.rs +0 -0
  78. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
  79. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/resource_limits.rs +0 -0
  80. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/scripted_tool.rs +0 -0
  81. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/show_tool_output.rs +0 -0
  82. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/sqlite_basic.rs +0 -0
  83. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/sqlite_workflow.rs +0 -0
  84. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/ssh_supabase.rs +0 -0
  85. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/streaming_output.rs +0 -0
  86. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/text_files.rs +0 -0
  87. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/text_processing.rs +0 -0
  88. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
  89. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/typescript_scripts.rs +0 -0
  90. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/examples/virtual_identity.rs +0 -0
  91. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/out file.txt +0 -0
  92. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +0 -0
  93. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/alias.rs +0 -0
  94. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/archive.rs +0 -0
  95. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
  96. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/assert.rs +0 -0
  97. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/awk/interpreter.rs +0 -0
  98. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/awk/mod.rs +0 -0
  99. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/base64.rs +0 -0
  100. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/bc.rs +0 -0
  101. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/caller.rs +0 -0
  102. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/cat.rs +0 -0
  103. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/checksum.rs +0 -0
  104. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/clap_env.rs +0 -0
  105. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/clear.rs +0 -0
  106. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/column.rs +0 -0
  107. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/comm.rs +0 -0
  108. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/compgen.rs +0 -0
  109. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/csv.rs +0 -0
  110. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/curl.rs +0 -0
  111. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/cuttr.rs +0 -0
  112. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/date.rs +0 -0
  113. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/diff.rs +0 -0
  114. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/dirstack.rs +0 -0
  115. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/disk.rs +0 -0
  116. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/dotenv.rs +0 -0
  117. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/echo.rs +0 -0
  118. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/environ.rs +0 -0
  119. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/envsubst.rs +0 -0
  120. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/expand.rs +0 -0
  121. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/export.rs +0 -0
  122. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/expr.rs +0 -0
  123. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/fc.rs +0 -0
  124. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/fileops.rs +0 -0
  125. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/flow.rs +0 -0
  126. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/fold.rs +0 -0
  127. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/cat_args.rs +0 -0
  128. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/extendedbigdecimal.rs +0 -0
  129. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/format/argument.rs +0 -0
  130. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/format/escape.rs +0 -0
  131. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/format/human.rs +0 -0
  132. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/format/mod.rs +0 -0
  133. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/format/num_format.rs +0 -0
  134. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/format/spec.rs +0 -0
  135. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/format_support.rs +0 -0
  136. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/ls_args.rs +0 -0
  137. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/mktemp_args.rs +0 -0
  138. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/mod.rs +0 -0
  139. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/num_parser.rs +0 -0
  140. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/od_args.rs +0 -0
  141. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/readlink_args.rs +0 -0
  142. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/realpath_args.rs +0 -0
  143. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/shuf_args.rs +0 -0
  144. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/stat_args.rs +0 -0
  145. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/tac_args.rs +0 -0
  146. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/tee_args.rs +0 -0
  147. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/generated/truncate_args.rs +0 -0
  148. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/git/client.rs +0 -0
  149. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/git/cmd.rs +0 -0
  150. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/git/config.rs +0 -0
  151. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/git/mod.rs +0 -0
  152. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
  153. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/grep.rs +0 -0
  154. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/headtail.rs +0 -0
  155. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/help.rs +0 -0
  156. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/helpers.rs +0 -0
  157. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/hextools.rs +0 -0
  158. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/http.rs +0 -0
  159. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/iconv.rs +0 -0
  160. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/inspect.rs +0 -0
  161. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/introspect.rs +0 -0
  162. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/join.rs +0 -0
  163. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/jq/args.rs +0 -0
  164. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/jq/compat.rs +0 -0
  165. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/jq/convert.rs +0 -0
  166. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/jq/errors.rs +0 -0
  167. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/jq/format.rs +0 -0
  168. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/jq/mod.rs +0 -0
  169. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/jq/regex_compat.rs +0 -0
  170. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/jq/tests.rs +0 -0
  171. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/json.rs +0 -0
  172. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/limits.rs +0 -0
  173. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/log.rs +0 -0
  174. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/ls/find.rs +0 -0
  175. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/ls/glob.rs +0 -0
  176. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/ls/list.rs +0 -0
  177. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/ls/mod.rs +0 -0
  178. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/ls/rmdir.rs +0 -0
  179. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/ls/tests.rs +0 -0
  180. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/mapfile.rs +0 -0
  181. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
  182. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/navigation.rs +0 -0
  183. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/nl.rs +0 -0
  184. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/numfmt.rs +0 -0
  185. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/parallel.rs +0 -0
  186. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/paste.rs +0 -0
  187. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/patch.rs +0 -0
  188. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/path.rs +0 -0
  189. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/pipeline.rs +0 -0
  190. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/printf.rs +0 -0
  191. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/read.rs +0 -0
  192. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/retry.rs +0 -0
  193. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/search_common.rs +0 -0
  194. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/sed.rs +0 -0
  195. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/semver.rs +0 -0
  196. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/seq.rs +0 -0
  197. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/shuf.rs +0 -0
  198. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/sleep.rs +0 -0
  199. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/sortuniq.rs +0 -0
  200. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/source.rs +0 -0
  201. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/split.rs +0 -0
  202. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/sqlite/formatter.rs +0 -0
  203. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/sqlite/parser.rs +0 -0
  204. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/ssh/allowlist.rs +0 -0
  205. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/ssh/client.rs +0 -0
  206. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/ssh/cmd.rs +0 -0
  207. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/ssh/config.rs +0 -0
  208. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/ssh/handler.rs +0 -0
  209. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/ssh/mod.rs +0 -0
  210. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/ssh/russh_handler.rs +0 -0
  211. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/strings.rs +0 -0
  212. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/system.rs +0 -0
  213. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/template.rs +0 -0
  214. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/test.rs +0 -0
  215. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/textrev.rs +0 -0
  216. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/timeout.rs +0 -0
  217. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/tomlq.rs +0 -0
  218. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/trap.rs +0 -0
  219. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/tree.rs +0 -0
  220. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/truncate.rs +0 -0
  221. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/typescript.rs +0 -0
  222. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/vars.rs +0 -0
  223. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/verify.rs +0 -0
  224. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/wait.rs +0 -0
  225. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/wc.rs +0 -0
  226. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/yaml.rs +0 -0
  227. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/yes.rs +0 -0
  228. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/builtins/zip_cmd.rs +0 -0
  229. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/credential.rs +0 -0
  230. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/error.rs +0 -0
  231. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/fs/backend.rs +0 -0
  232. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/fs/limits.rs +0 -0
  233. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/fs/memory.rs +0 -0
  234. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/fs/mod.rs +0 -0
  235. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/fs/mountable.rs +0 -0
  236. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/fs/overlay.rs +0 -0
  237. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/fs/posix.rs +0 -0
  238. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/fs/readonly.rs +0 -0
  239. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/fs/realfs.rs +0 -0
  240. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/fs/search.rs +0 -0
  241. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/fs/traits.rs +0 -0
  242. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/hooks.rs +0 -0
  243. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/interop/fs.rs +0 -0
  244. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/interop/mod.rs +0 -0
  245. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/interpreter/glob.rs +0 -0
  246. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/interpreter/jobs.rs +0 -0
  247. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/interpreter/state.rs +0 -0
  248. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/limits.rs +0 -0
  249. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/logging_impl.rs +0 -0
  250. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/network/allowlist.rs +0 -0
  251. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/network/bot_auth.rs +0 -0
  252. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/network/client.rs +0 -0
  253. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/network/mod.rs +0 -0
  254. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/parser/ast.rs +0 -0
  255. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/parser/budget.rs +0 -0
  256. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/parser/span.rs +0 -0
  257. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/parser/tokens.rs +0 -0
  258. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/scripted_tool/execute.rs +0 -0
  259. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
  260. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/testing.rs +0 -0
  261. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/src/trace.rs +0 -0
  262. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/agent_skills_publication_tests.rs +0 -0
  263. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/allexport_tests.rs +0 -0
  264. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/awk_fuzz_scaffold_tests.rs +0 -0
  265. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/awk_newline_tests.rs +0 -0
  266. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/awk_pattern_tests.rs +0 -0
  267. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/awk_printf_expr_test.rs +0 -0
  268. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/awk_range_pattern_tests.rs +0 -0
  269. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/background_exec_tests.rs +0 -0
  270. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/bash_source_tests.rs +0 -0
  271. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/blackbox_security_tests.rs +0 -0
  272. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/builtin_error_security_tests.rs +0 -0
  273. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/builtin_registry_tests.rs +0 -0
  274. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/cancellation_tests.rs +0 -0
  275. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/cmdsub_quote_test.rs +0 -0
  276. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/coproc_tests.rs +0 -0
  277. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/coreutils_differential_tests.rs +0 -0
  278. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/credential_injection_tests.rs +0 -0
  279. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/custom_builtins_tests.rs +0 -0
  280. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/custom_fs_tests.rs +0 -0
  281. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/dev_null_tests.rs +0 -0
  282. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/final_env_tests.rs +0 -0
  283. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/find_multi_path_tests.rs +0 -0
  284. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/git_advanced_tests.rs +0 -0
  285. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/git_inspection_tests.rs +0 -0
  286. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/git_integration_tests.rs +0 -0
  287. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/git_remote_security_tests.rs +0 -0
  288. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/git_security_tests.rs +0 -0
  289. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/harness_example_tests.rs +0 -0
  290. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/history_tests.rs +0 -0
  291. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/issue_1175_test.rs +0 -0
  292. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/issue_1776_test.rs +0 -0
  293. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/issue_1777_test.rs +0 -0
  294. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/issue_274_test.rs +0 -0
  295. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/issue_275_279_282_test.rs +0 -0
  296. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/issue_276_test.rs +0 -0
  297. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/issue_277_test.rs +0 -0
  298. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/issue_289_test.rs +0 -0
  299. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/issue_290_test.rs +0 -0
  300. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/issue_291_test.rs +0 -0
  301. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/issue_853_test.rs +0 -0
  302. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/issue_872_test.rs +0 -0
  303. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/issue_873_test.rs +0 -0
  304. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/issue_875_test.rs +0 -0
  305. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/jq_fuzz_scaffold_tests.rs +0 -0
  306. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/live_mount_tests.rs +0 -0
  307. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/main.rs +0 -0
  308. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/mkfifo_tests.rs +0 -0
  309. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/nested_subscript_tests.rs +0 -0
  310. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/network_security_tests.rs +0 -0
  311. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/output_truncation_tests.rs +0 -0
  312. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/proptest_differential.rs +0 -0
  313. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/regex_limit_tests.rs +0 -0
  314. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/release_profile_tests.rs +0 -0
  315. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/script_execution_tests.rs +0 -0
  316. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/security_audit_pocs.rs +0 -0
  317. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/set_e_and_or_tests.rs +0 -0
  318. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/shuf_resource_tests.rs +0 -0
  319. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/skills_tests.rs +0 -0
  320. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/source_function_tests.rs +0 -0
  321. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/spec_runner.rs +0 -0
  322. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/spec_tests.rs +0 -0
  323. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/sqlite_compat_tests.rs +0 -0
  324. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/sqlite_differential_tests.rs +0 -0
  325. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/sqlite_fuzz_tests.rs +0 -0
  326. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/sqlite_security_tests.rs +0 -0
  327. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/stack_overflow_regression_tests.rs +0 -0
  328. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/subst_depth_limit_tests.rs +0 -0
  329. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/symlink_overlay_security_tests.rs +0 -0
  330. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/tty_tests.rs +0 -0
  331. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/typescript_integration_tests.rs +0 -0
  332. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/typescript_security_tests.rs +0 -0
  333. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/unicode_security_tests.rs +0 -0
  334. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/unset_function_tests.rs +0 -0
  335. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/urandom_tests.rs +0 -0
  336. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/integration/workflow_security_tests.rs +0 -0
  337. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/logging_security_tests.rs +0 -0
  338. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/proptest_security.rs +0 -0
  339. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/realfs_tests.rs +0 -0
  340. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
  341. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
  342. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
  343. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
  344. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
  345. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
  346. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
  347. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
  348. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
  349. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
  350. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
  351. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
  352. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
  353. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
  354. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
  355. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
  356. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
  357. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
  358. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
  359. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
  360. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
  361. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
  362. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
  363. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
  364. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
  365. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
  366. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
  367. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
  368. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
  369. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
  370. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
  371. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
  372. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
  373. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
  374. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
  375. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
  376. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
  377. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
  378. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/cat.test.sh +0 -0
  379. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
  380. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
  381. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
  382. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
  383. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
  384. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
  385. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
  386. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
  387. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
  388. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
  389. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
  390. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
  391. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
  392. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
  393. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
  394. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
  395. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
  396. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
  397. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
  398. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
  399. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
  400. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
  401. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
  402. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
  403. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
  404. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
  405. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
  406. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
  407. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
  408. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
  409. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
  410. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
  411. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
  412. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
  413. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
  414. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
  415. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
  416. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
  417. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
  418. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
  419. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
  420. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
  421. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
  422. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
  423. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
  424. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
  425. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
  426. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
  427. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
  428. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
  429. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
  430. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
  431. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
  432. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/mktemp.test.sh +0 -0
  433. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
  434. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
  435. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
  436. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
  437. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
  438. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
  439. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/od.test.sh +0 -0
  440. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
  441. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
  442. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
  443. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
  444. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
  445. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
  446. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
  447. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
  448. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
  449. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +0 -0
  450. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/readlink.test.sh +0 -0
  451. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
  452. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
  453. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
  454. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
  455. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
  456. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
  457. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
  458. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/shuf.test.sh +0 -0
  459. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
  460. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
  461. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
  462. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
  463. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
  464. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
  465. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
  466. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
  467. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
  468. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
  469. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
  470. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
  471. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
  472. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
  473. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
  474. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
  475. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
  476. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
  477. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/truncate.test.sh +0 -0
  478. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
  479. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
  480. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
  481. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
  482. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
  483. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
  484. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
  485. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
  486. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
  487. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
  488. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
  489. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
  490. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
  491. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
  492. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
  493. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
  494. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
  495. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
  496. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
  497. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
  498. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
  499. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/README.md +0 -0
  500. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/examples/bash_basics.py +0 -0
  501. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
  502. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/examples/data_pipeline.py +0 -0
  503. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
  504. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
  505. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
  506. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
  507. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/examples/llm_tool.py +0 -0
  508. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/_bashkit_categories.py +0 -0
  509. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/_security_advanced.py +0 -0
  510. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/_security_core.py +0 -0
  511. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
  512. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
  513. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_basic.py +0 -0
  514. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_builtins.py +0 -0
  515. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_control_flow.py +0 -0
  516. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_error_handling.py +0 -0
  517. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_fastapi_integration.py +0 -0
  518. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
  519. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_integration.py +0 -0
  520. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
  521. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
  522. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_network_config.py +0 -0
  523. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_network_credentials.py +0 -0
  524. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_python_security.py +0 -0
  525. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
  526. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_scripts.py +0 -0
  527. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_security.py +0 -0
  528. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
  529. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_sqlite.py +0 -0
  530. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
  531. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
  532. {bashkit-0.7.2 → bashkit-0.9.0}/crates/bashkit-python/tests/test_vfs.py +0 -0
  533. {bashkit-0.7.2 → bashkit-0.9.0}/pyproject.toml +0 -0
@@ -58,6 +58,7 @@ dependencies = [
58
58
  "cipher 0.5.1",
59
59
  "cpubits",
60
60
  "cpufeatures 0.3.0",
61
+ "zeroize",
61
62
  ]
62
63
 
63
64
  [[package]]
@@ -86,6 +87,7 @@ dependencies = [
86
87
  "ctr 0.10.0",
87
88
  "ghash 0.6.0",
88
89
  "subtle",
90
+ "zeroize",
89
91
  ]
90
92
 
91
93
  [[package]]
@@ -224,13 +226,13 @@ dependencies = [
224
226
 
225
227
  [[package]]
226
228
  name = "argon2"
227
- version = "0.5.3"
229
+ version = "0.6.0-rc.8"
228
230
  source = "registry+https://github.com/rust-lang/crates.io-index"
229
- checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
231
+ checksum = "7af50940b73bf4e16c15c448a2b121c63f2d68e3e54b6a8731673cb4aa0cdff5"
230
232
  dependencies = [
231
233
  "base64ct",
232
234
  "blake2",
233
- "cpufeatures 0.2.17",
235
+ "cpufeatures 0.3.0",
234
236
  "password-hash",
235
237
  ]
236
238
 
@@ -345,7 +347,7 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
345
347
 
346
348
  [[package]]
347
349
  name = "bashkit"
348
- version = "0.7.2"
350
+ version = "0.9.0"
349
351
  dependencies = [
350
352
  "anyhow",
351
353
  "async-trait",
@@ -362,7 +364,7 @@ dependencies = [
362
364
  "futures-core",
363
365
  "futures-util",
364
366
  "getrandom 0.4.2",
365
- "hmac 0.13.0",
367
+ "hmac",
366
368
  "insta",
367
369
  "jaq-core",
368
370
  "jaq-json",
@@ -381,7 +383,7 @@ dependencies = [
381
383
  "serde",
382
384
  "serde_json",
383
385
  "serial_test",
384
- "sha1 0.11.0",
386
+ "sha1",
385
387
  "sha2 0.11.0",
386
388
  "tempfile",
387
389
  "thiserror 2.0.18",
@@ -398,7 +400,7 @@ dependencies = [
398
400
 
399
401
  [[package]]
400
402
  name = "bashkit-bench"
401
- version = "0.7.2"
403
+ version = "0.9.0"
402
404
  dependencies = [
403
405
  "anyhow",
404
406
  "bashkit",
@@ -412,7 +414,7 @@ dependencies = [
412
414
 
413
415
  [[package]]
414
416
  name = "bashkit-cli"
415
- version = "0.7.2"
417
+ version = "0.9.0"
416
418
  dependencies = [
417
419
  "anyhow",
418
420
  "bashkit",
@@ -426,7 +428,7 @@ dependencies = [
426
428
 
427
429
  [[package]]
428
430
  name = "bashkit-coreutils-port"
429
- version = "0.7.2"
431
+ version = "0.9.0"
430
432
  dependencies = [
431
433
  "anyhow",
432
434
  "prettyplease",
@@ -440,7 +442,7 @@ dependencies = [
440
442
 
441
443
  [[package]]
442
444
  name = "bashkit-eval"
443
- version = "0.7.2"
445
+ version = "0.9.0"
444
446
  dependencies = [
445
447
  "anyhow",
446
448
  "async-trait",
@@ -457,7 +459,7 @@ dependencies = [
457
459
 
458
460
  [[package]]
459
461
  name = "bashkit-js"
460
- version = "0.7.2"
462
+ version = "0.9.0"
461
463
  dependencies = [
462
464
  "bashkit",
463
465
  "napi",
@@ -469,7 +471,7 @@ dependencies = [
469
471
 
470
472
  [[package]]
471
473
  name = "bashkit-python"
472
- version = "0.7.2"
474
+ version = "0.9.0"
473
475
  dependencies = [
474
476
  "bashkit",
475
477
  "num-bigint",
@@ -481,13 +483,13 @@ dependencies = [
481
483
 
482
484
  [[package]]
483
485
  name = "bcrypt-pbkdf"
484
- version = "0.10.0"
486
+ version = "0.11.0"
485
487
  source = "registry+https://github.com/rust-lang/crates.io-index"
486
- checksum = "6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2"
488
+ checksum = "144e573728da132683b9488acd528274c790e07fc06ff81ee29f9d8f8b1041e0"
487
489
  dependencies = [
488
490
  "blowfish",
489
- "pbkdf2 0.12.2",
490
- "sha2 0.10.9",
491
+ "pbkdf2",
492
+ "sha2 0.11.0",
491
493
  ]
492
494
 
493
495
  [[package]]
@@ -538,11 +540,11 @@ dependencies = [
538
540
 
539
541
  [[package]]
540
542
  name = "blake2"
541
- version = "0.10.6"
543
+ version = "0.11.0-rc.6"
542
544
  source = "registry+https://github.com/rust-lang/crates.io-index"
543
- checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
545
+ checksum = "061f1a09225e328e1ffbb378d2d49923c0ca5fee19fb5ac1cc9c1e9d52b93690"
544
546
  dependencies = [
545
- "digest 0.10.7",
547
+ "digest 0.11.3",
546
548
  ]
547
549
 
548
550
  [[package]]
@@ -561,6 +563,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
561
563
  checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
562
564
  dependencies = [
563
565
  "hybrid-array",
566
+ "zeroize",
564
567
  ]
565
568
 
566
569
  [[package]]
@@ -583,12 +586,12 @@ dependencies = [
583
586
 
584
587
  [[package]]
585
588
  name = "blowfish"
586
- version = "0.9.1"
589
+ version = "0.10.0"
587
590
  source = "registry+https://github.com/rust-lang/crates.io-index"
588
- checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
591
+ checksum = "62ce3946557b35e71d1bbe07ec385073ce9eda05043f95de134eb578fcf1a298"
589
592
  dependencies = [
590
593
  "byteorder",
591
- "cipher 0.4.4",
594
+ "cipher 0.5.1",
592
595
  ]
593
596
 
594
597
  [[package]]
@@ -670,15 +673,6 @@ dependencies = [
670
673
  "rustversion",
671
674
  ]
672
675
 
673
- [[package]]
674
- name = "cbc"
675
- version = "0.1.2"
676
- source = "registry+https://github.com/rust-lang/crates.io-index"
677
- checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
678
- dependencies = [
679
- "cipher 0.4.4",
680
- ]
681
-
682
676
  [[package]]
683
677
  name = "cbc"
684
678
  version = "0.2.0"
@@ -718,17 +712,6 @@ version = "0.1.1"
718
712
  source = "registry+https://github.com/rust-lang/crates.io-index"
719
713
  checksum = "18758054972164c3264f7c8386f5fc6da6114cb46b619fd365d4e3b2dc3ae487"
720
714
 
721
- [[package]]
722
- name = "chacha20"
723
- version = "0.9.1"
724
- source = "registry+https://github.com/rust-lang/crates.io-index"
725
- checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
726
- dependencies = [
727
- "cfg-if",
728
- "cipher 0.4.4",
729
- "cpufeatures 0.2.17",
730
- ]
731
-
732
715
  [[package]]
733
716
  name = "chacha20"
734
717
  version = "0.10.0"
@@ -736,8 +719,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
736
719
  checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
737
720
  dependencies = [
738
721
  "cfg-if",
722
+ "cipher 0.5.1",
739
723
  "cpufeatures 0.3.0",
740
724
  "rand_core 0.10.1",
725
+ "zeroize",
741
726
  ]
742
727
 
743
728
  [[package]]
@@ -800,6 +785,7 @@ dependencies = [
800
785
  "block-buffer 0.12.0",
801
786
  "crypto-common 0.2.1",
802
787
  "inout 0.2.2",
788
+ "zeroize",
803
789
  ]
804
790
 
805
791
  [[package]]
@@ -893,7 +879,7 @@ version = "3.1.1"
893
879
  source = "registry+https://github.com/rust-lang/crates.io-index"
894
880
  checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
895
881
  dependencies = [
896
- "windows-sys 0.52.0",
882
+ "windows-sys 0.61.2",
897
883
  ]
898
884
 
899
885
  [[package]]
@@ -1110,9 +1096,9 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
1110
1096
 
1111
1097
  [[package]]
1112
1098
  name = "crypto-bigint"
1113
- version = "0.7.0-rc.28"
1099
+ version = "0.7.3"
1114
1100
  source = "registry+https://github.com/rust-lang/crates.io-index"
1115
- checksum = "96dacf199529fb801ae62a9aafdc01b189e9504c0d1ee1512a4c16bcd8666a93"
1101
+ checksum = "42a0d26b245348befa0c121944541476763dcc46ede886c88f9d12e1697d27c3"
1116
1102
  dependencies = [
1117
1103
  "cpubits",
1118
1104
  "ctutils",
@@ -1149,9 +1135,9 @@ dependencies = [
1149
1135
 
1150
1136
  [[package]]
1151
1137
  name = "crypto-primes"
1152
- version = "0.7.0-pre.9"
1138
+ version = "0.7.0"
1153
1139
  source = "registry+https://github.com/rust-lang/crates.io-index"
1154
- checksum = "6081ce8b60c0e533e2bba42771b94eb6149052115f4179744d5779883dc98583"
1140
+ checksum = "21f41f23de7d24cdbda7f0c4d9c0351f99a4ceb258ef30e5c1927af8987ffe5a"
1155
1141
  dependencies = [
1156
1142
  "crypto-bigint",
1157
1143
  "libm",
@@ -1269,7 +1255,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
1255
  checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
1270
1256
  dependencies = [
1271
1257
  "const-oid 0.10.2",
1272
- "pem-rfc7468 1.0.0",
1258
+ "pem-rfc7468",
1273
1259
  "zeroize",
1274
1260
  ]
1275
1261
 
@@ -1284,6 +1270,15 @@ dependencies = [
1284
1270
  "syn",
1285
1271
  ]
1286
1272
 
1273
+ [[package]]
1274
+ name = "des"
1275
+ version = "0.9.0"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "916a94e407b54f9034d71dd748234cd1e516ced6284009906ae246f177eafe5a"
1278
+ dependencies = [
1279
+ "cipher 0.5.1",
1280
+ ]
1281
+
1287
1282
  [[package]]
1288
1283
  name = "diff"
1289
1284
  version = "0.1.13"
@@ -1299,7 +1294,6 @@ dependencies = [
1299
1294
  "block-buffer 0.10.4",
1300
1295
  "const-oid 0.9.6",
1301
1296
  "crypto-common 0.1.7",
1302
- "subtle",
1303
1297
  ]
1304
1298
 
1305
1299
  [[package]]
@@ -1345,16 +1339,16 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
1345
1339
 
1346
1340
  [[package]]
1347
1341
  name = "ecdsa"
1348
- version = "0.17.0-rc.16"
1342
+ version = "0.17.0-rc.18"
1349
1343
  source = "registry+https://github.com/rust-lang/crates.io-index"
1350
- checksum = "91bbdd377139884fafcad8dc43a760a3e1e681aa26db910257fa6535b70e1829"
1344
+ checksum = "54fb064faabbee66e1fc8e5c5a9458d4269dc2d8b638fe86a425adb2510d1a96"
1351
1345
  dependencies = [
1352
1346
  "der 0.8.0",
1353
1347
  "digest 0.11.3",
1354
1348
  "elliptic-curve",
1355
1349
  "rfc6979",
1356
1350
  "signature 3.0.0",
1357
- "spki 0.8.0-rc.4",
1351
+ "spki 0.8.0",
1358
1352
  "zeroize",
1359
1353
  ]
1360
1354
 
@@ -1370,11 +1364,11 @@ dependencies = [
1370
1364
 
1371
1365
  [[package]]
1372
1366
  name = "ed25519"
1373
- version = "3.0.0-rc.4"
1367
+ version = "3.0.0"
1374
1368
  source = "registry+https://github.com/rust-lang/crates.io-index"
1375
- checksum = "c6e914c7c52decb085cea910552e24c63ac019e3ab8bf001ff736da9a9d9d890"
1369
+ checksum = "29fcf32e6c73d1079f83ab4d782de2d81620346a5f38c6237a86a22f8368980a"
1376
1370
  dependencies = [
1377
- "pkcs8 0.11.0-rc.11",
1371
+ "pkcs8 0.11.0",
1378
1372
  "signature 3.0.0",
1379
1373
  ]
1380
1374
 
@@ -1395,12 +1389,12 @@ dependencies = [
1395
1389
 
1396
1390
  [[package]]
1397
1391
  name = "ed25519-dalek"
1398
- version = "3.0.0-pre.6"
1392
+ version = "3.0.0-pre.7"
1399
1393
  source = "registry+https://github.com/rust-lang/crates.io-index"
1400
- checksum = "053618a4c3d3bc24f188aa660ae75a46eeab74ef07fb415c61431e5e7cd4749b"
1394
+ checksum = "20449acd54b660981ae5caa2bcb56d1fe7f25f2e37a38ec507400fab034d4bb6"
1401
1395
  dependencies = [
1402
1396
  "curve25519-dalek 5.0.0-pre.6",
1403
- "ed25519 3.0.0-rc.4",
1397
+ "ed25519 3.0.0",
1404
1398
  "rand_core 0.10.1",
1405
1399
  "serde",
1406
1400
  "sha2 0.11.0",
@@ -1417,9 +1411,9 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1417
1411
 
1418
1412
  [[package]]
1419
1413
  name = "elliptic-curve"
1420
- version = "0.14.0-rc.28"
1414
+ version = "0.14.0-rc.32"
1421
1415
  source = "registry+https://github.com/rust-lang/crates.io-index"
1422
- checksum = "bde7860544606d222fd6bd6d9f9a0773321bf78072a637e1d560a058c0031978"
1416
+ checksum = "cda94f31325c4275e9706adecbb6f0650dee2f904c915a98e3d81adaaaa757aa"
1423
1417
  dependencies = [
1424
1418
  "base16ct",
1425
1419
  "crypto-bigint",
@@ -1428,8 +1422,8 @@ dependencies = [
1428
1422
  "hkdf",
1429
1423
  "hybrid-array",
1430
1424
  "once_cell",
1431
- "pem-rfc7468 1.0.0",
1432
- "pkcs8 0.11.0-rc.11",
1425
+ "pem-rfc7468",
1426
+ "pkcs8 0.11.0",
1433
1427
  "rand_core 0.10.1",
1434
1428
  "rustcrypto-ff",
1435
1429
  "rustcrypto-group",
@@ -1487,7 +1481,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
1481
  checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1488
1482
  dependencies = [
1489
1483
  "libc",
1490
- "windows-sys 0.52.0",
1484
+ "windows-sys 0.61.2",
1491
1485
  ]
1492
1486
 
1493
1487
  [[package]]
@@ -1745,9 +1739,9 @@ dependencies = [
1745
1739
 
1746
1740
  [[package]]
1747
1741
  name = "get-size-derive2"
1748
- version = "0.7.4"
1742
+ version = "0.9.0"
1749
1743
  source = "registry+https://github.com/rust-lang/crates.io-index"
1750
- checksum = "f2b6d1e2f75c16bfbcd0f95d84f99858a6e2f885c2287d1f5c3a96e8444a34b4"
1744
+ checksum = "c9f8ab1b98a1284961d722ce994d9a0f3018ab1917618d4113824a72b9f71bc9"
1751
1745
  dependencies = [
1752
1746
  "attribute-derive",
1753
1747
  "quote",
@@ -1756,15 +1750,16 @@ dependencies = [
1756
1750
 
1757
1751
  [[package]]
1758
1752
  name = "get-size2"
1759
- version = "0.7.4"
1753
+ version = "0.9.0"
1760
1754
  source = "registry+https://github.com/rust-lang/crates.io-index"
1761
- checksum = "49cf31a6d70300cf81461098f7797571362387ef4bf85d32ac47eaa59b3a5a1a"
1755
+ checksum = "b0cd0777a1057362cab35a779e0d79dacecb8d73e2c733eaafeb7ea917b08f03"
1762
1756
  dependencies = [
1763
1757
  "compact_str",
1764
1758
  "get-size-derive2",
1765
- "hashbrown 0.16.1",
1759
+ "hashbrown 0.17.1",
1766
1760
  "ordermap",
1767
1761
  "smallvec",
1762
+ "thin-vec",
1768
1763
  ]
1769
1764
 
1770
1765
  [[package]]
@@ -1932,16 +1927,7 @@ version = "0.13.0"
1932
1927
  source = "registry+https://github.com/rust-lang/crates.io-index"
1933
1928
  checksum = "4aaa26c720c68b866f2c96ef5c1264b3e6f473fe5d4ce61cd44bbe913e553018"
1934
1929
  dependencies = [
1935
- "hmac 0.13.0",
1936
- ]
1937
-
1938
- [[package]]
1939
- name = "hmac"
1940
- version = "0.12.1"
1941
- source = "registry+https://github.com/rust-lang/crates.io-index"
1942
- checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1943
- dependencies = [
1944
- "digest 0.10.7",
1930
+ "hmac",
1945
1931
  ]
1946
1932
 
1947
1933
  [[package]]
@@ -2248,35 +2234,6 @@ dependencies = [
2248
2234
  "tempfile",
2249
2235
  ]
2250
2236
 
2251
- [[package]]
2252
- name = "internal-russh-forked-ssh-key"
2253
- version = "0.6.18+upstream-0.6.7"
2254
- source = "registry+https://github.com/rust-lang/crates.io-index"
2255
- checksum = "25f8a978272e3cbdf4768f7363eb1c8e1e6ba63c52a3ed05e29e222da4aec7cb"
2256
- dependencies = [
2257
- "argon2",
2258
- "bcrypt-pbkdf",
2259
- "crypto-bigint",
2260
- "ecdsa",
2261
- "ed25519-dalek 3.0.0-pre.6",
2262
- "hex",
2263
- "hmac 0.13.0",
2264
- "num-bigint-dig",
2265
- "p256",
2266
- "p384",
2267
- "p521",
2268
- "rand_core 0.10.1",
2269
- "rsa",
2270
- "sec1",
2271
- "sha1 0.11.0",
2272
- "sha2 0.11.0",
2273
- "signature 3.0.0",
2274
- "ssh-cipher",
2275
- "ssh-encoding",
2276
- "subtle",
2277
- "zeroize",
2278
- ]
2279
-
2280
2237
  [[package]]
2281
2238
  name = "internal-russh-num-bigint"
2282
2239
  version = "0.5.0"
@@ -2411,7 +2368,7 @@ dependencies = [
2411
2368
  "portable-atomic",
2412
2369
  "portable-atomic-util",
2413
2370
  "serde_core",
2414
- "windows-sys 0.52.0",
2371
+ "windows-sys 0.61.2",
2415
2372
  ]
2416
2373
 
2417
2374
  [[package]]
@@ -2442,9 +2399,9 @@ dependencies = [
2442
2399
 
2443
2400
  [[package]]
2444
2401
  name = "jiter"
2445
- version = "0.13.0"
2402
+ version = "0.15.0"
2446
2403
  source = "registry+https://github.com/rust-lang/crates.io-index"
2447
- checksum = "020ba671987d7444d251d3ee5340be1bf4606cd6c0b53e6f4066b5a1ee376b22"
2404
+ checksum = "7866f284df68dbc242796251ed9768bde2b58ebc4d7d32cc07cc7fd993e3ed6c"
2448
2405
  dependencies = [
2449
2406
  "ahash",
2450
2407
  "bitvec",
@@ -2551,9 +2508,6 @@ name = "lazy_static"
2551
2508
  version = "1.5.0"
2552
2509
  source = "registry+https://github.com/rust-lang/crates.io-index"
2553
2510
  checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2554
- dependencies = [
2555
- "spin",
2556
- ]
2557
2511
 
2558
2512
  [[package]]
2559
2513
  name = "leb128fmt"
@@ -2786,13 +2740,14 @@ dependencies = [
2786
2740
 
2787
2741
  [[package]]
2788
2742
  name = "ml-kem"
2789
- version = "0.3.0-rc.1"
2743
+ version = "0.3.2"
2790
2744
  source = "registry+https://github.com/rust-lang/crates.io-index"
2791
- checksum = "8198b5db27ac9773534c371751a59dc18aec8b80aa141e69abfdd1dec2e3f78c"
2745
+ checksum = "5e15f3e5b957493873e396a66914e83e616b6afe335cdef7efe5c6e1216aba66"
2792
2746
  dependencies = [
2793
2747
  "hybrid-array",
2794
2748
  "kem",
2795
2749
  "module-lattice",
2750
+ "pkcs8 0.11.0",
2796
2751
  "rand_core 0.10.1",
2797
2752
  "sha3",
2798
2753
  ]
@@ -2810,11 +2765,10 @@ dependencies = [
2810
2765
 
2811
2766
  [[package]]
2812
2767
  name = "monty"
2813
- version = "0.0.17"
2814
- source = "git+https://github.com/pydantic/monty?rev=49faa4c#49faa4c8ae94490eae286e76259adcc35f64f0a5"
2768
+ version = "0.0.18"
2769
+ source = "git+https://github.com/pydantic/monty?tag=v0.0.18#45a3b2d57e6ce723fed4166fb032242ece74a663"
2815
2770
  dependencies = [
2816
2771
  "ahash",
2817
- "bytemuck",
2818
2772
  "chrono",
2819
2773
  "fancy-regex 0.17.0",
2820
2774
  "hashbrown 0.16.1",
@@ -2822,6 +2776,7 @@ dependencies = [
2822
2776
  "itertools 0.14.0",
2823
2777
  "jiter",
2824
2778
  "libm",
2779
+ "monty-macros",
2825
2780
  "num-bigint",
2826
2781
  "num-integer",
2827
2782
  "num-traits",
@@ -2837,6 +2792,16 @@ dependencies = [
2837
2792
  "strum 0.27.2",
2838
2793
  ]
2839
2794
 
2795
+ [[package]]
2796
+ name = "monty-macros"
2797
+ version = "0.0.18"
2798
+ source = "git+https://github.com/pydantic/monty?tag=v0.0.18#45a3b2d57e6ce723fed4166fb032242ece74a663"
2799
+ dependencies = [
2800
+ "proc-macro2",
2801
+ "quote",
2802
+ "syn",
2803
+ ]
2804
+
2840
2805
  [[package]]
2841
2806
  name = "napi"
2842
2807
  version = "3.9.0"
@@ -2948,22 +2913,6 @@ dependencies = [
2948
2913
  "serde",
2949
2914
  ]
2950
2915
 
2951
- [[package]]
2952
- name = "num-bigint-dig"
2953
- version = "0.8.6"
2954
- source = "registry+https://github.com/rust-lang/crates.io-index"
2955
- checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
2956
- dependencies = [
2957
- "lazy_static",
2958
- "libm",
2959
- "num-integer",
2960
- "num-iter",
2961
- "num-traits",
2962
- "rand 0.8.6",
2963
- "serde",
2964
- "smallvec",
2965
- ]
2966
-
2967
2916
  [[package]]
2968
2917
  name = "num-integer"
2969
2918
  version = "0.1.46"
@@ -2973,17 +2922,6 @@ dependencies = [
2973
2922
  "num-traits",
2974
2923
  ]
2975
2924
 
2976
- [[package]]
2977
- name = "num-iter"
2978
- version = "0.1.45"
2979
- source = "registry+https://github.com/rust-lang/crates.io-index"
2980
- checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2981
- dependencies = [
2982
- "autocfg",
2983
- "num-integer",
2984
- "num-traits",
2985
- ]
2986
-
2987
2925
  [[package]]
2988
2926
  name = "num-traits"
2989
2927
  version = "0.2.19"
@@ -3255,9 +3193,9 @@ dependencies = [
3255
3193
 
3256
3194
  [[package]]
3257
3195
  name = "p256"
3258
- version = "0.14.0-rc.7"
3196
+ version = "0.14.0-rc.9"
3259
3197
  source = "registry+https://github.com/rust-lang/crates.io-index"
3260
- checksum = "018bfbb86e05fd70a83e985921241035ee09fcd369c4a2c3680b389a01d2ad28"
3198
+ checksum = "8b97e3bf0465157ae90975ff52dbeb1362ba618924878c9f74c25baa27a65f9a"
3261
3199
  dependencies = [
3262
3200
  "ecdsa",
3263
3201
  "elliptic-curve",
@@ -3268,9 +3206,9 @@ dependencies = [
3268
3206
 
3269
3207
  [[package]]
3270
3208
  name = "p384"
3271
- version = "0.14.0-rc.7"
3209
+ version = "0.14.0-rc.9"
3272
3210
  source = "registry+https://github.com/rust-lang/crates.io-index"
3273
- checksum = "8c91df688211f5957dbe2ab599dcbcaade8d6d3cdc15c5b350d350d7d07ce423"
3211
+ checksum = "437f30ebcb1e16ff48acead5f08bd69fbcdbc82421687bb48af5c315a0bfab03"
3274
3212
  dependencies = [
3275
3213
  "ecdsa",
3276
3214
  "elliptic-curve",
@@ -3282,9 +3220,9 @@ dependencies = [
3282
3220
 
3283
3221
  [[package]]
3284
3222
  name = "p521"
3285
- version = "0.14.0-rc.7"
3223
+ version = "0.14.0-rc.9"
3286
3224
  source = "registry+https://github.com/rust-lang/crates.io-index"
3287
- checksum = "de6cd9451de522549d36cc78a1b45a699a3d55a872e8ea0c8f0318e502d99e2c"
3225
+ checksum = "4e9fd792bab86ecf6249561752fb5a413511f999887107dd054bbda5143743d7"
3288
3226
  dependencies = [
3289
3227
  "base16ct",
3290
3228
  "ecdsa",
@@ -3334,9 +3272,9 @@ dependencies = [
3334
3272
 
3335
3273
  [[package]]
3336
3274
  name = "papergrid"
3337
- version = "0.17.0"
3275
+ version = "0.18.0"
3338
3276
  source = "registry+https://github.com/rust-lang/crates.io-index"
3339
- checksum = "6978128c8b51d8f4080631ceb2302ab51e32cc6e8615f735ee2f83fd269ae3f1"
3277
+ checksum = "d0984e668274d34691bc2b262ef0d115de5fa9973bcdee7ae32213f93099153e"
3340
3278
  dependencies = [
3341
3279
  "bytecount",
3342
3280
  "fnv",
@@ -3368,13 +3306,11 @@ dependencies = [
3368
3306
 
3369
3307
  [[package]]
3370
3308
  name = "password-hash"
3371
- version = "0.5.0"
3309
+ version = "0.6.1"
3372
3310
  source = "registry+https://github.com/rust-lang/crates.io-index"
3373
- checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
3311
+ checksum = "aab41826031698d6ffcd9cff78ef56ef998e39dc7e5067cdfebe373842d4723b"
3374
3312
  dependencies = [
3375
- "base64ct",
3376
- "rand_core 0.6.4",
3377
- "subtle",
3313
+ "phc",
3378
3314
  ]
3379
3315
 
3380
3316
  [[package]]
@@ -3383,16 +3319,6 @@ version = "0.2.2"
3383
3319
  source = "registry+https://github.com/rust-lang/crates.io-index"
3384
3320
  checksum = "c5a797f0e07bdf071d15742978fc3128ec6c22891c31a3a931513263904c982a"
3385
3321
 
3386
- [[package]]
3387
- name = "pbkdf2"
3388
- version = "0.12.2"
3389
- source = "registry+https://github.com/rust-lang/crates.io-index"
3390
- checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
3391
- dependencies = [
3392
- "digest 0.10.7",
3393
- "hmac 0.12.1",
3394
- ]
3395
-
3396
3322
  [[package]]
3397
3323
  name = "pbkdf2"
3398
3324
  version = "0.13.0"
@@ -3400,16 +3326,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3400
3326
  checksum = "112d82ceb8c5bf524d9af484d4e4970c9fd5a0cc15ba14ad93dccd28873b0629"
3401
3327
  dependencies = [
3402
3328
  "digest 0.11.3",
3403
- "hmac 0.13.0",
3404
- ]
3405
-
3406
- [[package]]
3407
- name = "pem-rfc7468"
3408
- version = "0.7.0"
3409
- source = "registry+https://github.com/rust-lang/crates.io-index"
3410
- checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
3411
- dependencies = [
3412
- "base64ct",
3329
+ "hmac",
3413
3330
  ]
3414
3331
 
3415
3332
  [[package]]
@@ -3427,6 +3344,16 @@ version = "2.3.2"
3427
3344
  source = "registry+https://github.com/rust-lang/crates.io-index"
3428
3345
  checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
3429
3346
 
3347
+ [[package]]
3348
+ name = "phc"
3349
+ version = "0.6.1"
3350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3351
+ checksum = "44dc769b75f93afdddd8c7fa12d685292ddeff1e66f7f0f3a234cf1818afe892"
3352
+ dependencies = [
3353
+ "base64ct",
3354
+ "ctutils",
3355
+ ]
3356
+
3430
3357
  [[package]]
3431
3358
  name = "phf"
3432
3359
  version = "0.11.3"
@@ -3521,24 +3448,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3521
3448
  checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e"
3522
3449
  dependencies = [
3523
3450
  "der 0.8.0",
3524
- "spki 0.8.0-rc.4",
3451
+ "spki 0.8.0",
3525
3452
  ]
3526
3453
 
3527
3454
  [[package]]
3528
3455
  name = "pkcs5"
3529
- version = "0.8.0-rc.13"
3456
+ version = "0.8.0"
3530
3457
  source = "registry+https://github.com/rust-lang/crates.io-index"
3531
- checksum = "c5a777c6e26664bc9504b3ce3f6133f8f20d9071f130a4f9fcbd3186959d8dd6"
3458
+ checksum = "279a91971a1d8eb1260a30938eae3be9cb67b472dffecb222fbbbe2fd2dc1453"
3532
3459
  dependencies = [
3533
3460
  "aes 0.9.0",
3534
- "aes-gcm 0.11.0-rc.3",
3535
- "cbc 0.2.0",
3461
+ "cbc",
3536
3462
  "der 0.8.0",
3537
- "pbkdf2 0.13.0",
3463
+ "pbkdf2",
3538
3464
  "rand_core 0.10.1",
3539
3465
  "scrypt",
3540
3466
  "sha2 0.11.0",
3541
- "spki 0.8.0-rc.4",
3467
+ "spki 0.8.0",
3542
3468
  ]
3543
3469
 
3544
3470
  [[package]]
@@ -3553,14 +3479,14 @@ dependencies = [
3553
3479
 
3554
3480
  [[package]]
3555
3481
  name = "pkcs8"
3556
- version = "0.11.0-rc.11"
3482
+ version = "0.11.0"
3557
3483
  source = "registry+https://github.com/rust-lang/crates.io-index"
3558
- checksum = "12922b6296c06eb741b02d7b5161e3aaa22864af38dfa025a1a3ba3f68c84577"
3484
+ checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7"
3559
3485
  dependencies = [
3560
3486
  "der 0.8.0",
3561
3487
  "pkcs5",
3562
3488
  "rand_core 0.10.1",
3563
- "spki 0.8.0-rc.4",
3489
+ "spki 0.8.0",
3564
3490
  ]
3565
3491
 
3566
3492
  [[package]]
@@ -3607,13 +3533,13 @@ dependencies = [
3607
3533
 
3608
3534
  [[package]]
3609
3535
  name = "poly1305"
3610
- version = "0.8.0"
3536
+ version = "0.9.0"
3611
3537
  source = "registry+https://github.com/rust-lang/crates.io-index"
3612
- checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
3538
+ checksum = "a00baa632505d05512f48a963e16051c54fda9a95cc9acea1a4e3c90991c4a2e"
3613
3539
  dependencies = [
3614
- "cpufeatures 0.2.17",
3615
- "opaque-debug",
3616
- "universal-hash 0.5.1",
3540
+ "cpufeatures 0.3.0",
3541
+ "universal-hash 0.6.1",
3542
+ "zeroize",
3617
3543
  ]
3618
3544
 
3619
3545
  [[package]]
@@ -3707,9 +3633,9 @@ dependencies = [
3707
3633
 
3708
3634
  [[package]]
3709
3635
  name = "primefield"
3710
- version = "0.14.0-rc.7"
3636
+ version = "0.14.0-rc.9"
3711
3637
  source = "registry+https://github.com/rust-lang/crates.io-index"
3712
- checksum = "93401c13cc7ff24684571cfca9d3cf9ebabfaf3d4b7b9963ade41ec54da196b5"
3638
+ checksum = "1b52e6ee42db392378a95622b463c9740631171d1efce43fa445a569c1600cb6"
3713
3639
  dependencies = [
3714
3640
  "crypto-bigint",
3715
3641
  "crypto-common 0.2.1",
@@ -3721,9 +3647,9 @@ dependencies = [
3721
3647
 
3722
3648
  [[package]]
3723
3649
  name = "primeorder"
3724
- version = "0.14.0-rc.7"
3650
+ version = "0.14.0-rc.9"
3725
3651
  source = "registry+https://github.com/rust-lang/crates.io-index"
3726
- checksum = "a0c5c8a39bcd764bfedf456e8d55e115fe86dda3e0f555371849f2a41cbc9706"
3652
+ checksum = "0556580e42c19833f5d232aca11a7687a503ee41f937b54f5ae1d50fc2a6a36a"
3727
3653
  dependencies = [
3728
3654
  "elliptic-curve",
3729
3655
  ]
@@ -3965,7 +3891,7 @@ version = "0.10.1"
3965
3891
  source = "registry+https://github.com/rust-lang/crates.io-index"
3966
3892
  checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
3967
3893
  dependencies = [
3968
- "chacha20 0.10.0",
3894
+ "chacha20",
3969
3895
  "getrandom 0.4.2",
3970
3896
  "rand_core 0.10.1",
3971
3897
  ]
@@ -4150,7 +4076,7 @@ version = "0.5.0"
4150
4076
  source = "registry+https://github.com/rust-lang/crates.io-index"
4151
4077
  checksum = "5236ce872cac07e0fb3969b0cbf468c7d2f37d432f1b627dcb7b8d34563fb0c3"
4152
4078
  dependencies = [
4153
- "hmac 0.13.0",
4079
+ "hmac",
4154
4080
  "subtle",
4155
4081
  ]
4156
4082
 
@@ -4180,27 +4106,27 @@ dependencies = [
4180
4106
 
4181
4107
  [[package]]
4182
4108
  name = "rsa"
4183
- version = "0.10.0-rc.16"
4109
+ version = "0.10.0-rc.18"
4184
4110
  source = "registry+https://github.com/rust-lang/crates.io-index"
4185
- checksum = "6fb9fd8c1edd9e6a2693623baf0fe77ff05ce022a5d7746900ffc38a15c233de"
4111
+ checksum = "30b2aa4ba0d89f73d1e332df05be0eeab8840351c36ca5654341dfdb57bb3caf"
4186
4112
  dependencies = [
4187
4113
  "const-oid 0.10.2",
4188
4114
  "crypto-bigint",
4189
4115
  "crypto-primes",
4190
4116
  "digest 0.11.3",
4191
4117
  "pkcs1",
4192
- "pkcs8 0.11.0-rc.11",
4118
+ "pkcs8 0.11.0",
4193
4119
  "rand_core 0.10.1",
4194
4120
  "sha2 0.11.0",
4195
4121
  "signature 3.0.0",
4196
- "spki 0.8.0-rc.4",
4122
+ "spki 0.8.0",
4197
4123
  "zeroize",
4198
4124
  ]
4199
4125
 
4200
4126
  [[package]]
4201
4127
  name = "ruff_python_ast"
4202
4128
  version = "0.0.0"
4203
- source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
4129
+ source = "git+https://github.com/samuelcolvin/ruff.git?rev=6aaa91ac2b269df1414954ccd5134f0e6f5c6d30#6aaa91ac2b269df1414954ccd5134f0e6f5c6d30"
4204
4130
  dependencies = [
4205
4131
  "aho-corasick",
4206
4132
  "bitflags",
@@ -4212,13 +4138,14 @@ dependencies = [
4212
4138
  "ruff_source_file",
4213
4139
  "ruff_text_size",
4214
4140
  "rustc-hash",
4141
+ "thin-vec",
4215
4142
  "thiserror 2.0.18",
4216
4143
  ]
4217
4144
 
4218
4145
  [[package]]
4219
4146
  name = "ruff_python_parser"
4220
4147
  version = "0.0.0"
4221
- source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
4148
+ source = "git+https://github.com/samuelcolvin/ruff.git?rev=6aaa91ac2b269df1414954ccd5134f0e6f5c6d30#6aaa91ac2b269df1414954ccd5134f0e6f5c6d30"
4222
4149
  dependencies = [
4223
4150
  "bitflags",
4224
4151
  "bstr",
@@ -4230,6 +4157,7 @@ dependencies = [
4230
4157
  "ruff_text_size",
4231
4158
  "rustc-hash",
4232
4159
  "static_assertions",
4160
+ "thin-vec",
4233
4161
  "unicode-ident",
4234
4162
  "unicode-normalization",
4235
4163
  "unicode_names2",
@@ -4238,7 +4166,7 @@ dependencies = [
4238
4166
  [[package]]
4239
4167
  name = "ruff_python_stdlib"
4240
4168
  version = "0.0.0"
4241
- source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
4169
+ source = "git+https://github.com/samuelcolvin/ruff.git?rev=6aaa91ac2b269df1414954ccd5134f0e6f5c6d30#6aaa91ac2b269df1414954ccd5134f0e6f5c6d30"
4242
4170
  dependencies = [
4243
4171
  "bitflags",
4244
4172
  "unicode-ident",
@@ -4247,7 +4175,7 @@ dependencies = [
4247
4175
  [[package]]
4248
4176
  name = "ruff_python_trivia"
4249
4177
  version = "0.0.0"
4250
- source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
4178
+ source = "git+https://github.com/samuelcolvin/ruff.git?rev=6aaa91ac2b269df1414954ccd5134f0e6f5c6d30#6aaa91ac2b269df1414954ccd5134f0e6f5c6d30"
4251
4179
  dependencies = [
4252
4180
  "itertools 0.14.0",
4253
4181
  "ruff_source_file",
@@ -4258,7 +4186,7 @@ dependencies = [
4258
4186
  [[package]]
4259
4187
  name = "ruff_source_file"
4260
4188
  version = "0.0.0"
4261
- source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
4189
+ source = "git+https://github.com/samuelcolvin/ruff.git?rev=6aaa91ac2b269df1414954ccd5134f0e6f5c6d30#6aaa91ac2b269df1414954ccd5134f0e6f5c6d30"
4262
4190
  dependencies = [
4263
4191
  "memchr",
4264
4192
  "ruff_text_size",
@@ -4267,39 +4195,34 @@ dependencies = [
4267
4195
  [[package]]
4268
4196
  name = "ruff_text_size"
4269
4197
  version = "0.0.0"
4270
- source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
4198
+ source = "git+https://github.com/samuelcolvin/ruff.git?rev=6aaa91ac2b269df1414954ccd5134f0e6f5c6d30#6aaa91ac2b269df1414954ccd5134f0e6f5c6d30"
4271
4199
  dependencies = [
4272
4200
  "get-size2",
4273
4201
  ]
4274
4202
 
4275
4203
  [[package]]
4276
4204
  name = "russh"
4277
- version = "0.60.3"
4205
+ version = "0.61.1"
4278
4206
  source = "registry+https://github.com/rust-lang/crates.io-index"
4279
- checksum = "324b92f459d3e42da294e14e8eb150d2215fcfb7c966838bc1127cd68bc05a0d"
4207
+ checksum = "f67013f080c226e5a34db1c71f2567f44d95a6300005bb6cd4e2c8fe3c326d1b"
4280
4208
  dependencies = [
4281
- "aead 0.6.0-rc.10",
4282
- "aes 0.8.4",
4283
4209
  "aes 0.9.0",
4284
- "aes-gcm 0.11.0-rc.3",
4285
4210
  "aws-lc-rs",
4286
4211
  "bitflags",
4287
- "block-padding 0.3.3",
4212
+ "block-padding 0.4.2",
4288
4213
  "byteorder",
4289
4214
  "bytes",
4290
- "cbc 0.1.2",
4291
- "cbc 0.2.0",
4215
+ "cbc",
4292
4216
  "cipher 0.5.1",
4293
4217
  "crypto-bigint",
4294
4218
  "ctr 0.10.0",
4295
- "ctr 0.9.2",
4296
4219
  "curve25519-dalek 5.0.0-pre.6",
4297
4220
  "data-encoding",
4298
4221
  "delegate",
4299
4222
  "der 0.8.0",
4300
- "digest 0.10.7",
4223
+ "digest 0.11.3",
4301
4224
  "ecdsa",
4302
- "ed25519-dalek 3.0.0-pre.6",
4225
+ "ed25519-dalek 3.0.0-pre.7",
4303
4226
  "elliptic-curve",
4304
4227
  "enum_dispatch",
4305
4228
  "flate2",
@@ -4309,10 +4232,8 @@ dependencies = [
4309
4232
  "ghash 0.6.0",
4310
4233
  "hex-literal",
4311
4234
  "hkdf",
4312
- "hmac 0.12.1",
4313
- "hmac 0.13.0",
4235
+ "hmac",
4314
4236
  "inout 0.1.4",
4315
- "internal-russh-forked-ssh-key",
4316
4237
  "internal-russh-num-bigint",
4317
4238
  "keccak",
4318
4239
  "log",
@@ -4324,11 +4245,10 @@ dependencies = [
4324
4245
  "p384",
4325
4246
  "p521",
4326
4247
  "pageant",
4327
- "pbkdf2 0.12.2",
4328
- "pbkdf2 0.13.0",
4248
+ "pbkdf2",
4329
4249
  "pkcs1",
4330
4250
  "pkcs5",
4331
- "pkcs8 0.11.0-rc.11",
4251
+ "pkcs8 0.11.0",
4332
4252
  "polyval 0.7.1",
4333
4253
  "rand 0.10.1",
4334
4254
  "rand_core 0.10.1",
@@ -4338,14 +4258,13 @@ dependencies = [
4338
4258
  "salsa20",
4339
4259
  "scrypt",
4340
4260
  "sec1",
4341
- "sha1 0.10.6",
4342
- "sha1 0.11.0",
4343
- "sha2 0.10.9",
4261
+ "sha1",
4344
4262
  "sha2 0.11.0",
4345
4263
  "sha3",
4346
4264
  "signature 3.0.0",
4347
- "spki 0.8.0-rc.4",
4265
+ "spki 0.8.0",
4348
4266
  "ssh-encoding",
4267
+ "ssh-key",
4349
4268
  "subtle",
4350
4269
  "thiserror 2.0.18",
4351
4270
  "tokio",
@@ -4356,9 +4275,9 @@ dependencies = [
4356
4275
 
4357
4276
  [[package]]
4358
4277
  name = "russh-cryptovec"
4359
- version = "0.60.3"
4278
+ version = "0.61.0"
4360
4279
  source = "registry+https://github.com/rust-lang/crates.io-index"
4361
- checksum = "37cb4d0360bdd8935392a306d8b5edb539cc455b30e8bf13dd213a0cf7879b40"
4280
+ checksum = "443f6bbcfacb34a1aab2b12b99bf08e0c63abdc5a0db261901365df9d57fff51"
4362
4281
  dependencies = [
4363
4282
  "log",
4364
4283
  "nix",
@@ -4434,7 +4353,7 @@ dependencies = [
4434
4353
  "errno",
4435
4354
  "libc",
4436
4355
  "linux-raw-sys",
4437
- "windows-sys 0.52.0",
4356
+ "windows-sys 0.61.2",
4438
4357
  ]
4439
4358
 
4440
4359
  [[package]]
@@ -4491,7 +4410,7 @@ dependencies = [
4491
4410
  "security-framework",
4492
4411
  "security-framework-sys",
4493
4412
  "webpki-root-certs",
4494
- "windows-sys 0.52.0",
4413
+ "windows-sys 0.61.2",
4495
4414
  ]
4496
4415
 
4497
4416
  [[package]]
@@ -4575,15 +4494,6 @@ dependencies = [
4575
4494
  "winapi-util",
4576
4495
  ]
4577
4496
 
4578
- [[package]]
4579
- name = "scc"
4580
- version = "2.4.0"
4581
- source = "registry+https://github.com/rust-lang/crates.io-index"
4582
- checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
4583
- dependencies = [
4584
- "sdd",
4585
- ]
4586
-
4587
4497
  [[package]]
4588
4498
  name = "schannel"
4589
4499
  version = "0.1.29"
@@ -4612,17 +4522,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4612
4522
  checksum = "d87af57419b594aa23fa95f09f0e06d80d84ba01c26148c43844cad6ff4485f0"
4613
4523
  dependencies = [
4614
4524
  "cfg-if",
4615
- "pbkdf2 0.13.0",
4525
+ "pbkdf2",
4616
4526
  "salsa20",
4617
4527
  "sha2 0.11.0",
4618
4528
  ]
4619
4529
 
4620
- [[package]]
4621
- name = "sdd"
4622
- version = "3.0.10"
4623
- source = "registry+https://github.com/rust-lang/crates.io-index"
4624
- checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
4625
-
4626
4530
  [[package]]
4627
4531
  name = "sec1"
4628
4532
  version = "0.8.1"
@@ -4742,41 +4646,29 @@ dependencies = [
4742
4646
 
4743
4647
  [[package]]
4744
4648
  name = "serial_test"
4745
- version = "3.4.0"
4649
+ version = "3.5.0"
4746
4650
  source = "registry+https://github.com/rust-lang/crates.io-index"
4747
- checksum = "911bd979bf1070a3f3aa7b691a3b3e9968f339ceeec89e08c280a8a22207a32f"
4651
+ checksum = "699f4197115b8a7e7ff19c9a315a4bd6fffec26cc4626ef45ecaea389e081c6d"
4748
4652
  dependencies = [
4749
4653
  "futures-executor",
4750
4654
  "futures-util",
4751
4655
  "log",
4752
4656
  "once_cell",
4753
4657
  "parking_lot",
4754
- "scc",
4755
4658
  "serial_test_derive",
4756
4659
  ]
4757
4660
 
4758
4661
  [[package]]
4759
4662
  name = "serial_test_derive"
4760
- version = "3.4.0"
4663
+ version = "3.5.0"
4761
4664
  source = "registry+https://github.com/rust-lang/crates.io-index"
4762
- checksum = "0a7d91949b85b0d2fb687445e448b40d322b6b3e4af6b44a29b21d9a5f33e6d9"
4665
+ checksum = "94e153fc76e1c6a068703d6d29c508a0b15c061c4b7e43da59cc097bc342673c"
4763
4666
  dependencies = [
4764
4667
  "proc-macro2",
4765
4668
  "quote",
4766
4669
  "syn",
4767
4670
  ]
4768
4671
 
4769
- [[package]]
4770
- name = "sha1"
4771
- version = "0.10.6"
4772
- source = "registry+https://github.com/rust-lang/crates.io-index"
4773
- checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
4774
- dependencies = [
4775
- "cfg-if",
4776
- "cpufeatures 0.2.17",
4777
- "digest 0.10.7",
4778
- ]
4779
-
4780
4672
  [[package]]
4781
4673
  name = "sha1"
4782
4674
  version = "0.11.0"
@@ -5012,9 +4904,9 @@ dependencies = [
5012
4904
 
5013
4905
  [[package]]
5014
4906
  name = "spki"
5015
- version = "0.8.0-rc.4"
4907
+ version = "0.8.0"
5016
4908
  source = "registry+https://github.com/rust-lang/crates.io-index"
5017
- checksum = "8baeff88f34ed0691978ec34440140e1572b68c7dd4a495fd14a3dc1944daa80"
4909
+ checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
5018
4910
  dependencies = [
5019
4911
  "base64ct",
5020
4912
  "der 0.8.0",
@@ -5022,31 +4914,63 @@ dependencies = [
5022
4914
 
5023
4915
  [[package]]
5024
4916
  name = "ssh-cipher"
5025
- version = "0.2.0"
4917
+ version = "0.3.0-rc.9"
5026
4918
  source = "registry+https://github.com/rust-lang/crates.io-index"
5027
- checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
4919
+ checksum = "10db6f219196a8528f9ec904d9d45cdad692d65b0e57e72be4dedd1c5fddce36"
5028
4920
  dependencies = [
5029
- "aes 0.8.4",
5030
- "aes-gcm 0.10.3",
5031
- "cbc 0.1.2",
5032
- "chacha20 0.9.1",
5033
- "cipher 0.4.4",
5034
- "ctr 0.9.2",
4921
+ "aead 0.6.0-rc.10",
4922
+ "aes 0.9.0",
4923
+ "aes-gcm 0.11.0-rc.3",
4924
+ "cbc",
4925
+ "chacha20",
4926
+ "cipher 0.5.1",
4927
+ "ctr 0.10.0",
4928
+ "ctutils",
4929
+ "des",
5035
4930
  "poly1305",
5036
4931
  "ssh-encoding",
5037
- "subtle",
4932
+ "zeroize",
5038
4933
  ]
5039
4934
 
5040
4935
  [[package]]
5041
4936
  name = "ssh-encoding"
5042
- version = "0.2.0"
4937
+ version = "0.3.0-rc.9"
5043
4938
  source = "registry+https://github.com/rust-lang/crates.io-index"
5044
- checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
4939
+ checksum = "7abf34aa716da5d5b4c496936d042ea282ab392092cd68a72ef6a8863ff8c96a"
5045
4940
  dependencies = [
5046
4941
  "base64ct",
5047
4942
  "bytes",
5048
- "pem-rfc7468 0.7.0",
5049
- "sha2 0.10.9",
4943
+ "crypto-bigint",
4944
+ "ctutils",
4945
+ "digest 0.11.3",
4946
+ "pem-rfc7468",
4947
+ "zeroize",
4948
+ ]
4949
+
4950
+ [[package]]
4951
+ name = "ssh-key"
4952
+ version = "0.7.0-rc.10"
4953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4954
+ checksum = "45735ce3dea95690e4a9e414c4cfde7f79835063c3dcd35881df85a84118e74b"
4955
+ dependencies = [
4956
+ "argon2",
4957
+ "bcrypt-pbkdf",
4958
+ "ctutils",
4959
+ "ed25519-dalek 3.0.0-pre.7",
4960
+ "hex",
4961
+ "hmac",
4962
+ "p256",
4963
+ "p384",
4964
+ "p521",
4965
+ "rand_core 0.10.1",
4966
+ "rsa",
4967
+ "sec1",
4968
+ "sha1",
4969
+ "sha2 0.11.0",
4970
+ "signature 3.0.0",
4971
+ "ssh-cipher",
4972
+ "ssh-encoding",
4973
+ "zeroize",
5050
4974
  ]
5051
4975
 
5052
4976
  [[package]]
@@ -5149,9 +5073,9 @@ dependencies = [
5149
5073
 
5150
5074
  [[package]]
5151
5075
  name = "tabled"
5152
- version = "0.20.0"
5076
+ version = "0.21.0"
5153
5077
  source = "registry+https://github.com/rust-lang/crates.io-index"
5154
- checksum = "e39a2ee1fbcd360805a771e1b300f78cc88fec7b8d3e2f71cd37bbf23e725c7d"
5078
+ checksum = "b5dc662e6da844ad6e428ad16b57967c9d33c82e16bb1c258326c0c078605dff"
5155
5079
  dependencies = [
5156
5080
  "papergrid",
5157
5081
  "tabled_derive",
@@ -5193,7 +5117,7 @@ dependencies = [
5193
5117
  "getrandom 0.4.2",
5194
5118
  "once_cell",
5195
5119
  "rustix",
5196
- "windows-sys 0.52.0",
5120
+ "windows-sys 0.61.2",
5197
5121
  ]
5198
5122
 
5199
5123
  [[package]]
@@ -5226,6 +5150,12 @@ dependencies = [
5226
5150
  "unicode-width 0.2.2",
5227
5151
  ]
5228
5152
 
5153
+ [[package]]
5154
+ name = "thin-vec"
5155
+ version = "0.2.18"
5156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5157
+ checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
5158
+
5229
5159
  [[package]]
5230
5160
  name = "thiserror"
5231
5161
  version = "1.0.69"
@@ -6030,7 +5960,7 @@ version = "0.1.11"
6030
5960
  source = "registry+https://github.com/rust-lang/crates.io-index"
6031
5961
  checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
6032
5962
  dependencies = [
6033
- "windows-sys 0.52.0",
5963
+ "windows-sys 0.61.2",
6034
5964
  ]
6035
5965
 
6036
5966
  [[package]]