bashkit 0.9.0__tar.gz → 0.11.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (541) hide show
  1. {bashkit-0.9.0 → bashkit-0.11.0}/Cargo.lock +228 -262
  2. {bashkit-0.9.0 → bashkit-0.11.0}/Cargo.toml +2 -2
  3. {bashkit-0.9.0 → bashkit-0.11.0}/PKG-INFO +15 -2
  4. {bashkit-0.9.0/crates/bashkit-python → bashkit-0.11.0}/README.md +13 -1
  5. {bashkit-0.9.0 → bashkit-0.11.0}/bashkit/_bashkit.pyi +112 -9
  6. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/README.md +7 -7
  7. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/docs/compatibility.md +2 -2
  8. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/docs/threat-model.md +67 -0
  9. bashkit-0.11.0/crates/bashkit/examples/dump_builtins.rs +78 -0
  10. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/archive.rs +69 -2
  11. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/awk/interpreter.rs +207 -42
  12. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/awk/mod.rs +2 -20
  13. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/awk/parser.rs +12 -2
  14. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/awk/tests.rs +199 -1
  15. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/base64.rs +62 -17
  16. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/bc.rs +15 -0
  17. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/checksum.rs +69 -6
  18. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/compgen.rs +62 -43
  19. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/curl.rs +425 -77
  20. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/cuttr.rs +106 -52
  21. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/date.rs +42 -16
  22. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/environ.rs +67 -39
  23. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/expand.rs +85 -17
  24. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/expr.rs +28 -2
  25. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/git/client.rs +102 -14
  26. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/grep.rs +820 -86
  27. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/headtail.rs +82 -9
  28. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/help.rs +7 -0
  29. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/iconv.rs +17 -5
  30. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/join.rs +40 -2
  31. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/jq/compat.rs +10 -7
  32. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/jq/mod.rs +28 -1
  33. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/jq/tests.rs +45 -0
  34. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/limits.rs +19 -0
  35. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/ls/find.rs +209 -111
  36. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/ls/tests.rs +88 -0
  37. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/mod.rs +45 -0
  38. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/paste.rs +44 -12
  39. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/path.rs +226 -28
  40. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/python.rs +100 -33
  41. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/read.rs +117 -23
  42. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/rg/mod.rs +955 -207
  43. bashkit-0.11.0/crates/bashkit/src/builtins/search_common.rs +163 -0
  44. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/sortuniq.rs +29 -22
  45. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/sqlite/dot_commands.rs +135 -11
  46. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/sqlite/mod.rs +17 -6
  47. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/sqlite/parser.rs +22 -0
  48. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/sqlite/tests.rs +49 -0
  49. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/strings.rs +15 -7
  50. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/template.rs +2 -2
  51. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/tree.rs +145 -31
  52. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/typescript.rs +12 -2
  53. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/vars.rs +38 -4
  54. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/credential.rs +46 -1
  55. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/error.rs +10 -0
  56. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/fs/limits.rs +11 -0
  57. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/fs/memory.rs +245 -58
  58. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/fs/mountable.rs +50 -5
  59. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/fs/overlay.rs +177 -12
  60. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/fs/realfs.rs +38 -0
  61. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/interpreter/glob.rs +141 -32
  62. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/interpreter/mod.rs +1635 -450
  63. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/interpreter/state.rs +14 -0
  64. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/lib.rs +242 -32
  65. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/limits.rs +238 -115
  66. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/network/client.rs +6 -1
  67. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/parser/ast.rs +34 -0
  68. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/parser/budget.rs +11 -2
  69. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/parser/lexer.rs +302 -33
  70. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/parser/mod.rs +235 -67
  71. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/scripted_tool/execute.rs +108 -29
  72. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/tool.rs +59 -1
  73. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/tool_def.rs +87 -6
  74. bashkit-0.11.0/crates/bashkit/tests/integration/base64_binary_tests.rs +41 -0
  75. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/bash_source_tests.rs +52 -1
  76. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/blackbox_security_tests.rs +243 -0
  77. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/builtin_registry_tests.rs +22 -0
  78. bashkit-0.11.0/crates/bashkit/tests/integration/compgen_tests.rs +106 -0
  79. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/coreutils_differential_tests.rs +19 -1
  80. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/find_multi_path_tests.rs +70 -0
  81. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/git_inspection_tests.rs +133 -0
  82. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/harness_example_tests.rs +58 -1
  83. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/history_tests.rs +168 -0
  84. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/issue_873_test.rs +57 -0
  85. bashkit-0.11.0/crates/bashkit/tests/integration/limitations_doc_tests.rs +135 -0
  86. bashkit-0.11.0/crates/bashkit/tests/integration/limitations_evidence_tests.rs +128 -0
  87. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/live_mount_tests.rs +16 -0
  88. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/main.rs +5 -0
  89. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/output_truncation_tests.rs +15 -2
  90. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/python_integration_tests.rs +134 -2
  91. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/python_security_tests.rs +32 -8
  92. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/set_e_and_or_tests.rs +168 -0
  93. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/snapshot_tests.rs +26 -0
  94. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/spec_runner.rs +48 -2
  95. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/spec_tests.rs +1 -1
  96. bashkit-0.11.0/crates/bashkit/tests/integration/threat_model_doc_tests.rs +105 -0
  97. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/threat_model_tests.rs +366 -6
  98. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/tty_tests.rs +19 -0
  99. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/typescript_security_tests.rs +23 -0
  100. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/urandom_tests.rs +36 -0
  101. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +13 -0
  102. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +42 -0
  103. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +21 -0
  104. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +14 -0
  105. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +21 -0
  106. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/find.test.sh +19 -0
  107. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/mktemp.test.sh +1 -1
  108. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +15 -0
  109. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +5 -4
  110. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +7 -0
  111. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +15 -0
  112. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +27 -0
  113. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +7 -6
  114. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +11 -3
  115. {bashkit-0.9.0 → bashkit-0.11.0/crates/bashkit-python}/README.md +13 -1
  116. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/examples/bash_basics.py +7 -0
  117. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/src/lib.rs +1018 -113
  118. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/_bashkit_categories.py +111 -0
  119. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_async_callbacks.py +133 -0
  120. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_basic.py +7 -0
  121. bashkit-0.11.0/crates/bashkit-python/tests/test_custom_builtin_fs.py +284 -0
  122. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_fastapi_integration.py +32 -0
  123. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_jupyter_compat.py +111 -0
  124. bashkit-0.11.0/crates/bashkit-python/tests/test_teardown_determinism.py +187 -0
  125. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_vfs.py +3 -0
  126. {bashkit-0.9.0 → bashkit-0.11.0}/pyproject.toml +1 -0
  127. bashkit-0.9.0/crates/bashkit/src/builtins/search_common.rs +0 -73
  128. {bashkit-0.9.0 → bashkit-0.11.0}/bashkit/__init__.py +0 -0
  129. {bashkit-0.9.0 → bashkit-0.11.0}/bashkit/deepagents.py +0 -0
  130. {bashkit-0.9.0 → bashkit-0.11.0}/bashkit/langchain.py +0 -0
  131. {bashkit-0.9.0 → bashkit-0.11.0}/bashkit/py.typed +0 -0
  132. {bashkit-0.9.0 → bashkit-0.11.0}/bashkit/pydantic_ai.py +0 -0
  133. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/Cargo.toml +0 -0
  134. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/benches/file_ops.rs +0 -0
  135. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/benches/hotpath.rs +0 -0
  136. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/benches/parallel_execution.rs +0 -0
  137. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/benches/results/README.md +0 -0
  138. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/benches/results/criterion-file_ops-linux-x86_64-1779759850.md +0 -0
  139. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/benches/results/criterion-hotpath-attrs+shopt-linux-x86_64-1779759850.md +0 -0
  140. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/benches/results/criterion-hotpath-perf-linux-x86_64-1779744742.md +0 -0
  141. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/benches/results/criterion-parallel-(none)-linux-x86_64-1773469129.md +0 -0
  142. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1777865268.md +0 -0
  143. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/benches/sqlite.rs +0 -0
  144. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/docs/clap-builtins.md +0 -0
  145. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/docs/credential-injection.md +0 -0
  146. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/docs/custom_builtins.md +0 -0
  147. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/docs/hooks.md +0 -0
  148. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/docs/jq.md +0 -0
  149. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/docs/live_mounts.md +0 -0
  150. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/docs/logging.md +0 -0
  151. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/docs/python.md +0 -0
  152. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/docs/sqlite.md +0 -0
  153. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/docs/ssh.md +0 -0
  154. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/docs/typescript.md +0 -0
  155. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/agent_tool.rs +0 -0
  156. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/basic.rs +0 -0
  157. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/clap_builtin.rs +0 -0
  158. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/clap_builtin_subcommands.rs +0 -0
  159. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/custom_backend.rs +0 -0
  160. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/custom_builtins.rs +0 -0
  161. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
  162. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/custom_fs.rs +0 -0
  163. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/git_workflow.rs +0 -0
  164. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/live_mounts.rs +0 -0
  165. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/python_external_functions.rs +0 -0
  166. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/python_scripts.rs +0 -0
  167. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/realfs_readonly.rs +0 -0
  168. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
  169. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/resource_limits.rs +0 -0
  170. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/scripted_tool.rs +0 -0
  171. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/show_tool_output.rs +0 -0
  172. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/sqlite_basic.rs +0 -0
  173. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/sqlite_workflow.rs +0 -0
  174. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/ssh_supabase.rs +0 -0
  175. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/streaming_output.rs +0 -0
  176. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/text_files.rs +0 -0
  177. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/text_processing.rs +0 -0
  178. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
  179. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/typescript_scripts.rs +0 -0
  180. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/examples/virtual_identity.rs +0 -0
  181. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/out file.txt +0 -0
  182. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +0 -0
  183. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/alias.rs +0 -0
  184. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
  185. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/assert.rs +0 -0
  186. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/caller.rs +0 -0
  187. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/cat.rs +0 -0
  188. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/clap_env.rs +0 -0
  189. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/clear.rs +0 -0
  190. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/column.rs +0 -0
  191. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/comm.rs +0 -0
  192. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/csv.rs +0 -0
  193. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/diff.rs +0 -0
  194. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/dirstack.rs +0 -0
  195. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/disk.rs +0 -0
  196. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/dotenv.rs +0 -0
  197. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/echo.rs +0 -0
  198. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/envsubst.rs +0 -0
  199. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/export.rs +0 -0
  200. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/fc.rs +0 -0
  201. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/fileops.rs +0 -0
  202. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/flow.rs +0 -0
  203. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/fold.rs +0 -0
  204. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/cat_args.rs +0 -0
  205. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/extendedbigdecimal.rs +0 -0
  206. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/format/argument.rs +0 -0
  207. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/format/escape.rs +0 -0
  208. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/format/human.rs +0 -0
  209. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/format/mod.rs +0 -0
  210. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/format/num_format.rs +0 -0
  211. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/format/spec.rs +0 -0
  212. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/format_support.rs +0 -0
  213. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/ls_args.rs +0 -0
  214. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/mktemp_args.rs +0 -0
  215. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/mod.rs +0 -0
  216. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/num_parser.rs +0 -0
  217. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/od_args.rs +0 -0
  218. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/readlink_args.rs +0 -0
  219. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/realpath_args.rs +0 -0
  220. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/shuf_args.rs +0 -0
  221. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/stat_args.rs +0 -0
  222. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/tac_args.rs +0 -0
  223. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/tee_args.rs +0 -0
  224. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/generated/truncate_args.rs +0 -0
  225. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/git/cmd.rs +0 -0
  226. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/git/config.rs +0 -0
  227. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/git/mod.rs +0 -0
  228. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
  229. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/helpers.rs +0 -0
  230. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/hextools.rs +0 -0
  231. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/http.rs +0 -0
  232. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/inspect.rs +0 -0
  233. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/introspect.rs +0 -0
  234. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/jq/args.rs +0 -0
  235. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/jq/convert.rs +0 -0
  236. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/jq/errors.rs +0 -0
  237. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/jq/format.rs +0 -0
  238. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/jq/regex_compat.rs +0 -0
  239. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/json.rs +0 -0
  240. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/log.rs +0 -0
  241. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/ls/glob.rs +0 -0
  242. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/ls/list.rs +0 -0
  243. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/ls/mod.rs +0 -0
  244. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/ls/rmdir.rs +0 -0
  245. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/mapfile.rs +0 -0
  246. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
  247. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/navigation.rs +0 -0
  248. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/nl.rs +0 -0
  249. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/numfmt.rs +0 -0
  250. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/parallel.rs +0 -0
  251. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/patch.rs +0 -0
  252. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/pipeline.rs +0 -0
  253. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/printf.rs +0 -0
  254. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/retry.rs +0 -0
  255. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/sed.rs +0 -0
  256. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/semver.rs +0 -0
  257. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/seq.rs +0 -0
  258. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/shuf.rs +0 -0
  259. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/sleep.rs +0 -0
  260. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/source.rs +0 -0
  261. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/split.rs +0 -0
  262. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/sqlite/engine.rs +0 -0
  263. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/sqlite/formatter.rs +0 -0
  264. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/sqlite/vfs_io.rs +0 -0
  265. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/ssh/allowlist.rs +0 -0
  266. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/ssh/client.rs +0 -0
  267. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/ssh/cmd.rs +0 -0
  268. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/ssh/config.rs +0 -0
  269. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/ssh/handler.rs +0 -0
  270. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/ssh/mod.rs +0 -0
  271. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/ssh/russh_handler.rs +0 -0
  272. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/system.rs +0 -0
  273. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/test.rs +0 -0
  274. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/textrev.rs +0 -0
  275. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/timeout.rs +0 -0
  276. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/tomlq.rs +0 -0
  277. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/trap.rs +0 -0
  278. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/truncate.rs +0 -0
  279. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/verify.rs +0 -0
  280. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/wait.rs +0 -0
  281. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/wc.rs +0 -0
  282. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/yaml.rs +0 -0
  283. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/yes.rs +0 -0
  284. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/builtins/zip_cmd.rs +0 -0
  285. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/fs/backend.rs +0 -0
  286. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/fs/mod.rs +0 -0
  287. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/fs/posix.rs +0 -0
  288. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/fs/readonly.rs +0 -0
  289. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/fs/search.rs +0 -0
  290. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/fs/traits.rs +0 -0
  291. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/hooks.rs +0 -0
  292. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/interop/fs.rs +0 -0
  293. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/interop/mod.rs +0 -0
  294. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/interpreter/jobs.rs +0 -0
  295. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/logging_impl.rs +0 -0
  296. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/network/allowlist.rs +0 -0
  297. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/network/bot_auth.rs +0 -0
  298. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/network/mod.rs +0 -0
  299. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/parser/span.rs +0 -0
  300. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/parser/tokens.rs +0 -0
  301. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/scripted_tool/extension.rs +0 -0
  302. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/scripted_tool/mod.rs +0 -0
  303. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
  304. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/snapshot.rs +0 -0
  305. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/testing.rs +0 -0
  306. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/src/trace.rs +0 -0
  307. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/agent_skills_publication_tests.rs +0 -0
  308. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/allexport_tests.rs +0 -0
  309. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/awk_fuzz_scaffold_tests.rs +0 -0
  310. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/awk_newline_tests.rs +0 -0
  311. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/awk_pattern_tests.rs +0 -0
  312. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/awk_printf_expr_test.rs +0 -0
  313. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/awk_range_pattern_tests.rs +0 -0
  314. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/background_exec_tests.rs +0 -0
  315. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/builtin_error_security_tests.rs +0 -0
  316. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/byte_range_panic_tests.rs +0 -0
  317. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/cancellation_tests.rs +0 -0
  318. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/cmdsub_quote_test.rs +0 -0
  319. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/coproc_tests.rs +0 -0
  320. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/credential_injection_tests.rs +0 -0
  321. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/custom_builtins_tests.rs +0 -0
  322. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/custom_fs_tests.rs +0 -0
  323. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/dev_null_tests.rs +0 -0
  324. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/final_env_tests.rs +0 -0
  325. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/git_advanced_tests.rs +0 -0
  326. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/git_integration_tests.rs +0 -0
  327. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/git_remote_security_tests.rs +0 -0
  328. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/git_security_tests.rs +0 -0
  329. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/issue_1175_test.rs +0 -0
  330. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/issue_1776_test.rs +0 -0
  331. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/issue_1777_test.rs +0 -0
  332. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/issue_274_test.rs +0 -0
  333. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/issue_275_279_282_test.rs +0 -0
  334. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/issue_276_test.rs +0 -0
  335. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/issue_277_test.rs +0 -0
  336. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/issue_289_test.rs +0 -0
  337. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/issue_290_test.rs +0 -0
  338. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/issue_291_test.rs +0 -0
  339. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/issue_853_test.rs +0 -0
  340. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/issue_872_test.rs +0 -0
  341. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/issue_875_test.rs +0 -0
  342. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/jq_fuzz_scaffold_tests.rs +0 -0
  343. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/mkfifo_tests.rs +0 -0
  344. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/nested_subscript_tests.rs +0 -0
  345. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/network_security_tests.rs +0 -0
  346. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/proptest_differential.rs +0 -0
  347. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/regex_limit_tests.rs +0 -0
  348. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/release_profile_tests.rs +0 -0
  349. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/script_execution_tests.rs +0 -0
  350. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/security_audit_pocs.rs +0 -0
  351. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/shuf_resource_tests.rs +0 -0
  352. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/skills_tests.rs +0 -0
  353. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/source_function_tests.rs +0 -0
  354. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/sqlite_compat_tests.rs +0 -0
  355. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/sqlite_differential_tests.rs +0 -0
  356. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/sqlite_fuzz_tests.rs +0 -0
  357. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/sqlite_integration_tests.rs +0 -0
  358. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/sqlite_security_tests.rs +0 -0
  359. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/stack_overflow_regression_tests.rs +0 -0
  360. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/subst_depth_limit_tests.rs +0 -0
  361. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/symlink_overlay_security_tests.rs +0 -0
  362. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/typescript_integration_tests.rs +0 -0
  363. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/unicode_security_tests.rs +0 -0
  364. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/unset_function_tests.rs +0 -0
  365. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/integration/workflow_security_tests.rs +0 -0
  366. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/logging_security_tests.rs +0 -0
  367. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/proptest_security.rs +0 -0
  368. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/realfs_tests.rs +0 -0
  369. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
  370. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
  371. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
  372. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
  373. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
  374. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
  375. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
  376. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
  377. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
  378. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
  379. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
  380. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
  381. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
  382. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
  383. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
  384. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
  385. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
  386. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
  387. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
  388. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
  389. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
  390. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
  391. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
  392. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
  393. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
  394. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
  395. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
  396. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
  397. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
  398. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
  399. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
  400. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
  401. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
  402. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
  403. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
  404. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/cat.test.sh +0 -0
  405. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
  406. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
  407. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
  408. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
  409. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
  410. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
  411. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
  412. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
  413. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
  414. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
  415. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
  416. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
  417. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
  418. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
  419. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
  420. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
  421. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
  422. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
  423. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
  424. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
  425. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
  426. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
  427. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
  428. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
  429. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
  430. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
  431. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
  432. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
  433. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
  434. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
  435. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
  436. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
  437. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
  438. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
  439. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
  440. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
  441. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
  442. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
  443. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
  444. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
  445. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
  446. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
  447. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
  448. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
  449. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
  450. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
  451. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
  452. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
  453. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
  454. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
  455. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
  456. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
  457. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
  458. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
  459. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
  460. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
  461. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/od.test.sh +0 -0
  462. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
  463. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
  464. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
  465. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
  466. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
  467. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
  468. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/readlink.test.sh +0 -0
  469. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
  470. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
  471. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
  472. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
  473. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
  474. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
  475. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
  476. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/shuf.test.sh +0 -0
  477. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
  478. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
  479. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
  480. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
  481. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
  482. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
  483. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
  484. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
  485. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
  486. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
  487. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
  488. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
  489. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
  490. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
  491. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
  492. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
  493. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/truncate.test.sh +0 -0
  494. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
  495. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
  496. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
  497. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
  498. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
  499. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
  500. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
  501. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
  502. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
  503. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
  504. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
  505. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
  506. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
  507. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
  508. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
  509. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
  510. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
  511. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
  512. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
  513. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
  514. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/Cargo.toml +0 -0
  515. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
  516. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/examples/data_pipeline.py +0 -0
  517. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
  518. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
  519. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
  520. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
  521. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/examples/llm_tool.py +0 -0
  522. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/_security_advanced.py +0 -0
  523. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/_security_core.py +0 -0
  524. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
  525. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_builtins.py +0 -0
  526. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_control_flow.py +0 -0
  527. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_error_handling.py +0 -0
  528. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
  529. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_integration.py +0 -0
  530. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
  531. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_network_config.py +0 -0
  532. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_network_credentials.py +0 -0
  533. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_python_security.py +0 -0
  534. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
  535. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_scripts.py +0 -0
  536. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_security.py +0 -0
  537. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
  538. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_sqlite.py +0 -0
  539. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
  540. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
  541. {bashkit-0.9.0 → bashkit-0.11.0}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
