bashkit 0.1.9__tar.gz → 0.1.10__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 (304) hide show
  1. {bashkit-0.1.9 → bashkit-0.1.10}/Cargo.lock +192 -125
  2. {bashkit-0.1.9 → bashkit-0.1.10}/Cargo.toml +18 -6
  3. {bashkit-0.1.9 → bashkit-0.1.10}/PKG-INFO +8 -6
  4. {bashkit-0.1.9/crates/bashkit-python → bashkit-0.1.10}/README.md +7 -5
  5. {bashkit-0.1.9 → bashkit-0.1.10}/bashkit/deepagents.py +12 -2
  6. {bashkit-0.1.9 → bashkit-0.1.10}/bashkit/pydantic_ai.py +2 -0
  7. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/Cargo.toml +15 -1
  8. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/README.md +48 -2
  9. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/benches/parallel_execution.rs +1 -1
  10. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/docs/compatibility.md +43 -34
  11. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/docs/python.md +4 -4
  12. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/docs/threat-model.md +286 -65
  13. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/agent_tool.rs +7 -7
  14. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/custom_backend.rs +1 -1
  15. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/custom_filesystem_impl.rs +19 -19
  16. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/python_external_functions.rs +5 -3
  17. bashkit-0.1.10/crates/bashkit/examples/realfs_readonly.rs +78 -0
  18. bashkit-0.1.10/crates/bashkit/examples/realfs_readwrite.rs +52 -0
  19. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/scripted_tool.rs +28 -44
  20. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/show_tool_output.rs +14 -1
  21. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/archive.rs +5 -3
  22. bashkit-0.1.10/crates/bashkit/src/builtins/assert.rs +340 -0
  23. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/awk.rs +496 -63
  24. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/checksum.rs +20 -12
  25. bashkit-0.1.10/crates/bashkit/src/builtins/clear.rs +55 -0
  26. bashkit-0.1.10/crates/bashkit/src/builtins/compgen.rs +349 -0
  27. bashkit-0.1.10/crates/bashkit/src/builtins/csv.rs +612 -0
  28. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/curl.rs +16 -13
  29. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/cuttr.rs +61 -60
  30. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/date.rs +42 -18
  31. bashkit-0.1.10/crates/bashkit/src/builtins/dotenv.rs +302 -0
  32. bashkit-0.1.10/crates/bashkit/src/builtins/envsubst.rs +257 -0
  33. bashkit-0.1.10/crates/bashkit/src/builtins/expand.rs +341 -0
  34. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/export.rs +1 -1
  35. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/expr.rs +12 -16
  36. bashkit-0.1.10/crates/bashkit/src/builtins/fc.rs +230 -0
  37. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/fileops.rs +30 -29
  38. bashkit-0.1.10/crates/bashkit/src/builtins/fold.rs +210 -0
  39. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/git.rs +139 -2
  40. bashkit-0.1.10/crates/bashkit/src/builtins/glob_cmd.rs +276 -0
  41. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/grep.rs +38 -39
  42. bashkit-0.1.10/crates/bashkit/src/builtins/help.rs +602 -0
  43. bashkit-0.1.10/crates/bashkit/src/builtins/http.rs +597 -0
  44. bashkit-0.1.10/crates/bashkit/src/builtins/iconv.rs +416 -0
  45. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/inspect.rs +23 -21
  46. bashkit-0.1.10/crates/bashkit/src/builtins/join.rs +246 -0
  47. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/jq.rs +95 -9
  48. bashkit-0.1.10/crates/bashkit/src/builtins/json.rs +483 -0
  49. bashkit-0.1.10/crates/bashkit/src/builtins/log.rs +248 -0
  50. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/ls.rs +360 -9
  51. bashkit-0.1.10/crates/bashkit/src/builtins/mkfifo.rs +228 -0
  52. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/mod.rs +62 -38
  53. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/navigation.rs +1 -25
  54. bashkit-0.1.10/crates/bashkit/src/builtins/parallel.rs +358 -0
  55. bashkit-0.1.10/crates/bashkit/src/builtins/patch.rs +619 -0
  56. bashkit-0.1.10/crates/bashkit/src/builtins/path.rs +522 -0
  57. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/pipeline.rs +1 -1
  58. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/python.rs +211 -110
  59. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/read.rs +49 -3
  60. bashkit-0.1.10/crates/bashkit/src/builtins/retry.rs +251 -0
  61. bashkit-0.1.10/crates/bashkit/src/builtins/rg.rs +536 -0
  62. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/sed.rs +12 -12
  63. bashkit-0.1.10/crates/bashkit/src/builtins/semver.rs +341 -0
  64. bashkit-0.1.10/crates/bashkit/src/builtins/split.rs +262 -0
  65. bashkit-0.1.10/crates/bashkit/src/builtins/template.rs +605 -0
  66. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/test.rs +48 -13
  67. bashkit-0.1.10/crates/bashkit/src/builtins/tomlq.rs +507 -0
  68. bashkit-0.1.10/crates/bashkit/src/builtins/tree.rs +393 -0
  69. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/vars.rs +5 -5
  70. bashkit-0.1.10/crates/bashkit/src/builtins/verify.rs +246 -0
  71. bashkit-0.1.10/crates/bashkit/src/builtins/yaml.rs +707 -0
  72. bashkit-0.1.10/crates/bashkit/src/builtins/zip_cmd.rs +670 -0
  73. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/error.rs +4 -0
  74. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/fs/memory.rs +272 -96
  75. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/fs/mod.rs +73 -2
  76. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/fs/mountable.rs +17 -39
  77. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/fs/overlay.rs +49 -73
  78. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/fs/posix.rs +37 -36
  79. bashkit-0.1.10/crates/bashkit/src/fs/realfs.rs +629 -0
  80. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/fs/traits.rs +28 -0
  81. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/git/client.rs +380 -31
  82. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/git/config.rs +35 -21
  83. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/interpreter/jobs.rs +23 -26
  84. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/interpreter/mod.rs +1337 -407
  85. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/lib.rs +334 -25
  86. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/network/allowlist.rs +1 -1
  87. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/network/client.rs +64 -43
  88. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/parser/ast.rs +17 -0
  89. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/parser/lexer.rs +96 -65
  90. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/parser/mod.rs +131 -18
  91. bashkit-0.1.10/crates/bashkit/src/scripted_tool/execute.rs +1135 -0
  92. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/scripted_tool/mod.rs +478 -39
  93. bashkit-0.1.10/crates/bashkit/src/scripted_tool/toolset.rs +577 -0
  94. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/tool.rs +814 -235
  95. bashkit-0.1.10/crates/bashkit/tests/background_exec_tests.rs +102 -0
  96. bashkit-0.1.10/crates/bashkit/tests/cancellation_tests.rs +78 -0
  97. bashkit-0.1.10/crates/bashkit/tests/coproc_tests.rs +201 -0
  98. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/custom_fs_tests.rs +1 -1
  99. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/dev_null_tests.rs +2 -2
  100. bashkit-0.1.10/crates/bashkit/tests/git_inspection_tests.rs +292 -0
  101. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/git_integration_tests.rs +5 -3
  102. bashkit-0.1.10/crates/bashkit/tests/history_tests.rs +217 -0
  103. bashkit-0.1.10/crates/bashkit/tests/mkfifo_tests.rs +166 -0
  104. bashkit-0.1.10/crates/bashkit/tests/nested_subscript_tests.rs +77 -0
  105. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/proptest_security.rs +85 -0
  106. bashkit-0.1.10/crates/bashkit/tests/realfs_tests.rs +299 -0
  107. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/security_audit_pocs.rs +4 -4
  108. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/skills_tests.rs +4 -18
  109. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +39 -0
  110. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +14 -0
  111. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +34 -0
  112. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/find.test.sh +73 -0
  113. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +10 -0
  114. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +16 -0
  115. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +14 -0
  116. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +2 -2
  117. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -4
  118. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_runner.rs +15 -15
  119. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_tests.rs +2 -6
  120. {bashkit-0.1.9 → bashkit-0.1.10/crates/bashkit-python}/README.md +7 -5
  121. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit-python/src/lib.rs +96 -44
  122. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit-python/tests/test_bashkit.py +47 -2
  123. bashkit-0.1.9/crates/bashkit/src/builtins/path.rs +0 -285
  124. bashkit-0.1.9/crates/bashkit/src/scripted_tool/execute.rs +0 -482
  125. {bashkit-0.1.9 → bashkit-0.1.10}/bashkit/__init__.py +0 -0
  126. {bashkit-0.1.9 → bashkit-0.1.10}/bashkit/_bashkit.pyi +0 -0
  127. {bashkit-0.1.9 → bashkit-0.1.10}/bashkit/langchain.py +0 -0
  128. {bashkit-0.1.9 → bashkit-0.1.10}/bashkit/py.typed +0 -0
  129. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/docs/custom_builtins.md +0 -0
  130. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/docs/logging.md +0 -0
  131. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/basic.rs +0 -0
  132. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/custom_builtins.rs +1 -1
  133. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/custom_fs.rs +0 -0
  134. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/git_workflow.rs +0 -0
  135. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/python_scripts.rs +0 -0
  136. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/resource_limits.rs +0 -0
  137. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/streaming_output.rs +0 -0
  138. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/text_files.rs +0 -0
  139. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/text_processing.rs +0 -0
  140. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/examples/virtual_identity.rs +0 -0
  141. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/base64.rs +0 -0
  142. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/bc.rs +0 -0
  143. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/cat.rs +0 -0
  144. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/column.rs +0 -0
  145. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/comm.rs +0 -0
  146. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/diff.rs +0 -0
  147. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/dirstack.rs +0 -0
  148. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/disk.rs +0 -0
  149. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/echo.rs +0 -0
  150. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/environ.rs +0 -0
  151. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/flow.rs +0 -0
  152. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/headtail.rs +0 -0
  153. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/hextools.rs +0 -0
  154. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/nl.rs +0 -0
  155. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/paste.rs +0 -0
  156. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/printf.rs +0 -0
  157. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/seq.rs +0 -0
  158. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/sleep.rs +0 -0
  159. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/sortuniq.rs +0 -0
  160. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/source.rs +0 -0
  161. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/strings.rs +0 -0
  162. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/system.rs +0 -0
  163. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/textrev.rs +0 -0
  164. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/timeout.rs +0 -0
  165. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/wait.rs +0 -0
  166. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/wc.rs +0 -0
  167. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/builtins/yes.rs +0 -0
  168. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/fs/backend.rs +0 -0
  169. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/fs/limits.rs +0 -0
  170. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/git/mod.rs +0 -0
  171. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/interpreter/state.rs +0 -0
  172. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/limits.rs +0 -0
  173. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/logging_impl.rs +0 -0
  174. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/network/mod.rs +0 -0
  175. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/parser/span.rs +0 -0
  176. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/src/parser/tokens.rs +0 -0
  177. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/builtin_error_security_tests.rs +0 -0
  178. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/custom_builtins_tests.rs +1 -1
  179. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/git_advanced_tests.rs +0 -0
  180. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/git_remote_security_tests.rs +0 -0
  181. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/git_security_tests.rs +0 -0
  182. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/issue_274_test.rs +0 -0
  183. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/issue_275_279_282_test.rs +0 -0
  184. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/issue_276_test.rs +0 -0
  185. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/issue_277_test.rs +0 -0
  186. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/issue_289_test.rs +0 -0
  187. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/issue_290_test.rs +0 -0
  188. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/issue_291_test.rs +0 -0
  189. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/logging_security_tests.rs +0 -0
  190. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/network_security_tests.rs +0 -0
  191. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/proptest_differential.rs +0 -0
  192. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/python_integration_tests.rs +0 -0
  193. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/script_execution_tests.rs +0 -0
  194. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
  195. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
  196. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
  197. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
  198. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
  199. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
  200. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
  201. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
  202. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
  203. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
  204. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
  205. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/snapshot_tests.rs +0 -0
  206. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/source_function_tests.rs +0 -0
  207. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
  208. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
  209. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
  210. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
  211. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
  212. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
  213. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
  214. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
  215. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
  216. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
  217. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
  218. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
  219. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
  220. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
  221. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
  222. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
  223. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
  224. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
  225. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
  226. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
  227. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
  228. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
  229. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
  230. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
  231. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
  232. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
  233. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
  234. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
  235. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
  236. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
  237. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
  238. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
  239. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
  240. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
  241. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
  242. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
  243. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
  244. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
  245. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
  246. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
  247. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
  248. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
  249. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
  250. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
  251. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
  252. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
  253. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
  254. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
  255. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
  256. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
  257. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
  258. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
  259. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
  260. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
  261. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
  262. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
  263. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
  264. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
  265. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
  266. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
  267. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
  268. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
  269. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
  270. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
  271. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
  272. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
  273. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
  274. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
  275. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
  276. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
  277. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
  278. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
  279. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
  280. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
  281. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
  282. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
  283. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
  284. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
  285. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
  286. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
  287. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
  288. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
  289. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
  290. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
  291. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
  292. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
  293. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
  294. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
  295. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
  296. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
  297. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/threat_model_tests.rs +0 -0
  298. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit/tests/unicode_security_tests.rs +0 -0
  299. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit-python/Cargo.toml +0 -0
  300. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit-python/examples/bash_basics.py +0 -0
  301. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
  302. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit-python/tests/test_frameworks.py +0 -0
  303. {bashkit-0.1.9 → bashkit-0.1.10}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
  304. {bashkit-0.1.9 → bashkit-0.1.10}/pyproject.toml +0 -0
