bashkit 0.1.15__tar.gz → 0.1.17__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 (407) hide show
  1. {bashkit-0.1.15 → bashkit-0.1.17}/Cargo.lock +885 -189
  2. {bashkit-0.1.15 → bashkit-0.1.17}/Cargo.toml +3 -3
  3. {bashkit-0.1.15 → bashkit-0.1.17}/PKG-INFO +1 -1
  4. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/archive.rs +17 -2
  5. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/date.rs +143 -6
  6. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/iconv.rs +119 -13
  7. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/fs/posix.rs +88 -21
  8. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/interpreter/glob.rs +1 -1
  9. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/interpreter/mod.rs +350 -106
  10. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/lib.rs +152 -0
  11. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/limits.rs +39 -1
  12. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/network/bot_auth.rs +2 -2
  13. bashkit-0.1.17/crates/bashkit/tests/awk_fuzz_scaffold_tests.rs +62 -0
  14. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/blackbox_security_tests.rs +2 -0
  15. bashkit-0.1.17/crates/bashkit/tests/byte_range_panic_tests.rs +55 -0
  16. bashkit-0.1.17/crates/bashkit/tests/jq_fuzz_scaffold_tests.rs +57 -0
  17. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/snapshot_tests.rs +3 -3
  18. bashkit-0.1.17/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +74 -0
  19. bashkit-0.1.17/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +62 -0
  20. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +9 -0
  21. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +24 -0
  22. bashkit-0.1.17/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +29 -0
  23. bashkit-0.1.17/crates/bashkit/tests/stack_overflow_regression_tests.rs +58 -0
  24. bashkit-0.1.17/crates/bashkit/tests/subst_depth_limit_tests.rs +102 -0
  25. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/threat_model_tests.rs +19 -1
  26. {bashkit-0.1.15 → bashkit-0.1.17}/README.md +0 -0
  27. {bashkit-0.1.15 → bashkit-0.1.17}/bashkit/__init__.py +0 -0
  28. {bashkit-0.1.15 → bashkit-0.1.17}/bashkit/_bashkit.pyi +0 -0
  29. {bashkit-0.1.15 → bashkit-0.1.17}/bashkit/deepagents.py +0 -0
  30. {bashkit-0.1.15 → bashkit-0.1.17}/bashkit/langchain.py +0 -0
  31. {bashkit-0.1.15 → bashkit-0.1.17}/bashkit/py.typed +0 -0
  32. {bashkit-0.1.15 → bashkit-0.1.17}/bashkit/pydantic_ai.py +0 -0
  33. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/Cargo.toml +0 -0
  34. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/README.md +0 -0
  35. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/benches/parallel_execution.rs +0 -0
  36. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/docs/compatibility.md +0 -0
  37. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/docs/custom_builtins.md +0 -0
  38. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/docs/live_mounts.md +0 -0
  39. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/docs/logging.md +0 -0
  40. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/docs/python.md +0 -0
  41. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/docs/ssh.md +0 -0
  42. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/docs/threat-model.md +0 -0
  43. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/docs/typescript.md +0 -0
  44. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/agent_tool.rs +0 -0
  45. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/basic.rs +0 -0
  46. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/custom_backend.rs +0 -0
  47. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/custom_builtins.rs +0 -0
  48. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
  49. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/custom_fs.rs +0 -0
  50. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/git_workflow.rs +0 -0
  51. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/live_mounts.rs +0 -0
  52. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/python_external_functions.rs +0 -0
  53. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/python_scripts.rs +0 -0
  54. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/realfs_readonly.rs +0 -0
  55. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
  56. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/resource_limits.rs +0 -0
  57. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/scripted_tool.rs +0 -0
  58. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/show_tool_output.rs +0 -0
  59. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/ssh_supabase.rs +0 -0
  60. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/streaming_output.rs +0 -0
  61. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/text_files.rs +0 -0
  62. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/text_processing.rs +0 -0
  63. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
  64. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/typescript_scripts.rs +0 -0
  65. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/examples/virtual_identity.rs +0 -0
  66. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/alias.rs +0 -0
  67. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
  68. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/assert.rs +0 -0
  69. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/awk.rs +0 -0
  70. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/base64.rs +0 -0
  71. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/bc.rs +0 -0
  72. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/caller.rs +0 -0
  73. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/cat.rs +0 -0
  74. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/checksum.rs +0 -0
  75. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/clear.rs +0 -0
  76. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/column.rs +0 -0
  77. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/comm.rs +0 -0
  78. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/compgen.rs +0 -0
  79. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/csv.rs +0 -0
  80. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/curl.rs +0 -0
  81. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/cuttr.rs +0 -0
  82. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/diff.rs +0 -0
  83. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/dirstack.rs +0 -0
  84. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/disk.rs +0 -0
  85. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/dotenv.rs +0 -0
  86. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/echo.rs +0 -0
  87. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/environ.rs +0 -0
  88. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/envsubst.rs +0 -0
  89. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/expand.rs +0 -0
  90. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/export.rs +0 -0
  91. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/expr.rs +0 -0
  92. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/fc.rs +0 -0
  93. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/fileops.rs +0 -0
  94. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/flow.rs +0 -0
  95. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/fold.rs +0 -0
  96. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/git.rs +0 -0
  97. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
  98. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/grep.rs +0 -0
  99. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/headtail.rs +0 -0
  100. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/help.rs +0 -0
  101. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/hextools.rs +0 -0
  102. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/http.rs +0 -0
  103. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/inspect.rs +0 -0
  104. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/introspect.rs +0 -0
  105. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/join.rs +0 -0
  106. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/jq.rs +0 -0
  107. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/json.rs +0 -0
  108. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/log.rs +0 -0
  109. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/ls.rs +0 -0
  110. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/mapfile.rs +0 -0
  111. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
  112. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/mod.rs +0 -0
  113. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/navigation.rs +0 -0
  114. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/nl.rs +0 -0
  115. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/numfmt.rs +0 -0
  116. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/parallel.rs +0 -0
  117. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/paste.rs +0 -0
  118. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/patch.rs +0 -0
  119. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/path.rs +0 -0
  120. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/pipeline.rs +0 -0
  121. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/printf.rs +0 -0
  122. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/python.rs +0 -0
  123. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/read.rs +0 -0
  124. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/retry.rs +0 -0
  125. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/rg.rs +0 -0
  126. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/search_common.rs +0 -0
  127. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/sed.rs +0 -0
  128. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/semver.rs +0 -0
  129. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/seq.rs +0 -0
  130. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/sleep.rs +0 -0
  131. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/sortuniq.rs +0 -0
  132. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/source.rs +0 -0
  133. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/split.rs +0 -0
  134. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/ssh.rs +0 -0
  135. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/strings.rs +0 -0
  136. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/system.rs +0 -0
  137. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/template.rs +0 -0
  138. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/test.rs +0 -0
  139. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/textrev.rs +0 -0
  140. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/timeout.rs +0 -0
  141. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/tomlq.rs +0 -0
  142. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/trap.rs +0 -0
  143. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/tree.rs +0 -0
  144. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/typescript.rs +0 -0
  145. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/vars.rs +0 -0
  146. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/verify.rs +0 -0
  147. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/wait.rs +0 -0
  148. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/wc.rs +0 -0
  149. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/yaml.rs +0 -0
  150. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/yes.rs +0 -0
  151. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/builtins/zip_cmd.rs +0 -0
  152. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/error.rs +0 -0
  153. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/fs/backend.rs +0 -0
  154. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/fs/limits.rs +0 -0
  155. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/fs/memory.rs +0 -0
  156. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/fs/mod.rs +0 -0
  157. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/fs/mountable.rs +0 -0
  158. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/fs/overlay.rs +0 -0
  159. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/fs/realfs.rs +0 -0
  160. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/fs/search.rs +0 -0
  161. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/fs/traits.rs +0 -0
  162. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/git/client.rs +0 -0
  163. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/git/config.rs +0 -0
  164. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/git/mod.rs +0 -0
  165. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/interpreter/jobs.rs +0 -0
  166. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/interpreter/state.rs +0 -0
  167. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/logging_impl.rs +0 -0
  168. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/network/allowlist.rs +0 -0
  169. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/network/client.rs +0 -0
  170. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/network/mod.rs +0 -0
  171. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/parser/ast.rs +0 -0
  172. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/parser/budget.rs +0 -0
  173. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/parser/lexer.rs +0 -0
  174. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/parser/mod.rs +0 -0
  175. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/parser/span.rs +0 -0
  176. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/parser/tokens.rs +0 -0
  177. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/scripted_tool/execute.rs +0 -0
  178. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/scripted_tool/mod.rs +0 -0
  179. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
  180. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/snapshot.rs +0 -0
  181. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/ssh/allowlist.rs +0 -0
  182. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/ssh/client.rs +0 -0
  183. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/ssh/config.rs +0 -0
  184. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/ssh/handler.rs +0 -0
  185. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/ssh/mod.rs +0 -0
  186. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/ssh/russh_handler.rs +0 -0
  187. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/tool.rs +0 -0
  188. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/src/trace.rs +0 -0
  189. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/allexport_tests.rs +0 -0
  190. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/awk_newline_tests.rs +0 -0
  191. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/awk_pattern_tests.rs +0 -0
  192. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/awk_printf_expr_test.rs +0 -0
  193. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/background_exec_tests.rs +0 -0
  194. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/bash_source_tests.rs +0 -0
  195. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/builtin_error_security_tests.rs +0 -0
  196. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/cancellation_tests.rs +0 -0
  197. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/cmdsub_quote_test.rs +0 -0
  198. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/coproc_tests.rs +0 -0
  199. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/custom_builtins_tests.rs +0 -0
  200. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/custom_fs_tests.rs +0 -0
  201. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/dev_null_tests.rs +0 -0
  202. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/final_env_tests.rs +0 -0
  203. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/find_multi_path_tests.rs +0 -0
  204. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/git_advanced_tests.rs +0 -0
  205. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/git_inspection_tests.rs +0 -0
  206. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/git_integration_tests.rs +0 -0
  207. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/git_remote_security_tests.rs +0 -0
  208. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/git_security_tests.rs +0 -0
  209. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/history_tests.rs +0 -0
  210. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/issue_274_test.rs +0 -0
  211. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/issue_275_279_282_test.rs +0 -0
  212. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/issue_276_test.rs +0 -0
  213. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/issue_277_test.rs +0 -0
  214. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/issue_289_test.rs +0 -0
  215. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/issue_290_test.rs +0 -0
  216. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/issue_291_test.rs +0 -0
  217. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/issue_853_test.rs +0 -0
  218. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/issue_872_test.rs +0 -0
  219. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/issue_873_test.rs +0 -0
  220. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/issue_875_test.rs +0 -0
  221. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/live_mount_tests.rs +0 -0
  222. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/logging_security_tests.rs +0 -0
  223. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/mkfifo_tests.rs +0 -0
  224. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/nested_subscript_tests.rs +0 -0
  225. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/network_security_tests.rs +0 -0
  226. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/output_truncation_tests.rs +0 -0
  227. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/overlay_path_validation_tests.rs +0 -0
  228. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/proptest_differential.rs +0 -0
  229. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/proptest_security.rs +0 -0
  230. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/python_integration_tests.rs +0 -0
  231. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/python_security_tests.rs +0 -0
  232. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/realfs_tests.rs +0 -0
  233. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/regex_limit_tests.rs +0 -0
  234. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/script_execution_tests.rs +0 -0
  235. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/security_audit_pocs.rs +0 -0
  236. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
  237. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/set_e_and_or_tests.rs +0 -0
  238. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
  239. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
  240. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
  241. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
  242. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
  243. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
  244. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
  245. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
  246. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
  247. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
  248. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/skills_tests.rs +0 -0
  249. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/source_function_tests.rs +0 -0
  250. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
  251. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
  252. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
  253. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
  254. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
  255. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
  256. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
  257. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
  258. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
  259. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
  260. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
  261. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
  262. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
  263. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
  264. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
  265. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
  266. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
  267. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
  268. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
  269. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
  270. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
  271. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
  272. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
  273. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
  274. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
  275. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
  276. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
  277. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
  278. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
  279. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
  280. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
  281. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
  282. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
  283. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
  284. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
  285. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
  286. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
  287. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
  288. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
  289. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
  290. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
  291. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
  292. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
  293. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
  294. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
  295. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
  296. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
  297. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
  298. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
  299. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
  300. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
  301. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
  302. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
  303. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
  304. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
  305. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
  306. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
  307. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
  308. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
  309. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
  310. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
  311. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
  312. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
  313. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
  314. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
  315. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
  316. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
  317. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
  318. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
  319. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
  320. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
  321. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
  322. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
  323. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
  324. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
  325. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
  326. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
  327. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
  328. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
  329. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
  330. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
  331. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
  332. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
  333. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
  334. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
  335. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
  336. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
  337. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
  338. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
  339. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
  340. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +0 -0
  341. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
  342. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
  343. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
  344. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
  345. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
  346. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
  347. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
  348. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
  349. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
  350. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
  351. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
  352. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
  353. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
  354. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
  355. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
  356. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
  357. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
  358. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
  359. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
  360. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
  361. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
  362. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
  363. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
  364. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
  365. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
  366. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
  367. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
  368. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
  369. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
  370. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
  371. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
  372. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
  373. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
  374. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
  375. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
  376. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
  377. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
  378. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
  379. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
  380. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
  381. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
  382. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
  383. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
  384. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_runner.rs +0 -0
  385. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/spec_tests.rs +0 -0
  386. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
  387. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
  388. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/symlink_overlay_security_tests.rs +0 -0
  389. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/tty_tests.rs +0 -0
  390. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/typescript_integration_tests.rs +0 -0
  391. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/typescript_security_tests.rs +0 -0
  392. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/unicode_security_tests.rs +0 -0
  393. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/unset_function_tests.rs +0 -0
  394. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit/tests/urandom_tests.rs +0 -0
  395. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit-python/Cargo.toml +0 -0
  396. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit-python/README.md +0 -0
  397. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit-python/examples/bash_basics.py +0 -0
  398. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
  399. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit-python/src/lib.rs +0 -0
  400. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit-python/tests/test_bashkit.py +0 -0
  401. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit-python/tests/test_frameworks.py +0 -0
  402. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit-python/tests/test_integration.py +0 -0
  403. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit-python/tests/test_python_security.py +0 -0
  404. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit-python/tests/test_security.py +0 -0
  405. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit-python/tests/test_security_advanced.py +0 -0
  406. {bashkit-0.1.15 → bashkit-0.1.17}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
  407. {bashkit-0.1.15 → bashkit-0.1.17}/pyproject.toml +0 -0