@@ -20,19 +20,19 @@ dependencies = [
20
20
 
21
21
  [[package]]
22
22
  name = "aead"
23
- version = "0.6.0-rc.10"
23
+ version = "0.6.0"
24
24
  source = "registry+https://github.com/rust-lang/crates.io-index"
25
- checksum = "6b657e772794c6b04730ea897b66a058ccd866c16d1967da05eeeecec39043fe"
25
+ checksum = "ef60ac202874e574ce7a7158cc8bca7313dd344322482e4fadee288bf4a306b8"
26
26
  dependencies = [
27
- "crypto-common 0.2.1",
27
+ "crypto-common 0.2.2",
28
28
  "inout 0.2.2",
29
29
  ]
30
30
 
31
31
  [[package]]
32
32
  name = "aegis"
33
- version = "0.9.8"
33
+ version = "0.9.12"
34
34
  source = "registry+https://github.com/rust-lang/crates.io-index"
35
- checksum = "78412fa53e6da95324e8902c3641b3ff32ab45258582ea997eb9169c68ffa219"
35
+ checksum = "e07d39d15384924b35b70d7b8fa1f9a2934101dd3fa4722ede163cc4f9b7b960"
36
36
  dependencies = [
37
37
  "cc",
38
38
  "softaes",
@@ -51,11 +51,11 @@ dependencies = [
51
51
 
52
52
  [[package]]
53
53
  name = "aes"
54
- version = "0.9.0"
54
+ version = "0.9.1"
55
55
  source = "registry+https://github.com/rust-lang/crates.io-index"
56
- checksum = "66bd29a732b644c0431c6140f370d097879203d79b80c94a6747ba0872adaef8"
56
+ checksum = "f1fc76eaeac4c9164506c466d4ffdd8ec9d0c5bf57ee97177c4d8eceb3a0e138"
57
57
  dependencies = [
58
- "cipher 0.5.1",
58
+ "cipher 0.5.2",
59
59
  "cpubits",
60
60
  "cpufeatures 0.3.0",
61
61
  "zeroize",
@@ -77,14 +77,14 @@ dependencies = [
77
77
 
78
78
  [[package]]
79
79
  name = "aes-gcm"
80
- version = "0.11.0-rc.3"
80
+ version = "0.11.0-rc.4"
81
81
  source = "registry+https://github.com/rust-lang/crates.io-index"
82
- checksum = "e22c0c90bbe8d4f77c3ca9ddabe41a1f8382d6fc1f7cea89459d0f320371f972"
82
+ checksum = "da8c919c118108f144adecad74b425b804ad075580d605d9b33c2d6d1c62a2f8"
83
83
  dependencies = [
84
- "aead 0.6.0-rc.10",
85
- "aes 0.9.0",
86
- "cipher 0.5.1",
87
- "ctr 0.10.0",
84
+ "aead 0.6.0",
85
+ "aes 0.9.1",
86
+ "cipher 0.5.2",
87
+ "ctr 0.10.1",
88
88
  "ghash 0.6.0",
89
89
  "subtle",
90
90
  "zeroize",
@@ -195,9 +195,9 @@ dependencies = [
195
195
 
196
196
  [[package]]
197
197
  name = "antithesis_sdk"
198
- version = "0.2.8"
198
+ version = "0.2.9"
199
199
  source = "registry+https://github.com/rust-lang/crates.io-index"
200
- checksum = "18dbd97a5b6c21cc9176891cf715f7f0c273caf3959897f43b9bd1231939e675"
200
+ checksum = "08410fcac93669a476c006cd6c4512ac1e2b30fd117231a5d55d8a2c76599b82"
201
201
  dependencies = [
202
202
  "libc",
203
203
  "libloading 0.8.9",
@@ -300,9 +300,9 @@ dependencies = [
300
300
 
301
301
  [[package]]
302
302
  name = "autocfg"
303
- version = "1.5.0"
303
+ version = "1.5.1"
304
304
  source = "registry+https://github.com/rust-lang/crates.io-index"
305
- checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
305
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
306
306
 
307
307
  [[package]]
308
308
  name = "aws-lc-rs"
@@ -347,7 +347,7 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
347
347
 
348
348
  [[package]]
349
349
  name = "bashkit"
350
- version = "0.9.0"
350
+ version = "0.11.0"
351
351
  dependencies = [
352
352
  "anyhow",
353
353
  "async-trait",
@@ -386,7 +386,7 @@ dependencies = [
386
386
  "sha1",
387
387
  "sha2 0.11.0",
388
388
  "tempfile",
389
- "thiserror 2.0.18",
389
+ "thiserror",
390
390
  "tokio",
391
391
  "tokio-test",
392
392
  "tower",
@@ -400,7 +400,7 @@ dependencies = [
400
400
 
401
401
  [[package]]
402
402
  name = "bashkit-bench"
403
- version = "0.9.0"
403
+ version = "0.11.0"
404
404
  dependencies = [
405
405
  "anyhow",
406
406
  "bashkit",
@@ -409,12 +409,13 @@ dependencies = [
409
409
  "serde",
410
410
  "serde_json",
411
411
  "tabled",
412
+ "tempfile",
412
413
  "tokio",
413
414
  ]
414
415
 
415
416
  [[package]]
416
417
  name = "bashkit-cli"
417
- version = "0.9.0"
418
+ version = "0.11.0"
418
419
  dependencies = [
419
420
  "anyhow",
420
421
  "bashkit",
@@ -428,7 +429,7 @@ dependencies = [
428
429
 
429
430
  [[package]]
430
431
  name = "bashkit-coreutils-port"
431
- version = "0.9.0"
432
+ version = "0.11.0"
432
433
  dependencies = [
433
434
  "anyhow",
434
435
  "prettyplease",
@@ -442,7 +443,7 @@ dependencies = [
442
443
 
443
444
  [[package]]
444
445
  name = "bashkit-eval"
445
- version = "0.9.0"
446
+ version = "0.11.0"
446
447
  dependencies = [
447
448
  "anyhow",
448
449
  "async-trait",
@@ -459,7 +460,7 @@ dependencies = [
459
460
 
460
461
  [[package]]
461
462
  name = "bashkit-js"
462
- version = "0.9.0"
463
+ version = "0.11.0"
463
464
  dependencies = [
464
465
  "bashkit",
465
466
  "napi",
@@ -471,7 +472,7 @@ dependencies = [
471
472
 
472
473
  [[package]]
473
474
  name = "bashkit-python"
474
- version = "0.9.0"
475
+ version = "0.11.0"
475
476
  dependencies = [
476
477
  "bashkit",
477
478
  "num-bigint",
@@ -522,9 +523,9 @@ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
522
523
 
523
524
  [[package]]
524
525
  name = "bitflags"
525
- version = "2.11.1"
526
+ version = "2.13.0"
526
527
  source = "registry+https://github.com/rust-lang/crates.io-index"
527
- checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
528
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
528
529
 
529
530
  [[package]]
530
531
  name = "bitvec"
@@ -558,23 +559,14 @@ dependencies = [
558
559
 
559
560
  [[package]]
560
561
  name = "block-buffer"
561
- version = "0.12.0"
562
+ version = "0.12.1"
562
563
  source = "registry+https://github.com/rust-lang/crates.io-index"
563
- checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
564
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
564
565
  dependencies = [
565
566
  "hybrid-array",
566
567
  "zeroize",
567
568
  ]
568
569
 
569
- [[package]]
570
- name = "block-padding"
571
- version = "0.3.3"
572
- source = "registry+https://github.com/rust-lang/crates.io-index"
573
- checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
574
- dependencies = [
575
- "generic-array 0.14.7",
576
- ]
577
-
578
570
  [[package]]
579
571
  name = "block-padding"
580
572
  version = "0.4.2"
@@ -591,7 +583,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
591
583
  checksum = "62ce3946557b35e71d1bbe07ec385073ce9eda05043f95de134eb578fcf1a298"
592
584
  dependencies = [
593
585
  "byteorder",
594
- "cipher 0.5.1",
586
+ "cipher 0.5.2",
595
587
  ]
596
588
 
597
589
  [[package]]
@@ -616,9 +608,9 @@ dependencies = [
616
608
 
617
609
  [[package]]
618
610
  name = "bumpalo"
619
- version = "3.20.2"
611
+ version = "3.20.3"
620
612
  source = "registry+https://github.com/rust-lang/crates.io-index"
621
- checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
613
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
622
614
 
623
615
  [[package]]
624
616
  name = "bytecount"
@@ -675,18 +667,18 @@ dependencies = [
675
667
 
676
668
  [[package]]
677
669
  name = "cbc"
678
- version = "0.2.0"
670
+ version = "0.2.1"
679
671
  source = "registry+https://github.com/rust-lang/crates.io-index"
680
- checksum = "98db6aeaef0eeef2c1e3ce9a27b739218825dae116076352ac3777076aa22225"
672
+ checksum = "ce2dc9ee5f88d11e0beb842c88b33c8a5cf0d1329c4b19494af42b07dbfe8896"
681
673
  dependencies = [
682
- "cipher 0.5.1",
674
+ "cipher 0.5.2",
683
675
  ]
684
676
 
685
677
  [[package]]
686
678
  name = "cc"
687
- version = "1.2.62"
679
+ version = "1.2.64"
688
680
  source = "registry+https://github.com/rust-lang/crates.io-index"
689
- checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
681
+ checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f"
690
682
  dependencies = [
691
683
  "find-msvc-tools",
692
684
  "jobserver",
@@ -719,7 +711,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
719
711
  checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
720
712
  dependencies = [
721
713
  "cfg-if",
722
- "cipher 0.5.1",
714
+ "cipher 0.5.2",
723
715
  "cpufeatures 0.3.0",
724
716
  "rand_core 0.10.1",
725
717
  "zeroize",
@@ -727,9 +719,9 @@ dependencies = [
727
719
 
728
720
  [[package]]
729
721
  name = "chrono"
730
- version = "0.4.44"
722
+ version = "0.4.45"
731
723
  source = "registry+https://github.com/rust-lang/crates.io-index"
732
- checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
724
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
733
725
  dependencies = [
734
726
  "iana-time-zone",
735
727
  "js-sys",
@@ -778,12 +770,12 @@ dependencies = [
778
770
 
779
771
  [[package]]
780
772
  name = "cipher"
781
- version = "0.5.1"
773
+ version = "0.5.2"
782
774
  source = "registry+https://github.com/rust-lang/crates.io-index"
783
- checksum = "e34d8227fe1ba289043aeb13792056ff80fd6de1a9f49137a5f499de8e8c78ea"
775
+ checksum = "e8cf2a2c93cd704877c0858356ed03480ff301ee950b43f1cbe4573b088bfa6c"
784
776
  dependencies = [
785
- "block-buffer 0.12.0",
786
- "crypto-common 0.2.1",
777
+ "block-buffer 0.12.1",
778
+ "crypto-common 0.2.2",
787
779
  "inout 0.2.2",
788
780
  "zeroize",
789
781
  ]
@@ -848,9 +840,9 @@ dependencies = [
848
840
 
849
841
  [[package]]
850
842
  name = "cmov"
851
- version = "0.5.3"
843
+ version = "0.5.4"
852
844
  source = "registry+https://github.com/rust-lang/crates.io-index"
853
- checksum = "3f88a43d011fc4a6876cb7344703e297c71dda42494fee094d5f7c76bf13f746"
845
+ checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
854
846
 
855
847
  [[package]]
856
848
  name = "cobs"
@@ -858,7 +850,7 @@ version = "0.3.0"
858
850
  source = "registry+https://github.com/rust-lang/crates.io-index"
859
851
  checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
860
852
  dependencies = [
861
- "thiserror 2.0.18",
853
+ "thiserror",
862
854
  ]
863
855
 
864
856
  [[package]]
@@ -894,9 +886,9 @@ dependencies = [
894
886
 
895
887
  [[package]]
896
888
  name = "compact_str"
897
- version = "0.9.0"
889
+ version = "0.9.1"
898
890
  source = "registry+https://github.com/rust-lang/crates.io-index"
899
- checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
891
+ checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
900
892
  dependencies = [
901
893
  "castaway",
902
894
  "cfg-if",
@@ -1124,9 +1116,9 @@ dependencies = [
1124
1116
 
1125
1117
  [[package]]
1126
1118
  name = "crypto-common"
1127
- version = "0.2.1"
1119
+ version = "0.2.2"
1128
1120
  source = "registry+https://github.com/rust-lang/crates.io-index"
1129
- checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
1121
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
1130
1122
  dependencies = [
1131
1123
  "getrandom 0.4.2",
1132
1124
  "hybrid-array",
@@ -1135,20 +1127,19 @@ dependencies = [
1135
1127
 
1136
1128
  [[package]]
1137
1129
  name = "crypto-primes"
1138
- version = "0.7.0"
1130
+ version = "0.7.2"
1139
1131
  source = "registry+https://github.com/rust-lang/crates.io-index"
1140
- checksum = "21f41f23de7d24cdbda7f0c4d9c0351f99a4ceb258ef30e5c1927af8987ffe5a"
1132
+ checksum = "3633a51a39c69ebbaa4feaa694bd83d241e4093901c84a0963b19d9bb3f0cf8f"
1141
1133
  dependencies = [
1142
1134
  "crypto-bigint",
1143
- "libm",
1144
1135
  "rand_core 0.10.1",
1145
1136
  ]
1146
1137
 
1147
1138
  [[package]]
1148
1139
  name = "ctor"
1149
- version = "1.0.6"
1140
+ version = "1.0.7"
1150
1141
  source = "registry+https://github.com/rust-lang/crates.io-index"
1151
- checksum = "6d765eb1c0bda10d31e0ea185f5ee15da532d60b0912d2bd1441783439e749c5"
1142
+ checksum = "01334b89b69ff726750c5ce5073fc8bd860e99aa9a8fc5ca11b04730e3aee97a"
1152
1143
 
1153
1144
  [[package]]
1154
1145
  name = "ctr"
@@ -1161,11 +1152,11 @@ dependencies = [
1161
1152
 
1162
1153
  [[package]]
1163
1154
  name = "ctr"
1164
- version = "0.10.0"
1155
+ version = "0.10.1"
1165
1156
  source = "registry+https://github.com/rust-lang/crates.io-index"
1166
- checksum = "17469f8eb9bdbfad10f71f4cfddfd38b01143520c0e717d8796ccb4d44d44e42"
1157
+ checksum = "baaca1c4b237092596f64d571e9db6ce4109c4ef9742e27590f1709594461f21"
1167
1158
  dependencies = [
1168
- "cipher 0.5.1",
1159
+ "cipher 0.5.2",
1169
1160
  ]
1170
1161
 
1171
1162
  [[package]]
@@ -1196,12 +1187,12 @@ dependencies = [
1196
1187
 
1197
1188
  [[package]]
1198
1189
  name = "curve25519-dalek"
1199
- version = "5.0.0-pre.6"
1190
+ version = "5.0.0-rc.0"
1200
1191
  source = "registry+https://github.com/rust-lang/crates.io-index"
1201
- checksum = "335f1947f241137a14106b6f5acc5918a5ede29c9d71d3f2cb1678d5075d9fc3"
1192
+ checksum = "4f359e08ca85e7bd759e1fd933ff2bccd81864c60a8fba0e259c7f822b0924bf"
1202
1193
  dependencies = [
1203
1194
  "cfg-if",
1204
- "cpufeatures 0.2.17",
1195
+ "cpufeatures 0.3.0",
1205
1196
  "curve25519-dalek-derive",
1206
1197
  "digest 0.11.3",
1207
1198
  "fiat-crypto 0.3.0",
@@ -1276,7 +1267,7 @@ version = "0.9.0"
1276
1267
  source = "registry+https://github.com/rust-lang/crates.io-index"
1277
1268
  checksum = "916a94e407b54f9034d71dd748234cd1e516ced6284009906ae246f177eafe5a"
1278
1269
  dependencies = [
1279
- "cipher 0.5.1",
1270
+ "cipher 0.5.2",
1280
1271
  ]
1281
1272
 
1282
1273
  [[package]]
@@ -1292,7 +1283,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
1283
  checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
1293
1284
  dependencies = [
1294
1285
  "block-buffer 0.10.4",
1295
- "const-oid 0.9.6",
1296
1286
  "crypto-common 0.1.7",
1297
1287
  ]
1298
1288
 
@@ -1302,17 +1292,17 @@ version = "0.11.3"
1302
1292
  source = "registry+https://github.com/rust-lang/crates.io-index"
1303
1293
  checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
1304
1294
  dependencies = [
1305
- "block-buffer 0.12.0",
1295
+ "block-buffer 0.12.1",
1306
1296
  "const-oid 0.10.2",
1307
- "crypto-common 0.2.1",
1297
+ "crypto-common 0.2.2",
1308
1298
  "ctutils",
1309
1299
  ]
1310
1300
 
1311
1301
  [[package]]
1312
1302
  name = "displaydoc"
1313
- version = "0.2.5"
1303
+ version = "0.2.6"
1314
1304
  source = "registry+https://github.com/rust-lang/crates.io-index"
1315
- checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1305
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
1316
1306
  dependencies = [
1317
1307
  "proc-macro2",
1318
1308
  "quote",
@@ -1389,11 +1379,11 @@ dependencies = [
1389
1379
 
1390
1380
  [[package]]
1391
1381
  name = "ed25519-dalek"
1392
- version = "3.0.0-pre.7"
1382
+ version = "3.0.0-rc.0"
1393
1383
  source = "registry+https://github.com/rust-lang/crates.io-index"
1394
- checksum = "20449acd54b660981ae5caa2bcb56d1fe7f25f2e37a38ec507400fab034d4bb6"
1384
+ checksum = "b011170fe4f04665565b4110afef66774fe9ffff278f3eb5b81cc73d26e27d60"
1395
1385
  dependencies = [
1396
- "curve25519-dalek 5.0.0-pre.6",
1386
+ "curve25519-dalek 5.0.0-rc.0",
1397
1387
  "ed25519 3.0.0",
1398
1388
  "rand_core 0.10.1",
1399
1389
  "serde",
@@ -1405,28 +1395,28 @@ dependencies = [
1405
1395
 
1406
1396
  [[package]]
1407
1397
  name = "either"
1408
- version = "1.15.0"
1398
+ version = "1.16.0"
1409
1399
  source = "registry+https://github.com/rust-lang/crates.io-index"
1410
- checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1400
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
1411
1401
 
1412
1402
  [[package]]
1413
1403
  name = "elliptic-curve"
1414
- version = "0.14.0-rc.32"
1404
+ version = "0.14.0-rc.33"
1415
1405
  source = "registry+https://github.com/rust-lang/crates.io-index"
1416
- checksum = "cda94f31325c4275e9706adecbb6f0650dee2f904c915a98e3d81adaaaa757aa"
1406
+ checksum = "102d3643d30dd8b559613c5cced68317199597fffb278cdc88daa2ef7fafc935"
1417
1407
  dependencies = [
1418
1408
  "base16ct",
1419
1409
  "crypto-bigint",
1420
- "crypto-common 0.2.1",
1410
+ "crypto-common 0.2.2",
1421
1411
  "digest 0.11.3",
1412
+ "ff",
1413
+ "group",
1422
1414
  "hkdf",
1423
1415
  "hybrid-array",
1424
1416
  "once_cell",
1425
1417
  "pem-rfc7468",
1426
1418
  "pkcs8 0.11.0",
1427
1419
  "rand_core 0.10.1",
1428
- "rustcrypto-ff",
1429
- "rustcrypto-group",
1430
1420
  "sec1",
1431
1421
  "subtle",
1432
1422
  "zeroize",
@@ -1546,6 +1536,16 @@ version = "2.4.1"
1546
1536
  source = "registry+https://github.com/rust-lang/crates.io-index"
1547
1537
  checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
1548
1538
 
1539
+ [[package]]
1540
+ name = "ff"
1541
+ version = "0.14.0"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "a1f686ab92a9fb0eaf188f6c6c87b89490baa6fdb0db4544ba4dc47f7942489f"
1544
+ dependencies = [
1545
+ "rand_core 0.10.1",
1546
+ "subtle",
1547
+ ]
1548
+
1549
1549
  [[package]]
1550
1550
  name = "fiat-crypto"
1551
1551
  version = "0.2.9"
@@ -1703,9 +1703,9 @@ dependencies = [
1703
1703
 
1704
1704
  [[package]]
1705
1705
  name = "generator"
1706
- version = "0.8.8"
1706
+ version = "0.8.9"
1707
1707
  source = "registry+https://github.com/rust-lang/crates.io-index"
1708
- checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9"
1708
+ checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae"
1709
1709
  dependencies = [
1710
1710
  "cc",
1711
1711
  "cfg-if",
@@ -1728,9 +1728,9 @@ dependencies = [
1728
1728
 
1729
1729
  [[package]]
1730
1730
  name = "generic-array"
1731
- version = "1.4.1"
1731
+ version = "1.4.3"
1732
1732
  source = "registry+https://github.com/rust-lang/crates.io-index"
1733
- checksum = "dab9e9188e97a93276e1fe7b56401b851e2b45a46d045ca658100c1303ada649"
1733
+ checksum = "c2e55f16dcf0e9c00efbe2e655ffe45fc98e7066b52bc92f8a79e64060a79351"
1734
1734
  dependencies = [
1735
1735
  "generic-array 0.14.7",
1736
1736
  "rustversion",
@@ -1778,10 +1778,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
1778
  checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1779
1779
  dependencies = [
1780
1780
  "cfg-if",
1781
- "js-sys",
1782
1781
  "libc",
1783
1782
  "wasi",
1784
- "wasm-bindgen",
1785
1783
  ]
1786
1784
 
1787
1785
  [[package]]
@@ -1831,6 +1829,17 @@ dependencies = [
1831
1829
  "polyval 0.7.1",
1832
1830
  ]
1833
1831
 
1832
+ [[package]]
1833
+ name = "group"
1834
+ version = "0.14.0"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "7fd1a1c7a5206c5b7a3f5a0d7ccd3ff85d0c8f5133d62a02680255b0004af5f4"
1837
+ dependencies = [
1838
+ "ff",
1839
+ "rand_core 0.10.1",
1840
+ "subtle",
1841
+ ]
1842
+
1834
1843
  [[package]]
1835
1844
  name = "half"
1836
1845
  version = "2.7.1"
@@ -1950,9 +1959,9 @@ dependencies = [
1950
1959
 
1951
1960
  [[package]]
1952
1961
  name = "http"
1953
- version = "1.4.0"
1962
+ version = "1.4.2"
1954
1963
  source = "registry+https://github.com/rust-lang/crates.io-index"
1955
- checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1964
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
1956
1965
  dependencies = [
1957
1966
  "bytes",
1958
1967
  "itoa",
@@ -2001,9 +2010,9 @@ dependencies = [
2001
2010
 
2002
2011
  [[package]]
2003
2012
  name = "hyper"
2004
- version = "1.9.0"
2013
+ version = "1.10.1"
2005
2014
  source = "registry+https://github.com/rust-lang/crates.io-index"
2006
- checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
2015
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
2007
2016
  dependencies = [
2008
2017
  "atomic-waker",
2009
2018
  "bytes",
@@ -2208,7 +2217,6 @@ version = "0.1.4"
2208
2217
  source = "registry+https://github.com/rust-lang/crates.io-index"
2209
2218
  checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
2210
2219
  dependencies = [
2211
- "block-padding 0.3.3",
2212
2220
  "generic-array 0.14.7",
2213
2221
  ]
2214
2222
 
@@ -2218,15 +2226,15 @@ version = "0.2.2"
2218
2226
  source = "registry+https://github.com/rust-lang/crates.io-index"
2219
2227
  checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7"
2220
2228
  dependencies = [
2221
- "block-padding 0.4.2",
2229
+ "block-padding",
2222
2230
  "hybrid-array",
2223
2231
  ]
2224
2232
 
2225
2233
  [[package]]
2226
2234
  name = "insta"
2227
- version = "1.47.2"
2235
+ version = "1.48.0"
2228
2236
  source = "registry+https://github.com/rust-lang/crates.io-index"
2229
- checksum = "7b4a6248eb93a4401ed2f37dfe8ea592d3cf05b7cf4f8efa867b6895af7e094e"
2237
+ checksum = "86f0f8fee8c926415c58d6ae43a08523a26faccb2323f5e6b644fe7dd4ef6b82"
2230
2238
  dependencies = [
2231
2239
  "console",
2232
2240
  "once_cell",
@@ -2311,9 +2319,9 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
2311
2319
 
2312
2320
  [[package]]
2313
2321
  name = "jaq-core"
2314
- version = "3.0.0"
2322
+ version = "3.1.0"
2315
2323
  source = "registry+https://github.com/rust-lang/crates.io-index"
2316
- checksum = "dca0f164c8e9c55fc5aefe60b371df735c719b09930dac185878f2f8c7ab6b68"
2324
+ checksum = "7561783b20275a6c9cb576e39208b0c635f34ef14357f1f05a2927a774f3adec"
2317
2325
  dependencies = [
2318
2326
  "dyn-clone",
2319
2327
  "once_cell",
@@ -2322,9 +2330,9 @@ dependencies = [
2322
2330
 
2323
2331
  [[package]]
2324
2332
  name = "jaq-json"
2325
- version = "2.0.0"
2333
+ version = "2.0.1"
2326
2334
  source = "registry+https://github.com/rust-lang/crates.io-index"
2327
- checksum = "f5c5baabe63d1d72cde60ec7548a098036773e3541dbc65c6a44fb38e9cfb272"
2335
+ checksum = "d4ec9aaad7340e6990c6c1878ef3b46dbec624e535d7f786cc9ddcf94f773d33"
2328
2336
  dependencies = [
2329
2337
  "bstr",
2330
2338
  "bytes",
@@ -2341,9 +2349,9 @@ dependencies = [
2341
2349
 
2342
2350
  [[package]]
2343
2351
  name = "jaq-std"
2344
- version = "3.0.0"
2352
+ version = "3.0.1"
2345
2353
  source = "registry+https://github.com/rust-lang/crates.io-index"
2346
- checksum = "2a11bb307027b20b3dc7b212ad687e7e410cbc43933eec5d498672ab2bc60666"
2354
+ checksum = "8bdc5a74b0feeb5e6a1dc2dd08c34280a61e37668d10a6a3b27ad69d0fb9ce2e"
2347
2355
  dependencies = [
2348
2356
  "aho-corasick",
2349
2357
  "base64",
@@ -2358,9 +2366,9 @@ dependencies = [
2358
2366
 
2359
2367
  [[package]]
2360
2368
  name = "jiff"
2361
- version = "0.2.24"
2369
+ version = "0.2.28"
2362
2370
  source = "registry+https://github.com/rust-lang/crates.io-index"
2363
- checksum = "f00b5dbd620d61dfdcb6007c9c1f6054ebd75319f163d886a9055cec1155073d"
2371
+ checksum = "4603d3033e49e2b0e31229fcab20a5d40089c607d975cd9c80551dc69eed9102"
2364
2372
  dependencies = [
2365
2373
  "jiff-static",
2366
2374
  "jiff-tzdb-platform",
@@ -2368,14 +2376,14 @@ dependencies = [
2368
2376
  "portable-atomic",
2369
2377
  "portable-atomic-util",
2370
2378
  "serde_core",
2371
- "windows-sys 0.61.2",
2379
+ "windows-link",
2372
2380
  ]
2373
2381
 
2374
2382
  [[package]]
2375
2383
  name = "jiff-static"
2376
- version = "0.2.24"
2384
+ version = "0.2.28"
2377
2385
  source = "registry+https://github.com/rust-lang/crates.io-index"
2378
- checksum = "e000de030ff8022ea1da3f466fbb0f3a809f5e51ed31f6dd931c35181ad8e6d7"
2386
+ checksum = "782d32378dddf207193ac91cefb848ad41abb58195c95168e1291227a0832b47"
2379
2387
  dependencies = [
2380
2388
  "proc-macro2",
2381
2389
  "quote",
@@ -2424,7 +2432,7 @@ dependencies = [
2424
2432
  "jni-sys",
2425
2433
  "log",
2426
2434
  "simd_cesu8",
2427
- "thiserror 2.0.18",
2435
+ "thiserror",
2428
2436
  "walkdir",
2429
2437
  "windows-link",
2430
2438
  ]
@@ -2473,13 +2481,12 @@ dependencies = [
2473
2481
 
2474
2482
  [[package]]
2475
2483
  name = "js-sys"
2476
- version = "0.3.98"
2484
+ version = "0.3.102"
2477
2485
  source = "registry+https://github.com/rust-lang/crates.io-index"
2478
- checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
2486
+ checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
2479
2487
  dependencies = [
2480
2488
  "cfg-if",
2481
2489
  "futures-util",
2482
- "once_cell",
2483
2490
  "wasm-bindgen",
2484
2491
  ]
2485
2492
 
@@ -2499,7 +2506,7 @@ version = "0.3.0"
2499
2506
  source = "registry+https://github.com/rust-lang/crates.io-index"
2500
2507
  checksum = "01737161ba802849cfd486b5bd209d38ba4943494c249a8126005170c7621edd"
2501
2508
  dependencies = [
2502
- "crypto-common 0.2.1",
2509
+ "crypto-common 0.2.2",
2503
2510
  "rand_core 0.10.1",
2504
2511
  ]
2505
2512
 
@@ -2615,9 +2622,9 @@ dependencies = [
2615
2622
 
2616
2623
  [[package]]
2617
2624
  name = "log"
2618
- version = "0.4.29"
2625
+ version = "0.4.32"
2619
2626
  source = "registry+https://github.com/rust-lang/crates.io-index"
2620
- checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
2627
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
2621
2628
 
2622
2629
  [[package]]
2623
2630
  name = "loom"
@@ -2676,15 +2683,15 @@ dependencies = [
2676
2683
 
2677
2684
  [[package]]
2678
2685
  name = "md5"
2679
- version = "0.7.0"
2686
+ version = "0.8.0"
2680
2687
  source = "registry+https://github.com/rust-lang/crates.io-index"
2681
- checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
2688
+ checksum = "ae960838283323069879657ca3de837e9f7bbb4c7bf6ea7f1b290d5e9476d2e0"
2682
2689
 
2683
2690
  [[package]]
2684
2691
  name = "memchr"
2685
- version = "2.8.0"
2692
+ version = "2.8.2"
2686
2693
  source = "registry+https://github.com/rust-lang/crates.io-index"
2687
- checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
2694
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
2688
2695
 
2689
2696
  [[package]]
2690
2697
  name = "memoffset"
@@ -2729,9 +2736,9 @@ dependencies = [
2729
2736
 
2730
2737
  [[package]]
2731
2738
  name = "mio"
2732
- version = "1.2.0"
2739
+ version = "1.2.1"
2733
2740
  source = "registry+https://github.com/rust-lang/crates.io-index"
2734
- checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
2741
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
2735
2742
  dependencies = [
2736
2743
  "libc",
2737
2744
  "wasi",
@@ -2804,9 +2811,9 @@ dependencies = [
2804
2811
 
2805
2812
  [[package]]
2806
2813
  name = "napi"
2807
- version = "3.9.0"
2814
+ version = "3.9.2"
2808
2815
  source = "registry+https://github.com/rust-lang/crates.io-index"
2809
- checksum = "f1d395473824516f38dd1071a1a37bc57daa7be65b293ebba4ead5f7abb017a2"
2816
+ checksum = "26d3c7dd60231116a47854321c9ac8df6f13435d11aa3a59d8533a76e07a3730"
2810
2817
  dependencies = [
2811
2818
  "bitflags",
2812
2819
  "ctor",
@@ -2853,9 +2860,9 @@ dependencies = [
2853
2860
 
2854
2861
  [[package]]
2855
2862
  name = "napi-sys"
2856
- version = "3.2.1"
2863
+ version = "3.2.2"
2857
2864
  source = "registry+https://github.com/rust-lang/crates.io-index"
2858
- checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
2865
+ checksum = "1f5bcdf71abd3a50d00b49c1c2c75251cb3c913777d6139cd37dabc093a5e400"
2859
2866
  dependencies = [
2860
2867
  "libloading 0.9.0",
2861
2868
  ]
@@ -3001,7 +3008,7 @@ dependencies = [
3001
3008
  "owo-colors 4.3.0",
3002
3009
  "oxc-miette-derive",
3003
3010
  "textwrap",
3004
- "thiserror 2.0.18",
3011
+ "thiserror",
3005
3012
  "unicode-segmentation",
3006
3013
  "unicode-width 0.2.2",
3007
3014
  ]
@@ -3193,9 +3200,9 @@ dependencies = [
3193
3200
 
3194
3201
  [[package]]
3195
3202
  name = "p256"
3196
- version = "0.14.0-rc.9"
3203
+ version = "0.14.0-rc.10"
3197
3204
  source = "registry+https://github.com/rust-lang/crates.io-index"
3198
- checksum = "8b97e3bf0465157ae90975ff52dbeb1362ba618924878c9f74c25baa27a65f9a"
3205
+ checksum = "41adc63effe99d48837a8cc0e6d7a77e32ae6a07f6000df466178dbc2193093e"
3199
3206
  dependencies = [
3200
3207
  "ecdsa",
3201
3208
  "elliptic-curve",
@@ -3206,9 +3213,9 @@ dependencies = [
3206
3213
 
3207
3214
  [[package]]
3208
3215
  name = "p384"
3209
- version = "0.14.0-rc.9"
3216
+ version = "0.14.0-rc.10"
3210
3217
  source = "registry+https://github.com/rust-lang/crates.io-index"
3211
- checksum = "437f30ebcb1e16ff48acead5f08bd69fbcdbc82421687bb48af5c315a0bfab03"
3218
+ checksum = "9bd5333afa5ae0347f39e6a0f2c9c155da431583fd71fe5555bd0521b4ccaf02"
3212
3219
  dependencies = [
3213
3220
  "ecdsa",
3214
3221
  "elliptic-curve",
@@ -3220,9 +3227,9 @@ dependencies = [
3220
3227
 
3221
3228
  [[package]]
3222
3229
  name = "p521"
3223
- version = "0.14.0-rc.9"
3230
+ version = "0.14.0-rc.10"
3224
3231
  source = "registry+https://github.com/rust-lang/crates.io-index"
3225
- checksum = "4e9fd792bab86ecf6249561752fb5a413511f999887107dd054bbda5143743d7"
3232
+ checksum = "a3a5297f53dc16d35909060ba3032cff7867e8809f01e273ff325579d5f0ceae"
3226
3233
  dependencies = [
3227
3234
  "base16ct",
3228
3235
  "ecdsa",
@@ -3253,18 +3260,19 @@ dependencies = [
3253
3260
 
3254
3261
  [[package]]
3255
3262
  name = "pageant"
3256
- version = "0.2.0"
3263
+ version = "0.2.1"
3257
3264
  source = "registry+https://github.com/rust-lang/crates.io-index"
3258
- checksum = "1b537f975f6d8dcf48db368d7ec209d583b015713b5df0f5d92d2631e4ff5595"
3265
+ checksum = "4f3a5ae18f65a85c67a77d18d42d3606c07948e3c17c1e5f74852b26589e88a5"
3259
3266
  dependencies = [
3267
+ "base16ct",
3260
3268
  "byteorder",
3261
3269
  "bytes",
3262
3270
  "delegate",
3263
3271
  "futures",
3264
3272
  "log",
3265
- "rand 0.8.6",
3266
- "sha2 0.10.9",
3267
- "thiserror 1.0.69",
3273
+ "rand 0.10.1",
3274
+ "sha2 0.11.0",
3275
+ "thiserror",
3268
3276
  "tokio",
3269
3277
  "windows",
3270
3278
  "windows-strings",
@@ -3315,9 +3323,9 @@ dependencies = [
3315
3323
 
3316
3324
  [[package]]
3317
3325
  name = "pastey"
3318
- version = "0.2.2"
3326
+ version = "0.2.3"
3319
3327
  source = "registry+https://github.com/rust-lang/crates.io-index"
3320
- checksum = "c5a797f0e07bdf071d15742978fc3128ec6c22891c31a3a931513263904c982a"
3328
+ checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
3321
3329
 
3322
3330
  [[package]]
3323
3331
  name = "pbkdf2"
@@ -3457,7 +3465,7 @@ version = "0.8.0"
3457
3465
  source = "registry+https://github.com/rust-lang/crates.io-index"
3458
3466
  checksum = "279a91971a1d8eb1260a30938eae3be9cb67b472dffecb222fbbbe2fd2dc1453"
3459
3467
  dependencies = [
3460
- "aes 0.9.0",
3468
+ "aes 0.9.1",
3461
3469
  "cbc",
3462
3470
  "der 0.8.0",
3463
3471
  "pbkdf2",
@@ -3633,23 +3641,23 @@ dependencies = [
3633
3641
 
3634
3642
  [[package]]
3635
3643
  name = "primefield"
3636
- version = "0.14.0-rc.9"
3644
+ version = "0.14.0-rc.11"
3637
3645
  source = "registry+https://github.com/rust-lang/crates.io-index"
3638
- checksum = "1b52e6ee42db392378a95622b463c9740631171d1efce43fa445a569c1600cb6"
3646
+ checksum = "b1d7e42f46a29abc16fb621a3466ee453358ebaae48a9e515f287e0af052ed8f"
3639
3647
  dependencies = [
3640
3648
  "crypto-bigint",
3641
- "crypto-common 0.2.1",
3649
+ "crypto-common 0.2.2",
3650
+ "ff",
3642
3651
  "rand_core 0.10.1",
3643
- "rustcrypto-ff",
3644
3652
  "subtle",
3645
3653
  "zeroize",
3646
3654
  ]
3647
3655
 
3648
3656
  [[package]]
3649
3657
  name = "primeorder"
3650
- version = "0.14.0-rc.9"
3658
+ version = "0.14.0-rc.10"
3651
3659
  source = "registry+https://github.com/rust-lang/crates.io-index"
3652
- checksum = "0556580e42c19833f5d232aca11a7687a503ee41f937b54f5ae1d50fc2a6a36a"
3660
+ checksum = "7d2793f22b9b6fd11ef3ac1d59bf003c2573593e4968702341605c2748fd90bf"
3653
3661
  dependencies = [
3654
3662
  "elliptic-curve",
3655
3663
  ]
@@ -3998,9 +4006,9 @@ dependencies = [
3998
4006
 
3999
4007
  [[package]]
4000
4008
  name = "regex"
4001
- version = "1.12.3"
4009
+ version = "1.12.4"
4002
4010
  source = "registry+https://github.com/rust-lang/crates.io-index"
4003
- checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
4011
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
4004
4012
  dependencies = [
4005
4013
  "aho-corasick",
4006
4014
  "memchr",
@@ -4027,9 +4035,9 @@ checksum = "b6a15a2fa0bfda9361941c45550896ae87b15cc6c8c939ea350079670332e211"
4027
4035
 
4028
4036
  [[package]]
4029
4037
  name = "regex-syntax"
4030
- version = "0.8.10"
4038
+ version = "0.8.11"
4031
4039
  source = "registry+https://github.com/rust-lang/crates.io-index"
4032
- checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
4040
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
4033
4041
 
4034
4042
  [[package]]
4035
4043
  name = "reqwest"
@@ -4139,7 +4147,7 @@ dependencies = [
4139
4147
  "ruff_text_size",
4140
4148
  "rustc-hash",
4141
4149
  "thin-vec",
4142
- "thiserror 2.0.18",
4150
+ "thiserror",
4143
4151
  ]
4144
4152
 
4145
4153
  [[package]]
@@ -4202,38 +4210,37 @@ dependencies = [
4202
4210
 
4203
4211
  [[package]]
4204
4212
  name = "russh"
4205
- version = "0.61.1"
4213
+ version = "0.61.2"
4206
4214
  source = "registry+https://github.com/rust-lang/crates.io-index"
4207
- checksum = "f67013f080c226e5a34db1c71f2567f44d95a6300005bb6cd4e2c8fe3c326d1b"
4215
+ checksum = "bbf893f64684e58da8a68d56a5e84d1cf0440226274c515770fe267707a7d0b0"
4208
4216
  dependencies = [
4209
- "aes 0.9.0",
4217
+ "aes 0.9.1",
4210
4218
  "aws-lc-rs",
4211
4219
  "bitflags",
4212
- "block-padding 0.4.2",
4220
+ "block-padding",
4213
4221
  "byteorder",
4214
4222
  "bytes",
4215
4223
  "cbc",
4216
- "cipher 0.5.1",
4224
+ "cipher 0.5.2",
4217
4225
  "crypto-bigint",
4218
- "ctr 0.10.0",
4219
- "curve25519-dalek 5.0.0-pre.6",
4226
+ "ctr 0.10.1",
4227
+ "curve25519-dalek 5.0.0-rc.0",
4220
4228
  "data-encoding",
4221
4229
  "delegate",
4222
4230
  "der 0.8.0",
4223
4231
  "digest 0.11.3",
4224
4232
  "ecdsa",
4225
- "ed25519-dalek 3.0.0-pre.7",
4233
+ "ed25519-dalek 3.0.0-rc.0",
4226
4234
  "elliptic-curve",
4227
4235
  "enum_dispatch",
4228
4236
  "flate2",
4229
4237
  "futures",
4230
- "generic-array 1.4.1",
4231
- "getrandom 0.2.17",
4238
+ "generic-array 1.4.3",
4239
+ "getrandom 0.4.2",
4232
4240
  "ghash 0.6.0",
4233
4241
  "hex-literal",
4234
- "hkdf",
4235
4242
  "hmac",
4236
- "inout 0.1.4",
4243
+ "inout 0.2.2",
4237
4244
  "internal-russh-num-bigint",
4238
4245
  "keccak",
4239
4246
  "log",
@@ -4266,7 +4273,7 @@ dependencies = [
4266
4273
  "ssh-encoding",
4267
4274
  "ssh-key",
4268
4275
  "subtle",
4269
- "thiserror 2.0.18",
4276
+ "thiserror",
4270
4277
  "tokio",
4271
4278
  "typenum",
4272
4279
  "universal-hash 0.6.1",
@@ -4322,27 +4329,6 @@ dependencies = [
4322
4329
  "semver",
4323
4330
  ]
4324
4331
 
4325
- [[package]]
4326
- name = "rustcrypto-ff"
4327
- version = "0.14.0-rc.1"
4328
- source = "registry+https://github.com/rust-lang/crates.io-index"
4329
- checksum = "fd2a8adb347447693cd2ba0d218c4b66c62da9b0a5672b17b981e4291ec65ff6"
4330
- dependencies = [
4331
- "rand_core 0.10.1",
4332
- "subtle",
4333
- ]
4334
-
4335
- [[package]]
4336
- name = "rustcrypto-group"
4337
- version = "0.14.0-rc.1"
4338
- source = "registry+https://github.com/rust-lang/crates.io-index"
4339
- checksum = "369f9b61aa45933c062c9f6b5c3c50ab710687eca83dd3802653b140b43f85ed"
4340
- dependencies = [
4341
- "rand_core 0.10.1",
4342
- "rustcrypto-ff",
4343
- "subtle",
4344
- ]
4345
-
4346
4332
  [[package]]
4347
4333
  name = "rustix"
4348
4334
  version = "1.1.4"
@@ -4373,9 +4359,9 @@ dependencies = [
4373
4359
 
4374
4360
  [[package]]
4375
4361
  name = "rustls-native-certs"
4376
- version = "0.8.3"
4362
+ version = "0.8.4"
4377
4363
  source = "registry+https://github.com/rust-lang/crates.io-index"
4378
- checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
4364
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
4379
4365
  dependencies = [
4380
4366
  "openssl-probe",
4381
4367
  "rustls-pki-types",
@@ -4482,7 +4468,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4482
4468
  checksum = "2f874456e72520ff1375a06c588eaf074b0f01f9e9e1aada45bd9b7954a6e42c"
4483
4469
  dependencies = [
4484
4470
  "cfg-if",
4485
- "cipher 0.5.1",
4471
+ "cipher 0.5.2",
4486
4472
  ]
4487
4473
 
4488
4474
  [[package]]
@@ -4729,9 +4715,9 @@ dependencies = [
4729
4715
 
4730
4716
  [[package]]
4731
4717
  name = "shlex"
4732
- version = "1.3.0"
4718
+ version = "2.0.1"
4733
4719
  source = "registry+https://github.com/rust-lang/crates.io-index"
4734
- checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
4720
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
4735
4721
 
4736
4722
  [[package]]
4737
4723
  name = "shuttle"
@@ -4843,9 +4829,9 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
4843
4829
 
4844
4830
  [[package]]
4845
4831
  name = "smallvec"
4846
- version = "1.15.1"
4832
+ version = "1.15.2"
4847
4833
  source = "registry+https://github.com/rust-lang/crates.io-index"
4848
- checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
4834
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
4849
4835
  dependencies = [
4850
4836
  "serde",
4851
4837
  ]
@@ -4858,9 +4844,9 @@ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
4858
4844
 
4859
4845
  [[package]]
4860
4846
  name = "socket2"
4861
- version = "0.6.3"
4847
+ version = "0.6.4"
4862
4848
  source = "registry+https://github.com/rust-lang/crates.io-index"
4863
- checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
4849
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
4864
4850
  dependencies = [
4865
4851
  "libc",
4866
4852
  "windows-sys 0.61.2",
@@ -4868,9 +4854,9 @@ dependencies = [
4868
4854
 
4869
4855
  [[package]]
4870
4856
  name = "softaes"
4871
- version = "0.1.3"
4857
+ version = "0.1.5"
4872
4858
  source = "registry+https://github.com/rust-lang/crates.io-index"
4873
- checksum = "fef461faaeb36c340b6c887167a9054a034f6acfc50a014ead26a02b4356b3de"
4859
+ checksum = "45e14297decde697ddf377c25752aead0927d5cfc89c2684d2af96901a4ceeea"
4874
4860
 
4875
4861
  [[package]]
4876
4862
  name = "speedate"
@@ -4918,13 +4904,13 @@ version = "0.3.0-rc.9"
4918
4904
  source = "registry+https://github.com/rust-lang/crates.io-index"
4919
4905
  checksum = "10db6f219196a8528f9ec904d9d45cdad692d65b0e57e72be4dedd1c5fddce36"
4920
4906
  dependencies = [
4921
- "aead 0.6.0-rc.10",
4922
- "aes 0.9.0",
4923
- "aes-gcm 0.11.0-rc.3",
4907
+ "aead 0.6.0",
4908
+ "aes 0.9.1",
4909
+ "aes-gcm 0.11.0-rc.4",
4924
4910
  "cbc",
4925
4911
  "chacha20",
4926
- "cipher 0.5.1",
4927
- "ctr 0.10.0",
4912
+ "cipher 0.5.2",
4913
+ "ctr 0.10.1",
4928
4914
  "ctutils",
4929
4915
  "des",
4930
4916
  "poly1305",
@@ -4956,7 +4942,7 @@ dependencies = [
4956
4942
  "argon2",
4957
4943
  "bcrypt-pbkdf",
4958
4944
  "ctutils",
4959
- "ed25519-dalek 3.0.0-pre.7",
4945
+ "ed25519-dalek 3.0.0-rc.0",
4960
4946
  "hex",
4961
4947
  "hmac",
4962
4948
  "p256",
@@ -5156,33 +5142,13 @@ version = "0.2.18"
5156
5142
  source = "registry+https://github.com/rust-lang/crates.io-index"
5157
5143
  checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
5158
5144
 
5159
- [[package]]
5160
- name = "thiserror"
5161
- version = "1.0.69"
5162
- source = "registry+https://github.com/rust-lang/crates.io-index"
5163
- checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
5164
- dependencies = [
5165
- "thiserror-impl 1.0.69",
5166
- ]
5167
-
5168
5145
  [[package]]
5169
5146
  name = "thiserror"
5170
5147
  version = "2.0.18"
5171
5148
  source = "registry+https://github.com/rust-lang/crates.io-index"
5172
5149
  checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
5173
5150
  dependencies = [
5174
- "thiserror-impl 2.0.18",
5175
- ]
5176
-
5177
- [[package]]
5178
- name = "thiserror-impl"
5179
- version = "1.0.69"
5180
- source = "registry+https://github.com/rust-lang/crates.io-index"
5181
- checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
5182
- dependencies = [
5183
- "proc-macro2",
5184
- "quote",
5185
- "syn",
5151
+ "thiserror-impl",
5186
5152
  ]
5187
5153
 
5188
5154
  [[package]]
@@ -5368,9 +5334,9 @@ dependencies = [
5368
5334
 
5369
5335
  [[package]]
5370
5336
  name = "tower-http"
5371
- version = "0.6.10"
5337
+ version = "0.6.11"
5372
5338
  source = "registry+https://github.com/rust-lang/crates.io-index"
5373
- checksum = "68d6fdd9f81c2819c9a8b0e0cd91660e7746a8e6ea2ba7c6b2b057985f6bcb51"
5339
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
5374
5340
  dependencies = [
5375
5341
  "bitflags",
5376
5342
  "bytes",
@@ -5515,7 +5481,7 @@ dependencies = [
5515
5481
  "strum 0.26.3",
5516
5482
  "strum_macros 0.26.4",
5517
5483
  "tempfile",
5518
- "thiserror 2.0.18",
5484
+ "thiserror",
5519
5485
  "tracing",
5520
5486
  "tracing-subscriber",
5521
5487
  "turso_ext",
@@ -5560,7 +5526,7 @@ dependencies = [
5560
5526
  "miette",
5561
5527
  "strum 0.26.3",
5562
5528
  "strum_macros 0.26.4",
5563
- "thiserror 2.0.18",
5529
+ "thiserror",
5564
5530
  "turso_macros",
5565
5531
  ]
5566
5532
 
@@ -5581,9 +5547,9 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
5581
5547
 
5582
5548
  [[package]]
5583
5549
  name = "typenum"
5584
- version = "1.20.0"
5550
+ version = "1.20.1"
5585
5551
  source = "registry+https://github.com/rust-lang/crates.io-index"
5586
- checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
5552
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
5587
5553
 
5588
5554
  [[package]]
5589
5555
  name = "unarray"
@@ -5629,9 +5595,9 @@ dependencies = [
5629
5595
 
5630
5596
  [[package]]
5631
5597
  name = "unicode-segmentation"
5632
- version = "1.13.2"
5598
+ version = "1.13.3"
5633
5599
  source = "registry+https://github.com/rust-lang/crates.io-index"
5634
- checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
5600
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
5635
5601
 
5636
5602
  [[package]]
5637
5603
  name = "unicode-width"
@@ -5695,7 +5661,7 @@ version = "0.6.1"
5695
5661
  source = "registry+https://github.com/rust-lang/crates.io-index"
5696
5662
  checksum = "f4987bdc12753382e0bec4a65c50738ffaabc998b9cdd1f952fb5f39b0048a96"
5697
5663
  dependencies = [
5698
- "crypto-common 0.2.1",
5664
+ "crypto-common 0.2.2",
5699
5665
  "ctutils",
5700
5666
  ]
5701
5667
 
@@ -5743,9 +5709,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
5743
5709
 
5744
5710
  [[package]]
5745
5711
  name = "uuid"
5746
- version = "1.23.1"
5712
+ version = "1.23.3"
5747
5713
  source = "registry+https://github.com/rust-lang/crates.io-index"
5748
- checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
5714
+ checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
5749
5715
  dependencies = [
5750
5716
  "getrandom 0.4.2",
5751
5717
  "js-sys",
@@ -5801,9 +5767,9 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
5801
5767
 
5802
5768
  [[package]]
5803
5769
  name = "wasip2"
5804
- version = "1.0.3+wasi-0.2.9"
5770
+ version = "1.0.4+wasi-0.2.12"
5805
5771
  source = "registry+https://github.com/rust-lang/crates.io-index"
5806
- checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
5772
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
5807
5773
  dependencies = [
5808
5774
  "wit-bindgen 0.57.1",
5809
5775
  ]
@@ -5819,9 +5785,9 @@ dependencies = [
5819
5785
 
5820
5786
  [[package]]
5821
5787
  name = "wasm-bindgen"
5822
- version = "0.2.121"
5788
+ version = "0.2.125"
5823
5789
  source = "registry+https://github.com/rust-lang/crates.io-index"
5824
- checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
5790
+ checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
5825
5791
  dependencies = [
5826
5792
  "cfg-if",
5827
5793
  "once_cell",
@@ -5832,9 +5798,9 @@ dependencies = [
5832
5798
 
5833
5799
  [[package]]
5834
5800
  name = "wasm-bindgen-futures"
5835
- version = "0.4.71"
5801
+ version = "0.4.75"
5836
5802
  source = "registry+https://github.com/rust-lang/crates.io-index"
5837
- checksum = "96492d0d3ffba25305a7dc88720d250b1401d7edca02cc3bcd50633b424673b8"
5803
+ checksum = "503b14d284f2c8dac03b819967e155ea753f573586193b2b2c95990cb5d69280"
5838
5804
  dependencies = [
5839
5805
  "js-sys",
5840
5806
  "wasm-bindgen",
@@ -5842,9 +5808,9 @@ dependencies = [
5842
5808
 
5843
5809
  [[package]]
5844
5810
  name = "wasm-bindgen-macro"
5845
- version = "0.2.121"
5811
+ version = "0.2.125"
5846
5812
  source = "registry+https://github.com/rust-lang/crates.io-index"
5847
- checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
5813
+ checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
5848
5814
  dependencies = [
5849
5815
  "quote",
5850
5816
  "wasm-bindgen-macro-support",
@@ -5852,9 +5818,9 @@ dependencies = [
5852
5818
 
5853
5819
  [[package]]
5854
5820
  name = "wasm-bindgen-macro-support"
5855
- version = "0.2.121"
5821
+ version = "0.2.125"
5856
5822
  source = "registry+https://github.com/rust-lang/crates.io-index"
5857
- checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
5823
+ checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
5858
5824
  dependencies = [
5859
5825
  "bumpalo",
5860
5826
  "proc-macro2",
@@ -5865,9 +5831,9 @@ dependencies = [
5865
5831
 
5866
5832
  [[package]]
5867
5833
  name = "wasm-bindgen-shared"
5868
- version = "0.2.121"
5834
+ version = "0.2.125"
5869
5835
  source = "registry+https://github.com/rust-lang/crates.io-index"
5870
- checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
5836
+ checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
5871
5837
  dependencies = [
5872
5838
  "unicode-ident",
5873
5839
  ]
@@ -5921,9 +5887,9 @@ dependencies = [
5921
5887
 
5922
5888
  [[package]]
5923
5889
  name = "web-sys"
5924
- version = "0.3.98"
5890
+ version = "0.3.102"
5925
5891
  source = "registry+https://github.com/rust-lang/crates.io-index"
5926
- checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
5892
+ checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
5927
5893
  dependencies = [
5928
5894
  "js-sys",
5929
5895
  "wasm-bindgen",
@@ -6284,9 +6250,9 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
6284
6250
 
6285
6251
  [[package]]
6286
6252
  name = "yoke"
6287
- version = "0.8.2"
6253
+ version = "0.8.3"
6288
6254
  source = "registry+https://github.com/rust-lang/crates.io-index"
6289
- checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
6255
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
6290
6256
  dependencies = [
6291
6257
  "stable_deref_trait",
6292
6258
  "yoke-derive",
@@ -6319,23 +6285,23 @@ dependencies = [
6319
6285
  "oxc_syntax",
6320
6286
  "postcard",
6321
6287
  "serde",
6322
- "thiserror 2.0.18",
6288
+ "thiserror",
6323
6289
  ]
6324
6290
 
6325
6291
  [[package]]
6326
6292
  name = "zerocopy"
6327
- version = "0.8.48"
6293
+ version = "0.8.52"
6328
6294
  source = "registry+https://github.com/rust-lang/crates.io-index"
6329
- checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
6295
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
6330
6296
  dependencies = [
6331
6297
  "zerocopy-derive",
6332
6298
  ]
6333
6299
 
6334
6300
  [[package]]
6335
6301
  name = "zerocopy-derive"
6336
- version = "0.8.48"
6302
+ version = "0.8.52"
6337
6303
  source = "registry+https://github.com/rust-lang/crates.io-index"
6338
- checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
6304
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
6339
6305
  dependencies = [
6340
6306
  "proc-macro2",
6341
6307
  "quote",
@@ -6365,9 +6331,9 @@ dependencies = [
6365
6331
 
6366
6332
  [[package]]
6367
6333
  name = "zeroize"
6368
- version = "1.8.2"
6334
+ version = "1.9.0"
6369
6335
  source = "registry+https://github.com/rust-lang/crates.io-index"
6370
- checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
6336
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
6371
6337
 
6372
6338
  [[package]]
6373
6339
  name = "zerotrie"