bashkit 0.1.14__tar.gz → 0.1.15__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 (401) hide show
  1. {bashkit-0.1.14 → bashkit-0.1.15}/Cargo.lock +1533 -135
  2. {bashkit-0.1.14 → bashkit-0.1.15}/Cargo.toml +11 -3
  3. {bashkit-0.1.14 → bashkit-0.1.15}/PKG-INFO +48 -2
  4. {bashkit-0.1.14/crates/bashkit-python → bashkit-0.1.15}/README.md +43 -1
  5. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/Cargo.toml +35 -0
  6. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/README.md +145 -30
  7. bashkit-0.1.15/crates/bashkit/docs/ssh.md +77 -0
  8. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/docs/threat-model.md +3 -0
  9. bashkit-0.1.15/crates/bashkit/docs/typescript.md +252 -0
  10. bashkit-0.1.15/crates/bashkit/examples/ssh_supabase.rs +29 -0
  11. bashkit-0.1.15/crates/bashkit/examples/typescript_external_functions.rs +61 -0
  12. bashkit-0.1.15/crates/bashkit/examples/typescript_scripts.rs +184 -0
  13. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/archive.rs +60 -25
  14. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/arg_parser.rs +64 -0
  15. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/awk.rs +275 -19
  16. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/base64.rs +21 -33
  17. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/checksum.rs +2 -0
  18. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/clear.rs +2 -0
  19. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/column.rs +2 -0
  20. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/comm.rs +2 -0
  21. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/compgen.rs +2 -0
  22. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/csv.rs +4 -0
  23. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/curl.rs +352 -20
  24. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/cuttr.rs +15 -12
  25. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/date.rs +2 -0
  26. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/diff.rs +163 -18
  27. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/dotenv.rs +2 -0
  28. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/environ.rs +26 -0
  29. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/envsubst.rs +2 -0
  30. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/expand.rs +4 -0
  31. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/fileops.rs +16 -0
  32. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/flow.rs +5 -3
  33. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/fold.rs +2 -0
  34. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/glob_cmd.rs +4 -0
  35. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/grep.rs +109 -6
  36. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/headtail.rs +4 -0
  37. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/hextools.rs +8 -0
  38. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/http.rs +108 -15
  39. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/iconv.rs +2 -0
  40. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/inspect.rs +40 -0
  41. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/join.rs +2 -0
  42. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/jq.rs +34 -3
  43. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/json.rs +2 -0
  44. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/ls.rs +295 -24
  45. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/mod.rs +31 -0
  46. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/nl.rs +4 -0
  47. bashkit-0.1.15/crates/bashkit/src/builtins/numfmt.rs +586 -0
  48. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/parallel.rs +65 -5
  49. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/paste.rs +65 -0
  50. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/patch.rs +92 -1
  51. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/path.rs +6 -0
  52. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/pipeline.rs +36 -0
  53. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/printf.rs +28 -2
  54. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/python.rs +10 -1
  55. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/read.rs +150 -37
  56. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/rg.rs +55 -26
  57. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/search_common.rs +24 -3
  58. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/sed.rs +56 -10
  59. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/semver.rs +2 -0
  60. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/sleep.rs +2 -0
  61. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/sortuniq.rs +355 -129
  62. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/split.rs +2 -0
  63. bashkit-0.1.15/crates/bashkit/src/builtins/ssh.rs +700 -0
  64. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/strings.rs +4 -0
  65. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/system.rs +2 -0
  66. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/template.rs +2 -0
  67. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/timeout.rs +4 -0
  68. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/tomlq.rs +4 -0
  69. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/tree.rs +64 -20
  70. bashkit-0.1.15/crates/bashkit/src/builtins/typescript.rs +1284 -0
  71. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/vars.rs +25 -1
  72. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/verify.rs +2 -0
  73. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/wc.rs +2 -0
  74. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/yaml.rs +4 -0
  75. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/zip_cmd.rs +10 -0
  76. bashkit-0.1.15/crates/bashkit/src/error.rs +195 -0
  77. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/fs/memory.rs +332 -8
  78. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/fs/mod.rs +1 -1
  79. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/fs/mountable.rs +31 -7
  80. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/fs/overlay.rs +71 -14
  81. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/fs/realfs.rs +164 -20
  82. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/fs/traits.rs +17 -0
  83. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/interpreter/mod.rs +653 -97
  84. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/interpreter/state.rs +6 -1
  85. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/lib.rs +446 -14
  86. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/limits.rs +54 -0
  87. bashkit-0.1.15/crates/bashkit/src/network/bot_auth.rs +327 -0
  88. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/network/client.rs +157 -4
  89. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/network/mod.rs +8 -1
  90. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/parser/ast.rs +37 -3
  91. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/parser/lexer.rs +75 -7
  92. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/parser/mod.rs +397 -12
  93. bashkit-0.1.15/crates/bashkit/src/snapshot.rs +241 -0
  94. bashkit-0.1.15/crates/bashkit/src/ssh/allowlist.rs +300 -0
  95. bashkit-0.1.15/crates/bashkit/src/ssh/client.rs +374 -0
  96. bashkit-0.1.15/crates/bashkit/src/ssh/config.rs +223 -0
  97. bashkit-0.1.15/crates/bashkit/src/ssh/handler.rs +128 -0
  98. bashkit-0.1.15/crates/bashkit/src/ssh/mod.rs +50 -0
  99. bashkit-0.1.15/crates/bashkit/src/ssh/russh_handler.rs +266 -0
  100. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/trace.rs +115 -4
  101. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/bash_source_tests.rs +48 -0
  102. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/blackbox_security_tests.rs +43 -0
  103. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/network_security_tests.rs +54 -0
  104. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/realfs_tests.rs +107 -0
  105. bashkit-0.1.15/crates/bashkit/tests/regex_limit_tests.rs +110 -0
  106. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/script_execution_tests.rs +12 -2
  107. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/set_e_and_or_tests.rs +24 -0
  108. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/snapshot_tests.rs +206 -1
  109. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +31 -0
  110. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +35 -0
  111. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +22 -0
  112. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +54 -0
  113. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +39 -0
  114. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +33 -0
  115. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +23 -0
  116. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +15 -0
  117. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +22 -0
  118. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +2 -3
  119. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +30 -0
  120. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +26 -0
  121. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +30 -0
  122. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +35 -0
  123. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +32 -0
  124. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +16 -0
  125. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +10 -0
  126. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +37 -0
  127. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +18 -0
  128. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +95 -0
  129. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/find.test.sh +28 -0
  130. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +35 -0
  131. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +31 -0
  132. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/ls.test.sh +117 -0
  133. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +43 -0
  134. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +80 -0
  135. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +20 -0
  136. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +29 -0
  137. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +44 -0
  138. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +36 -0
  139. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +8 -0
  140. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +26 -0
  141. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +93 -0
  142. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +8 -0
  143. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/tree.test.sh +11 -0
  144. bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +27 -0
  145. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +43 -1
  146. bashkit-0.1.15/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +25 -0
  147. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +21 -0
  148. bashkit-0.1.15/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +337 -0
  149. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_tests.rs +74 -0
  150. bashkit-0.1.15/crates/bashkit/tests/ssh_builtin_tests.rs +316 -0
  151. bashkit-0.1.15/crates/bashkit/tests/ssh_supabase_tests.rs +40 -0
  152. bashkit-0.1.15/crates/bashkit/tests/symlink_overlay_security_tests.rs +228 -0
  153. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/threat_model_tests.rs +309 -3
  154. bashkit-0.1.15/crates/bashkit/tests/typescript_integration_tests.rs +277 -0
  155. bashkit-0.1.15/crates/bashkit/tests/typescript_security_tests.rs +752 -0
  156. {bashkit-0.1.14 → bashkit-0.1.15/crates/bashkit-python}/README.md +43 -1
  157. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit-python/src/lib.rs +66 -12
  158. {bashkit-0.1.14 → bashkit-0.1.15}/pyproject.toml +6 -0
  159. bashkit-0.1.14/crates/bashkit/src/error.rs +0 -89
  160. bashkit-0.1.14/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -42
  161. {bashkit-0.1.14 → bashkit-0.1.15}/bashkit/__init__.py +0 -0
  162. {bashkit-0.1.14 → bashkit-0.1.15}/bashkit/_bashkit.pyi +0 -0
  163. {bashkit-0.1.14 → bashkit-0.1.15}/bashkit/deepagents.py +0 -0
  164. {bashkit-0.1.14 → bashkit-0.1.15}/bashkit/langchain.py +0 -0
  165. {bashkit-0.1.14 → bashkit-0.1.15}/bashkit/py.typed +0 -0
  166. {bashkit-0.1.14 → bashkit-0.1.15}/bashkit/pydantic_ai.py +0 -0
  167. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/benches/parallel_execution.rs +0 -0
  168. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/docs/compatibility.md +0 -0
  169. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/docs/custom_builtins.md +0 -0
  170. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/docs/live_mounts.md +0 -0
  171. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/docs/logging.md +0 -0
  172. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/docs/python.md +0 -0
  173. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/agent_tool.rs +0 -0
  174. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/basic.rs +0 -0
  175. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/custom_backend.rs +0 -0
  176. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/custom_builtins.rs +0 -0
  177. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
  178. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/custom_fs.rs +0 -0
  179. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/git_workflow.rs +0 -0
  180. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/live_mounts.rs +0 -0
  181. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/python_external_functions.rs +0 -0
  182. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/python_scripts.rs +0 -0
  183. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/realfs_readonly.rs +0 -0
  184. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
  185. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/resource_limits.rs +0 -0
  186. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/scripted_tool.rs +0 -0
  187. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/show_tool_output.rs +0 -0
  188. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/streaming_output.rs +0 -0
  189. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/text_files.rs +0 -0
  190. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/text_processing.rs +0 -0
  191. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/examples/virtual_identity.rs +0 -0
  192. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/alias.rs +0 -0
  193. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/assert.rs +0 -0
  194. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/bc.rs +0 -0
  195. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/caller.rs +0 -0
  196. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/cat.rs +0 -0
  197. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/dirstack.rs +0 -0
  198. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/disk.rs +0 -0
  199. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/echo.rs +0 -0
  200. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/export.rs +0 -0
  201. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/expr.rs +0 -0
  202. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/fc.rs +0 -0
  203. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/git.rs +0 -0
  204. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/help.rs +0 -0
  205. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/introspect.rs +0 -0
  206. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/log.rs +0 -0
  207. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/mapfile.rs +0 -0
  208. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
  209. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/navigation.rs +0 -0
  210. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/retry.rs +0 -0
  211. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/seq.rs +0 -0
  212. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/source.rs +0 -0
  213. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/test.rs +0 -0
  214. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/textrev.rs +0 -0
  215. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/trap.rs +0 -0
  216. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/wait.rs +0 -0
  217. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/builtins/yes.rs +0 -0
  218. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/fs/backend.rs +0 -0
  219. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/fs/limits.rs +0 -0
  220. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/fs/posix.rs +0 -0
  221. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/fs/search.rs +0 -0
  222. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/git/client.rs +0 -0
  223. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/git/config.rs +0 -0
  224. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/git/mod.rs +0 -0
  225. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/interpreter/glob.rs +0 -0
  226. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/interpreter/jobs.rs +0 -0
  227. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/logging_impl.rs +0 -0
  228. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/network/allowlist.rs +0 -0
  229. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/parser/budget.rs +0 -0
  230. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/parser/span.rs +0 -0
  231. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/parser/tokens.rs +0 -0
  232. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/scripted_tool/execute.rs +0 -0
  233. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/scripted_tool/mod.rs +0 -0
  234. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
  235. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/src/tool.rs +0 -0
  236. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/allexport_tests.rs +0 -0
  237. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/awk_newline_tests.rs +0 -0
  238. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/awk_pattern_tests.rs +0 -0
  239. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/awk_printf_expr_test.rs +0 -0
  240. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/background_exec_tests.rs +0 -0
  241. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/builtin_error_security_tests.rs +0 -0
  242. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/cancellation_tests.rs +0 -0
  243. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/cmdsub_quote_test.rs +0 -0
  244. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/coproc_tests.rs +0 -0
  245. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/custom_builtins_tests.rs +0 -0
  246. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/custom_fs_tests.rs +0 -0
  247. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/dev_null_tests.rs +0 -0
  248. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/final_env_tests.rs +0 -0
  249. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/find_multi_path_tests.rs +0 -0
  250. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/git_advanced_tests.rs +0 -0
  251. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/git_inspection_tests.rs +0 -0
  252. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/git_integration_tests.rs +0 -0
  253. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/git_remote_security_tests.rs +0 -0
  254. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/git_security_tests.rs +0 -0
  255. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/history_tests.rs +0 -0
  256. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/issue_274_test.rs +0 -0
  257. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/issue_275_279_282_test.rs +0 -0
  258. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/issue_276_test.rs +0 -0
  259. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/issue_277_test.rs +0 -0
  260. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/issue_289_test.rs +0 -0
  261. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/issue_290_test.rs +0 -0
  262. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/issue_291_test.rs +0 -0
  263. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/issue_853_test.rs +0 -0
  264. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/issue_872_test.rs +0 -0
  265. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/issue_873_test.rs +0 -0
  266. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/issue_875_test.rs +0 -0
  267. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/live_mount_tests.rs +0 -0
  268. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/logging_security_tests.rs +0 -0
  269. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/mkfifo_tests.rs +0 -0
  270. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/nested_subscript_tests.rs +0 -0
  271. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/output_truncation_tests.rs +0 -0
  272. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/overlay_path_validation_tests.rs +0 -0
  273. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/proptest_differential.rs +0 -0
  274. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/proptest_security.rs +0 -0
  275. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/python_integration_tests.rs +0 -0
  276. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/python_security_tests.rs +0 -0
  277. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/security_audit_pocs.rs +0 -0
  278. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
  279. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
  280. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
  281. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
  282. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
  283. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
  284. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
  285. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
  286. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
  287. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
  288. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
  289. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/skills_tests.rs +0 -0
  290. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/source_function_tests.rs +0 -0
  291. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
  292. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
  293. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
  294. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
  295. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
  296. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
  297. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
  298. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
  299. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
  300. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
  301. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
  302. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
  303. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
  304. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
  305. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
  306. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
  307. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
  308. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
  309. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
  310. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
  311. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
  312. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
  313. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
  314. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
  315. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
  316. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
  317. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
  318. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
  319. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
  320. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
  321. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
  322. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
  323. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
  324. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
  325. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
  326. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
  327. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
  328. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
  329. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
  330. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
  331. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
  332. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
  333. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
  334. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
  335. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
  336. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
  337. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
  338. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
  339. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
  340. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
  341. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
  342. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
  343. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
  344. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
  345. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
  346. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
  347. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
  348. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
  349. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
  350. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
  351. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
  352. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
  353. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
  354. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
  355. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
  356. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
  357. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
  358. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
  359. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
  360. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
  361. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
  362. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
  363. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
  364. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
  365. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
  366. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
  367. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
  368. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
  369. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
  370. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
  371. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
  372. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
  373. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
  374. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
  375. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
  376. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
  377. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
  378. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
  379. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
  380. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
  381. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
  382. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
  383. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
  384. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
  385. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
  386. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
  387. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/spec_runner.rs +0 -0
  388. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/tty_tests.rs +0 -0
  389. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/unicode_security_tests.rs +0 -0
  390. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/unset_function_tests.rs +0 -0
  391. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit/tests/urandom_tests.rs +0 -0
  392. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit-python/Cargo.toml +0 -0
  393. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit-python/examples/bash_basics.py +0 -0
  394. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
  395. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit-python/tests/test_bashkit.py +0 -0
  396. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit-python/tests/test_frameworks.py +0 -0
  397. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit-python/tests/test_integration.py +0 -0
  398. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit-python/tests/test_python_security.py +0 -0
  399. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit-python/tests/test_security.py +0 -0
  400. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit-python/tests/test_security_advanced.py +0 -0
  401. {bashkit-0.1.14 → bashkit-0.1.15}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