@@ -15,7 +15,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
15
15
  checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
16
16
  dependencies = [
17
17
  "crypto-common 0.1.7",
18
- "generic-array",
18
+ "generic-array 0.14.7",
19
+ ]
20
+
21
+ [[package]]
22
+ name = "aead"
23
+ version = "0.6.0-rc.10"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "6b657e772794c6b04730ea897b66a058ccd866c16d1967da05eeeecec39043fe"
26
+ dependencies = [
27
+ "crypto-common 0.2.1",
28
+ "inout 0.2.2",
19
29
  ]
20
30
 
21
31
  [[package]]
@@ -25,7 +35,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
25
35
  checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
26
36
  dependencies = [
27
37
  "cfg-if",
28
- "cipher",
38
+ "cipher 0.4.4",
39
+ "cpufeatures 0.2.17",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "aes"
44
+ version = "0.9.0-rc.4"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "04097e08a47d9ad181c2e1f4a5fabc9ae06ce8839a333ba9a949bcb0d31fd2a3"
47
+ dependencies = [
48
+ "cipher 0.5.1",
49
+ "cpubits",
29
50
  "cpufeatures 0.2.17",
30
51
  ]
31
52
 
@@ -35,11 +56,25 @@ version = "0.10.3"
35
56
  source = "registry+https://github.com/rust-lang/crates.io-index"
36
57
  checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
37
58
  dependencies = [
38
- "aead",
39
- "aes",
40
- "cipher",
41
- "ctr",
42
- "ghash",
59
+ "aead 0.5.2",
60
+ "aes 0.8.4",
61
+ "cipher 0.4.4",
62
+ "ctr 0.9.2",
63
+ "ghash 0.5.1",
64
+ "subtle",
65
+ ]
66
+
67
+ [[package]]
68
+ name = "aes-gcm"
69
+ version = "0.11.0-rc.3"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "e22c0c90bbe8d4f77c3ca9ddabe41a1f8382d6fc1f7cea89459d0f320371f972"
72
+ dependencies = [
73
+ "aead 0.6.0-rc.10",
74
+ "aes 0.9.0-rc.4",
75
+ "cipher 0.5.1",
76
+ "ctr 0.10.0-rc.4",
77
+ "ghash 0.6.0",
43
78
  "subtle",
44
79
  ]
45
80
 
@@ -242,6 +277,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
242
277
  checksum = "a054912289d18629dc78375ba2c3726a3afe3ff71b4edba9dedfca0e3446d1fc"
243
278
  dependencies = [
244
279
  "aws-lc-sys",
280
+ "untrusted 0.7.1",
245
281
  "zeroize",
246
282
  ]
247
283
 
@@ -263,6 +299,12 @@ version = "0.2.0"
263
299
  source = "registry+https://github.com/rust-lang/crates.io-index"
264
300
  checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
265
301
 
302
+ [[package]]
303
+ name = "base16ct"
304
+ version = "1.0.0"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "fd307490d624467aa6f74b0eabb77633d1f758a7b25f12bceb0b22e08d9726f6"
307
+
266
308
  [[package]]
267
309
  name = "base64"
268
310
  version = "0.22.1"
@@ -277,14 +319,14 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
277
319
 
278
320
  [[package]]
279
321
  name = "bashkit"
280
- version = "0.1.15"
322
+ version = "0.1.17"
281
323
  dependencies = [
282
324
  "anyhow",
283
325
  "async-trait",
284
326
  "base64",
285
327
  "chrono",
286
328
  "criterion",
287
- "ed25519-dalek",
329
+ "ed25519-dalek 2.2.0",
288
330
  "fail",
289
331
  "flate2",
290
332
  "futures",
@@ -297,7 +339,7 @@ dependencies = [
297
339
  "monty",
298
340
  "pretty_assertions",
299
341
  "proptest",
300
- "rand 0.8.5",
342
+ "rand 0.10.0",
301
343
  "regex",
302
344
  "reqwest",
303
345
  "russh",
@@ -320,7 +362,7 @@ dependencies = [
320
362
 
321
363
  [[package]]
322
364
  name = "bashkit-bench"
323
- version = "0.1.15"
365
+ version = "0.1.17"
324
366
  dependencies = [
325
367
  "anyhow",
326
368
  "bashkit",
@@ -336,7 +378,7 @@ dependencies = [
336
378
 
337
379
  [[package]]
338
380
  name = "bashkit-cli"
339
- version = "0.1.15"
381
+ version = "0.1.17"
340
382
  dependencies = [
341
383
  "anyhow",
342
384
  "bashkit",
@@ -349,7 +391,7 @@ dependencies = [
349
391
 
350
392
  [[package]]
351
393
  name = "bashkit-eval"
352
- version = "0.1.15"
394
+ version = "0.1.17"
353
395
  dependencies = [
354
396
  "anyhow",
355
397
  "async-trait",
@@ -365,7 +407,7 @@ dependencies = [
365
407
 
366
408
  [[package]]
367
409
  name = "bashkit-js"
368
- version = "0.1.15"
410
+ version = "0.1.17"
369
411
  dependencies = [
370
412
  "bashkit",
371
413
  "napi",
@@ -378,7 +420,7 @@ dependencies = [
378
420
 
379
421
  [[package]]
380
422
  name = "bashkit-python"
381
- version = "0.1.15"
423
+ version = "0.1.17"
382
424
  dependencies = [
383
425
  "bashkit",
384
426
  "num-bigint",
@@ -395,7 +437,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
395
437
  checksum = "6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2"
396
438
  dependencies = [
397
439
  "blowfish",
398
- "pbkdf2",
440
+ "pbkdf2 0.12.2",
399
441
  "sha2 0.10.9",
400
442
  ]
401
443
 
@@ -435,7 +477,7 @@ version = "0.10.4"
435
477
  source = "registry+https://github.com/rust-lang/crates.io-index"
436
478
  checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
437
479
  dependencies = [
438
- "generic-array",
480
+ "generic-array 0.14.7",
439
481
  ]
440
482
 
441
483
  [[package]]
@@ -453,7 +495,16 @@ version = "0.3.3"
453
495
  source = "registry+https://github.com/rust-lang/crates.io-index"
454
496
  checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
455
497
  dependencies = [
456
- "generic-array",
498
+ "generic-array 0.14.7",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "block-padding"
503
+ version = "0.4.2"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "710f1dd022ef4e93f8a438b4ba958de7f64308434fa6a87104481645cc30068b"
506
+ dependencies = [
507
+ "hybrid-array",
457
508
  ]
458
509
 
459
510
  [[package]]
@@ -463,7 +514,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
463
514
  checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
464
515
  dependencies = [
465
516
  "byteorder",
466
- "cipher",
517
+ "cipher 0.4.4",
467
518
  ]
468
519
 
469
520
  [[package]]
@@ -528,7 +579,16 @@ version = "0.1.2"
528
579
  source = "registry+https://github.com/rust-lang/crates.io-index"
529
580
  checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
530
581
  dependencies = [
531
- "cipher",
582
+ "cipher 0.4.4",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "cbc"
587
+ version = "0.2.0-rc.4"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "ab1412b9ae2463ede01f1e591412dfbcfeacecf40e8c4c3e0655814c19065c38"
590
+ dependencies = [
591
+ "cipher 0.5.1",
532
592
  ]
533
593
 
534
594
  [[package]]
@@ -568,10 +628,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
568
628
  checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
569
629
  dependencies = [
570
630
  "cfg-if",
571
- "cipher",
631
+ "cipher 0.4.4",
572
632
  "cpufeatures 0.2.17",
573
633
  ]
574
634
 
635
+ [[package]]
636
+ name = "chacha20"
637
+ version = "0.10.0"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
640
+ dependencies = [
641
+ "cfg-if",
642
+ "cpufeatures 0.3.0",
643
+ "rand_core 0.10.0",
644
+ ]
645
+
575
646
  [[package]]
576
647
  name = "chrono"
577
648
  version = "0.4.44"
@@ -619,7 +690,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
619
690
  checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
620
691
  dependencies = [
621
692
  "crypto-common 0.1.7",
622
- "inout",
693
+ "inout 0.1.4",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "cipher"
698
+ version = "0.5.1"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "e34d8227fe1ba289043aeb13792056ff80fd6de1a9f49137a5f499de8e8c78ea"
701
+ dependencies = [
702
+ "block-buffer 0.12.0",
703
+ "crypto-common 0.2.1",
704
+ "inout 0.2.2",
623
705
  ]
624
706
 
625
707
  [[package]]
@@ -671,6 +753,12 @@ dependencies = [
671
753
  "cc",
672
754
  ]
673
755
 
756
+ [[package]]
757
+ name = "cmov"
758
+ version = "0.5.3"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "3f88a43d011fc4a6876cb7344703e297c71dda42494fee094d5f7c76bf13f746"
761
+
674
762
  [[package]]
675
763
  name = "cobs"
676
764
  version = "0.3.0"
@@ -779,6 +867,12 @@ version = "0.1.3"
779
867
  source = "registry+https://github.com/rust-lang/crates.io-index"
780
868
  checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
781
869
 
870
+ [[package]]
871
+ name = "cpubits"
872
+ version = "0.1.0"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "5ef0c543070d296ea414df2dd7625d1b24866ce206709d8a4a424f28377f5861"
875
+
782
876
  [[package]]
783
877
  name = "cpufeatures"
784
878
  version = "0.2.17"
@@ -885,20 +979,36 @@ version = "0.5.5"
885
979
  source = "registry+https://github.com/rust-lang/crates.io-index"
886
980
  checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
887
981
  dependencies = [
888
- "generic-array",
982
+ "generic-array 0.14.7",
889
983
  "rand_core 0.6.4",
890
984
  "subtle",
891
985
  "zeroize",
892
986
  ]
893
987
 
988
+ [[package]]
989
+ name = "crypto-bigint"
990
+ version = "0.7.3"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "42a0d26b245348befa0c121944541476763dcc46ede886c88f9d12e1697d27c3"
993
+ dependencies = [
994
+ "cpubits",
995
+ "ctutils",
996
+ "getrandom 0.4.2",
997
+ "hybrid-array",
998
+ "num-traits",
999
+ "rand_core 0.10.0",
1000
+ "serdect",
1001
+ "subtle",
1002
+ "zeroize",
1003
+ ]
1004
+
894
1005
  [[package]]
895
1006
  name = "crypto-common"
896
1007
  version = "0.1.7"
897
1008
  source = "registry+https://github.com/rust-lang/crates.io-index"
898
1009
  checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
899
1010
  dependencies = [
900
- "generic-array",
901
- "rand_core 0.6.4",
1011
+ "generic-array 0.14.7",
902
1012
  "typenum",
903
1013
  ]
904
1014
 
@@ -908,7 +1018,20 @@ version = "0.2.1"
908
1018
  source = "registry+https://github.com/rust-lang/crates.io-index"
909
1019
  checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
910
1020
  dependencies = [
1021
+ "getrandom 0.4.2",
911
1022
  "hybrid-array",
1023
+ "rand_core 0.10.0",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "crypto-primes"
1028
+ version = "0.7.0"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "21f41f23de7d24cdbda7f0c4d9c0351f99a4ceb258ef30e5c1927af8987ffe5a"
1031
+ dependencies = [
1032
+ "crypto-bigint 0.7.3",
1033
+ "libm",
1034
+ "rand_core 0.10.0",
912
1035
  ]
913
1036
 
914
1037
  [[package]]
@@ -933,7 +1056,26 @@ version = "0.9.2"
933
1056
  source = "registry+https://github.com/rust-lang/crates.io-index"
934
1057
  checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
935
1058
  dependencies = [
936
- "cipher",
1059
+ "cipher 0.4.4",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "ctr"
1064
+ version = "0.10.0-rc.4"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "fee683dd898fbd052617b4514bc31f98bc32081a83b69ec46adef3b1ef4ae36f"
1067
+ dependencies = [
1068
+ "cipher 0.5.1",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "ctutils"
1073
+ version = "0.4.2"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
1076
+ dependencies = [
1077
+ "cmov",
1078
+ "subtle",
937
1079
  ]
938
1080
 
939
1081
  [[package]]
@@ -946,7 +1088,23 @@ dependencies = [
946
1088
  "cpufeatures 0.2.17",
947
1089
  "curve25519-dalek-derive",
948
1090
  "digest 0.10.7",
949
- "fiat-crypto",
1091
+ "fiat-crypto 0.2.9",
1092
+ "rustc_version",
1093
+ "subtle",
1094
+ "zeroize",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "curve25519-dalek"
1099
+ version = "5.0.0-pre.6"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "335f1947f241137a14106b6f5acc5918a5ede29c9d71d3f2cb1678d5075d9fc3"
1102
+ dependencies = [
1103
+ "cfg-if",
1104
+ "cpufeatures 0.2.17",
1105
+ "curve25519-dalek-derive",
1106
+ "digest 0.11.2",
1107
+ "fiat-crypto 0.3.0",
950
1108
  "rustc_version",
951
1109
  "subtle",
952
1110
  "zeroize",
@@ -987,7 +1145,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
987
1145
  checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
988
1146
  dependencies = [
989
1147
  "const-oid 0.9.6",
990
- "pem-rfc7468",
1148
+ "pem-rfc7468 0.7.0",
1149
+ "zeroize",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "der"
1154
+ version = "0.8.0"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
1157
+ dependencies = [
1158
+ "const-oid 0.10.2",
1159
+ "pem-rfc7468 1.0.0",
991
1160
  "zeroize",
992
1161
  ]
993
1162
 
@@ -1029,6 +1198,7 @@ dependencies = [
1029
1198
  "block-buffer 0.12.0",
1030
1199
  "const-oid 0.10.2",
1031
1200
  "crypto-common 0.2.1",
1201
+ "ctutils",
1032
1202
  ]
1033
1203
 
1034
1204
  [[package]]
@@ -1081,12 +1251,27 @@ version = "0.16.9"
1081
1251
  source = "registry+https://github.com/rust-lang/crates.io-index"
1082
1252
  checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
1083
1253
  dependencies = [
1084
- "der",
1254
+ "der 0.7.10",
1085
1255
  "digest 0.10.7",
1086
- "elliptic-curve",
1087
- "rfc6979",
1088
- "signature",
1089
- "spki",
1256
+ "elliptic-curve 0.13.8",
1257
+ "rfc6979 0.4.0",
1258
+ "signature 2.2.0",
1259
+ "spki 0.7.3",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "ecdsa"
1264
+ version = "0.17.0-rc.16"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "91bbdd377139884fafcad8dc43a760a3e1e681aa26db910257fa6535b70e1829"
1267
+ dependencies = [
1268
+ "der 0.8.0",
1269
+ "digest 0.11.2",
1270
+ "elliptic-curve 0.14.0-rc.29",
1271
+ "rfc6979 0.5.0-rc.5",
1272
+ "signature 3.0.0-rc.10",
1273
+ "spki 0.8.0",
1274
+ "zeroize",
1090
1275
  ]
1091
1276
 
1092
1277
  [[package]]
@@ -1095,8 +1280,18 @@ version = "2.2.3"
1095
1280
  source = "registry+https://github.com/rust-lang/crates.io-index"
1096
1281
  checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
1097
1282
  dependencies = [
1098
- "pkcs8",
1099
- "signature",
1283
+ "pkcs8 0.10.2",
1284
+ "signature 2.2.0",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "ed25519"
1289
+ version = "3.0.0-rc.4"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "c6e914c7c52decb085cea910552e24c63ac019e3ab8bf001ff736da9a9d9d890"
1292
+ dependencies = [
1293
+ "pkcs8 0.11.0-rc.11",
1294
+ "signature 3.0.0-rc.10",
1100
1295
  ]
1101
1296
 
1102
1297
  [[package]]
@@ -1105,8 +1300,8 @@ version = "2.2.0"
1105
1300
  source = "registry+https://github.com/rust-lang/crates.io-index"
1106
1301
  checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
1107
1302
  dependencies = [
1108
- "curve25519-dalek",
1109
- "ed25519",
1303
+ "curve25519-dalek 4.1.3",
1304
+ "ed25519 2.2.3",
1110
1305
  "rand_core 0.6.4",
1111
1306
  "serde",
1112
1307
  "sha2 0.10.9",
@@ -1114,6 +1309,22 @@ dependencies = [
1114
1309
  "zeroize",
1115
1310
  ]
1116
1311
 
1312
+ [[package]]
1313
+ name = "ed25519-dalek"
1314
+ version = "3.0.0-pre.6"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "053618a4c3d3bc24f188aa660ae75a46eeab74ef07fb415c61431e5e7cd4749b"
1317
+ dependencies = [
1318
+ "curve25519-dalek 5.0.0-pre.6",
1319
+ "ed25519 3.0.0-rc.4",
1320
+ "rand_core 0.10.0",
1321
+ "serde",
1322
+ "sha2 0.11.0",
1323
+ "signature 3.0.0-rc.10",
1324
+ "subtle",
1325
+ "zeroize",
1326
+ ]
1327
+
1117
1328
  [[package]]
1118
1329
  name = "either"
1119
1330
  version = "1.15.0"
@@ -1126,17 +1337,40 @@ version = "0.13.8"
1126
1337
  source = "registry+https://github.com/rust-lang/crates.io-index"
1127
1338
  checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
1128
1339
  dependencies = [
1129
- "base16ct",
1130
- "crypto-bigint",
1340
+ "base16ct 0.2.0",
1341
+ "crypto-bigint 0.5.5",
1131
1342
  "digest 0.10.7",
1132
1343
  "ff",
1133
- "generic-array",
1344
+ "generic-array 0.14.7",
1134
1345
  "group",
1135
- "hkdf",
1136
- "pem-rfc7468",
1137
- "pkcs8",
1346
+ "hkdf 0.12.4",
1347
+ "pem-rfc7468 0.7.0",
1348
+ "pkcs8 0.10.2",
1138
1349
  "rand_core 0.6.4",
1139
- "sec1",
1350
+ "sec1 0.7.3",
1351
+ "subtle",
1352
+ "zeroize",
1353
+ ]
1354
+
1355
+ [[package]]
1356
+ name = "elliptic-curve"
1357
+ version = "0.14.0-rc.29"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "e84043d573efd4ac9d2d125817979a379204bf7e328b25a4a30487e8d100e618"
1360
+ dependencies = [
1361
+ "base16ct 1.0.0",
1362
+ "crypto-bigint 0.7.3",
1363
+ "crypto-common 0.2.1",
1364
+ "digest 0.11.2",
1365
+ "hkdf 0.13.0",
1366
+ "hybrid-array",
1367
+ "once_cell",
1368
+ "pem-rfc7468 1.0.0",
1369
+ "pkcs8 0.11.0-rc.11",
1370
+ "rand_core 0.10.0",
1371
+ "rustcrypto-ff",
1372
+ "rustcrypto-group",
1373
+ "sec1 0.8.1",
1140
1374
  "subtle",
1141
1375
  "zeroize",
1142
1376
  ]
@@ -1231,6 +1465,12 @@ version = "0.2.9"
1231
1465
  source = "registry+https://github.com/rust-lang/crates.io-index"
1232
1466
  checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
1233
1467
 
1468
+ [[package]]
1469
+ name = "fiat-crypto"
1470
+ version = "0.3.0"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24"
1473
+
1234
1474
  [[package]]
1235
1475
  name = "find-msvc-tools"
1236
1476
  version = "0.1.9"
@@ -1379,6 +1619,17 @@ dependencies = [
1379
1619
  "zeroize",
1380
1620
  ]
1381
1621
 
1622
+ [[package]]
1623
+ name = "generic-array"
1624
+ version = "1.3.5"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "eaf57c49a95fd1fe24b90b3033bee6dc7e8f1288d51494cb44e627c295e38542"
1627
+ dependencies = [
1628
+ "generic-array 0.14.7",
1629
+ "rustversion",
1630
+ "typenum",
1631
+ ]
1632
+
1382
1633
  [[package]]
1383
1634
  name = "get-size-derive2"
1384
1635
  version = "0.7.4"
@@ -1448,6 +1699,7 @@ dependencies = [
1448
1699
  "cfg-if",
1449
1700
  "libc",
1450
1701
  "r-efi 6.0.0",
1702
+ "rand_core 0.10.0",
1451
1703
  "wasip2",
1452
1704
  "wasip3",
1453
1705
  ]
@@ -1459,7 +1711,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
1711
  checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
1460
1712
  dependencies = [
1461
1713
  "opaque-debug",
1462
- "polyval",
1714
+ "polyval 0.6.2",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "ghash"
1719
+ version = "0.6.0"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "2eecf2d5dc9b66b732b97707a0210906b1d30523eb773193ab777c0c84b3e8d5"
1722
+ dependencies = [
1723
+ "polyval 0.7.1",
1463
1724
  ]
1464
1725
 
1465
1726
  [[package]]
@@ -1554,9 +1815,9 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1554
1815
 
1555
1816
  [[package]]
1556
1817
  name = "hex-literal"
1557
- version = "0.4.1"
1818
+ version = "1.1.0"
1558
1819
  source = "registry+https://github.com/rust-lang/crates.io-index"
1559
- checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
1820
+ checksum = "e712f64ec3850b98572bffac52e2c6f282b29fe6c5fa6d42334b30be438d95c1"
1560
1821
 
1561
1822
  [[package]]
1562
1823
  name = "hifijson"
@@ -1570,7 +1831,16 @@ version = "0.12.4"
1570
1831
  source = "registry+https://github.com/rust-lang/crates.io-index"
1571
1832
  checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1572
1833
  dependencies = [
1573
- "hmac",
1834
+ "hmac 0.12.1",
1835
+ ]
1836
+
1837
+ [[package]]
1838
+ name = "hkdf"
1839
+ version = "0.13.0"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "4aaa26c720c68b866f2c96ef5c1264b3e6f473fe5d4ce61cd44bbe913e553018"
1842
+ dependencies = [
1843
+ "hmac 0.13.0",
1574
1844
  ]
1575
1845
 
1576
1846
  [[package]]
@@ -1582,6 +1852,15 @@ dependencies = [
1582
1852
  "digest 0.10.7",
1583
1853
  ]
1584
1854
 
1855
+ [[package]]
1856
+ name = "hmac"
1857
+ version = "0.13.0"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
1860
+ dependencies = [
1861
+ "digest 0.11.2",
1862
+ ]
1863
+
1585
1864
  [[package]]
1586
1865
  name = "home"
1587
1866
  version = "0.5.12"
@@ -1636,7 +1915,10 @@ version = "0.4.10"
1636
1915
  source = "registry+https://github.com/rust-lang/crates.io-index"
1637
1916
  checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
1638
1917
  dependencies = [
1918
+ "ctutils",
1919
+ "subtle",
1639
1920
  "typenum",
1921
+ "zeroize",
1640
1922
  ]
1641
1923
 
1642
1924
  [[package]]
@@ -1849,8 +2131,18 @@ version = "0.1.4"
1849
2131
  source = "registry+https://github.com/rust-lang/crates.io-index"
1850
2132
  checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1851
2133
  dependencies = [
1852
- "block-padding",
1853
- "generic-array",
2134
+ "block-padding 0.3.3",
2135
+ "generic-array 0.14.7",
2136
+ ]
2137
+
2138
+ [[package]]
2139
+ name = "inout"
2140
+ version = "0.2.2"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7"
2143
+ dependencies = [
2144
+ "block-padding 0.4.2",
2145
+ "hybrid-array",
1854
2146
  ]
1855
2147
 
1856
2148
  [[package]]
@@ -1876,32 +2168,45 @@ dependencies = [
1876
2168
 
1877
2169
  [[package]]
1878
2170
  name = "internal-russh-forked-ssh-key"
1879
- version = "0.6.10+upstream-0.6.7"
2171
+ version = "0.6.18+upstream-0.6.7"
1880
2172
  source = "registry+https://github.com/rust-lang/crates.io-index"
1881
- checksum = "33555bd765ace379fe85d97bb6d48b5783054f6048a7d5ec24cd9155e490e266"
2173
+ checksum = "25f8a978272e3cbdf4768f7363eb1c8e1e6ba63c52a3ed05e29e222da4aec7cb"
1882
2174
  dependencies = [
1883
2175
  "argon2",
1884
2176
  "bcrypt-pbkdf",
1885
- "ecdsa",
1886
- "ed25519-dalek",
2177
+ "crypto-bigint 0.7.3",
2178
+ "ecdsa 0.17.0-rc.16",
2179
+ "ed25519-dalek 3.0.0-pre.6",
1887
2180
  "hex",
1888
- "hmac",
2181
+ "hmac 0.13.0",
1889
2182
  "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",
2183
+ "p256 0.14.0-rc.8",
2184
+ "p384 0.14.0-rc.8",
2185
+ "p521 0.14.0-rc.8",
2186
+ "rand_core 0.10.0",
2187
+ "rsa 0.10.0-rc.17",
2188
+ "sec1 0.8.1",
2189
+ "sha1 0.11.0",
2190
+ "sha2 0.11.0",
2191
+ "signature 3.0.0-rc.10",
1899
2192
  "ssh-cipher",
1900
2193
  "ssh-encoding",
1901
2194
  "subtle",
1902
2195
  "zeroize",
1903
2196
  ]
1904
2197
 
2198
+ [[package]]
2199
+ name = "internal-russh-num-bigint"
2200
+ version = "0.5.0"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "ae8e22120c32fb4d19ec55fba35015f57095cd95a2e3b732e44457f5915b2ee8"
2203
+ dependencies = [
2204
+ "num-integer",
2205
+ "num-traits",
2206
+ "rand 0.10.0",
2207
+ "rand_core 0.10.0",
2208
+ ]
2209
+
1905
2210
  [[package]]
1906
2211
  name = "interpolator"
1907
2212
  version = "0.5.0"
@@ -2120,6 +2425,26 @@ dependencies = [
2120
2425
  "wasm-bindgen",
2121
2426
  ]
2122
2427
 
2428
+ [[package]]
2429
+ name = "keccak"
2430
+ version = "0.2.0"
2431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2432
+ checksum = "9e24a010dd405bd7ed803e5253182815b41bf2e6a80cc3bfc066658e03a198aa"
2433
+ dependencies = [
2434
+ "cfg-if",
2435
+ "cpufeatures 0.3.0",
2436
+ ]
2437
+
2438
+ [[package]]
2439
+ name = "kem"
2440
+ version = "0.3.0"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "01737161ba802849cfd486b5bd209d38ba4943494c249a8126005170c7621edd"
2443
+ dependencies = [
2444
+ "crypto-common 0.2.1",
2445
+ "rand_core 0.10.0",
2446
+ ]
2447
+
2123
2448
  [[package]]
2124
2449
  name = "lazy_static"
2125
2450
  version = "1.5.0"
@@ -2266,6 +2591,30 @@ dependencies = [
2266
2591
  "windows-sys 0.61.2",
2267
2592
  ]
2268
2593
 
2594
+ [[package]]
2595
+ name = "ml-kem"
2596
+ version = "0.3.0-rc.2"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "04437cb1a66c0b78740927b76cc61f218344b9f6ef3dd430e283274a718ef0e9"
2599
+ dependencies = [
2600
+ "hybrid-array",
2601
+ "kem",
2602
+ "module-lattice",
2603
+ "rand_core 0.10.0",
2604
+ "sha3",
2605
+ ]
2606
+
2607
+ [[package]]
2608
+ name = "module-lattice"
2609
+ version = "0.2.1"
2610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2611
+ checksum = "164eb3faeaecbd14b0b2a917c1b4d0c035097a9c559b0bed85c2cdd032bc8faa"
2612
+ dependencies = [
2613
+ "ctutils",
2614
+ "hybrid-array",
2615
+ "num-traits",
2616
+ ]
2617
+
2269
2618
  [[package]]
2270
2619
  name = "monty"
2271
2620
  version = "0.0.8"
@@ -2367,9 +2716,9 @@ dependencies = [
2367
2716
 
2368
2717
  [[package]]
2369
2718
  name = "nix"
2370
- version = "0.29.0"
2719
+ version = "0.31.2"
2371
2720
  source = "registry+https://github.com/rust-lang/crates.io-index"
2372
- checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
2721
+ checksum = "5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3"
2373
2722
  dependencies = [
2374
2723
  "bitflags",
2375
2724
  "cfg-if",
@@ -2397,7 +2746,6 @@ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2397
2746
  dependencies = [
2398
2747
  "num-integer",
2399
2748
  "num-traits",
2400
- "rand 0.8.5",
2401
2749
  "serde",
2402
2750
  ]
2403
2751
 
@@ -2413,6 +2761,7 @@ dependencies = [
2413
2761
  "num-iter",
2414
2762
  "num-traits",
2415
2763
  "rand 0.8.5",
2764
+ "serde",
2416
2765
  "smallvec",
2417
2766
  "zeroize",
2418
2767
  ]
@@ -2718,38 +3067,79 @@ version = "0.13.2"
2718
3067
  source = "registry+https://github.com/rust-lang/crates.io-index"
2719
3068
  checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
2720
3069
  dependencies = [
2721
- "ecdsa",
2722
- "elliptic-curve",
2723
- "primeorder",
3070
+ "ecdsa 0.16.9",
3071
+ "elliptic-curve 0.13.8",
3072
+ "primeorder 0.13.6",
2724
3073
  "sha2 0.10.9",
2725
3074
  ]
2726
3075
 
3076
+ [[package]]
3077
+ name = "p256"
3078
+ version = "0.14.0-rc.8"
3079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3080
+ checksum = "44f0a10fe314869359cb2901342b045f4e5a962ef9febc006f03d2a8c848fe4c"
3081
+ dependencies = [
3082
+ "ecdsa 0.17.0-rc.16",
3083
+ "elliptic-curve 0.14.0-rc.29",
3084
+ "primefield",
3085
+ "primeorder 0.14.0-rc.8",
3086
+ "sha2 0.11.0",
3087
+ ]
3088
+
2727
3089
  [[package]]
2728
3090
  name = "p384"
2729
3091
  version = "0.13.1"
2730
3092
  source = "registry+https://github.com/rust-lang/crates.io-index"
2731
3093
  checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
2732
3094
  dependencies = [
2733
- "ecdsa",
2734
- "elliptic-curve",
2735
- "primeorder",
3095
+ "ecdsa 0.16.9",
3096
+ "elliptic-curve 0.13.8",
3097
+ "primeorder 0.13.6",
2736
3098
  "sha2 0.10.9",
2737
3099
  ]
2738
3100
 
3101
+ [[package]]
3102
+ name = "p384"
3103
+ version = "0.14.0-rc.8"
3104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3105
+ checksum = "b079e66810c55ab3d6ba424e056dc4aefcdb8046c8c3f3816142edbdd7af7721"
3106
+ dependencies = [
3107
+ "ecdsa 0.17.0-rc.16",
3108
+ "elliptic-curve 0.14.0-rc.29",
3109
+ "fiat-crypto 0.3.0",
3110
+ "primefield",
3111
+ "primeorder 0.14.0-rc.8",
3112
+ "sha2 0.11.0",
3113
+ ]
3114
+
2739
3115
  [[package]]
2740
3116
  name = "p521"
2741
3117
  version = "0.13.3"
2742
3118
  source = "registry+https://github.com/rust-lang/crates.io-index"
2743
3119
  checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
2744
3120
  dependencies = [
2745
- "base16ct",
2746
- "ecdsa",
2747
- "elliptic-curve",
2748
- "primeorder",
3121
+ "base16ct 0.2.0",
3122
+ "ecdsa 0.16.9",
3123
+ "elliptic-curve 0.13.8",
3124
+ "primeorder 0.13.6",
2749
3125
  "rand_core 0.6.4",
2750
3126
  "sha2 0.10.9",
2751
3127
  ]
2752
3128
 
3129
+ [[package]]
3130
+ name = "p521"
3131
+ version = "0.14.0-rc.8"
3132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3133
+ checksum = "9eecc34c4c6e6596d5271fecf90ac4f16593fa198e77282214d0c22736aa9266"
3134
+ dependencies = [
3135
+ "base16ct 1.0.0",
3136
+ "ecdsa 0.17.0-rc.16",
3137
+ "elliptic-curve 0.14.0-rc.29",
3138
+ "primefield",
3139
+ "primeorder 0.14.0-rc.8",
3140
+ "sha2 0.11.0",
3141
+ ]
3142
+
2753
3143
  [[package]]
2754
3144
  name = "page_size"
2755
3145
  version = "0.6.0"
@@ -2772,23 +3162,26 @@ dependencies = [
2772
3162
  "rand 0.8.5",
2773
3163
  "thiserror 1.0.69",
2774
3164
  "tokio",
2775
- "windows",
3165
+ "windows 0.58.0",
2776
3166
  ]
2777
3167
 
2778
3168
  [[package]]
2779
3169
  name = "pageant"
2780
- version = "0.0.3"
3170
+ version = "0.2.0"
2781
3171
  source = "registry+https://github.com/rust-lang/crates.io-index"
2782
- checksum = "bdd27df01428302f915ea74737fe88170dd1bab4cbd00ff9548ca85618fcd4e4"
3172
+ checksum = "1b537f975f6d8dcf48db368d7ec209d583b015713b5df0f5d92d2631e4ff5595"
2783
3173
  dependencies = [
3174
+ "byteorder",
2784
3175
  "bytes",
2785
3176
  "delegate",
2786
3177
  "futures",
2787
3178
  "log",
2788
3179
  "rand 0.8.5",
3180
+ "sha2 0.10.9",
2789
3181
  "thiserror 1.0.69",
2790
3182
  "tokio",
2791
- "windows",
3183
+ "windows 0.62.2",
3184
+ "windows-strings 0.5.1",
2792
3185
  ]
2793
3186
 
2794
3187
  [[package]]
@@ -2849,7 +3242,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
3242
  checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
2850
3243
  dependencies = [
2851
3244
  "digest 0.10.7",
2852
- "hmac",
3245
+ "hmac 0.12.1",
3246
+ ]
3247
+
3248
+ [[package]]
3249
+ name = "pbkdf2"
3250
+ version = "0.13.0-rc.10"
3251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3252
+ checksum = "1f24f3eb2f4471b1730d59e4b730b747939960a8c7eb0c33c5a9076f2d3dddea"
3253
+ dependencies = [
3254
+ "digest 0.11.2",
3255
+ "hmac 0.13.0",
2853
3256
  ]
2854
3257
 
2855
3258
  [[package]]
@@ -2861,6 +3264,15 @@ dependencies = [
2861
3264
  "base64ct",
2862
3265
  ]
2863
3266
 
3267
+ [[package]]
3268
+ name = "pem-rfc7468"
3269
+ version = "1.0.0"
3270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3271
+ checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
3272
+ dependencies = [
3273
+ "base64ct",
3274
+ ]
3275
+
2864
3276
  [[package]]
2865
3277
  name = "percent-encoding"
2866
3278
  version = "2.3.2"
@@ -2960,9 +3372,19 @@ version = "0.7.5"
2960
3372
  source = "registry+https://github.com/rust-lang/crates.io-index"
2961
3373
  checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
2962
3374
  dependencies = [
2963
- "der",
2964
- "pkcs8",
2965
- "spki",
3375
+ "der 0.7.10",
3376
+ "pkcs8 0.10.2",
3377
+ "spki 0.7.3",
3378
+ ]
3379
+
3380
+ [[package]]
3381
+ name = "pkcs1"
3382
+ version = "0.8.0-rc.4"
3383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3384
+ checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e"
3385
+ dependencies = [
3386
+ "der 0.8.0",
3387
+ "spki 0.8.0",
2966
3388
  ]
2967
3389
 
2968
3390
  [[package]]
@@ -2971,13 +3393,30 @@ version = "0.7.1"
2971
3393
  source = "registry+https://github.com/rust-lang/crates.io-index"
2972
3394
  checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6"
2973
3395
  dependencies = [
2974
- "aes",
2975
- "cbc",
2976
- "der",
2977
- "pbkdf2",
2978
- "scrypt",
3396
+ "aes 0.8.4",
3397
+ "cbc 0.1.2",
3398
+ "der 0.7.10",
3399
+ "pbkdf2 0.12.2",
3400
+ "scrypt 0.11.0",
2979
3401
  "sha2 0.10.9",
2980
- "spki",
3402
+ "spki 0.7.3",
3403
+ ]
3404
+
3405
+ [[package]]
3406
+ name = "pkcs5"
3407
+ version = "0.8.0-rc.13"
3408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3409
+ checksum = "c5a777c6e26664bc9504b3ce3f6133f8f20d9071f130a4f9fcbd3186959d8dd6"
3410
+ dependencies = [
3411
+ "aes 0.9.0-rc.4",
3412
+ "aes-gcm 0.11.0-rc.3",
3413
+ "cbc 0.2.0-rc.4",
3414
+ "der 0.8.0",
3415
+ "pbkdf2 0.13.0-rc.10",
3416
+ "rand_core 0.10.0",
3417
+ "scrypt 0.12.0-rc.10",
3418
+ "sha2 0.11.0",
3419
+ "spki 0.8.0",
2981
3420
  ]
2982
3421
 
2983
3422
  [[package]]
@@ -2986,10 +3425,22 @@ version = "0.10.2"
2986
3425
  source = "registry+https://github.com/rust-lang/crates.io-index"
2987
3426
  checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2988
3427
  dependencies = [
2989
- "der",
2990
- "pkcs5",
3428
+ "der 0.7.10",
3429
+ "pkcs5 0.7.1",
2991
3430
  "rand_core 0.6.4",
2992
- "spki",
3431
+ "spki 0.7.3",
3432
+ ]
3433
+
3434
+ [[package]]
3435
+ name = "pkcs8"
3436
+ version = "0.11.0-rc.11"
3437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3438
+ checksum = "12922b6296c06eb741b02d7b5161e3aaa22864af38dfa025a1a3ba3f68c84577"
3439
+ dependencies = [
3440
+ "der 0.8.0",
3441
+ "pkcs5 0.8.0-rc.13",
3442
+ "rand_core 0.10.0",
3443
+ "spki 0.8.0",
2993
3444
  ]
2994
3445
 
2995
3446
  [[package]]
@@ -3028,7 +3479,7 @@ checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
3028
3479
  dependencies = [
3029
3480
  "cpufeatures 0.2.17",
3030
3481
  "opaque-debug",
3031
- "universal-hash",
3482
+ "universal-hash 0.5.1",
3032
3483
  ]
3033
3484
 
3034
3485
  [[package]]
@@ -3040,7 +3491,18 @@ dependencies = [
3040
3491
  "cfg-if",
3041
3492
  "cpufeatures 0.2.17",
3042
3493
  "opaque-debug",
3043
- "universal-hash",
3494
+ "universal-hash 0.5.1",
3495
+ ]
3496
+
3497
+ [[package]]
3498
+ name = "polyval"
3499
+ version = "0.7.1"
3500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3501
+ checksum = "7dfc63250416fea14f5749b90725916a6c903f599d51cb635aa7a52bfd03eede"
3502
+ dependencies = [
3503
+ "cpubits",
3504
+ "cpufeatures 0.3.0",
3505
+ "universal-hash 0.6.1",
3044
3506
  ]
3045
3507
 
3046
3508
  [[package]]
@@ -3109,13 +3571,36 @@ dependencies = [
3109
3571
  "syn",
3110
3572
  ]
3111
3573
 
3574
+ [[package]]
3575
+ name = "primefield"
3576
+ version = "0.14.0-rc.8"
3577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3578
+ checksum = "c6543f5eec854fbf74ba5ef651fbdc9408919b47c3e1526623687135c16d12e9"
3579
+ dependencies = [
3580
+ "crypto-bigint 0.7.3",
3581
+ "crypto-common 0.2.1",
3582
+ "rand_core 0.10.0",
3583
+ "rustcrypto-ff",
3584
+ "subtle",
3585
+ "zeroize",
3586
+ ]
3587
+
3112
3588
  [[package]]
3113
3589
  name = "primeorder"
3114
3590
  version = "0.13.6"
3115
3591
  source = "registry+https://github.com/rust-lang/crates.io-index"
3116
3592
  checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
3117
3593
  dependencies = [
3118
- "elliptic-curve",
3594
+ "elliptic-curve 0.13.8",
3595
+ ]
3596
+
3597
+ [[package]]
3598
+ name = "primeorder"
3599
+ version = "0.14.0-rc.8"
3600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3601
+ checksum = "569d9ad6ef822bb0322c7e7d84e5e286244050bd5246cac4c013535ae91c2c90"
3602
+ dependencies = [
3603
+ "elliptic-curve 0.14.0-rc.29",
3119
3604
  ]
3120
3605
 
3121
3606
  [[package]]
@@ -3254,9 +3739,9 @@ dependencies = [
3254
3739
 
3255
3740
  [[package]]
3256
3741
  name = "python3-dll-a"
3257
- version = "0.2.14"
3742
+ version = "0.2.15"
3258
3743
  source = "registry+https://github.com/rust-lang/crates.io-index"
3259
- checksum = "d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8"
3744
+ checksum = "d80ba7540edb18890d444c5aa8e1f1f99b1bdf26fb26ae383135325f4a36042b"
3260
3745
  dependencies = [
3261
3746
  "cc",
3262
3747
  ]
@@ -3387,6 +3872,17 @@ dependencies = [
3387
3872
  "rand_core 0.9.5",
3388
3873
  ]
3389
3874
 
3875
+ [[package]]
3876
+ name = "rand"
3877
+ version = "0.10.0"
3878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3879
+ checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8"
3880
+ dependencies = [
3881
+ "chacha20 0.10.0",
3882
+ "getrandom 0.4.2",
3883
+ "rand_core 0.10.0",
3884
+ ]
3885
+
3390
3886
  [[package]]
3391
3887
  name = "rand_chacha"
3392
3888
  version = "0.3.1"
@@ -3425,6 +3921,12 @@ dependencies = [
3425
3921
  "getrandom 0.3.4",
3426
3922
  ]
3427
3923
 
3924
+ [[package]]
3925
+ name = "rand_core"
3926
+ version = "0.10.0"
3927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3928
+ checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
3929
+
3428
3930
  [[package]]
3429
3931
  name = "rand_distr"
3430
3932
  version = "0.4.3"
@@ -3580,7 +4082,17 @@ version = "0.4.0"
3580
4082
  source = "registry+https://github.com/rust-lang/crates.io-index"
3581
4083
  checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
3582
4084
  dependencies = [
3583
- "hmac",
4085
+ "hmac 0.12.1",
4086
+ "subtle",
4087
+ ]
4088
+
4089
+ [[package]]
4090
+ name = "rfc6979"
4091
+ version = "0.5.0-rc.5"
4092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4093
+ checksum = "23a3127ee32baec36af75b4107082d9bd823501ec14a4e016be4b6b37faa74ae"
4094
+ dependencies = [
4095
+ "hmac 0.13.0",
3584
4096
  "subtle",
3585
4097
  ]
3586
4098
 
@@ -3594,7 +4106,7 @@ dependencies = [
3594
4106
  "cfg-if",
3595
4107
  "getrandom 0.2.17",
3596
4108
  "libc",
3597
- "untrusted",
4109
+ "untrusted 0.9.0",
3598
4110
  "windows-sys 0.52.0",
3599
4111
  ]
3600
4112
 
@@ -3609,16 +4121,35 @@ dependencies = [
3609
4121
  "num-bigint-dig",
3610
4122
  "num-integer",
3611
4123
  "num-traits",
3612
- "pkcs1",
3613
- "pkcs8",
4124
+ "pkcs1 0.7.5",
4125
+ "pkcs8 0.10.2",
3614
4126
  "rand_core 0.6.4",
3615
4127
  "sha2 0.10.9",
3616
- "signature",
3617
- "spki",
4128
+ "signature 2.2.0",
4129
+ "spki 0.7.3",
3618
4130
  "subtle",
3619
4131
  "zeroize",
3620
4132
  ]
3621
4133
 
4134
+ [[package]]
4135
+ name = "rsa"
4136
+ version = "0.10.0-rc.17"
4137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4138
+ checksum = "87ed3e93fc7e473e464b9726f4759659e72bc8665e4b8ea227547024f416d905"
4139
+ dependencies = [
4140
+ "const-oid 0.10.2",
4141
+ "crypto-bigint 0.7.3",
4142
+ "crypto-primes",
4143
+ "digest 0.11.2",
4144
+ "pkcs1 0.8.0-rc.4",
4145
+ "pkcs8 0.11.0-rc.11",
4146
+ "rand_core 0.10.0",
4147
+ "sha2 0.11.0",
4148
+ "signature 3.0.0-rc.10",
4149
+ "spki 0.8.0",
4150
+ "zeroize",
4151
+ ]
4152
+
3622
4153
  [[package]]
3623
4154
  name = "ruff_python_ast"
3624
4155
  version = "0.0.0"
@@ -3687,65 +4218,67 @@ dependencies = [
3687
4218
 
3688
4219
  [[package]]
3689
4220
  name = "russh"
3690
- version = "0.52.1"
4221
+ version = "0.60.0"
3691
4222
  source = "registry+https://github.com/rust-lang/crates.io-index"
3692
- checksum = "bcc2b4e549ed83a4e36517807367b538c6d00b603ce138637f50a2218222e23f"
4223
+ checksum = "3b530252dc3ff163b73a7e48c97b925450d2ca53edcb466a46ad0a231e45f998"
3693
4224
  dependencies = [
3694
- "aes",
3695
- "aes-gcm",
4225
+ "aes 0.8.4",
4226
+ "aws-lc-rs",
3696
4227
  "bitflags",
3697
- "block-padding",
4228
+ "block-padding 0.3.3",
3698
4229
  "byteorder",
3699
4230
  "bytes",
3700
- "cbc",
3701
- "chacha20",
3702
- "ctr",
3703
- "curve25519-dalek",
4231
+ "cbc 0.1.2",
4232
+ "cipher 0.5.1",
4233
+ "crypto-bigint 0.7.3",
4234
+ "ctr 0.9.2",
4235
+ "curve25519-dalek 5.0.0-pre.6",
3704
4236
  "data-encoding",
3705
4237
  "delegate",
3706
- "der",
4238
+ "der 0.8.0",
3707
4239
  "digest 0.10.7",
3708
- "ecdsa",
3709
- "ed25519-dalek",
3710
- "elliptic-curve",
4240
+ "ecdsa 0.17.0-rc.16",
4241
+ "ed25519-dalek 3.0.0-pre.6",
4242
+ "elliptic-curve 0.14.0-rc.29",
3711
4243
  "enum_dispatch",
3712
4244
  "flate2",
3713
4245
  "futures",
3714
- "generic-array",
4246
+ "generic-array 1.3.5",
3715
4247
  "getrandom 0.2.17",
3716
4248
  "hex-literal",
3717
- "hmac",
3718
- "home",
3719
- "inout",
4249
+ "hmac 0.12.1",
4250
+ "inout 0.1.4",
3720
4251
  "internal-russh-forked-ssh-key",
4252
+ "internal-russh-num-bigint",
3721
4253
  "log",
3722
4254
  "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",
4255
+ "ml-kem",
4256
+ "module-lattice",
4257
+ "p256 0.14.0-rc.8",
4258
+ "p384 0.14.0-rc.8",
4259
+ "p521 0.14.0-rc.8",
4260
+ "pageant 0.2.0",
4261
+ "pbkdf2 0.12.2",
4262
+ "pkcs1 0.8.0-rc.4",
4263
+ "pkcs5 0.8.0-rc.13",
4264
+ "pkcs8 0.11.0-rc.11",
4265
+ "polyval 0.7.1",
4266
+ "rand 0.10.0",
4267
+ "rand_core 0.10.0",
4268
+ "rsa 0.10.0-rc.17",
4269
+ "russh-cryptovec 0.59.0",
3738
4270
  "russh-util 0.52.0",
3739
- "sec1",
4271
+ "sec1 0.8.1",
3740
4272
  "sha1 0.10.6",
3741
4273
  "sha2 0.10.9",
3742
- "signature",
3743
- "spki",
4274
+ "signature 3.0.0-rc.10",
4275
+ "spki 0.8.0",
3744
4276
  "ssh-encoding",
3745
4277
  "subtle",
3746
- "thiserror 1.0.69",
4278
+ "thiserror 2.0.18",
3747
4279
  "tokio",
3748
4280
  "typenum",
4281
+ "universal-hash 0.6.1",
3749
4282
  "zeroize",
3750
4283
  ]
3751
4284
 
@@ -3762,15 +4295,14 @@ dependencies = [
3762
4295
 
3763
4296
  [[package]]
3764
4297
  name = "russh-cryptovec"
3765
- version = "0.52.0"
4298
+ version = "0.59.0"
3766
4299
  source = "registry+https://github.com/rust-lang/crates.io-index"
3767
- checksum = "4fb0ed583ff0f6b4aa44c7867dd7108df01b30571ee9423e250b4cc939f8c6cf"
4300
+ checksum = "36140e8a20297bc2e8338807c3d9ca911f7fa49d7539cbcd6d48d3befd70efd8"
3768
4301
  dependencies = [
3769
- "libc",
3770
4302
  "log",
3771
4303
  "nix",
3772
4304
  "ssh-encoding",
3773
- "winapi",
4305
+ "windows-sys 0.61.2",
3774
4306
  ]
3775
4307
 
3776
4308
  [[package]]
@@ -3779,47 +4311,47 @@ version = "0.49.2"
3779
4311
  source = "registry+https://github.com/rust-lang/crates.io-index"
3780
4312
  checksum = "788a2439ce385856585346beb37c48e7c9eb5de5f4f00736720a19ffdb3f5bb5"
3781
4313
  dependencies = [
3782
- "aes",
4314
+ "aes 0.8.4",
3783
4315
  "async-trait",
3784
4316
  "bcrypt-pbkdf",
3785
- "block-padding",
4317
+ "block-padding 0.3.3",
3786
4318
  "byteorder",
3787
4319
  "bytes",
3788
- "cbc",
3789
- "ctr",
4320
+ "cbc 0.1.2",
4321
+ "ctr 0.9.2",
3790
4322
  "data-encoding",
3791
- "der",
4323
+ "der 0.7.10",
3792
4324
  "digest 0.10.7",
3793
- "ecdsa",
3794
- "ed25519-dalek",
3795
- "elliptic-curve",
4325
+ "ecdsa 0.16.9",
4326
+ "ed25519-dalek 2.2.0",
4327
+ "elliptic-curve 0.13.8",
3796
4328
  "futures",
3797
4329
  "getrandom 0.2.17",
3798
- "hmac",
4330
+ "hmac 0.12.1",
3799
4331
  "home",
3800
- "inout",
4332
+ "inout 0.1.4",
3801
4333
  "log",
3802
4334
  "md5",
3803
4335
  "num-integer",
3804
- "p256",
3805
- "p384",
3806
- "p521",
4336
+ "p256 0.13.2",
4337
+ "p384 0.13.1",
4338
+ "p521 0.13.3",
3807
4339
  "pageant 0.0.1",
3808
- "pbkdf2",
3809
- "pkcs1",
3810
- "pkcs5",
3811
- "pkcs8",
4340
+ "pbkdf2 0.12.2",
4341
+ "pkcs1 0.7.5",
4342
+ "pkcs5 0.7.1",
4343
+ "pkcs8 0.10.2",
3812
4344
  "rand 0.8.5",
3813
4345
  "rand_core 0.6.4",
3814
- "rsa",
4346
+ "rsa 0.9.10",
3815
4347
  "russh-cryptovec 0.48.0",
3816
4348
  "russh-util 0.48.0",
3817
- "sec1",
4349
+ "sec1 0.7.3",
3818
4350
  "serde",
3819
4351
  "sha1 0.10.6",
3820
4352
  "sha2 0.10.9",
3821
- "signature",
3822
- "spki",
4353
+ "signature 2.2.0",
4354
+ "spki 0.7.3",
3823
4355
  "ssh-encoding",
3824
4356
  "ssh-key",
3825
4357
  "thiserror 1.0.69",
@@ -3868,6 +4400,27 @@ dependencies = [
3868
4400
  "semver",
3869
4401
  ]
3870
4402
 
4403
+ [[package]]
4404
+ name = "rustcrypto-ff"
4405
+ version = "0.14.0-rc.1"
4406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4407
+ checksum = "fd2a8adb347447693cd2ba0d218c4b66c62da9b0a5672b17b981e4291ec65ff6"
4408
+ dependencies = [
4409
+ "rand_core 0.10.0",
4410
+ "subtle",
4411
+ ]
4412
+
4413
+ [[package]]
4414
+ name = "rustcrypto-group"
4415
+ version = "0.14.0-rc.1"
4416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4417
+ checksum = "369f9b61aa45933c062c9f6b5c3c50ab710687eca83dd3802653b140b43f85ed"
4418
+ dependencies = [
4419
+ "rand_core 0.10.0",
4420
+ "rustcrypto-ff",
4421
+ "subtle",
4422
+ ]
4423
+
3871
4424
  [[package]]
3872
4425
  name = "rustix"
3873
4426
  version = "1.1.4"
@@ -3953,7 +4506,7 @@ dependencies = [
3953
4506
  "aws-lc-rs",
3954
4507
  "ring",
3955
4508
  "rustls-pki-types",
3956
- "untrusted",
4509
+ "untrusted 0.9.0",
3957
4510
  ]
3958
4511
 
3959
4512
  [[package]]
@@ -3995,7 +4548,17 @@ version = "0.10.2"
3995
4548
  source = "registry+https://github.com/rust-lang/crates.io-index"
3996
4549
  checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
3997
4550
  dependencies = [
3998
- "cipher",
4551
+ "cipher 0.4.4",
4552
+ ]
4553
+
4554
+ [[package]]
4555
+ name = "salsa20"
4556
+ version = "0.11.0"
4557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4558
+ checksum = "2f874456e72520ff1375a06c588eaf074b0f01f9e9e1aada45bd9b7954a6e42c"
4559
+ dependencies = [
4560
+ "cfg-if",
4561
+ "cipher 0.5.1",
3999
4562
  ]
4000
4563
 
4001
4564
  [[package]]
@@ -4062,11 +4625,23 @@ version = "0.11.0"
4062
4625
  source = "registry+https://github.com/rust-lang/crates.io-index"
4063
4626
  checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
4064
4627
  dependencies = [
4065
- "pbkdf2",
4066
- "salsa20",
4628
+ "pbkdf2 0.12.2",
4629
+ "salsa20 0.10.2",
4067
4630
  "sha2 0.10.9",
4068
4631
  ]
4069
4632
 
4633
+ [[package]]
4634
+ name = "scrypt"
4635
+ version = "0.12.0-rc.10"
4636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4637
+ checksum = "e03ed5b54ed5fcc8e016cd94301416bc2c01c05c87a6742b97468337c8804598"
4638
+ dependencies = [
4639
+ "cfg-if",
4640
+ "pbkdf2 0.13.0-rc.10",
4641
+ "salsa20 0.11.0",
4642
+ "sha2 0.11.0",
4643
+ ]
4644
+
4070
4645
  [[package]]
4071
4646
  name = "sdd"
4072
4647
  version = "3.0.10"
@@ -4079,10 +4654,24 @@ version = "0.7.3"
4079
4654
  source = "registry+https://github.com/rust-lang/crates.io-index"
4080
4655
  checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
4081
4656
  dependencies = [
4082
- "base16ct",
4083
- "der",
4084
- "generic-array",
4085
- "pkcs8",
4657
+ "base16ct 0.2.0",
4658
+ "der 0.7.10",
4659
+ "generic-array 0.14.7",
4660
+ "pkcs8 0.10.2",
4661
+ "subtle",
4662
+ "zeroize",
4663
+ ]
4664
+
4665
+ [[package]]
4666
+ name = "sec1"
4667
+ version = "0.8.1"
4668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4669
+ checksum = "d56d437c2f19203ce5f7122e507831de96f3d2d4d3be5af44a0b0a09d8a80e4d"
4670
+ dependencies = [
4671
+ "base16ct 1.0.0",
4672
+ "ctutils",
4673
+ "der 0.8.0",
4674
+ "hybrid-array",
4086
4675
  "subtle",
4087
4676
  "zeroize",
4088
4677
  ]
@@ -4182,6 +4771,16 @@ dependencies = [
4182
4771
  "zmij",
4183
4772
  ]
4184
4773
 
4774
+ [[package]]
4775
+ name = "serdect"
4776
+ version = "0.4.2"
4777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4778
+ checksum = "9af4a3e75ebd5599b30d4de5768e00b5095d518a79fefc3ecbaf77e665d1ec06"
4779
+ dependencies = [
4780
+ "base16ct 1.0.0",
4781
+ "serde",
4782
+ ]
4783
+
4185
4784
  [[package]]
4186
4785
  name = "serial_test"
4187
4786
  version = "3.4.0"
@@ -4252,6 +4851,16 @@ dependencies = [
4252
4851
  "digest 0.11.2",
4253
4852
  ]
4254
4853
 
4854
+ [[package]]
4855
+ name = "sha3"
4856
+ version = "0.11.0"
4857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4858
+ checksum = "be176f1a57ce4e3d31c1a166222d9768de5954f811601fb7ca06fc8203905ce1"
4859
+ dependencies = [
4860
+ "digest 0.11.2",
4861
+ "keccak",
4862
+ ]
4863
+
4255
4864
  [[package]]
4256
4865
  name = "shlex"
4257
4866
  version = "1.3.0"
@@ -4278,6 +4887,16 @@ dependencies = [
4278
4887
  "rand_core 0.6.4",
4279
4888
  ]
4280
4889
 
4890
+ [[package]]
4891
+ name = "signature"
4892
+ version = "3.0.0-rc.10"
4893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4894
+ checksum = "7f1880df446116126965eeec169136b2e0251dba37c6223bcc819569550edea3"
4895
+ dependencies = [
4896
+ "digest 0.11.2",
4897
+ "rand_core 0.10.0",
4898
+ ]
4899
+
4281
4900
  [[package]]
4282
4901
  name = "simba"
4283
4902
  version = "0.9.1"
@@ -4356,7 +4975,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4356
4975
  checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
4357
4976
  dependencies = [
4358
4977
  "base64ct",
4359
- "der",
4978
+ "der 0.7.10",
4979
+ ]
4980
+
4981
+ [[package]]
4982
+ name = "spki"
4983
+ version = "0.8.0"
4984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4985
+ checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
4986
+ dependencies = [
4987
+ "base64ct",
4988
+ "der 0.8.0",
4360
4989
  ]
4361
4990
 
4362
4991
  [[package]]
@@ -4365,12 +4994,12 @@ version = "0.2.0"
4365
4994
  source = "registry+https://github.com/rust-lang/crates.io-index"
4366
4995
  checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
4367
4996
  dependencies = [
4368
- "aes",
4369
- "aes-gcm",
4370
- "cbc",
4371
- "chacha20",
4372
- "cipher",
4373
- "ctr",
4997
+ "aes 0.8.4",
4998
+ "aes-gcm 0.10.3",
4999
+ "cbc 0.1.2",
5000
+ "chacha20 0.9.1",
5001
+ "cipher 0.4.4",
5002
+ "ctr 0.9.2",
4374
5003
  "poly1305",
4375
5004
  "ssh-encoding",
4376
5005
  "subtle",
@@ -4384,7 +5013,7 @@ checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
4384
5013
  dependencies = [
4385
5014
  "base64ct",
4386
5015
  "bytes",
4387
- "pem-rfc7468",
5016
+ "pem-rfc7468 0.7.0",
4388
5017
  "sha2 0.10.9",
4389
5018
  ]
4390
5019
 
@@ -4395,16 +5024,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4395
5024
  checksum = "3b86f5297f0f04d08cabaa0f6bff7cb6aec4d9c3b49d87990d63da9d9156a8c3"
4396
5025
  dependencies = [
4397
5026
  "bcrypt-pbkdf",
4398
- "ed25519-dalek",
5027
+ "ed25519-dalek 2.2.0",
4399
5028
  "num-bigint-dig",
4400
- "p256",
4401
- "p384",
4402
- "p521",
5029
+ "p256 0.13.2",
5030
+ "p384 0.13.1",
5031
+ "p521 0.13.3",
4403
5032
  "rand_core 0.6.4",
4404
- "rsa",
4405
- "sec1",
5033
+ "rsa 0.9.10",
5034
+ "sec1 0.7.3",
4406
5035
  "sha2 0.10.9",
4407
- "signature",
5036
+ "signature 2.2.0",
4408
5037
  "ssh-cipher",
4409
5038
  "ssh-encoding",
4410
5039
  "subtle",
@@ -4887,6 +5516,22 @@ dependencies = [
4887
5516
  "subtle",
4888
5517
  ]
4889
5518
 
5519
+ [[package]]
5520
+ name = "universal-hash"
5521
+ version = "0.6.1"
5522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5523
+ checksum = "f4987bdc12753382e0bec4a65c50738ffaabc998b9cdd1f952fb5f39b0048a96"
5524
+ dependencies = [
5525
+ "crypto-common 0.2.1",
5526
+ "ctutils",
5527
+ ]
5528
+
5529
+ [[package]]
5530
+ name = "untrusted"
5531
+ version = "0.7.1"
5532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5533
+ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
5534
+
4890
5535
  [[package]]
4891
5536
  name = "untrusted"
4892
5537
  version = "0.9.0"
@@ -5163,6 +5808,27 @@ dependencies = [
5163
5808
  "windows-targets 0.52.6",
5164
5809
  ]
5165
5810
 
5811
+ [[package]]
5812
+ name = "windows"
5813
+ version = "0.62.2"
5814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5815
+ checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
5816
+ dependencies = [
5817
+ "windows-collections",
5818
+ "windows-core 0.62.2",
5819
+ "windows-future",
5820
+ "windows-numerics",
5821
+ ]
5822
+
5823
+ [[package]]
5824
+ name = "windows-collections"
5825
+ version = "0.3.2"
5826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5827
+ checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
5828
+ dependencies = [
5829
+ "windows-core 0.62.2",
5830
+ ]
5831
+
5166
5832
  [[package]]
5167
5833
  name = "windows-core"
5168
5834
  version = "0.58.0"
@@ -5189,6 +5855,17 @@ dependencies = [
5189
5855
  "windows-strings 0.5.1",
5190
5856
  ]
5191
5857
 
5858
+ [[package]]
5859
+ name = "windows-future"
5860
+ version = "0.3.2"
5861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5862
+ checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
5863
+ dependencies = [
5864
+ "windows-core 0.62.2",
5865
+ "windows-link",
5866
+ "windows-threading",
5867
+ ]
5868
+
5192
5869
  [[package]]
5193
5870
  name = "windows-implement"
5194
5871
  version = "0.58.0"
@@ -5239,6 +5916,16 @@ version = "0.2.1"
5239
5916
  source = "registry+https://github.com/rust-lang/crates.io-index"
5240
5917
  checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
5241
5918
 
5919
+ [[package]]
5920
+ name = "windows-numerics"
5921
+ version = "0.3.1"
5922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5923
+ checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
5924
+ dependencies = [
5925
+ "windows-core 0.62.2",
5926
+ "windows-link",
5927
+ ]
5928
+
5242
5929
  [[package]]
5243
5930
  name = "windows-result"
5244
5931
  version = "0.2.0"
@@ -5360,6 +6047,15 @@ dependencies = [
5360
6047
  "windows_x86_64_msvc 0.53.1",
5361
6048
  ]
5362
6049
 
6050
+ [[package]]
6051
+ name = "windows-threading"
6052
+ version = "0.2.1"
6053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6054
+ checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
6055
+ dependencies = [
6056
+ "windows-link",
6057
+ ]
6058
+
5363
6059
  [[package]]
5364
6060
  name = "windows_aarch64_gnullvm"
5365
6061
  version = "0.42.2"