@@ -63,9 +63,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
63
63
 
64
64
  [[package]]
65
65
  name = "anstream"
66
- version = "0.6.21"
66
+ version = "1.0.0"
67
67
  source = "registry+https://github.com/rust-lang/crates.io-index"
68
- checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
68
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
69
69
  dependencies = [
70
70
  "anstyle",
71
71
  "anstyle-parse",
@@ -78,15 +78,15 @@ dependencies = [
78
78
 
79
79
  [[package]]
80
80
  name = "anstyle"
81
- version = "1.0.13"
81
+ version = "1.0.14"
82
82
  source = "registry+https://github.com/rust-lang/crates.io-index"
83
- checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
83
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
84
84
 
85
85
  [[package]]
86
86
  name = "anstyle-parse"
87
- version = "0.2.7"
87
+ version = "1.0.0"
88
88
  source = "registry+https://github.com/rust-lang/crates.io-index"
89
- checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
89
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
90
90
  dependencies = [
91
91
  "utf8parse",
92
92
  ]
@@ -218,7 +218,7 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
218
218
 
219
219
  [[package]]
220
220
  name = "bashkit"
221
- version = "0.1.9"
221
+ version = "0.1.10"
222
222
  dependencies = [
223
223
  "anyhow",
224
224
  "async-trait",
@@ -245,16 +245,18 @@ dependencies = [
245
245
  "serial_test",
246
246
  "sha1",
247
247
  "sha2",
248
+ "tempfile",
248
249
  "thiserror 2.0.18",
249
250
  "tokio",
250
251
  "tokio-test",
252
+ "tower",
251
253
  "tracing",
252
254
  "url",
253
255
  ]
254
256
 
255
257
  [[package]]
256
258
  name = "bashkit-bench"
257
- version = "0.1.9"
259
+ version = "0.1.10"
258
260
  dependencies = [
259
261
  "anyhow",
260
262
  "bashkit",
@@ -270,19 +272,20 @@ dependencies = [
270
272
 
271
273
  [[package]]
272
274
  name = "bashkit-cli"
273
- version = "0.1.9"
275
+ version = "0.1.10"
274
276
  dependencies = [
275
277
  "anyhow",
276
278
  "bashkit",
277
279
  "clap",
278
280
  "serde",
279
281
  "serde_json",
282
+ "tempfile",
280
283
  "tokio",
281
284
  ]
282
285
 
283
286
  [[package]]
284
287
  name = "bashkit-eval"
285
- version = "0.1.9"
288
+ version = "0.1.10"
286
289
  dependencies = [
287
290
  "anyhow",
288
291
  "async-trait",
@@ -296,9 +299,22 @@ dependencies = [
296
299
  "tokio",
297
300
  ]
298
301
 
302
+ [[package]]
303
+ name = "bashkit-js"
304
+ version = "0.1.10"
305
+ dependencies = [
306
+ "bashkit",
307
+ "napi",
308
+ "napi-build",
309
+ "napi-derive",
310
+ "serde",
311
+ "serde_json",
312
+ "tokio",
313
+ ]
314
+
299
315
  [[package]]
300
316
  name = "bashkit-python"
301
- version = "0.1.9"
317
+ version = "0.1.10"
302
318
  dependencies = [
303
319
  "bashkit",
304
320
  "pyo3",
@@ -395,9 +411,9 @@ dependencies = [
395
411
 
396
412
  [[package]]
397
413
  name = "cc"
398
- version = "1.2.56"
414
+ version = "1.2.57"
399
415
  source = "registry+https://github.com/rust-lang/crates.io-index"
400
- checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
416
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
401
417
  dependencies = [
402
418
  "find-msvc-tools",
403
419
  "jobserver",
@@ -465,9 +481,9 @@ dependencies = [
465
481
 
466
482
  [[package]]
467
483
  name = "clap"
468
- version = "4.5.60"
484
+ version = "4.6.0"
469
485
  source = "registry+https://github.com/rust-lang/crates.io-index"
470
- checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
486
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
471
487
  dependencies = [
472
488
  "clap_builder",
473
489
  "clap_derive",
@@ -475,9 +491,9 @@ dependencies = [
475
491
 
476
492
  [[package]]
477
493
  name = "clap_builder"
478
- version = "4.5.60"
494
+ version = "4.6.0"
479
495
  source = "registry+https://github.com/rust-lang/crates.io-index"
480
- checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
496
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
481
497
  dependencies = [
482
498
  "anstream",
483
499
  "anstyle",
@@ -487,9 +503,9 @@ dependencies = [
487
503
 
488
504
  [[package]]
489
505
  name = "clap_derive"
490
- version = "4.5.55"
506
+ version = "4.6.0"
491
507
  source = "registry+https://github.com/rust-lang/crates.io-index"
492
- checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
508
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
493
509
  dependencies = [
494
510
  "heck",
495
511
  "proc-macro2",
@@ -499,9 +515,9 @@ dependencies = [
499
515
 
500
516
  [[package]]
501
517
  name = "clap_lex"
502
- version = "1.0.0"
518
+ version = "1.1.0"
503
519
  source = "registry+https://github.com/rust-lang/crates.io-index"
504
- checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
520
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
505
521
 
506
522
  [[package]]
507
523
  name = "cmake"
@@ -529,9 +545,9 @@ checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
529
545
 
530
546
  [[package]]
531
547
  name = "colorchoice"
532
- version = "1.0.4"
548
+ version = "1.0.5"
533
549
  source = "registry+https://github.com/rust-lang/crates.io-index"
534
- checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
550
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
535
551
 
536
552
  [[package]]
537
553
  name = "colored"
@@ -579,13 +595,12 @@ dependencies = [
579
595
  ]
580
596
 
581
597
  [[package]]
582
- name = "core-foundation"
583
- version = "0.9.4"
598
+ name = "convert_case"
599
+ version = "0.11.0"
584
600
  source = "registry+https://github.com/rust-lang/crates.io-index"
585
- checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
601
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
586
602
  dependencies = [
587
- "core-foundation-sys",
588
- "libc",
603
+ "unicode-segmentation",
589
604
  ]
590
605
 
591
606
  [[package]]
@@ -705,11 +720,27 @@ dependencies = [
705
720
  "typenum",
706
721
  ]
707
722
 
723
+ [[package]]
724
+ name = "ctor"
725
+ version = "0.6.3"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e"
728
+ dependencies = [
729
+ "ctor-proc-macro",
730
+ "dtor",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "ctor-proc-macro"
735
+ version = "0.0.7"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
738
+
708
739
  [[package]]
709
740
  name = "derive-where"
710
- version = "1.6.0"
741
+ version = "1.6.1"
711
742
  source = "registry+https://github.com/rust-lang/crates.io-index"
712
- checksum = "ef941ded77d15ca19b40374869ac6000af1c9f2a4c0f3d4c70926287e6364a8f"
743
+ checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
713
744
  dependencies = [
714
745
  "proc-macro2",
715
746
  "quote",
@@ -743,6 +774,21 @@ dependencies = [
743
774
  "syn",
744
775
  ]
745
776
 
777
+ [[package]]
778
+ name = "dtor"
779
+ version = "0.1.1"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301"
782
+ dependencies = [
783
+ "dtor-proc-macro",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "dtor-proc-macro"
788
+ version = "0.0.6"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
791
+
746
792
  [[package]]
747
793
  name = "dunce"
748
794
  version = "1.0.5"
@@ -779,15 +825,6 @@ version = "1.0.0"
779
825
  source = "registry+https://github.com/rust-lang/crates.io-index"
780
826
  checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
781
827
 
782
- [[package]]
783
- name = "encoding_rs"
784
- version = "0.8.35"
785
- source = "registry+https://github.com/rust-lang/crates.io-index"
786
- checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
787
- dependencies = [
788
- "cfg-if",
789
- ]
790
-
791
828
  [[package]]
792
829
  name = "equivalent"
793
830
  version = "1.0.2"
@@ -815,6 +852,17 @@ dependencies = [
815
852
  "rand 0.8.5",
816
853
  ]
817
854
 
855
+ [[package]]
856
+ name = "fancy-regex"
857
+ version = "0.17.0"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "72cf461f865c862bb7dc573f643dd6a2b6842f7c30b07882b56bd148cc2761b8"
860
+ dependencies = [
861
+ "bit-set",
862
+ "regex-automata",
863
+ "regex-syntax",
864
+ ]
865
+
818
866
  [[package]]
819
867
  name = "fastrand"
820
868
  version = "2.3.0"
@@ -1054,25 +1102,6 @@ dependencies = [
1054
1102
  "regex-syntax",
1055
1103
  ]
1056
1104
 
1057
- [[package]]
1058
- name = "h2"
1059
- version = "0.4.13"
1060
- source = "registry+https://github.com/rust-lang/crates.io-index"
1061
- checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
1062
- dependencies = [
1063
- "atomic-waker",
1064
- "bytes",
1065
- "fnv",
1066
- "futures-core",
1067
- "futures-sink",
1068
- "http",
1069
- "indexmap",
1070
- "slab",
1071
- "tokio",
1072
- "tokio-util",
1073
- "tracing",
1074
- ]
1075
-
1076
1105
  [[package]]
1077
1106
  name = "half"
1078
1107
  version = "2.7.1"
@@ -1188,7 +1217,6 @@ dependencies = [
1188
1217
  "bytes",
1189
1218
  "futures-channel",
1190
1219
  "futures-core",
1191
- "h2",
1192
1220
  "http",
1193
1221
  "http-body",
1194
1222
  "httparse",
@@ -1234,11 +1262,9 @@ dependencies = [
1234
1262
  "percent-encoding",
1235
1263
  "pin-project-lite",
1236
1264
  "socket2",
1237
- "system-configuration",
1238
1265
  "tokio",
1239
1266
  "tower-service",
1240
1267
  "tracing",
1241
- "windows-registry",
1242
1268
  ]
1243
1269
 
1244
1270
  [[package]]
@@ -1561,9 +1587,19 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1561
1587
 
1562
1588
  [[package]]
1563
1589
  name = "libc"
1564
- version = "0.2.182"
1590
+ version = "0.2.183"
1565
1591
  source = "registry+https://github.com/rust-lang/crates.io-index"
1566
- checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
1592
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
1593
+
1594
+ [[package]]
1595
+ name = "libloading"
1596
+ version = "0.9.0"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
1599
+ dependencies = [
1600
+ "cfg-if",
1601
+ "windows-link",
1602
+ ]
1567
1603
 
1568
1604
  [[package]]
1569
1605
  name = "libm"
@@ -1653,12 +1689,6 @@ version = "2.8.0"
1653
1689
  source = "registry+https://github.com/rust-lang/crates.io-index"
1654
1690
  checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1655
1691
 
1656
- [[package]]
1657
- name = "mime"
1658
- version = "0.3.17"
1659
- source = "registry+https://github.com/rust-lang/crates.io-index"
1660
- checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1661
-
1662
1692
  [[package]]
1663
1693
  name = "miniz_oxide"
1664
1694
  version = "0.8.9"
@@ -1682,13 +1712,15 @@ dependencies = [
1682
1712
 
1683
1713
  [[package]]
1684
1714
  name = "monty"
1685
- version = "0.0.7"
1686
- source = "git+https://github.com/pydantic/monty?rev=87f8f31#87f8f3104e9f0da0bf03f59a745b1e364d39d3bf"
1715
+ version = "0.0.8"
1716
+ source = "git+https://github.com/pydantic/monty?rev=e59c8fa#e59c8fa5229e38757ab0632d990b528aac395f35"
1687
1717
  dependencies = [
1688
1718
  "ahash",
1719
+ "fancy-regex",
1689
1720
  "hashbrown 0.16.1",
1690
1721
  "indexmap",
1691
1722
  "itertools 0.14.0",
1723
+ "libm",
1692
1724
  "num-bigint",
1693
1725
  "num-integer",
1694
1726
  "num-traits",
@@ -1719,6 +1751,70 @@ dependencies = [
1719
1751
  "typenum",
1720
1752
  ]
1721
1753
 
1754
+ [[package]]
1755
+ name = "napi"
1756
+ version = "3.8.3"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "e6944d0bf100571cd6e1a98a316cdca262deb6fccf8d93f5ae1502ca3fc88bd3"
1759
+ dependencies = [
1760
+ "bitflags",
1761
+ "ctor",
1762
+ "futures",
1763
+ "napi-build",
1764
+ "napi-sys",
1765
+ "nohash-hasher",
1766
+ "rustc-hash",
1767
+ "tokio",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "napi-build"
1772
+ version = "2.3.1"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
1775
+
1776
+ [[package]]
1777
+ name = "napi-derive"
1778
+ version = "3.5.2"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "2c914b5e420182bfb73504e0607592cdb8e2e21437d450883077669fb72a114d"
1781
+ dependencies = [
1782
+ "convert_case",
1783
+ "ctor",
1784
+ "napi-derive-backend",
1785
+ "proc-macro2",
1786
+ "quote",
1787
+ "syn",
1788
+ ]
1789
+
1790
+ [[package]]
1791
+ name = "napi-derive-backend"
1792
+ version = "5.0.2"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "f0864cf6a82e2cfb69067374b64c9253d7e910e5b34db833ed7495dda56ccb18"
1795
+ dependencies = [
1796
+ "convert_case",
1797
+ "proc-macro2",
1798
+ "quote",
1799
+ "semver",
1800
+ "syn",
1801
+ ]
1802
+
1803
+ [[package]]
1804
+ name = "napi-sys"
1805
+ version = "3.2.1"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
1808
+ dependencies = [
1809
+ "libloading",
1810
+ ]
1811
+
1812
+ [[package]]
1813
+ name = "nohash-hasher"
1814
+ version = "0.2.0"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1817
+
1722
1818
  [[package]]
1723
1819
  name = "num-bigint"
1724
1820
  version = "0.4.6"
@@ -1771,9 +1867,9 @@ dependencies = [
1771
1867
 
1772
1868
  [[package]]
1773
1869
  name = "once_cell"
1774
- version = "1.21.3"
1870
+ version = "1.21.4"
1775
1871
  source = "registry+https://github.com/rust-lang/crates.io-index"
1776
- checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1872
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1777
1873
 
1778
1874
  [[package]]
1779
1875
  name = "once_cell_polyfill"
@@ -2164,9 +2260,9 @@ dependencies = [
2164
2260
 
2165
2261
  [[package]]
2166
2262
  name = "quinn-proto"
2167
- version = "0.11.13"
2263
+ version = "0.11.14"
2168
2264
  source = "registry+https://github.com/rust-lang/crates.io-index"
2169
- checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2265
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
2170
2266
  dependencies = [
2171
2267
  "aws-lc-rs",
2172
2268
  "bytes",
@@ -2417,10 +2513,8 @@ checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
2417
2513
  dependencies = [
2418
2514
  "base64",
2419
2515
  "bytes",
2420
- "encoding_rs",
2421
2516
  "futures-core",
2422
2517
  "futures-util",
2423
- "h2",
2424
2518
  "http",
2425
2519
  "http-body",
2426
2520
  "http-body-util",
@@ -2429,7 +2523,6 @@ dependencies = [
2429
2523
  "hyper-util",
2430
2524
  "js-sys",
2431
2525
  "log",
2432
- "mime",
2433
2526
  "percent-encoding",
2434
2527
  "pin-project-lite",
2435
2528
  "quinn",
@@ -2602,7 +2695,7 @@ version = "0.6.2"
2602
2695
  source = "registry+https://github.com/rust-lang/crates.io-index"
2603
2696
  checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
2604
2697
  dependencies = [
2605
- "core-foundation 0.10.1",
2698
+ "core-foundation",
2606
2699
  "core-foundation-sys",
2607
2700
  "jni",
2608
2701
  "log",
@@ -2688,9 +2781,9 @@ dependencies = [
2688
2781
 
2689
2782
  [[package]]
2690
2783
  name = "schannel"
2691
- version = "0.1.28"
2784
+ version = "0.1.29"
2692
2785
  source = "registry+https://github.com/rust-lang/crates.io-index"
2693
- checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2786
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2694
2787
  dependencies = [
2695
2788
  "windows-sys 0.61.2",
2696
2789
  ]
@@ -2739,7 +2832,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
2832
  checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2740
2833
  dependencies = [
2741
2834
  "bitflags",
2742
- "core-foundation 0.10.1",
2835
+ "core-foundation",
2743
2836
  "core-foundation-sys",
2744
2837
  "libc",
2745
2838
  "security-framework-sys",
@@ -2927,12 +3020,12 @@ dependencies = [
2927
3020
 
2928
3021
  [[package]]
2929
3022
  name = "socket2"
2930
- version = "0.6.2"
3023
+ version = "0.6.3"
2931
3024
  source = "registry+https://github.com/rust-lang/crates.io-index"
2932
- checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
3025
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2933
3026
  dependencies = [
2934
3027
  "libc",
2935
- "windows-sys 0.60.2",
3028
+ "windows-sys 0.61.2",
2936
3029
  ]
2937
3030
 
2938
3031
  [[package]]
@@ -3032,27 +3125,6 @@ dependencies = [
3032
3125
  "syn",
3033
3126
  ]
3034
3127
 
3035
- [[package]]
3036
- name = "system-configuration"
3037
- version = "0.7.0"
3038
- source = "registry+https://github.com/rust-lang/crates.io-index"
3039
- checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
3040
- dependencies = [
3041
- "bitflags",
3042
- "core-foundation 0.9.4",
3043
- "system-configuration-sys",
3044
- ]
3045
-
3046
- [[package]]
3047
- name = "system-configuration-sys"
3048
- version = "0.6.0"
3049
- source = "registry+https://github.com/rust-lang/crates.io-index"
3050
- checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
3051
- dependencies = [
3052
- "core-foundation-sys",
3053
- "libc",
3054
- ]
3055
-
3056
3128
  [[package]]
3057
3129
  name = "tabled"
3058
3130
  version = "0.20.0"
@@ -3085,9 +3157,9 @@ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3085
3157
 
3086
3158
  [[package]]
3087
3159
  name = "tempfile"
3088
- version = "3.26.0"
3160
+ version = "3.27.0"
3089
3161
  source = "registry+https://github.com/rust-lang/crates.io-index"
3090
- checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
3162
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3091
3163
  dependencies = [
3092
3164
  "fastrand",
3093
3165
  "getrandom 0.4.2",
@@ -3167,9 +3239,9 @@ dependencies = [
3167
3239
 
3168
3240
  [[package]]
3169
3241
  name = "tinyvec"
3170
- version = "1.10.0"
3242
+ version = "1.11.0"
3171
3243
  source = "registry+https://github.com/rust-lang/crates.io-index"
3172
- checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3244
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
3173
3245
  dependencies = [
3174
3246
  "tinyvec_macros",
3175
3247
  ]
@@ -3368,6 +3440,12 @@ dependencies = [
3368
3440
  "tinyvec",
3369
3441
  ]
3370
3442
 
3443
+ [[package]]
3444
+ name = "unicode-segmentation"
3445
+ version = "1.12.0"
3446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3447
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3448
+
3371
3449
  [[package]]
3372
3450
  name = "unicode-width"
3373
3451
  version = "0.2.2"
@@ -3713,17 +3791,6 @@ version = "0.2.1"
3713
3791
  source = "registry+https://github.com/rust-lang/crates.io-index"
3714
3792
  checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3715
3793
 
3716
- [[package]]
3717
- name = "windows-registry"
3718
- version = "0.6.1"
3719
- source = "registry+https://github.com/rust-lang/crates.io-index"
3720
- checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
3721
- dependencies = [
3722
- "windows-link",
3723
- "windows-result",
3724
- "windows-strings",
3725
- ]
3726
-
3727
3794
  [[package]]
3728
3795
  name = "windows-result"
3729
3796
  version = "0.4.1"
@@ -4098,18 +4165,18 @@ dependencies = [
4098
4165
 
4099
4166
  [[package]]
4100
4167
  name = "zerocopy"
4101
- version = "0.8.40"
4168
+ version = "0.8.42"
4102
4169
  source = "registry+https://github.com/rust-lang/crates.io-index"
4103
- checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5"
4170
+ checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3"
4104
4171
  dependencies = [
4105
4172
  "zerocopy-derive",
4106
4173
  ]
4107
4174
 
4108
4175
  [[package]]
4109
4176
  name = "zerocopy-derive"
4110
- version = "0.8.40"
4177
+ version = "0.8.42"
4111
4178
  source = "registry+https://github.com/rust-lang/crates.io-index"
4112
- checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953"
4179
+ checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f"
4113
4180
  dependencies = [
4114
4181
  "proc-macro2",
4115
4182
  "quote",
@@ -7,8 +7,8 @@ resolver = "2"
7
7
  members = ["crates/*"]
8
8
 
9
9
  [workspace.package]
10
- version = "0.1.9"
11
- edition = "2021"
10
+ version = "0.1.10"
11
+ edition = "2024"
12
12
  license = "MIT"
13
13
  authors = ["Everruns"]
14
14
  repository = "https://github.com/everruns/bashkit"
@@ -31,9 +31,9 @@ serde = { version = "1", features = ["derive"] }
31
31
  serde_json = "1"
32
32
 
33
33
  # JSON processing (jq) - verified embeddable
34
- jaq-core = "2"
35
- jaq-std = "2"
36
- jaq-json = { version = "1", features = ["serde_json"] }
34
+ jaq-core = "2.2"
35
+ jaq-std = "2.1"
36
+ jaq-json = { version = "1.1", features = ["serde_json"] }
37
37
 
38
38
  # Text search (grep) - verified supports search_slice() for in-memory
39
39
  grep = "0.3"
@@ -41,7 +41,7 @@ grep-regex = "0.1"
41
41
  grep-searcher = "0.1"
42
42
 
43
43
  # HTTP client (for curl and API calls)
44
- reqwest = { version = "0.13", features = ["stream", "json"] }
44
+ reqwest = { version = "0.13", default-features = false, features = ["json", "rustls", "stream"] }
45
45
 
46
46
  # Glob matching
47
47
  globset = "0.4"
@@ -83,6 +83,7 @@ schemars = "1"
83
83
 
84
84
  # Logging/tracing
85
85
  tracing = "0.1"
86
+ tower = { version = "0.5", features = ["util"] }
86
87
 
87
88
  # Serial test execution
88
89
  serial_test = "3"
@@ -90,3 +91,14 @@ serial_test = "3"
90
91
  # Python bindings
91
92
  pyo3 = { version = "0.28.2", features = ["extension-module", "generate-import-lib"] }
92
93
  pyo3-async-runtimes = { version = "0.28", features = ["tokio-runtime"] }
94
+
95
+ # JavaScript/Node.js bindings (NAPI-RS)
96
+ napi = { version = "3.0.0", default-features = false, features = ["napi6", "compat-mode", "tokio_rt"] }
97
+ napi-derive = "3.0.0"
98
+ napi-build = "2"
99
+
100
+ [profile.release]
101
+ lto = "thin"
102
+ codegen-units = 1
103
+ panic = "abort"
104
+ strip = "symbols"