@@ -8,6 +8,41 @@ version = "2.0.1"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
9
  checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
10
 
11
+ [[package]]
12
+ name = "aead"
13
+ version = "0.5.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
16
+ dependencies = [
17
+ "crypto-common 0.1.7",
18
+ "generic-array",
19
+ ]
20
+
21
+ [[package]]
22
+ name = "aes"
23
+ version = "0.8.4"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
26
+ dependencies = [
27
+ "cfg-if",
28
+ "cipher",
29
+ "cpufeatures 0.2.17",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "aes-gcm"
34
+ version = "0.10.3"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
37
+ dependencies = [
38
+ "aead",
39
+ "aes",
40
+ "cipher",
41
+ "ctr",
42
+ "ghash",
43
+ "subtle",
44
+ ]
45
+
11
46
  [[package]]
12
47
  name = "ahash"
13
48
  version = "0.8.12"
@@ -126,6 +161,18 @@ dependencies = [
126
161
  "num-traits",
127
162
  ]
128
163
 
164
+ [[package]]
165
+ name = "argon2"
166
+ version = "0.5.3"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
169
+ dependencies = [
170
+ "base64ct",
171
+ "blake2",
172
+ "cpufeatures 0.2.17",
173
+ "password-hash",
174
+ ]
175
+
129
176
  [[package]]
130
177
  name = "async-trait"
131
178
  version = "0.1.89"
@@ -210,21 +257,34 @@ dependencies = [
210
257
  "fs_extra",
211
258
  ]
212
259
 
260
+ [[package]]
261
+ name = "base16ct"
262
+ version = "0.2.0"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
265
+
213
266
  [[package]]
214
267
  name = "base64"
215
268
  version = "0.22.1"
216
269
  source = "registry+https://github.com/rust-lang/crates.io-index"
217
270
  checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
218
271
 
272
+ [[package]]
273
+ name = "base64ct"
274
+ version = "1.8.3"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
277
+
219
278
  [[package]]
220
279
  name = "bashkit"
221
- version = "0.1.14"
280
+ version = "0.1.15"
222
281
  dependencies = [
223
282
  "anyhow",
224
283
  "async-trait",
225
284
  "base64",
226
285
  "chrono",
227
286
  "criterion",
287
+ "ed25519-dalek",
228
288
  "fail",
229
289
  "flate2",
230
290
  "futures",
@@ -237,14 +297,17 @@ dependencies = [
237
297
  "monty",
238
298
  "pretty_assertions",
239
299
  "proptest",
300
+ "rand 0.8.5",
240
301
  "regex",
241
302
  "reqwest",
303
+ "russh",
304
+ "russh-keys",
242
305
  "schemars",
243
306
  "serde",
244
307
  "serde_json",
245
308
  "serial_test",
246
- "sha1",
247
- "sha2",
309
+ "sha1 0.11.0",
310
+ "sha2 0.11.0",
248
311
  "tempfile",
249
312
  "thiserror 2.0.18",
250
313
  "tokio",
@@ -252,11 +315,12 @@ dependencies = [
252
315
  "tower",
253
316
  "tracing",
254
317
  "url",
318
+ "zapcode-core",
255
319
  ]
256
320
 
257
321
  [[package]]
258
322
  name = "bashkit-bench"
259
- version = "0.1.14"
323
+ version = "0.1.15"
260
324
  dependencies = [
261
325
  "anyhow",
262
326
  "bashkit",
@@ -272,7 +336,7 @@ dependencies = [
272
336
 
273
337
  [[package]]
274
338
  name = "bashkit-cli"
275
- version = "0.1.14"
339
+ version = "0.1.15"
276
340
  dependencies = [
277
341
  "anyhow",
278
342
  "bashkit",
@@ -285,7 +349,7 @@ dependencies = [
285
349
 
286
350
  [[package]]
287
351
  name = "bashkit-eval"
288
- version = "0.1.14"
352
+ version = "0.1.15"
289
353
  dependencies = [
290
354
  "anyhow",
291
355
  "async-trait",
@@ -301,7 +365,7 @@ dependencies = [
301
365
 
302
366
  [[package]]
303
367
  name = "bashkit-js"
304
- version = "0.1.14"
368
+ version = "0.1.15"
305
369
  dependencies = [
306
370
  "bashkit",
307
371
  "napi",
@@ -314,7 +378,7 @@ dependencies = [
314
378
 
315
379
  [[package]]
316
380
  name = "bashkit-python"
317
- version = "0.1.14"
381
+ version = "0.1.15"
318
382
  dependencies = [
319
383
  "bashkit",
320
384
  "num-bigint",
@@ -324,6 +388,17 @@ dependencies = [
324
388
  "tokio",
325
389
  ]
326
390
 
391
+ [[package]]
392
+ name = "bcrypt-pbkdf"
393
+ version = "0.10.0"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2"
396
+ dependencies = [
397
+ "blowfish",
398
+ "pbkdf2",
399
+ "sha2 0.10.9",
400
+ ]
401
+
327
402
  [[package]]
328
403
  name = "bit-set"
329
404
  version = "0.8.0"
@@ -345,6 +420,24 @@ version = "2.11.0"
345
420
  source = "registry+https://github.com/rust-lang/crates.io-index"
346
421
  checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
347
422
 
423
+ [[package]]
424
+ name = "blake2"
425
+ version = "0.10.6"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
428
+ dependencies = [
429
+ "digest 0.10.7",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "block-buffer"
434
+ version = "0.10.4"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
437
+ dependencies = [
438
+ "generic-array",
439
+ ]
440
+
348
441
  [[package]]
349
442
  name = "block-buffer"
350
443
  version = "0.12.0"
@@ -354,6 +447,25 @@ dependencies = [
354
447
  "hybrid-array",
355
448
  ]
356
449
 
450
+ [[package]]
451
+ name = "block-padding"
452
+ version = "0.3.3"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
455
+ dependencies = [
456
+ "generic-array",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "blowfish"
461
+ version = "0.9.1"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
464
+ dependencies = [
465
+ "byteorder",
466
+ "cipher",
467
+ ]
468
+
357
469
  [[package]]
358
470
  name = "bstr"
359
471
  version = "1.12.1"
@@ -410,11 +522,20 @@ dependencies = [
410
522
  "rustversion",
411
523
  ]
412
524
 
525
+ [[package]]
526
+ name = "cbc"
527
+ version = "0.1.2"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
530
+ dependencies = [
531
+ "cipher",
532
+ ]
533
+
413
534
  [[package]]
414
535
  name = "cc"
415
- version = "1.2.58"
536
+ version = "1.2.59"
416
537
  source = "registry+https://github.com/rust-lang/crates.io-index"
417
- checksum = "e1e928d4b69e3077709075a938a05ffbedfa53a84c8f766efbf8220bb1ff60e1"
538
+ checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
418
539
  dependencies = [
419
540
  "find-msvc-tools",
420
541
  "jobserver",
@@ -440,6 +561,17 @@ version = "0.2.1"
440
561
  source = "registry+https://github.com/rust-lang/crates.io-index"
441
562
  checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
442
563
 
564
+ [[package]]
565
+ name = "chacha20"
566
+ version = "0.9.1"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
569
+ dependencies = [
570
+ "cfg-if",
571
+ "cipher",
572
+ "cpufeatures 0.2.17",
573
+ ]
574
+
443
575
  [[package]]
444
576
  name = "chrono"
445
577
  version = "0.4.44"
@@ -480,6 +612,16 @@ dependencies = [
480
612
  "half",
481
613
  ]
482
614
 
615
+ [[package]]
616
+ name = "cipher"
617
+ version = "0.4.4"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
620
+ dependencies = [
621
+ "crypto-common 0.1.7",
622
+ "inout",
623
+ ]
624
+
483
625
  [[package]]
484
626
  name = "clap"
485
627
  version = "4.6.0"
@@ -594,6 +736,12 @@ dependencies = [
594
736
  "windows-sys 0.61.2",
595
737
  ]
596
738
 
739
+ [[package]]
740
+ name = "const-oid"
741
+ version = "0.9.6"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
744
+
597
745
  [[package]]
598
746
  name = "const-oid"
599
747
  version = "0.10.2"
@@ -625,6 +773,21 @@ version = "0.8.7"
625
773
  source = "registry+https://github.com/rust-lang/crates.io-index"
626
774
  checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
627
775
 
776
+ [[package]]
777
+ name = "cow-utils"
778
+ version = "0.1.3"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
781
+
782
+ [[package]]
783
+ name = "cpufeatures"
784
+ version = "0.2.17"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
787
+ dependencies = [
788
+ "libc",
789
+ ]
790
+
628
791
  [[package]]
629
792
  name = "cpufeatures"
630
793
  version = "0.3.0"
@@ -716,6 +879,29 @@ version = "0.2.4"
716
879
  source = "registry+https://github.com/rust-lang/crates.io-index"
717
880
  checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
718
881
 
882
+ [[package]]
883
+ name = "crypto-bigint"
884
+ version = "0.5.5"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
887
+ dependencies = [
888
+ "generic-array",
889
+ "rand_core 0.6.4",
890
+ "subtle",
891
+ "zeroize",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "crypto-common"
896
+ version = "0.1.7"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
899
+ dependencies = [
900
+ "generic-array",
901
+ "rand_core 0.6.4",
902
+ "typenum",
903
+ ]
904
+
719
905
  [[package]]
720
906
  name = "crypto-common"
721
907
  version = "0.2.1"
@@ -727,9 +913,9 @@ dependencies = [
727
913
 
728
914
  [[package]]
729
915
  name = "ctor"
730
- version = "0.6.3"
916
+ version = "0.8.0"
731
917
  source = "registry+https://github.com/rust-lang/crates.io-index"
732
- checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e"
918
+ checksum = "352d39c2f7bef1d6ad73db6f5160efcaed66d94ef8c6c573a8410c00bf909a98"
733
919
  dependencies = [
734
920
  "ctor-proc-macro",
735
921
  "dtor",
@@ -741,6 +927,70 @@ version = "0.0.7"
741
927
  source = "registry+https://github.com/rust-lang/crates.io-index"
742
928
  checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
743
929
 
930
+ [[package]]
931
+ name = "ctr"
932
+ version = "0.9.2"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
935
+ dependencies = [
936
+ "cipher",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "curve25519-dalek"
941
+ version = "4.1.3"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
944
+ dependencies = [
945
+ "cfg-if",
946
+ "cpufeatures 0.2.17",
947
+ "curve25519-dalek-derive",
948
+ "digest 0.10.7",
949
+ "fiat-crypto",
950
+ "rustc_version",
951
+ "subtle",
952
+ "zeroize",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "curve25519-dalek-derive"
957
+ version = "0.1.1"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
960
+ dependencies = [
961
+ "proc-macro2",
962
+ "quote",
963
+ "syn",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "data-encoding"
968
+ version = "2.10.0"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
971
+
972
+ [[package]]
973
+ name = "delegate"
974
+ version = "0.13.5"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "780eb241654bf097afb00fc5f054a09b687dad862e485fdcf8399bb056565370"
977
+ dependencies = [
978
+ "proc-macro2",
979
+ "quote",
980
+ "syn",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "der"
985
+ version = "0.7.10"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
988
+ dependencies = [
989
+ "const-oid 0.9.6",
990
+ "pem-rfc7468",
991
+ "zeroize",
992
+ ]
993
+
744
994
  [[package]]
745
995
  name = "derive-where"
746
996
  version = "1.6.1"
@@ -758,15 +1008,27 @@ version = "0.1.13"
758
1008
  source = "registry+https://github.com/rust-lang/crates.io-index"
759
1009
  checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
760
1010
 
1011
+ [[package]]
1012
+ name = "digest"
1013
+ version = "0.10.7"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
1016
+ dependencies = [
1017
+ "block-buffer 0.10.4",
1018
+ "const-oid 0.9.6",
1019
+ "crypto-common 0.1.7",
1020
+ "subtle",
1021
+ ]
1022
+
761
1023
  [[package]]
762
1024
  name = "digest"
763
1025
  version = "0.11.2"
764
1026
  source = "registry+https://github.com/rust-lang/crates.io-index"
765
1027
  checksum = "4850db49bf08e663084f7fb5c87d202ef91a3907271aff24a94eb97ff039153c"
766
1028
  dependencies = [
767
- "block-buffer",
768
- "const-oid",
769
- "crypto-common",
1029
+ "block-buffer 0.12.0",
1030
+ "const-oid 0.10.2",
1031
+ "crypto-common 0.2.1",
770
1032
  ]
771
1033
 
772
1034
  [[package]]
@@ -780,11 +1042,17 @@ dependencies = [
780
1042
  "syn",
781
1043
  ]
782
1044
 
1045
+ [[package]]
1046
+ name = "dragonbox_ecma"
1047
+ version = "0.1.12"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
1050
+
783
1051
  [[package]]
784
1052
  name = "dtor"
785
- version = "0.1.1"
1053
+ version = "0.3.0"
786
1054
  source = "registry+https://github.com/rust-lang/crates.io-index"
787
- checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301"
1055
+ checksum = "f1057d6c64987086ff8ed0fd3fbf377a6b7d205cc7715868cd401705f715cbe4"
788
1056
  dependencies = [
789
1057
  "dtor-proc-macro",
790
1058
  ]
@@ -807,12 +1075,72 @@ version = "1.0.20"
807
1075
  source = "registry+https://github.com/rust-lang/crates.io-index"
808
1076
  checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
809
1077
 
1078
+ [[package]]
1079
+ name = "ecdsa"
1080
+ version = "0.16.9"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
1083
+ dependencies = [
1084
+ "der",
1085
+ "digest 0.10.7",
1086
+ "elliptic-curve",
1087
+ "rfc6979",
1088
+ "signature",
1089
+ "spki",
1090
+ ]
1091
+
1092
+ [[package]]
1093
+ name = "ed25519"
1094
+ version = "2.2.3"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
1097
+ dependencies = [
1098
+ "pkcs8",
1099
+ "signature",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "ed25519-dalek"
1104
+ version = "2.2.0"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
1107
+ dependencies = [
1108
+ "curve25519-dalek",
1109
+ "ed25519",
1110
+ "rand_core 0.6.4",
1111
+ "serde",
1112
+ "sha2 0.10.9",
1113
+ "subtle",
1114
+ "zeroize",
1115
+ ]
1116
+
810
1117
  [[package]]
811
1118
  name = "either"
812
1119
  version = "1.15.0"
813
1120
  source = "registry+https://github.com/rust-lang/crates.io-index"
814
1121
  checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
815
1122
 
1123
+ [[package]]
1124
+ name = "elliptic-curve"
1125
+ version = "0.13.8"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
1128
+ dependencies = [
1129
+ "base16ct",
1130
+ "crypto-bigint",
1131
+ "digest 0.10.7",
1132
+ "ff",
1133
+ "generic-array",
1134
+ "group",
1135
+ "hkdf",
1136
+ "pem-rfc7468",
1137
+ "pkcs8",
1138
+ "rand_core 0.6.4",
1139
+ "sec1",
1140
+ "subtle",
1141
+ "zeroize",
1142
+ ]
1143
+
816
1144
  [[package]]
817
1145
  name = "embedded-io"
818
1146
  version = "0.4.0"
@@ -831,6 +1159,18 @@ version = "1.0.0"
831
1159
  source = "registry+https://github.com/rust-lang/crates.io-index"
832
1160
  checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
833
1161
 
1162
+ [[package]]
1163
+ name = "enum_dispatch"
1164
+ version = "0.3.13"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
1167
+ dependencies = [
1168
+ "once_cell",
1169
+ "proc-macro2",
1170
+ "quote",
1171
+ "syn",
1172
+ ]
1173
+
834
1174
  [[package]]
835
1175
  name = "equivalent"
836
1176
  version = "1.0.2"
@@ -871,9 +1211,25 @@ dependencies = [
871
1211
 
872
1212
  [[package]]
873
1213
  name = "fastrand"
874
- version = "2.3.0"
1214
+ version = "2.4.0"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
1217
+
1218
+ [[package]]
1219
+ name = "ff"
1220
+ version = "0.13.1"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
1223
+ dependencies = [
1224
+ "rand_core 0.6.4",
1225
+ "subtle",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "fiat-crypto"
1230
+ version = "0.2.9"
875
1231
  source = "registry+https://github.com/rust-lang/crates.io-index"
876
- checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1232
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
877
1233
 
878
1234
  [[package]]
879
1235
  name = "find-msvc-tools"
@@ -1012,6 +1368,17 @@ dependencies = [
1012
1368
  "slab",
1013
1369
  ]
1014
1370
 
1371
+ [[package]]
1372
+ name = "generic-array"
1373
+ version = "0.14.7"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1376
+ dependencies = [
1377
+ "typenum",
1378
+ "version_check",
1379
+ "zeroize",
1380
+ ]
1381
+
1015
1382
  [[package]]
1016
1383
  name = "get-size-derive2"
1017
1384
  version = "0.7.4"
@@ -1085,6 +1452,16 @@ dependencies = [
1085
1452
  "wasip3",
1086
1453
  ]
1087
1454
 
1455
+ [[package]]
1456
+ name = "ghash"
1457
+ version = "0.5.1"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
1460
+ dependencies = [
1461
+ "opaque-debug",
1462
+ "polyval",
1463
+ ]
1464
+
1088
1465
  [[package]]
1089
1466
  name = "globset"
1090
1467
  version = "0.4.18"
@@ -1098,6 +1475,17 @@ dependencies = [
1098
1475
  "regex-syntax",
1099
1476
  ]
1100
1477
 
1478
+ [[package]]
1479
+ name = "group"
1480
+ version = "0.13.0"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
1483
+ dependencies = [
1484
+ "ff",
1485
+ "rand_core 0.6.4",
1486
+ "subtle",
1487
+ ]
1488
+
1101
1489
  [[package]]
1102
1490
  name = "half"
1103
1491
  version = "2.7.1"
@@ -1158,6 +1546,18 @@ version = "0.5.0"
1158
1546
  source = "registry+https://github.com/rust-lang/crates.io-index"
1159
1547
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1160
1548
 
1549
+ [[package]]
1550
+ name = "hex"
1551
+ version = "0.4.3"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1554
+
1555
+ [[package]]
1556
+ name = "hex-literal"
1557
+ version = "0.4.1"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
1560
+
1161
1561
  [[package]]
1162
1562
  name = "hifijson"
1163
1563
  version = "0.5.0"
@@ -1165,22 +1565,49 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
1565
  checksum = "242402749acf71e6f32f5857598b7002c4058a4e3c3b22b4c7d51cab9aea754e"
1166
1566
 
1167
1567
  [[package]]
1168
- name = "http"
1169
- version = "1.4.0"
1568
+ name = "hkdf"
1569
+ version = "0.12.4"
1170
1570
  source = "registry+https://github.com/rust-lang/crates.io-index"
1171
- checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1571
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1172
1572
  dependencies = [
1173
- "bytes",
1174
- "itoa",
1573
+ "hmac",
1175
1574
  ]
1176
1575
 
1177
1576
  [[package]]
1178
- name = "http-body"
1179
- version = "1.0.1"
1577
+ name = "hmac"
1578
+ version = "0.12.1"
1180
1579
  source = "registry+https://github.com/rust-lang/crates.io-index"
1181
- checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1580
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1182
1581
  dependencies = [
1183
- "bytes",
1582
+ "digest 0.10.7",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "home"
1587
+ version = "0.5.12"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
1590
+ dependencies = [
1591
+ "windows-sys 0.61.2",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "http"
1596
+ version = "1.4.0"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1599
+ dependencies = [
1600
+ "bytes",
1601
+ "itoa",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "http-body"
1606
+ version = "1.0.1"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1609
+ dependencies = [
1610
+ "bytes",
1184
1611
  "http",
1185
1612
  ]
1186
1613
 
@@ -1205,18 +1632,18 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1205
1632
 
1206
1633
  [[package]]
1207
1634
  name = "hybrid-array"
1208
- version = "0.4.8"
1635
+ version = "0.4.10"
1209
1636
  source = "registry+https://github.com/rust-lang/crates.io-index"
1210
- checksum = "8655f91cd07f2b9d0c24137bd650fe69617773435ee5ec83022377777ce65ef1"
1637
+ checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
1211
1638
  dependencies = [
1212
1639
  "typenum",
1213
1640
  ]
1214
1641
 
1215
1642
  [[package]]
1216
1643
  name = "hyper"
1217
- version = "1.8.1"
1644
+ version = "1.9.0"
1218
1645
  source = "registry+https://github.com/rust-lang/crates.io-index"
1219
- checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1646
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
1220
1647
  dependencies = [
1221
1648
  "atomic-waker",
1222
1649
  "bytes",
@@ -1227,7 +1654,6 @@ dependencies = [
1227
1654
  "httparse",
1228
1655
  "itoa",
1229
1656
  "pin-project-lite",
1230
- "pin-utils",
1231
1657
  "smallvec",
1232
1658
  "tokio",
1233
1659
  "want",
@@ -1284,7 +1710,7 @@ dependencies = [
1284
1710
  "js-sys",
1285
1711
  "log",
1286
1712
  "wasm-bindgen",
1287
- "windows-core",
1713
+ "windows-core 0.62.2",
1288
1714
  ]
1289
1715
 
1290
1716
  [[package]]
@@ -1298,12 +1724,13 @@ dependencies = [
1298
1724
 
1299
1725
  [[package]]
1300
1726
  name = "icu_collections"
1301
- version = "2.1.1"
1727
+ version = "2.2.0"
1302
1728
  source = "registry+https://github.com/rust-lang/crates.io-index"
1303
- checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1729
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1304
1730
  dependencies = [
1305
1731
  "displaydoc",
1306
1732
  "potential_utf",
1733
+ "utf8_iter",
1307
1734
  "yoke",
1308
1735
  "zerofrom",
1309
1736
  "zerovec",
@@ -1311,9 +1738,9 @@ dependencies = [
1311
1738
 
1312
1739
  [[package]]
1313
1740
  name = "icu_locale_core"
1314
- version = "2.1.1"
1741
+ version = "2.2.0"
1315
1742
  source = "registry+https://github.com/rust-lang/crates.io-index"
1316
- checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1743
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1317
1744
  dependencies = [
1318
1745
  "displaydoc",
1319
1746
  "litemap",
@@ -1324,9 +1751,9 @@ dependencies = [
1324
1751
 
1325
1752
  [[package]]
1326
1753
  name = "icu_normalizer"
1327
- version = "2.1.1"
1754
+ version = "2.2.0"
1328
1755
  source = "registry+https://github.com/rust-lang/crates.io-index"
1329
- checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1756
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1330
1757
  dependencies = [
1331
1758
  "icu_collections",
1332
1759
  "icu_normalizer_data",
@@ -1338,15 +1765,15 @@ dependencies = [
1338
1765
 
1339
1766
  [[package]]
1340
1767
  name = "icu_normalizer_data"
1341
- version = "2.1.1"
1768
+ version = "2.2.0"
1342
1769
  source = "registry+https://github.com/rust-lang/crates.io-index"
1343
- checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1770
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1344
1771
 
1345
1772
  [[package]]
1346
1773
  name = "icu_properties"
1347
- version = "2.1.2"
1774
+ version = "2.2.0"
1348
1775
  source = "registry+https://github.com/rust-lang/crates.io-index"
1349
- checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1776
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1350
1777
  dependencies = [
1351
1778
  "icu_collections",
1352
1779
  "icu_locale_core",
@@ -1358,15 +1785,15 @@ dependencies = [
1358
1785
 
1359
1786
  [[package]]
1360
1787
  name = "icu_properties_data"
1361
- version = "2.1.2"
1788
+ version = "2.2.0"
1362
1789
  source = "registry+https://github.com/rust-lang/crates.io-index"
1363
- checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1790
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1364
1791
 
1365
1792
  [[package]]
1366
1793
  name = "icu_provider"
1367
- version = "2.1.1"
1794
+ version = "2.2.0"
1368
1795
  source = "registry+https://github.com/rust-lang/crates.io-index"
1369
- checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1796
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1370
1797
  dependencies = [
1371
1798
  "displaydoc",
1372
1799
  "icu_locale_core",
@@ -1406,9 +1833,9 @@ dependencies = [
1406
1833
 
1407
1834
  [[package]]
1408
1835
  name = "indexmap"
1409
- version = "2.13.0"
1836
+ version = "2.13.1"
1410
1837
  source = "registry+https://github.com/rust-lang/crates.io-index"
1411
- checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1838
+ checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
1412
1839
  dependencies = [
1413
1840
  "equivalent",
1414
1841
  "hashbrown 0.16.1",
@@ -1416,11 +1843,21 @@ dependencies = [
1416
1843
  "serde_core",
1417
1844
  ]
1418
1845
 
1846
+ [[package]]
1847
+ name = "inout"
1848
+ version = "0.1.4"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1851
+ dependencies = [
1852
+ "block-padding",
1853
+ "generic-array",
1854
+ ]
1855
+
1419
1856
  [[package]]
1420
1857
  name = "insta"
1421
- version = "1.47.0"
1858
+ version = "1.47.2"
1422
1859
  source = "registry+https://github.com/rust-lang/crates.io-index"
1423
- checksum = "6f40e41efb5f592d3a0764f818e2f08e5e21c4f368126f74f37c81bd4af7a0c6"
1860
+ checksum = "7b4a6248eb93a4401ed2f37dfe8ea592d3cf05b7cf4f8efa867b6895af7e094e"
1424
1861
  dependencies = [
1425
1862
  "console",
1426
1863
  "once_cell",
@@ -1437,6 +1874,34 @@ dependencies = [
1437
1874
  "cfg-if",
1438
1875
  ]
1439
1876
 
1877
+ [[package]]
1878
+ name = "internal-russh-forked-ssh-key"
1879
+ version = "0.6.10+upstream-0.6.7"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "33555bd765ace379fe85d97bb6d48b5783054f6048a7d5ec24cd9155e490e266"
1882
+ dependencies = [
1883
+ "argon2",
1884
+ "bcrypt-pbkdf",
1885
+ "ecdsa",
1886
+ "ed25519-dalek",
1887
+ "hex",
1888
+ "hmac",
1889
+ "num-bigint-dig",
1890
+ "p256",
1891
+ "p384",
1892
+ "p521",
1893
+ "rand_core 0.6.4",
1894
+ "rsa",
1895
+ "sec1",
1896
+ "sha1 0.10.6",
1897
+ "sha2 0.10.9",
1898
+ "signature",
1899
+ "ssh-cipher",
1900
+ "ssh-encoding",
1901
+ "subtle",
1902
+ "zeroize",
1903
+ ]
1904
+
1440
1905
  [[package]]
1441
1906
  name = "interpolator"
1442
1907
  version = "0.5.0"
@@ -1451,9 +1916,9 @@ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1451
1916
 
1452
1917
  [[package]]
1453
1918
  name = "iri-string"
1454
- version = "0.7.11"
1919
+ version = "0.7.12"
1455
1920
  source = "registry+https://github.com/rust-lang/crates.io-index"
1456
- checksum = "d8e7418f59cc01c88316161279a7f665217ae316b388e58a0d10e29f54f1e5eb"
1921
+ checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
1457
1922
  dependencies = [
1458
1923
  "memchr",
1459
1924
  "serde",
@@ -1645,9 +2110,9 @@ dependencies = [
1645
2110
 
1646
2111
  [[package]]
1647
2112
  name = "js-sys"
1648
- version = "0.3.92"
2113
+ version = "0.3.94"
1649
2114
  source = "registry+https://github.com/rust-lang/crates.io-index"
1650
- checksum = "cc4c90f45aa2e6eacbe8645f77fdea542ac97a494bcd117a67df9ff4d611f995"
2115
+ checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
1651
2116
  dependencies = [
1652
2117
  "cfg-if",
1653
2118
  "futures-util",
@@ -1655,6 +2120,15 @@ dependencies = [
1655
2120
  "wasm-bindgen",
1656
2121
  ]
1657
2122
 
2123
+ [[package]]
2124
+ name = "lazy_static"
2125
+ version = "1.5.0"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2128
+ dependencies = [
2129
+ "spin",
2130
+ ]
2131
+
1658
2132
  [[package]]
1659
2133
  name = "leb128fmt"
1660
2134
  version = "0.1.0"
@@ -1663,9 +2137,9 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1663
2137
 
1664
2138
  [[package]]
1665
2139
  name = "libc"
1666
- version = "0.2.183"
2140
+ version = "0.2.184"
1667
2141
  source = "registry+https://github.com/rust-lang/crates.io-index"
1668
- checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
2142
+ checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
1669
2143
 
1670
2144
  [[package]]
1671
2145
  name = "libloading"
@@ -1691,9 +2165,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1691
2165
 
1692
2166
  [[package]]
1693
2167
  name = "litemap"
1694
- version = "0.8.1"
2168
+ version = "0.8.2"
1695
2169
  source = "registry+https://github.com/rust-lang/crates.io-index"
1696
- checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
2170
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1697
2171
 
1698
2172
  [[package]]
1699
2173
  name = "lock_api"
@@ -1756,9 +2230,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
2230
  checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
1757
2231
  dependencies = [
1758
2232
  "cfg-if",
1759
- "digest",
2233
+ "digest 0.11.2",
1760
2234
  ]
1761
2235
 
2236
+ [[package]]
2237
+ name = "md5"
2238
+ version = "0.7.0"
2239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2240
+ checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
2241
+
1762
2242
  [[package]]
1763
2243
  name = "memchr"
1764
2244
  version = "2.8.0"
@@ -1812,9 +2292,9 @@ dependencies = [
1812
2292
 
1813
2293
  [[package]]
1814
2294
  name = "nalgebra"
1815
- version = "0.33.2"
2295
+ version = "0.33.3"
1816
2296
  source = "registry+https://github.com/rust-lang/crates.io-index"
1817
- checksum = "26aecdf64b707efd1310e3544d709c5c0ac61c13756046aaaba41be5c4f66a3b"
2297
+ checksum = "9d43ddcacf343185dfd6de2ee786d9e8b1c2301622afab66b6c73baf9882abfd"
1818
2298
  dependencies = [
1819
2299
  "approx",
1820
2300
  "matrixmultiply",
@@ -1829,9 +2309,9 @@ dependencies = [
1829
2309
 
1830
2310
  [[package]]
1831
2311
  name = "napi"
1832
- version = "3.8.3"
2312
+ version = "3.8.4"
1833
2313
  source = "registry+https://github.com/rust-lang/crates.io-index"
1834
- checksum = "e6944d0bf100571cd6e1a98a316cdca262deb6fccf8d93f5ae1502ca3fc88bd3"
2314
+ checksum = "fb7848c221fb7bb789e02f01875287ebb1e078b92a6566a34de01ef8806e7c2b"
1835
2315
  dependencies = [
1836
2316
  "bitflags",
1837
2317
  "ctor",
@@ -1851,9 +2331,9 @@ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
1851
2331
 
1852
2332
  [[package]]
1853
2333
  name = "napi-derive"
1854
- version = "3.5.2"
2334
+ version = "3.5.3"
1855
2335
  source = "registry+https://github.com/rust-lang/crates.io-index"
1856
- checksum = "2c914b5e420182bfb73504e0607592cdb8e2e21437d450883077669fb72a114d"
2336
+ checksum = "60867ff9a6f76e82350e0c3420cb0736f5866091b61d7d8a024baa54b0ec17dd"
1857
2337
  dependencies = [
1858
2338
  "convert_case",
1859
2339
  "ctor",
@@ -1885,12 +2365,30 @@ dependencies = [
1885
2365
  "libloading",
1886
2366
  ]
1887
2367
 
2368
+ [[package]]
2369
+ name = "nix"
2370
+ version = "0.29.0"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
2373
+ dependencies = [
2374
+ "bitflags",
2375
+ "cfg-if",
2376
+ "cfg_aliases",
2377
+ "libc",
2378
+ ]
2379
+
1888
2380
  [[package]]
1889
2381
  name = "nohash-hasher"
1890
2382
  version = "0.2.0"
1891
2383
  source = "registry+https://github.com/rust-lang/crates.io-index"
1892
2384
  checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1893
2385
 
2386
+ [[package]]
2387
+ name = "nonmax"
2388
+ version = "0.5.5"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
2391
+
1894
2392
  [[package]]
1895
2393
  name = "num-bigint"
1896
2394
  version = "0.4.6"
@@ -1899,9 +2397,26 @@ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1899
2397
  dependencies = [
1900
2398
  "num-integer",
1901
2399
  "num-traits",
2400
+ "rand 0.8.5",
1902
2401
  "serde",
1903
2402
  ]
1904
2403
 
2404
+ [[package]]
2405
+ name = "num-bigint-dig"
2406
+ version = "0.8.6"
2407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2408
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
2409
+ dependencies = [
2410
+ "lazy_static",
2411
+ "libm",
2412
+ "num-integer",
2413
+ "num-iter",
2414
+ "num-traits",
2415
+ "rand 0.8.5",
2416
+ "smallvec",
2417
+ "zeroize",
2418
+ ]
2419
+
1905
2420
  [[package]]
1906
2421
  name = "num-complex"
1907
2422
  version = "0.4.6"
@@ -1920,6 +2435,17 @@ dependencies = [
1920
2435
  "num-traits",
1921
2436
  ]
1922
2437
 
2438
+ [[package]]
2439
+ name = "num-iter"
2440
+ version = "0.1.45"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2443
+ dependencies = [
2444
+ "autocfg",
2445
+ "num-integer",
2446
+ "num-traits",
2447
+ ]
2448
+
1923
2449
  [[package]]
1924
2450
  name = "num-rational"
1925
2451
  version = "0.4.2"
@@ -1959,6 +2485,12 @@ version = "11.1.5"
1959
2485
  source = "registry+https://github.com/rust-lang/crates.io-index"
1960
2486
  checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1961
2487
 
2488
+ [[package]]
2489
+ name = "opaque-debug"
2490
+ version = "0.3.1"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
2493
+
1962
2494
  [[package]]
1963
2495
  name = "openssl-probe"
1964
2496
  version = "0.2.1"
@@ -1974,6 +2506,250 @@ dependencies = [
1974
2506
  "indexmap",
1975
2507
  ]
1976
2508
 
2509
+ [[package]]
2510
+ name = "owo-colors"
2511
+ version = "4.3.0"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
2514
+
2515
+ [[package]]
2516
+ name = "oxc-miette"
2517
+ version = "2.7.1"
2518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2519
+ checksum = "4356a61f2ed4c9b3610245215fbf48970eb277126919f87db9d0efa93a74245c"
2520
+ dependencies = [
2521
+ "cfg-if",
2522
+ "owo-colors",
2523
+ "oxc-miette-derive",
2524
+ "textwrap",
2525
+ "thiserror 2.0.18",
2526
+ "unicode-segmentation",
2527
+ "unicode-width",
2528
+ ]
2529
+
2530
+ [[package]]
2531
+ name = "oxc-miette-derive"
2532
+ version = "2.7.1"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "b237422b014f8f8fff75bb9379e697d13f8d57551a22c88bebb39f073c1bf696"
2535
+ dependencies = [
2536
+ "proc-macro2",
2537
+ "quote",
2538
+ "syn",
2539
+ ]
2540
+
2541
+ [[package]]
2542
+ name = "oxc_allocator"
2543
+ version = "0.117.0"
2544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2545
+ checksum = "97b44277218c002c09167474648a478d3d29a29095ef8950ec9f1fac016c62d7"
2546
+ dependencies = [
2547
+ "allocator-api2",
2548
+ "hashbrown 0.16.1",
2549
+ "oxc_data_structures",
2550
+ "rustc-hash",
2551
+ ]
2552
+
2553
+ [[package]]
2554
+ name = "oxc_ast"
2555
+ version = "0.117.0"
2556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2557
+ checksum = "e4222e4e7a1ab01b2a20420a5a65798377a748ea37ee7ece4d7a6b733f86eb61"
2558
+ dependencies = [
2559
+ "bitflags",
2560
+ "oxc_allocator",
2561
+ "oxc_ast_macros",
2562
+ "oxc_data_structures",
2563
+ "oxc_diagnostics",
2564
+ "oxc_estree",
2565
+ "oxc_regular_expression",
2566
+ "oxc_span",
2567
+ "oxc_syntax",
2568
+ ]
2569
+
2570
+ [[package]]
2571
+ name = "oxc_ast_macros"
2572
+ version = "0.117.0"
2573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2574
+ checksum = "8e65a38ae589e284dd45a85008024f04aa680e9ddf1321c163cf7f187c805e91"
2575
+ dependencies = [
2576
+ "phf 0.13.1",
2577
+ "proc-macro2",
2578
+ "quote",
2579
+ "syn",
2580
+ ]
2581
+
2582
+ [[package]]
2583
+ name = "oxc_data_structures"
2584
+ version = "0.117.0"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "f53bed71cad192596aee8f87f6d6bc2a38a4f898255a69b1d41da1968b9b2c6f"
2587
+
2588
+ [[package]]
2589
+ name = "oxc_diagnostics"
2590
+ version = "0.117.0"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "1a2d2491c0a1ea29a83abe645424f85c64b5c825f60e5304a453e4314a8b6d88"
2593
+ dependencies = [
2594
+ "cow-utils",
2595
+ "oxc-miette",
2596
+ "percent-encoding",
2597
+ ]
2598
+
2599
+ [[package]]
2600
+ name = "oxc_ecmascript"
2601
+ version = "0.117.0"
2602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2603
+ checksum = "71b23b64fa8c4a84b1406de383c4666366c9f54ffb9cb11a63b8d7433950460a"
2604
+ dependencies = [
2605
+ "cow-utils",
2606
+ "num-bigint",
2607
+ "num-traits",
2608
+ "oxc_allocator",
2609
+ "oxc_ast",
2610
+ "oxc_regular_expression",
2611
+ "oxc_span",
2612
+ "oxc_syntax",
2613
+ ]
2614
+
2615
+ [[package]]
2616
+ name = "oxc_estree"
2617
+ version = "0.117.0"
2618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2619
+ checksum = "a47515ead44bc8beec1ae1514f10ecca63cde043da167c0395dc914f098ea5d2"
2620
+
2621
+ [[package]]
2622
+ name = "oxc_index"
2623
+ version = "4.1.0"
2624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2625
+ checksum = "eb3e6120999627ec9703025eab7c9f410ebb7e95557632a8902ca48210416c2b"
2626
+ dependencies = [
2627
+ "nonmax",
2628
+ "serde",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "oxc_parser"
2633
+ version = "0.117.0"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "3278d4f34d01cdaf85a2391d7b12daba1d95c20c1ff2ac9316d3c28f36353e4e"
2636
+ dependencies = [
2637
+ "bitflags",
2638
+ "cow-utils",
2639
+ "memchr",
2640
+ "num-bigint",
2641
+ "num-traits",
2642
+ "oxc_allocator",
2643
+ "oxc_ast",
2644
+ "oxc_data_structures",
2645
+ "oxc_diagnostics",
2646
+ "oxc_ecmascript",
2647
+ "oxc_regular_expression",
2648
+ "oxc_span",
2649
+ "oxc_syntax",
2650
+ "rustc-hash",
2651
+ "seq-macro",
2652
+ ]
2653
+
2654
+ [[package]]
2655
+ name = "oxc_regular_expression"
2656
+ version = "0.117.0"
2657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2658
+ checksum = "f3d680252672b22c24abbaf6e401eace0be9f53072a03411936204625ff349d0"
2659
+ dependencies = [
2660
+ "bitflags",
2661
+ "oxc_allocator",
2662
+ "oxc_ast_macros",
2663
+ "oxc_diagnostics",
2664
+ "oxc_span",
2665
+ "phf 0.13.1",
2666
+ "rustc-hash",
2667
+ "unicode-id-start",
2668
+ ]
2669
+
2670
+ [[package]]
2671
+ name = "oxc_span"
2672
+ version = "0.117.0"
2673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2674
+ checksum = "b6eb1bd62de89fb0c646bfb053b72370750fab43a84ebe09ad97cfa020712314"
2675
+ dependencies = [
2676
+ "compact_str",
2677
+ "oxc-miette",
2678
+ "oxc_allocator",
2679
+ "oxc_ast_macros",
2680
+ "oxc_estree",
2681
+ "oxc_str",
2682
+ ]
2683
+
2684
+ [[package]]
2685
+ name = "oxc_str"
2686
+ version = "0.117.0"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "2e65cbfb06ecbae07e0da931815b6b03ade886d016302c400bda7dc0a2f600d3"
2689
+ dependencies = [
2690
+ "compact_str",
2691
+ "hashbrown 0.16.1",
2692
+ "oxc_allocator",
2693
+ "oxc_estree",
2694
+ ]
2695
+
2696
+ [[package]]
2697
+ name = "oxc_syntax"
2698
+ version = "0.117.0"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "e0f1617f0aa890517fb61ffa1d2d73a8497aca52e84ef6f027fad1e93250eccc"
2701
+ dependencies = [
2702
+ "bitflags",
2703
+ "cow-utils",
2704
+ "dragonbox_ecma",
2705
+ "nonmax",
2706
+ "oxc_allocator",
2707
+ "oxc_ast_macros",
2708
+ "oxc_estree",
2709
+ "oxc_index",
2710
+ "oxc_span",
2711
+ "phf 0.13.1",
2712
+ "unicode-id-start",
2713
+ ]
2714
+
2715
+ [[package]]
2716
+ name = "p256"
2717
+ version = "0.13.2"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
2720
+ dependencies = [
2721
+ "ecdsa",
2722
+ "elliptic-curve",
2723
+ "primeorder",
2724
+ "sha2 0.10.9",
2725
+ ]
2726
+
2727
+ [[package]]
2728
+ name = "p384"
2729
+ version = "0.13.1"
2730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2731
+ checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
2732
+ dependencies = [
2733
+ "ecdsa",
2734
+ "elliptic-curve",
2735
+ "primeorder",
2736
+ "sha2 0.10.9",
2737
+ ]
2738
+
2739
+ [[package]]
2740
+ name = "p521"
2741
+ version = "0.13.3"
2742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2743
+ checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
2744
+ dependencies = [
2745
+ "base16ct",
2746
+ "ecdsa",
2747
+ "elliptic-curve",
2748
+ "primeorder",
2749
+ "rand_core 0.6.4",
2750
+ "sha2 0.10.9",
2751
+ ]
2752
+
1977
2753
  [[package]]
1978
2754
  name = "page_size"
1979
2755
  version = "0.6.0"
@@ -1984,6 +2760,37 @@ dependencies = [
1984
2760
  "winapi",
1985
2761
  ]
1986
2762
 
2763
+ [[package]]
2764
+ name = "pageant"
2765
+ version = "0.0.1"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "032d6201d2fb765158455ae0d5a510c016bb6da7232e5040e39e9c8db12b0afc"
2768
+ dependencies = [
2769
+ "bytes",
2770
+ "delegate",
2771
+ "futures",
2772
+ "rand 0.8.5",
2773
+ "thiserror 1.0.69",
2774
+ "tokio",
2775
+ "windows",
2776
+ ]
2777
+
2778
+ [[package]]
2779
+ name = "pageant"
2780
+ version = "0.0.3"
2781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2782
+ checksum = "bdd27df01428302f915ea74737fe88170dd1bab4cbd00ff9548ca85618fcd4e4"
2783
+ dependencies = [
2784
+ "bytes",
2785
+ "delegate",
2786
+ "futures",
2787
+ "log",
2788
+ "rand 0.8.5",
2789
+ "thiserror 1.0.69",
2790
+ "tokio",
2791
+ "windows",
2792
+ ]
2793
+
1987
2794
  [[package]]
1988
2795
  name = "papergrid"
1989
2796
  version = "0.17.0"
@@ -2018,12 +2825,42 @@ dependencies = [
2018
2825
  "windows-link",
2019
2826
  ]
2020
2827
 
2828
+ [[package]]
2829
+ name = "password-hash"
2830
+ version = "0.5.0"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
2833
+ dependencies = [
2834
+ "base64ct",
2835
+ "rand_core 0.6.4",
2836
+ "subtle",
2837
+ ]
2838
+
2021
2839
  [[package]]
2022
2840
  name = "paste"
2023
2841
  version = "1.0.15"
2024
2842
  source = "registry+https://github.com/rust-lang/crates.io-index"
2025
2843
  checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2026
2844
 
2845
+ [[package]]
2846
+ name = "pbkdf2"
2847
+ version = "0.12.2"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
2850
+ dependencies = [
2851
+ "digest 0.10.7",
2852
+ "hmac",
2853
+ ]
2854
+
2855
+ [[package]]
2856
+ name = "pem-rfc7468"
2857
+ version = "0.7.0"
2858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2859
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
2860
+ dependencies = [
2861
+ "base64ct",
2862
+ ]
2863
+
2027
2864
  [[package]]
2028
2865
  name = "percent-encoding"
2029
2866
  version = "2.3.2"
@@ -2036,7 +2873,18 @@ version = "0.11.3"
2036
2873
  source = "registry+https://github.com/rust-lang/crates.io-index"
2037
2874
  checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2038
2875
  dependencies = [
2039
- "phf_shared",
2876
+ "phf_shared 0.11.3",
2877
+ ]
2878
+
2879
+ [[package]]
2880
+ name = "phf"
2881
+ version = "0.13.1"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
2884
+ dependencies = [
2885
+ "phf_macros",
2886
+ "phf_shared 0.13.1",
2887
+ "serde",
2040
2888
  ]
2041
2889
 
2042
2890
  [[package]]
@@ -2045,8 +2893,8 @@ version = "0.11.3"
2045
2893
  source = "registry+https://github.com/rust-lang/crates.io-index"
2046
2894
  checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
2047
2895
  dependencies = [
2048
- "phf_generator",
2049
- "phf_shared",
2896
+ "phf_generator 0.11.3",
2897
+ "phf_shared 0.11.3",
2050
2898
  ]
2051
2899
 
2052
2900
  [[package]]
@@ -2055,10 +2903,33 @@ version = "0.11.3"
2055
2903
  source = "registry+https://github.com/rust-lang/crates.io-index"
2056
2904
  checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2057
2905
  dependencies = [
2058
- "phf_shared",
2906
+ "phf_shared 0.11.3",
2059
2907
  "rand 0.8.5",
2060
2908
  ]
2061
2909
 
2910
+ [[package]]
2911
+ name = "phf_generator"
2912
+ version = "0.13.1"
2913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2914
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
2915
+ dependencies = [
2916
+ "fastrand",
2917
+ "phf_shared 0.13.1",
2918
+ ]
2919
+
2920
+ [[package]]
2921
+ name = "phf_macros"
2922
+ version = "0.13.1"
2923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2924
+ checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
2925
+ dependencies = [
2926
+ "phf_generator 0.13.1",
2927
+ "phf_shared 0.13.1",
2928
+ "proc-macro2",
2929
+ "quote",
2930
+ "syn",
2931
+ ]
2932
+
2062
2933
  [[package]]
2063
2934
  name = "phf_shared"
2064
2935
  version = "0.11.3"
@@ -2068,6 +2939,15 @@ dependencies = [
2068
2939
  "siphasher",
2069
2940
  ]
2070
2941
 
2942
+ [[package]]
2943
+ name = "phf_shared"
2944
+ version = "0.13.1"
2945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2946
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
2947
+ dependencies = [
2948
+ "siphasher",
2949
+ ]
2950
+
2071
2951
  [[package]]
2072
2952
  name = "pin-project-lite"
2073
2953
  version = "0.2.17"
@@ -2075,10 +2955,42 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2075
2955
  checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2076
2956
 
2077
2957
  [[package]]
2078
- name = "pin-utils"
2079
- version = "0.1.0"
2958
+ name = "pkcs1"
2959
+ version = "0.7.5"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
2962
+ dependencies = [
2963
+ "der",
2964
+ "pkcs8",
2965
+ "spki",
2966
+ ]
2967
+
2968
+ [[package]]
2969
+ name = "pkcs5"
2970
+ version = "0.7.1"
2080
2971
  source = "registry+https://github.com/rust-lang/crates.io-index"
2081
- checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2972
+ checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6"
2973
+ dependencies = [
2974
+ "aes",
2975
+ "cbc",
2976
+ "der",
2977
+ "pbkdf2",
2978
+ "scrypt",
2979
+ "sha2 0.10.9",
2980
+ "spki",
2981
+ ]
2982
+
2983
+ [[package]]
2984
+ name = "pkcs8"
2985
+ version = "0.10.2"
2986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2987
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2988
+ dependencies = [
2989
+ "der",
2990
+ "pkcs5",
2991
+ "rand_core 0.6.4",
2992
+ "spki",
2993
+ ]
2082
2994
 
2083
2995
  [[package]]
2084
2996
  name = "plotters"
@@ -2108,6 +3020,29 @@ dependencies = [
2108
3020
  "plotters-backend",
2109
3021
  ]
2110
3022
 
3023
+ [[package]]
3024
+ name = "poly1305"
3025
+ version = "0.8.0"
3026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3027
+ checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
3028
+ dependencies = [
3029
+ "cpufeatures 0.2.17",
3030
+ "opaque-debug",
3031
+ "universal-hash",
3032
+ ]
3033
+
3034
+ [[package]]
3035
+ name = "polyval"
3036
+ version = "0.6.2"
3037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3038
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
3039
+ dependencies = [
3040
+ "cfg-if",
3041
+ "cpufeatures 0.2.17",
3042
+ "opaque-debug",
3043
+ "universal-hash",
3044
+ ]
3045
+
2111
3046
  [[package]]
2112
3047
  name = "portable-atomic"
2113
3048
  version = "1.13.1"
@@ -2138,9 +3073,9 @@ dependencies = [
2138
3073
 
2139
3074
  [[package]]
2140
3075
  name = "potential_utf"
2141
- version = "0.1.4"
3076
+ version = "0.1.5"
2142
3077
  source = "registry+https://github.com/rust-lang/crates.io-index"
2143
- checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
3078
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2144
3079
  dependencies = [
2145
3080
  "zerovec",
2146
3081
  ]
@@ -2174,6 +3109,15 @@ dependencies = [
2174
3109
  "syn",
2175
3110
  ]
2176
3111
 
3112
+ [[package]]
3113
+ name = "primeorder"
3114
+ version = "0.13.6"
3115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3116
+ checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
3117
+ dependencies = [
3118
+ "elliptic-curve",
3119
+ ]
3120
+
2177
3121
  [[package]]
2178
3122
  name = "proc-macro-error-attr2"
2179
3123
  version = "2.0.0"
@@ -2237,9 +3181,9 @@ dependencies = [
2237
3181
 
2238
3182
  [[package]]
2239
3183
  name = "pyo3"
2240
- version = "0.28.2"
3184
+ version = "0.28.3"
2241
3185
  source = "registry+https://github.com/rust-lang/crates.io-index"
2242
- checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
3186
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
2243
3187
  dependencies = [
2244
3188
  "libc",
2245
3189
  "once_cell",
@@ -2265,9 +3209,9 @@ dependencies = [
2265
3209
 
2266
3210
  [[package]]
2267
3211
  name = "pyo3-build-config"
2268
- version = "0.28.2"
3212
+ version = "0.28.3"
2269
3213
  source = "registry+https://github.com/rust-lang/crates.io-index"
2270
- checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
3214
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
2271
3215
  dependencies = [
2272
3216
  "python3-dll-a",
2273
3217
  "target-lexicon",
@@ -2275,9 +3219,9 @@ dependencies = [
2275
3219
 
2276
3220
  [[package]]
2277
3221
  name = "pyo3-ffi"
2278
- version = "0.28.2"
3222
+ version = "0.28.3"
2279
3223
  source = "registry+https://github.com/rust-lang/crates.io-index"
2280
- checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
3224
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
2281
3225
  dependencies = [
2282
3226
  "libc",
2283
3227
  "pyo3-build-config",
@@ -2285,9 +3229,9 @@ dependencies = [
2285
3229
 
2286
3230
  [[package]]
2287
3231
  name = "pyo3-macros"
2288
- version = "0.28.2"
3232
+ version = "0.28.3"
2289
3233
  source = "registry+https://github.com/rust-lang/crates.io-index"
2290
- checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
3234
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
2291
3235
  dependencies = [
2292
3236
  "proc-macro2",
2293
3237
  "pyo3-macros-backend",
@@ -2297,9 +3241,9 @@ dependencies = [
2297
3241
 
2298
3242
  [[package]]
2299
3243
  name = "pyo3-macros-backend"
2300
- version = "0.28.2"
3244
+ version = "0.28.3"
2301
3245
  source = "registry+https://github.com/rust-lang/crates.io-index"
2302
- checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
3246
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
2303
3247
  dependencies = [
2304
3248
  "heck",
2305
3249
  "proc-macro2",
@@ -2630,6 +3574,16 @@ dependencies = [
2630
3574
  "web-sys",
2631
3575
  ]
2632
3576
 
3577
+ [[package]]
3578
+ name = "rfc6979"
3579
+ version = "0.4.0"
3580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3581
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
3582
+ dependencies = [
3583
+ "hmac",
3584
+ "subtle",
3585
+ ]
3586
+
2633
3587
  [[package]]
2634
3588
  name = "ring"
2635
3589
  version = "0.17.14"
@@ -2644,6 +3598,27 @@ dependencies = [
2644
3598
  "windows-sys 0.52.0",
2645
3599
  ]
2646
3600
 
3601
+ [[package]]
3602
+ name = "rsa"
3603
+ version = "0.9.10"
3604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3605
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
3606
+ dependencies = [
3607
+ "const-oid 0.9.6",
3608
+ "digest 0.10.7",
3609
+ "num-bigint-dig",
3610
+ "num-integer",
3611
+ "num-traits",
3612
+ "pkcs1",
3613
+ "pkcs8",
3614
+ "rand_core 0.6.4",
3615
+ "sha2 0.10.9",
3616
+ "signature",
3617
+ "spki",
3618
+ "subtle",
3619
+ "zeroize",
3620
+ ]
3621
+
2647
3622
  [[package]]
2648
3623
  name = "ruff_python_ast"
2649
3624
  version = "0.0.0"
@@ -2710,6 +3685,174 @@ dependencies = [
2710
3685
  "get-size2",
2711
3686
  ]
2712
3687
 
3688
+ [[package]]
3689
+ name = "russh"
3690
+ version = "0.52.1"
3691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3692
+ checksum = "bcc2b4e549ed83a4e36517807367b538c6d00b603ce138637f50a2218222e23f"
3693
+ dependencies = [
3694
+ "aes",
3695
+ "aes-gcm",
3696
+ "bitflags",
3697
+ "block-padding",
3698
+ "byteorder",
3699
+ "bytes",
3700
+ "cbc",
3701
+ "chacha20",
3702
+ "ctr",
3703
+ "curve25519-dalek",
3704
+ "data-encoding",
3705
+ "delegate",
3706
+ "der",
3707
+ "digest 0.10.7",
3708
+ "ecdsa",
3709
+ "ed25519-dalek",
3710
+ "elliptic-curve",
3711
+ "enum_dispatch",
3712
+ "flate2",
3713
+ "futures",
3714
+ "generic-array",
3715
+ "getrandom 0.2.17",
3716
+ "hex-literal",
3717
+ "hmac",
3718
+ "home",
3719
+ "inout",
3720
+ "internal-russh-forked-ssh-key",
3721
+ "log",
3722
+ "md5",
3723
+ "num-bigint",
3724
+ "once_cell",
3725
+ "p256",
3726
+ "p384",
3727
+ "p521",
3728
+ "pageant 0.0.3",
3729
+ "pbkdf2",
3730
+ "pkcs1",
3731
+ "pkcs5",
3732
+ "pkcs8",
3733
+ "poly1305",
3734
+ "rand 0.8.5",
3735
+ "rand_core 0.6.4",
3736
+ "rsa",
3737
+ "russh-cryptovec 0.52.0",
3738
+ "russh-util 0.52.0",
3739
+ "sec1",
3740
+ "sha1 0.10.6",
3741
+ "sha2 0.10.9",
3742
+ "signature",
3743
+ "spki",
3744
+ "ssh-encoding",
3745
+ "subtle",
3746
+ "thiserror 1.0.69",
3747
+ "tokio",
3748
+ "typenum",
3749
+ "zeroize",
3750
+ ]
3751
+
3752
+ [[package]]
3753
+ name = "russh-cryptovec"
3754
+ version = "0.48.0"
3755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3756
+ checksum = "4d8e7e854e1a87e4be00fa287c98cad23faa064d0464434beaa9f014ec3baa98"
3757
+ dependencies = [
3758
+ "libc",
3759
+ "ssh-encoding",
3760
+ "winapi",
3761
+ ]
3762
+
3763
+ [[package]]
3764
+ name = "russh-cryptovec"
3765
+ version = "0.52.0"
3766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3767
+ checksum = "4fb0ed583ff0f6b4aa44c7867dd7108df01b30571ee9423e250b4cc939f8c6cf"
3768
+ dependencies = [
3769
+ "libc",
3770
+ "log",
3771
+ "nix",
3772
+ "ssh-encoding",
3773
+ "winapi",
3774
+ ]
3775
+
3776
+ [[package]]
3777
+ name = "russh-keys"
3778
+ version = "0.49.2"
3779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3780
+ checksum = "788a2439ce385856585346beb37c48e7c9eb5de5f4f00736720a19ffdb3f5bb5"
3781
+ dependencies = [
3782
+ "aes",
3783
+ "async-trait",
3784
+ "bcrypt-pbkdf",
3785
+ "block-padding",
3786
+ "byteorder",
3787
+ "bytes",
3788
+ "cbc",
3789
+ "ctr",
3790
+ "data-encoding",
3791
+ "der",
3792
+ "digest 0.10.7",
3793
+ "ecdsa",
3794
+ "ed25519-dalek",
3795
+ "elliptic-curve",
3796
+ "futures",
3797
+ "getrandom 0.2.17",
3798
+ "hmac",
3799
+ "home",
3800
+ "inout",
3801
+ "log",
3802
+ "md5",
3803
+ "num-integer",
3804
+ "p256",
3805
+ "p384",
3806
+ "p521",
3807
+ "pageant 0.0.1",
3808
+ "pbkdf2",
3809
+ "pkcs1",
3810
+ "pkcs5",
3811
+ "pkcs8",
3812
+ "rand 0.8.5",
3813
+ "rand_core 0.6.4",
3814
+ "rsa",
3815
+ "russh-cryptovec 0.48.0",
3816
+ "russh-util 0.48.0",
3817
+ "sec1",
3818
+ "serde",
3819
+ "sha1 0.10.6",
3820
+ "sha2 0.10.9",
3821
+ "signature",
3822
+ "spki",
3823
+ "ssh-encoding",
3824
+ "ssh-key",
3825
+ "thiserror 1.0.69",
3826
+ "tokio",
3827
+ "tokio-stream",
3828
+ "typenum",
3829
+ "zeroize",
3830
+ ]
3831
+
3832
+ [[package]]
3833
+ name = "russh-util"
3834
+ version = "0.48.0"
3835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3836
+ checksum = "92c7dd577958c0cefbc8f8a2c05c48c88c42e2fdb760dbe9b96ae31d4de97a1f"
3837
+ dependencies = [
3838
+ "chrono",
3839
+ "tokio",
3840
+ "wasm-bindgen",
3841
+ "wasm-bindgen-futures",
3842
+ ]
3843
+
3844
+ [[package]]
3845
+ name = "russh-util"
3846
+ version = "0.52.0"
3847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3848
+ checksum = "668424a5dde0bcb45b55ba7de8476b93831b4aa2fa6947e145f3b053e22c60b6"
3849
+ dependencies = [
3850
+ "chrono",
3851
+ "tokio",
3852
+ "wasm-bindgen",
3853
+ "wasm-bindgen-futures",
3854
+ ]
3855
+
2713
3856
  [[package]]
2714
3857
  name = "rustc-hash"
2715
3858
  version = "2.1.2"
@@ -2846,6 +3989,15 @@ dependencies = [
2846
3989
  "bytemuck",
2847
3990
  ]
2848
3991
 
3992
+ [[package]]
3993
+ name = "salsa20"
3994
+ version = "0.10.2"
3995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3996
+ checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
3997
+ dependencies = [
3998
+ "cipher",
3999
+ ]
4000
+
2849
4001
  [[package]]
2850
4002
  name = "same-file"
2851
4003
  version = "1.0.6"
@@ -2904,12 +4056,37 @@ version = "1.2.0"
2904
4056
  source = "registry+https://github.com/rust-lang/crates.io-index"
2905
4057
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2906
4058
 
4059
+ [[package]]
4060
+ name = "scrypt"
4061
+ version = "0.11.0"
4062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4063
+ checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
4064
+ dependencies = [
4065
+ "pbkdf2",
4066
+ "salsa20",
4067
+ "sha2 0.10.9",
4068
+ ]
4069
+
2907
4070
  [[package]]
2908
4071
  name = "sdd"
2909
4072
  version = "3.0.10"
2910
4073
  source = "registry+https://github.com/rust-lang/crates.io-index"
2911
4074
  checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
2912
4075
 
4076
+ [[package]]
4077
+ name = "sec1"
4078
+ version = "0.7.3"
4079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4080
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
4081
+ dependencies = [
4082
+ "base16ct",
4083
+ "der",
4084
+ "generic-array",
4085
+ "pkcs8",
4086
+ "subtle",
4087
+ "zeroize",
4088
+ ]
4089
+
2913
4090
  [[package]]
2914
4091
  name = "security-framework"
2915
4092
  version = "3.7.0"
@@ -2941,9 +4118,15 @@ checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
2941
4118
 
2942
4119
  [[package]]
2943
4120
  name = "semver"
2944
- version = "1.0.27"
4121
+ version = "1.0.28"
2945
4122
  source = "registry+https://github.com/rust-lang/crates.io-index"
2946
- checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
4123
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
4124
+
4125
+ [[package]]
4126
+ name = "seq-macro"
4127
+ version = "0.3.6"
4128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4129
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2947
4130
 
2948
4131
  [[package]]
2949
4132
  name = "serde"
@@ -3025,6 +4208,17 @@ dependencies = [
3025
4208
  "syn",
3026
4209
  ]
3027
4210
 
4211
+ [[package]]
4212
+ name = "sha1"
4213
+ version = "0.10.6"
4214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4215
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
4216
+ dependencies = [
4217
+ "cfg-if",
4218
+ "cpufeatures 0.2.17",
4219
+ "digest 0.10.7",
4220
+ ]
4221
+
3028
4222
  [[package]]
3029
4223
  name = "sha1"
3030
4224
  version = "0.11.0"
@@ -3032,8 +4226,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3032
4226
  checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
3033
4227
  dependencies = [
3034
4228
  "cfg-if",
3035
- "cpufeatures",
3036
- "digest",
4229
+ "cpufeatures 0.3.0",
4230
+ "digest 0.11.2",
4231
+ ]
4232
+
4233
+ [[package]]
4234
+ name = "sha2"
4235
+ version = "0.10.9"
4236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4237
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
4238
+ dependencies = [
4239
+ "cfg-if",
4240
+ "cpufeatures 0.2.17",
4241
+ "digest 0.10.7",
3037
4242
  ]
3038
4243
 
3039
4244
  [[package]]
@@ -3043,8 +4248,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3043
4248
  checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
3044
4249
  dependencies = [
3045
4250
  "cfg-if",
3046
- "cpufeatures",
3047
- "digest",
4251
+ "cpufeatures 0.3.0",
4252
+ "digest 0.11.2",
3048
4253
  ]
3049
4254
 
3050
4255
  [[package]]
@@ -3063,6 +4268,16 @@ dependencies = [
3063
4268
  "libc",
3064
4269
  ]
3065
4270
 
4271
+ [[package]]
4272
+ name = "signature"
4273
+ version = "2.2.0"
4274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4275
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
4276
+ dependencies = [
4277
+ "digest 0.10.7",
4278
+ "rand_core 0.6.4",
4279
+ ]
4280
+
3066
4281
  [[package]]
3067
4282
  name = "simba"
3068
4283
  version = "0.9.1"
@@ -3109,6 +4324,12 @@ dependencies = [
3109
4324
  "serde",
3110
4325
  ]
3111
4326
 
4327
+ [[package]]
4328
+ name = "smawk"
4329
+ version = "0.3.2"
4330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4331
+ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
4332
+
3112
4333
  [[package]]
3113
4334
  name = "socket2"
3114
4335
  version = "0.6.3"
@@ -3128,6 +4349,68 @@ dependencies = [
3128
4349
  "lock_api",
3129
4350
  ]
3130
4351
 
4352
+ [[package]]
4353
+ name = "spki"
4354
+ version = "0.7.3"
4355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4356
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
4357
+ dependencies = [
4358
+ "base64ct",
4359
+ "der",
4360
+ ]
4361
+
4362
+ [[package]]
4363
+ name = "ssh-cipher"
4364
+ version = "0.2.0"
4365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4366
+ checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
4367
+ dependencies = [
4368
+ "aes",
4369
+ "aes-gcm",
4370
+ "cbc",
4371
+ "chacha20",
4372
+ "cipher",
4373
+ "ctr",
4374
+ "poly1305",
4375
+ "ssh-encoding",
4376
+ "subtle",
4377
+ ]
4378
+
4379
+ [[package]]
4380
+ name = "ssh-encoding"
4381
+ version = "0.2.0"
4382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4383
+ checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
4384
+ dependencies = [
4385
+ "base64ct",
4386
+ "bytes",
4387
+ "pem-rfc7468",
4388
+ "sha2 0.10.9",
4389
+ ]
4390
+
4391
+ [[package]]
4392
+ name = "ssh-key"
4393
+ version = "0.6.7"
4394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4395
+ checksum = "3b86f5297f0f04d08cabaa0f6bff7cb6aec4d9c3b49d87990d63da9d9156a8c3"
4396
+ dependencies = [
4397
+ "bcrypt-pbkdf",
4398
+ "ed25519-dalek",
4399
+ "num-bigint-dig",
4400
+ "p256",
4401
+ "p384",
4402
+ "p521",
4403
+ "rand_core 0.6.4",
4404
+ "rsa",
4405
+ "sec1",
4406
+ "sha2 0.10.9",
4407
+ "signature",
4408
+ "ssh-cipher",
4409
+ "ssh-encoding",
4410
+ "subtle",
4411
+ "zeroize",
4412
+ ]
4413
+
3131
4414
  [[package]]
3132
4415
  name = "stable_deref_trait"
3133
4416
  version = "1.2.1"
@@ -3268,6 +4551,17 @@ dependencies = [
3268
4551
  "unicode-width",
3269
4552
  ]
3270
4553
 
4554
+ [[package]]
4555
+ name = "textwrap"
4556
+ version = "0.16.2"
4557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4558
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
4559
+ dependencies = [
4560
+ "smawk",
4561
+ "unicode-linebreak",
4562
+ "unicode-width",
4563
+ ]
4564
+
3271
4565
  [[package]]
3272
4566
  name = "thiserror"
3273
4567
  version = "1.0.69"
@@ -3310,9 +4604,9 @@ dependencies = [
3310
4604
 
3311
4605
  [[package]]
3312
4606
  name = "tinystr"
3313
- version = "0.8.2"
4607
+ version = "0.8.3"
3314
4608
  source = "registry+https://github.com/rust-lang/crates.io-index"
3315
- checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
4609
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3316
4610
  dependencies = [
3317
4611
  "displaydoc",
3318
4612
  "zerovec",
@@ -3345,9 +4639,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3345
4639
 
3346
4640
  [[package]]
3347
4641
  name = "tokio"
3348
- version = "1.50.0"
4642
+ version = "1.51.0"
3349
4643
  source = "registry+https://github.com/rust-lang/crates.io-index"
3350
- checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
4644
+ checksum = "2bd1c4c0fc4a7ab90fc15ef6daaa3ec3b893f004f915f2392557ed23237820cd"
3351
4645
  dependencies = [
3352
4646
  "bytes",
3353
4647
  "libc",
@@ -3361,9 +4655,9 @@ dependencies = [
3361
4655
 
3362
4656
  [[package]]
3363
4657
  name = "tokio-macros"
3364
- version = "2.6.1"
4658
+ version = "2.7.0"
3365
4659
  source = "registry+https://github.com/rust-lang/crates.io-index"
3366
- checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
4660
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
3367
4661
  dependencies = [
3368
4662
  "proc-macro2",
3369
4663
  "quote",
@@ -3389,6 +4683,7 @@ dependencies = [
3389
4683
  "futures-core",
3390
4684
  "pin-project-lite",
3391
4685
  "tokio",
4686
+ "tokio-util",
3392
4687
  ]
3393
4688
 
3394
4689
  [[package]]
@@ -3515,12 +4810,24 @@ version = "0.1.4"
3515
4810
  source = "registry+https://github.com/rust-lang/crates.io-index"
3516
4811
  checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
3517
4812
 
4813
+ [[package]]
4814
+ name = "unicode-id-start"
4815
+ version = "1.4.0"
4816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4817
+ checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
4818
+
3518
4819
  [[package]]
3519
4820
  name = "unicode-ident"
3520
4821
  version = "1.0.24"
3521
4822
  source = "registry+https://github.com/rust-lang/crates.io-index"
3522
4823
  checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3523
4824
 
4825
+ [[package]]
4826
+ name = "unicode-linebreak"
4827
+ version = "0.1.5"
4828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4829
+ checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
4830
+
3524
4831
  [[package]]
3525
4832
  name = "unicode-normalization"
3526
4833
  version = "0.1.25"
@@ -3554,7 +4861,7 @@ version = "1.3.0"
3554
4861
  source = "registry+https://github.com/rust-lang/crates.io-index"
3555
4862
  checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
3556
4863
  dependencies = [
3557
- "phf",
4864
+ "phf 0.11.3",
3558
4865
  "unicode_names2_generator",
3559
4866
  ]
3560
4867
 
@@ -3570,6 +4877,16 @@ dependencies = [
3570
4877
  "rand 0.8.5",
3571
4878
  ]
3572
4879
 
4880
+ [[package]]
4881
+ name = "universal-hash"
4882
+ version = "0.5.1"
4883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4884
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
4885
+ dependencies = [
4886
+ "crypto-common 0.1.7",
4887
+ "subtle",
4888
+ ]
4889
+
3573
4890
  [[package]]
3574
4891
  name = "untrusted"
3575
4892
  version = "0.9.0"
@@ -3666,9 +4983,9 @@ dependencies = [
3666
4983
 
3667
4984
  [[package]]
3668
4985
  name = "wasm-bindgen"
3669
- version = "0.2.115"
4986
+ version = "0.2.117"
3670
4987
  source = "registry+https://github.com/rust-lang/crates.io-index"
3671
- checksum = "6523d69017b7633e396a89c5efab138161ed5aafcbc8d3e5c5a42ae38f50495a"
4988
+ checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
3672
4989
  dependencies = [
3673
4990
  "cfg-if",
3674
4991
  "once_cell",
@@ -3679,9 +4996,9 @@ dependencies = [
3679
4996
 
3680
4997
  [[package]]
3681
4998
  name = "wasm-bindgen-futures"
3682
- version = "0.4.65"
4999
+ version = "0.4.67"
3683
5000
  source = "registry+https://github.com/rust-lang/crates.io-index"
3684
- checksum = "2d1faf851e778dfa54db7cd438b70758eba9755cb47403f3496edd7c8fc212f0"
5001
+ checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
3685
5002
  dependencies = [
3686
5003
  "js-sys",
3687
5004
  "wasm-bindgen",
@@ -3689,9 +5006,9 @@ dependencies = [
3689
5006
 
3690
5007
  [[package]]
3691
5008
  name = "wasm-bindgen-macro"
3692
- version = "0.2.115"
5009
+ version = "0.2.117"
3693
5010
  source = "registry+https://github.com/rust-lang/crates.io-index"
3694
- checksum = "4e3a6c758eb2f701ed3d052ff5737f5bfe6614326ea7f3bbac7156192dc32e67"
5011
+ checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
3695
5012
  dependencies = [
3696
5013
  "quote",
3697
5014
  "wasm-bindgen-macro-support",
@@ -3699,9 +5016,9 @@ dependencies = [
3699
5016
 
3700
5017
  [[package]]
3701
5018
  name = "wasm-bindgen-macro-support"
3702
- version = "0.2.115"
5019
+ version = "0.2.117"
3703
5020
  source = "registry+https://github.com/rust-lang/crates.io-index"
3704
- checksum = "921de2737904886b52bcbb237301552d05969a6f9c40d261eb0533c8b055fedf"
5021
+ checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
3705
5022
  dependencies = [
3706
5023
  "bumpalo",
3707
5024
  "proc-macro2",
@@ -3712,9 +5029,9 @@ dependencies = [
3712
5029
 
3713
5030
  [[package]]
3714
5031
  name = "wasm-bindgen-shared"
3715
- version = "0.2.115"
5032
+ version = "0.2.117"
3716
5033
  source = "registry+https://github.com/rust-lang/crates.io-index"
3717
- checksum = "a93e946af942b58934c604527337bad9ae33ba1d5c6900bbb41c2c07c2364a93"
5034
+ checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
3718
5035
  dependencies = [
3719
5036
  "unicode-ident",
3720
5037
  ]
@@ -3768,9 +5085,9 @@ dependencies = [
3768
5085
 
3769
5086
  [[package]]
3770
5087
  name = "web-sys"
3771
- version = "0.3.92"
5088
+ version = "0.3.94"
3772
5089
  source = "registry+https://github.com/rust-lang/crates.io-index"
3773
- checksum = "84cde8507f4d7cfcb1185b8cb5890c494ffea65edbe1ba82cfd63661c805ed94"
5090
+ checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
3774
5091
  dependencies = [
3775
5092
  "js-sys",
3776
5093
  "wasm-bindgen",
@@ -3836,17 +5153,51 @@ version = "0.4.0"
3836
5153
  source = "registry+https://github.com/rust-lang/crates.io-index"
3837
5154
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3838
5155
 
5156
+ [[package]]
5157
+ name = "windows"
5158
+ version = "0.58.0"
5159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5160
+ checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
5161
+ dependencies = [
5162
+ "windows-core 0.58.0",
5163
+ "windows-targets 0.52.6",
5164
+ ]
5165
+
5166
+ [[package]]
5167
+ name = "windows-core"
5168
+ version = "0.58.0"
5169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5170
+ checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
5171
+ dependencies = [
5172
+ "windows-implement 0.58.0",
5173
+ "windows-interface 0.58.0",
5174
+ "windows-result 0.2.0",
5175
+ "windows-strings 0.1.0",
5176
+ "windows-targets 0.52.6",
5177
+ ]
5178
+
3839
5179
  [[package]]
3840
5180
  name = "windows-core"
3841
5181
  version = "0.62.2"
3842
5182
  source = "registry+https://github.com/rust-lang/crates.io-index"
3843
5183
  checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3844
5184
  dependencies = [
3845
- "windows-implement",
3846
- "windows-interface",
5185
+ "windows-implement 0.60.2",
5186
+ "windows-interface 0.59.3",
3847
5187
  "windows-link",
3848
- "windows-result",
3849
- "windows-strings",
5188
+ "windows-result 0.4.1",
5189
+ "windows-strings 0.5.1",
5190
+ ]
5191
+
5192
+ [[package]]
5193
+ name = "windows-implement"
5194
+ version = "0.58.0"
5195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5196
+ checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
5197
+ dependencies = [
5198
+ "proc-macro2",
5199
+ "quote",
5200
+ "syn",
3850
5201
  ]
3851
5202
 
3852
5203
  [[package]]
@@ -3860,6 +5211,17 @@ dependencies = [
3860
5211
  "syn",
3861
5212
  ]
3862
5213
 
5214
+ [[package]]
5215
+ name = "windows-interface"
5216
+ version = "0.58.0"
5217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5218
+ checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
5219
+ dependencies = [
5220
+ "proc-macro2",
5221
+ "quote",
5222
+ "syn",
5223
+ ]
5224
+
3863
5225
  [[package]]
3864
5226
  name = "windows-interface"
3865
5227
  version = "0.59.3"
@@ -3877,6 +5239,15 @@ version = "0.2.1"
3877
5239
  source = "registry+https://github.com/rust-lang/crates.io-index"
3878
5240
  checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3879
5241
 
5242
+ [[package]]
5243
+ name = "windows-result"
5244
+ version = "0.2.0"
5245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5246
+ checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
5247
+ dependencies = [
5248
+ "windows-targets 0.52.6",
5249
+ ]
5250
+
3880
5251
  [[package]]
3881
5252
  name = "windows-result"
3882
5253
  version = "0.4.1"
@@ -3886,6 +5257,16 @@ dependencies = [
3886
5257
  "windows-link",
3887
5258
  ]
3888
5259
 
5260
+ [[package]]
5261
+ name = "windows-strings"
5262
+ version = "0.1.0"
5263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5264
+ checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
5265
+ dependencies = [
5266
+ "windows-result 0.2.0",
5267
+ "windows-targets 0.52.6",
5268
+ ]
5269
+
3889
5270
  [[package]]
3890
5271
  name = "windows-strings"
3891
5272
  version = "0.5.1"
@@ -4207,9 +5588,9 @@ dependencies = [
4207
5588
 
4208
5589
  [[package]]
4209
5590
  name = "writeable"
4210
- version = "0.6.2"
5591
+ version = "0.6.3"
4211
5592
  source = "registry+https://github.com/rust-lang/crates.io-index"
4212
- checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
5593
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4213
5594
 
4214
5595
  [[package]]
4215
5596
  name = "yansi"
@@ -4219,9 +5600,9 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
4219
5600
 
4220
5601
  [[package]]
4221
5602
  name = "yoke"
4222
- version = "0.8.1"
5603
+ version = "0.8.2"
4223
5604
  source = "registry+https://github.com/rust-lang/crates.io-index"
4224
- checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
5605
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
4225
5606
  dependencies = [
4226
5607
  "stable_deref_trait",
4227
5608
  "yoke-derive",
@@ -4230,9 +5611,9 @@ dependencies = [
4230
5611
 
4231
5612
  [[package]]
4232
5613
  name = "yoke-derive"
4233
- version = "0.8.1"
5614
+ version = "0.8.2"
4234
5615
  source = "registry+https://github.com/rust-lang/crates.io-index"
4235
- checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
5616
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4236
5617
  dependencies = [
4237
5618
  "proc-macro2",
4238
5619
  "quote",
@@ -4240,20 +5621,37 @@ dependencies = [
4240
5621
  "synstructure",
4241
5622
  ]
4242
5623
 
5624
+ [[package]]
5625
+ name = "zapcode-core"
5626
+ version = "1.5.1"
5627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5628
+ checksum = "763b84cb268f5cf5212198eff31106006ac32aa7e472201cae9f994521abebe2"
5629
+ dependencies = [
5630
+ "indexmap",
5631
+ "oxc_allocator",
5632
+ "oxc_ast",
5633
+ "oxc_parser",
5634
+ "oxc_span",
5635
+ "oxc_syntax",
5636
+ "postcard",
5637
+ "serde",
5638
+ "thiserror 2.0.18",
5639
+ ]
5640
+
4243
5641
  [[package]]
4244
5642
  name = "zerocopy"
4245
- version = "0.8.47"
5643
+ version = "0.8.48"
4246
5644
  source = "registry+https://github.com/rust-lang/crates.io-index"
4247
- checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
5645
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
4248
5646
  dependencies = [
4249
5647
  "zerocopy-derive",
4250
5648
  ]
4251
5649
 
4252
5650
  [[package]]
4253
5651
  name = "zerocopy-derive"
4254
- version = "0.8.47"
5652
+ version = "0.8.48"
4255
5653
  source = "registry+https://github.com/rust-lang/crates.io-index"
4256
- checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
5654
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
4257
5655
  dependencies = [
4258
5656
  "proc-macro2",
4259
5657
  "quote",
@@ -4262,18 +5660,18 @@ dependencies = [
4262
5660
 
4263
5661
  [[package]]
4264
5662
  name = "zerofrom"
4265
- version = "0.1.6"
5663
+ version = "0.1.7"
4266
5664
  source = "registry+https://github.com/rust-lang/crates.io-index"
4267
- checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
5665
+ checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
4268
5666
  dependencies = [
4269
5667
  "zerofrom-derive",
4270
5668
  ]
4271
5669
 
4272
5670
  [[package]]
4273
5671
  name = "zerofrom-derive"
4274
- version = "0.1.6"
5672
+ version = "0.1.7"
4275
5673
  source = "registry+https://github.com/rust-lang/crates.io-index"
4276
- checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
5674
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4277
5675
  dependencies = [
4278
5676
  "proc-macro2",
4279
5677
  "quote",
@@ -4289,9 +5687,9 @@ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4289
5687
 
4290
5688
  [[package]]
4291
5689
  name = "zerotrie"
4292
- version = "0.2.3"
5690
+ version = "0.2.4"
4293
5691
  source = "registry+https://github.com/rust-lang/crates.io-index"
4294
- checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
5692
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4295
5693
  dependencies = [
4296
5694
  "displaydoc",
4297
5695
  "yoke",
@@ -4300,9 +5698,9 @@ dependencies = [
4300
5698
 
4301
5699
  [[package]]
4302
5700
  name = "zerovec"
4303
- version = "0.11.5"
5701
+ version = "0.11.6"
4304
5702
  source = "registry+https://github.com/rust-lang/crates.io-index"
4305
- checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
5703
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4306
5704
  dependencies = [
4307
5705
  "yoke",
4308
5706
  "zerofrom",
@@ -4311,9 +5709,9 @@ dependencies = [
4311
5709
 
4312
5710
  [[package]]
4313
5711
  name = "zerovec-derive"
4314
- version = "0.11.2"
5712
+ version = "0.11.3"
4315
5713
  source = "registry+https://github.com/rust-lang/crates.io-index"
4316
- checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
5714
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4317
5715
  dependencies = [
4318
5716
  "proc-macro2",
4319
5717
  "quote",