bashkit 0.10.0__tar.gz → 0.12.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.
- {bashkit-0.10.0 → bashkit-0.12.0}/Cargo.lock +50 -210
- {bashkit-0.10.0 → bashkit-0.12.0}/Cargo.toml +2 -2
- {bashkit-0.10.0 → bashkit-0.12.0}/PKG-INFO +5 -2
- {bashkit-0.10.0/crates/bashkit-python → bashkit-0.12.0}/README.md +3 -1
- {bashkit-0.10.0 → bashkit-0.12.0}/bashkit/_bashkit.pyi +22 -2
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/Cargo.toml +17 -4
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/README.md +3 -3
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/benches/parallel_execution.rs +4 -2
- bashkit-0.12.0/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782162173.md +67 -0
- bashkit-0.12.0/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782168239.md +75 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/docs/compatibility.md +2 -2
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/docs/threat-model.md +67 -0
- bashkit-0.12.0/crates/bashkit/examples/dump_builtins.rs +78 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/awk/parser.rs +12 -2
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/awk/tests.rs +14 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/compgen.rs +61 -54
- bashkit-0.12.0/crates/bashkit/src/builtins/dirstack.rs +192 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/limits.rs +4 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/mod.rs +6 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/paste.rs +44 -12
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/path.rs +1 -1
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/python.rs +114 -51
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/read.rs +79 -9
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/rg/mod.rs +202 -19
- bashkit-0.12.0/crates/bashkit/src/builtins/runtime_limits.rs +110 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/strings.rs +32 -2
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/template.rs +2 -2
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/typescript.rs +34 -38
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/vars.rs +18 -24
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/error.rs +10 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/fs/overlay.rs +138 -21
- bashkit-0.12.0/crates/bashkit/src/interpreter/arithmetic.rs +989 -0
- bashkit-0.12.0/crates/bashkit/src/interpreter/brace_expansion.rs +275 -0
- bashkit-0.12.0/crates/bashkit/src/interpreter/expansion.rs +1738 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/interpreter/glob.rs +72 -28
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/interpreter/mod.rs +746 -3646
- bashkit-0.12.0/crates/bashkit/src/interpreter/redirection.rs +457 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/lib.rs +121 -7
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/limits.rs +39 -2
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/parser/lexer.rs +113 -17
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/parser/mod.rs +64 -4
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/tool.rs +97 -19
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/blackbox_security_tests.rs +205 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/builtin_registry_tests.rs +31 -0
- bashkit-0.12.0/crates/bashkit/tests/integration/compgen_tests.rs +106 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/coreutils_differential_tests.rs +19 -1
- bashkit-0.12.0/crates/bashkit/tests/integration/exec_options_tests.rs +73 -0
- bashkit-0.12.0/crates/bashkit/tests/integration/limitations_doc_tests.rs +135 -0
- bashkit-0.12.0/crates/bashkit/tests/integration/limitations_evidence_tests.rs +128 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/main.rs +6 -0
- bashkit-0.12.0/crates/bashkit/tests/integration/parallel_sessions_tests.rs +74 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/python_security_tests.rs +2 -8
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/set_e_and_or_tests.rs +42 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/snapshot_tests.rs +49 -0
- bashkit-0.12.0/crates/bashkit/tests/integration/threat_model_doc_tests.rs +105 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/threat_model_tests.rs +48 -10
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/command.test.sh +14 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +30 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +30 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +15 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +21 -0
- bashkit-0.12.0/crates/bashkit/tests/spec_cases/bash/wait.test.sh +52 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +11 -3
- {bashkit-0.10.0 → bashkit-0.12.0/crates/bashkit-python}/README.md +3 -1
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/examples/bash_basics.py +7 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/src/lib.rs +84 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/_bashkit_categories.py +35 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_basic.py +5 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/pyproject.toml +1 -0
- bashkit-0.10.0/crates/bashkit/src/builtins/dirstack.rs +0 -482
- bashkit-0.10.0/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -19
- {bashkit-0.10.0 → bashkit-0.12.0}/bashkit/__init__.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/bashkit/deepagents.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/bashkit/langchain.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/bashkit/py.typed +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/bashkit/pydantic_ai.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/benches/file_ops.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/benches/hotpath.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/benches/results/README.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/benches/results/criterion-file_ops-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/benches/results/criterion-hotpath-attrs+shopt-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/benches/results/criterion-hotpath-perf-linux-x86_64-1779744742.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/benches/results/criterion-parallel-(none)-linux-x86_64-1773469129.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1777865268.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/benches/sqlite.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/docs/clap-builtins.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/docs/credential-injection.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/docs/custom_builtins.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/docs/hooks.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/docs/jq.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/docs/live_mounts.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/docs/logging.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/docs/python.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/docs/sqlite.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/docs/ssh.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/docs/typescript.md +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/agent_tool.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/basic.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/clap_builtin.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/clap_builtin_subcommands.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/custom_backend.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/custom_builtins.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/custom_fs.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/git_workflow.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/live_mounts.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/python_external_functions.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/python_scripts.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/realfs_readonly.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/resource_limits.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/scripted_tool.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/show_tool_output.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/sqlite_basic.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/sqlite_workflow.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/ssh_supabase.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/streaming_output.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/text_files.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/text_processing.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/typescript_scripts.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/examples/virtual_identity.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/out file.txt +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/alias.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/archive.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/assert.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/awk/interpreter.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/awk/mod.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/base64.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/bc.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/caller.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/cat.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/checksum.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/clap_env.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/clear.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/column.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/comm.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/csv.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/curl.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/cuttr.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/date.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/diff.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/disk.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/dotenv.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/echo.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/environ.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/envsubst.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/expand.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/export.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/expr.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/fc.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/fileops.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/flow.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/fold.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/cat_args.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/extendedbigdecimal.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/format/argument.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/format/escape.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/format/human.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/format/mod.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/format/num_format.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/format/spec.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/format_support.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/ls_args.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/mktemp_args.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/mod.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/num_parser.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/od_args.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/readlink_args.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/realpath_args.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/shuf_args.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/stat_args.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/tac_args.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/tee_args.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/generated/truncate_args.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/git/client.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/git/cmd.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/git/config.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/git/mod.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/grep.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/headtail.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/help.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/helpers.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/hextools.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/http.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/iconv.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/inspect.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/introspect.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/join.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/jq/args.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/jq/compat.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/jq/convert.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/jq/errors.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/jq/format.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/jq/mod.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/jq/regex_compat.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/jq/tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/json.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/log.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/ls/find.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/ls/glob.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/ls/list.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/ls/mod.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/ls/rmdir.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/ls/tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/mapfile.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/navigation.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/nl.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/numfmt.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/parallel.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/patch.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/pipeline.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/printf.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/retry.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/search_common.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/sed.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/semver.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/seq.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/shuf.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/sleep.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/sortuniq.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/source.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/split.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/sqlite/dot_commands.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/sqlite/engine.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/sqlite/formatter.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/sqlite/mod.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/sqlite/parser.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/sqlite/tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/sqlite/vfs_io.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/ssh/allowlist.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/ssh/client.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/ssh/cmd.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/ssh/config.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/ssh/handler.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/ssh/mod.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/ssh/russh_handler.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/system.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/textrev.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/timeout.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/tomlq.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/trap.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/tree.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/truncate.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/verify.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/wait.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/wc.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/yaml.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/yes.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/builtins/zip_cmd.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/credential.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/fs/backend.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/fs/limits.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/fs/memory.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/fs/mod.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/fs/mountable.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/fs/posix.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/fs/readonly.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/fs/realfs.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/fs/search.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/fs/traits.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/hooks.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/interop/fs.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/interop/mod.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/interpreter/jobs.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/interpreter/state.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/logging_impl.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/network/allowlist.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/network/bot_auth.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/network/client.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/network/mod.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/parser/ast.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/parser/budget.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/parser/span.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/parser/tokens.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/scripted_tool/execute.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/scripted_tool/extension.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/scripted_tool/mod.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/snapshot.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/testing.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/tool_def.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/src/trace.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/agent_skills_publication_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/allexport_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/awk_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/awk_newline_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/awk_pattern_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/awk_printf_expr_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/awk_range_pattern_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/background_exec_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/base64_binary_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/bash_source_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/builtin_error_security_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/byte_range_panic_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/cancellation_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/cmdsub_quote_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/coproc_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/credential_injection_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/custom_builtins_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/custom_fs_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/dev_null_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/final_env_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/find_multi_path_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/git_advanced_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/git_inspection_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/git_integration_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/git_remote_security_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/git_security_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/harness_example_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/history_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/issue_1175_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/issue_1776_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/issue_1777_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/issue_274_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/issue_275_279_282_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/issue_276_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/issue_277_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/issue_289_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/issue_290_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/issue_291_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/issue_853_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/issue_872_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/issue_873_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/issue_875_test.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/jq_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/live_mount_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/mkfifo_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/nested_subscript_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/network_security_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/output_truncation_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/proptest_differential.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/python_integration_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/regex_limit_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/release_profile_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/script_execution_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/security_audit_pocs.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/shuf_resource_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/skills_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/source_function_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/spec_runner.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/spec_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/sqlite_compat_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/sqlite_differential_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/sqlite_fuzz_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/sqlite_integration_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/sqlite_security_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/stack_overflow_regression_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/subst_depth_limit_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/symlink_overlay_security_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/tty_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/typescript_integration_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/typescript_security_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/unicode_security_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/unset_function_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/urandom_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/integration/workflow_security_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/logging_security_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/proptest_security.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/realfs_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/cat.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/mktemp.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/od.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/readlink.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/shuf.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/truncate.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/Cargo.toml +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/examples/data_pipeline.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/examples/llm_tool.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/_security_advanced.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/_security_core.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_builtins.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_control_flow.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_custom_builtin_fs.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_error_handling.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_fastapi_integration.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_integration.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_network_config.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_network_credentials.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_python_security.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_scripts.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_security.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_sqlite.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_teardown_determinism.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
- {bashkit-0.10.0 → bashkit-0.12.0}/crates/bashkit-python/tests/test_vfs.py +0 -0
|
@@ -195,9 +195,9 @@ dependencies = [
|
|
|
195
195
|
|
|
196
196
|
[[package]]
|
|
197
197
|
name = "antithesis_sdk"
|
|
198
|
-
version = "0.2.
|
|
198
|
+
version = "0.2.9"
|
|
199
199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
-
checksum = "
|
|
200
|
+
checksum = "08410fcac93669a476c006cd6c4512ac1e2b30fd117231a5d55d8a2c76599b82"
|
|
201
201
|
dependencies = [
|
|
202
202
|
"libc",
|
|
203
203
|
"libloading 0.8.9",
|
|
@@ -347,7 +347,7 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
347
347
|
|
|
348
348
|
[[package]]
|
|
349
349
|
name = "bashkit"
|
|
350
|
-
version = "0.
|
|
350
|
+
version = "0.12.0"
|
|
351
351
|
dependencies = [
|
|
352
352
|
"anyhow",
|
|
353
353
|
"async-trait",
|
|
@@ -363,7 +363,7 @@ dependencies = [
|
|
|
363
363
|
"flate2",
|
|
364
364
|
"futures-core",
|
|
365
365
|
"futures-util",
|
|
366
|
-
"getrandom 0.4.
|
|
366
|
+
"getrandom 0.4.3",
|
|
367
367
|
"hmac",
|
|
368
368
|
"insta",
|
|
369
369
|
"jaq-core",
|
|
@@ -400,7 +400,7 @@ dependencies = [
|
|
|
400
400
|
|
|
401
401
|
[[package]]
|
|
402
402
|
name = "bashkit-bench"
|
|
403
|
-
version = "0.
|
|
403
|
+
version = "0.12.0"
|
|
404
404
|
dependencies = [
|
|
405
405
|
"anyhow",
|
|
406
406
|
"bashkit",
|
|
@@ -415,7 +415,7 @@ dependencies = [
|
|
|
415
415
|
|
|
416
416
|
[[package]]
|
|
417
417
|
name = "bashkit-cli"
|
|
418
|
-
version = "0.
|
|
418
|
+
version = "0.12.0"
|
|
419
419
|
dependencies = [
|
|
420
420
|
"anyhow",
|
|
421
421
|
"bashkit",
|
|
@@ -429,7 +429,7 @@ dependencies = [
|
|
|
429
429
|
|
|
430
430
|
[[package]]
|
|
431
431
|
name = "bashkit-coreutils-port"
|
|
432
|
-
version = "0.
|
|
432
|
+
version = "0.12.0"
|
|
433
433
|
dependencies = [
|
|
434
434
|
"anyhow",
|
|
435
435
|
"prettyplease",
|
|
@@ -443,7 +443,7 @@ dependencies = [
|
|
|
443
443
|
|
|
444
444
|
[[package]]
|
|
445
445
|
name = "bashkit-eval"
|
|
446
|
-
version = "0.
|
|
446
|
+
version = "0.12.0"
|
|
447
447
|
dependencies = [
|
|
448
448
|
"anyhow",
|
|
449
449
|
"async-trait",
|
|
@@ -460,7 +460,7 @@ dependencies = [
|
|
|
460
460
|
|
|
461
461
|
[[package]]
|
|
462
462
|
name = "bashkit-js"
|
|
463
|
-
version = "0.
|
|
463
|
+
version = "0.12.0"
|
|
464
464
|
dependencies = [
|
|
465
465
|
"bashkit",
|
|
466
466
|
"napi",
|
|
@@ -472,7 +472,7 @@ dependencies = [
|
|
|
472
472
|
|
|
473
473
|
[[package]]
|
|
474
474
|
name = "bashkit-python"
|
|
475
|
-
version = "0.
|
|
475
|
+
version = "0.12.0"
|
|
476
476
|
dependencies = [
|
|
477
477
|
"bashkit",
|
|
478
478
|
"num-bigint",
|
|
@@ -676,9 +676,9 @@ dependencies = [
|
|
|
676
676
|
|
|
677
677
|
[[package]]
|
|
678
678
|
name = "cc"
|
|
679
|
-
version = "1.2.
|
|
679
|
+
version = "1.2.64"
|
|
680
680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
-
checksum = "
|
|
681
|
+
checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f"
|
|
682
682
|
dependencies = [
|
|
683
683
|
"find-msvc-tools",
|
|
684
684
|
"jobserver",
|
|
@@ -1094,7 +1094,7 @@ checksum = "42a0d26b245348befa0c121944541476763dcc46ede886c88f9d12e1697d27c3"
|
|
|
1094
1094
|
dependencies = [
|
|
1095
1095
|
"cpubits",
|
|
1096
1096
|
"ctutils",
|
|
1097
|
-
"getrandom 0.4.
|
|
1097
|
+
"getrandom 0.4.3",
|
|
1098
1098
|
"hybrid-array",
|
|
1099
1099
|
"num-traits",
|
|
1100
1100
|
"rand_core 0.10.1",
|
|
@@ -1120,7 +1120,7 @@ version = "0.2.2"
|
|
|
1120
1120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
1121
|
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
1122
1122
|
dependencies = [
|
|
1123
|
-
"getrandom 0.4.
|
|
1123
|
+
"getrandom 0.4.3",
|
|
1124
1124
|
"hybrid-array",
|
|
1125
1125
|
"rand_core 0.10.1",
|
|
1126
1126
|
]
|
|
@@ -1796,17 +1796,15 @@ dependencies = [
|
|
|
1796
1796
|
|
|
1797
1797
|
[[package]]
|
|
1798
1798
|
name = "getrandom"
|
|
1799
|
-
version = "0.4.
|
|
1799
|
+
version = "0.4.3"
|
|
1800
1800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
-
checksum = "
|
|
1801
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
1802
1802
|
dependencies = [
|
|
1803
1803
|
"cfg-if",
|
|
1804
1804
|
"js-sys",
|
|
1805
1805
|
"libc",
|
|
1806
1806
|
"r-efi 6.0.0",
|
|
1807
1807
|
"rand_core 0.10.1",
|
|
1808
|
-
"wasip2",
|
|
1809
|
-
"wasip3",
|
|
1810
1808
|
"wasm-bindgen",
|
|
1811
1809
|
]
|
|
1812
1810
|
|
|
@@ -1860,15 +1858,6 @@ dependencies = [
|
|
|
1860
1858
|
"byteorder",
|
|
1861
1859
|
]
|
|
1862
1860
|
|
|
1863
|
-
[[package]]
|
|
1864
|
-
name = "hashbrown"
|
|
1865
|
-
version = "0.15.5"
|
|
1866
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
-
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1868
|
-
dependencies = [
|
|
1869
|
-
"foldhash 0.1.5",
|
|
1870
|
-
]
|
|
1871
|
-
|
|
1872
1861
|
[[package]]
|
|
1873
1862
|
name = "hashbrown"
|
|
1874
1863
|
version = "0.16.1"
|
|
@@ -2172,12 +2161,6 @@ dependencies = [
|
|
|
2172
2161
|
"zerovec",
|
|
2173
2162
|
]
|
|
2174
2163
|
|
|
2175
|
-
[[package]]
|
|
2176
|
-
name = "id-arena"
|
|
2177
|
-
version = "2.3.0"
|
|
2178
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2179
|
-
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
2180
|
-
|
|
2181
2164
|
[[package]]
|
|
2182
2165
|
name = "idna"
|
|
2183
2166
|
version = "1.1.0"
|
|
@@ -2481,9 +2464,9 @@ dependencies = [
|
|
|
2481
2464
|
|
|
2482
2465
|
[[package]]
|
|
2483
2466
|
name = "js-sys"
|
|
2484
|
-
version = "0.3.
|
|
2467
|
+
version = "0.3.102"
|
|
2485
2468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2486
|
-
checksum = "
|
|
2469
|
+
checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
|
|
2487
2470
|
dependencies = [
|
|
2488
2471
|
"cfg-if",
|
|
2489
2472
|
"futures-util",
|
|
@@ -2516,12 +2499,6 @@ version = "1.5.0"
|
|
|
2516
2499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2517
2500
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
2518
2501
|
|
|
2519
|
-
[[package]]
|
|
2520
|
-
name = "leb128fmt"
|
|
2521
|
-
version = "0.1.0"
|
|
2522
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2523
|
-
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
2524
|
-
|
|
2525
2502
|
[[package]]
|
|
2526
2503
|
name = "lexical-parse-float"
|
|
2527
2504
|
version = "1.0.6"
|
|
@@ -2689,9 +2666,9 @@ checksum = "ae960838283323069879657ca3de837e9f7bbb4c7bf6ea7f1b290d5e9476d2e0"
|
|
|
2689
2666
|
|
|
2690
2667
|
[[package]]
|
|
2691
2668
|
name = "memchr"
|
|
2692
|
-
version = "2.8.
|
|
2669
|
+
version = "2.8.2"
|
|
2693
2670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
|
-
checksum = "
|
|
2671
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
2695
2672
|
|
|
2696
2673
|
[[package]]
|
|
2697
2674
|
name = "memoffset"
|
|
@@ -2811,9 +2788,9 @@ dependencies = [
|
|
|
2811
2788
|
|
|
2812
2789
|
[[package]]
|
|
2813
2790
|
name = "napi"
|
|
2814
|
-
version = "3.9.
|
|
2791
|
+
version = "3.9.3"
|
|
2815
2792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2816
|
-
checksum = "
|
|
2793
|
+
checksum = "fbd9f9295f3ff5921e78a71222c3361a8216f7760b1a99a6ad4e8441de18bbb9"
|
|
2817
2794
|
dependencies = [
|
|
2818
2795
|
"bitflags",
|
|
2819
2796
|
"ctor",
|
|
@@ -3815,9 +3792,9 @@ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
|
3815
3792
|
|
|
3816
3793
|
[[package]]
|
|
3817
3794
|
name = "quote"
|
|
3818
|
-
version = "1.0.
|
|
3795
|
+
version = "1.0.46"
|
|
3819
3796
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3820
|
-
checksum = "
|
|
3797
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
3821
3798
|
dependencies = [
|
|
3822
3799
|
"proc-macro2",
|
|
3823
3800
|
]
|
|
@@ -3900,7 +3877,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3900
3877
|
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
3901
3878
|
dependencies = [
|
|
3902
3879
|
"chacha20",
|
|
3903
|
-
"getrandom 0.4.
|
|
3880
|
+
"getrandom 0.4.3",
|
|
3904
3881
|
"rand_core 0.10.1",
|
|
3905
3882
|
]
|
|
3906
3883
|
|
|
@@ -4236,7 +4213,7 @@ dependencies = [
|
|
|
4236
4213
|
"flate2",
|
|
4237
4214
|
"futures",
|
|
4238
4215
|
"generic-array 1.4.3",
|
|
4239
|
-
"getrandom 0.4.
|
|
4216
|
+
"getrandom 0.4.3",
|
|
4240
4217
|
"ghash 0.6.0",
|
|
4241
4218
|
"hex-literal",
|
|
4242
4219
|
"hmac",
|
|
@@ -4829,9 +4806,9 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
|
4829
4806
|
|
|
4830
4807
|
[[package]]
|
|
4831
4808
|
name = "smallvec"
|
|
4832
|
-
version = "1.15.
|
|
4809
|
+
version = "1.15.2"
|
|
4833
4810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4834
|
-
checksum = "
|
|
4811
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
4835
4812
|
dependencies = [
|
|
4836
4813
|
"serde",
|
|
4837
4814
|
]
|
|
@@ -5028,9 +5005,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
5028
5005
|
|
|
5029
5006
|
[[package]]
|
|
5030
5007
|
name = "syn"
|
|
5031
|
-
version = "2.0.
|
|
5008
|
+
version = "2.0.118"
|
|
5032
5009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5033
|
-
checksum = "
|
|
5010
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
5034
5011
|
dependencies = [
|
|
5035
5012
|
"proc-macro2",
|
|
5036
5013
|
"quote",
|
|
@@ -5100,7 +5077,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5100
5077
|
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
5101
5078
|
dependencies = [
|
|
5102
5079
|
"fastrand",
|
|
5103
|
-
"getrandom 0.4.
|
|
5080
|
+
"getrandom 0.4.3",
|
|
5104
5081
|
"once_cell",
|
|
5105
5082
|
"rustix",
|
|
5106
5083
|
"windows-sys 0.61.2",
|
|
@@ -5500,7 +5477,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5500
5477
|
checksum = "f9a47927d766b9ae7e3adf092d5e150dce80533615edc502641797878f190080"
|
|
5501
5478
|
dependencies = [
|
|
5502
5479
|
"chrono",
|
|
5503
|
-
"getrandom 0.4.
|
|
5480
|
+
"getrandom 0.4.3",
|
|
5504
5481
|
"turso_macros",
|
|
5505
5482
|
]
|
|
5506
5483
|
|
|
@@ -5611,12 +5588,6 @@ version = "0.2.2"
|
|
|
5611
5588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5612
5589
|
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
5613
5590
|
|
|
5614
|
-
[[package]]
|
|
5615
|
-
name = "unicode-xid"
|
|
5616
|
-
version = "0.2.6"
|
|
5617
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5618
|
-
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
5619
|
-
|
|
5620
5591
|
[[package]]
|
|
5621
5592
|
name = "unicode_names2"
|
|
5622
5593
|
version = "1.3.0"
|
|
@@ -5713,7 +5684,7 @@ version = "1.23.3"
|
|
|
5713
5684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5714
5685
|
checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
|
|
5715
5686
|
dependencies = [
|
|
5716
|
-
"getrandom 0.4.
|
|
5687
|
+
"getrandom 0.4.3",
|
|
5717
5688
|
"js-sys",
|
|
5718
5689
|
"sha1_smol",
|
|
5719
5690
|
"wasm-bindgen",
|
|
@@ -5767,27 +5738,18 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
5767
5738
|
|
|
5768
5739
|
[[package]]
|
|
5769
5740
|
name = "wasip2"
|
|
5770
|
-
version = "1.0.
|
|
5741
|
+
version = "1.0.4+wasi-0.2.12"
|
|
5771
5742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5772
|
-
checksum = "
|
|
5743
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
5773
5744
|
dependencies = [
|
|
5774
|
-
"wit-bindgen
|
|
5775
|
-
]
|
|
5776
|
-
|
|
5777
|
-
[[package]]
|
|
5778
|
-
name = "wasip3"
|
|
5779
|
-
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
5780
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5781
|
-
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
5782
|
-
dependencies = [
|
|
5783
|
-
"wit-bindgen 0.51.0",
|
|
5745
|
+
"wit-bindgen",
|
|
5784
5746
|
]
|
|
5785
5747
|
|
|
5786
5748
|
[[package]]
|
|
5787
5749
|
name = "wasm-bindgen"
|
|
5788
|
-
version = "0.2.
|
|
5750
|
+
version = "0.2.125"
|
|
5789
5751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5790
|
-
checksum = "
|
|
5752
|
+
checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
|
|
5791
5753
|
dependencies = [
|
|
5792
5754
|
"cfg-if",
|
|
5793
5755
|
"once_cell",
|
|
@@ -5798,9 +5760,9 @@ dependencies = [
|
|
|
5798
5760
|
|
|
5799
5761
|
[[package]]
|
|
5800
5762
|
name = "wasm-bindgen-futures"
|
|
5801
|
-
version = "0.4.
|
|
5763
|
+
version = "0.4.75"
|
|
5802
5764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5803
|
-
checksum = "
|
|
5765
|
+
checksum = "503b14d284f2c8dac03b819967e155ea753f573586193b2b2c95990cb5d69280"
|
|
5804
5766
|
dependencies = [
|
|
5805
5767
|
"js-sys",
|
|
5806
5768
|
"wasm-bindgen",
|
|
@@ -5808,9 +5770,9 @@ dependencies = [
|
|
|
5808
5770
|
|
|
5809
5771
|
[[package]]
|
|
5810
5772
|
name = "wasm-bindgen-macro"
|
|
5811
|
-
version = "0.2.
|
|
5773
|
+
version = "0.2.125"
|
|
5812
5774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5813
|
-
checksum = "
|
|
5775
|
+
checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
|
|
5814
5776
|
dependencies = [
|
|
5815
5777
|
"quote",
|
|
5816
5778
|
"wasm-bindgen-macro-support",
|
|
@@ -5818,9 +5780,9 @@ dependencies = [
|
|
|
5818
5780
|
|
|
5819
5781
|
[[package]]
|
|
5820
5782
|
name = "wasm-bindgen-macro-support"
|
|
5821
|
-
version = "0.2.
|
|
5783
|
+
version = "0.2.125"
|
|
5822
5784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5823
|
-
checksum = "
|
|
5785
|
+
checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
|
|
5824
5786
|
dependencies = [
|
|
5825
5787
|
"bumpalo",
|
|
5826
5788
|
"proc-macro2",
|
|
@@ -5831,35 +5793,13 @@ dependencies = [
|
|
|
5831
5793
|
|
|
5832
5794
|
[[package]]
|
|
5833
5795
|
name = "wasm-bindgen-shared"
|
|
5834
|
-
version = "0.2.
|
|
5796
|
+
version = "0.2.125"
|
|
5835
5797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5836
|
-
checksum = "
|
|
5798
|
+
checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
|
|
5837
5799
|
dependencies = [
|
|
5838
5800
|
"unicode-ident",
|
|
5839
5801
|
]
|
|
5840
5802
|
|
|
5841
|
-
[[package]]
|
|
5842
|
-
name = "wasm-encoder"
|
|
5843
|
-
version = "0.244.0"
|
|
5844
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5845
|
-
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
5846
|
-
dependencies = [
|
|
5847
|
-
"leb128fmt",
|
|
5848
|
-
"wasmparser",
|
|
5849
|
-
]
|
|
5850
|
-
|
|
5851
|
-
[[package]]
|
|
5852
|
-
name = "wasm-metadata"
|
|
5853
|
-
version = "0.244.0"
|
|
5854
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5855
|
-
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
5856
|
-
dependencies = [
|
|
5857
|
-
"anyhow",
|
|
5858
|
-
"indexmap",
|
|
5859
|
-
"wasm-encoder",
|
|
5860
|
-
"wasmparser",
|
|
5861
|
-
]
|
|
5862
|
-
|
|
5863
5803
|
[[package]]
|
|
5864
5804
|
name = "wasm-streams"
|
|
5865
5805
|
version = "0.5.0"
|
|
@@ -5873,23 +5813,11 @@ dependencies = [
|
|
|
5873
5813
|
"web-sys",
|
|
5874
5814
|
]
|
|
5875
5815
|
|
|
5876
|
-
[[package]]
|
|
5877
|
-
name = "wasmparser"
|
|
5878
|
-
version = "0.244.0"
|
|
5879
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5880
|
-
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
5881
|
-
dependencies = [
|
|
5882
|
-
"bitflags",
|
|
5883
|
-
"hashbrown 0.15.5",
|
|
5884
|
-
"indexmap",
|
|
5885
|
-
"semver",
|
|
5886
|
-
]
|
|
5887
|
-
|
|
5888
5816
|
[[package]]
|
|
5889
5817
|
name = "web-sys"
|
|
5890
|
-
version = "0.3.
|
|
5818
|
+
version = "0.3.102"
|
|
5891
5819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5892
|
-
checksum = "
|
|
5820
|
+
checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
|
|
5893
5821
|
dependencies = [
|
|
5894
5822
|
"js-sys",
|
|
5895
5823
|
"wasm-bindgen",
|
|
@@ -6133,100 +6061,12 @@ version = "1.0.3"
|
|
|
6133
6061
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6134
6062
|
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
6135
6063
|
|
|
6136
|
-
[[package]]
|
|
6137
|
-
name = "wit-bindgen"
|
|
6138
|
-
version = "0.51.0"
|
|
6139
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6140
|
-
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
6141
|
-
dependencies = [
|
|
6142
|
-
"wit-bindgen-rust-macro",
|
|
6143
|
-
]
|
|
6144
|
-
|
|
6145
6064
|
[[package]]
|
|
6146
6065
|
name = "wit-bindgen"
|
|
6147
6066
|
version = "0.57.1"
|
|
6148
6067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6149
6068
|
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
6150
6069
|
|
|
6151
|
-
[[package]]
|
|
6152
|
-
name = "wit-bindgen-core"
|
|
6153
|
-
version = "0.51.0"
|
|
6154
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6155
|
-
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
6156
|
-
dependencies = [
|
|
6157
|
-
"anyhow",
|
|
6158
|
-
"heck",
|
|
6159
|
-
"wit-parser",
|
|
6160
|
-
]
|
|
6161
|
-
|
|
6162
|
-
[[package]]
|
|
6163
|
-
name = "wit-bindgen-rust"
|
|
6164
|
-
version = "0.51.0"
|
|
6165
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6166
|
-
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
6167
|
-
dependencies = [
|
|
6168
|
-
"anyhow",
|
|
6169
|
-
"heck",
|
|
6170
|
-
"indexmap",
|
|
6171
|
-
"prettyplease",
|
|
6172
|
-
"syn",
|
|
6173
|
-
"wasm-metadata",
|
|
6174
|
-
"wit-bindgen-core",
|
|
6175
|
-
"wit-component",
|
|
6176
|
-
]
|
|
6177
|
-
|
|
6178
|
-
[[package]]
|
|
6179
|
-
name = "wit-bindgen-rust-macro"
|
|
6180
|
-
version = "0.51.0"
|
|
6181
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6182
|
-
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
6183
|
-
dependencies = [
|
|
6184
|
-
"anyhow",
|
|
6185
|
-
"prettyplease",
|
|
6186
|
-
"proc-macro2",
|
|
6187
|
-
"quote",
|
|
6188
|
-
"syn",
|
|
6189
|
-
"wit-bindgen-core",
|
|
6190
|
-
"wit-bindgen-rust",
|
|
6191
|
-
]
|
|
6192
|
-
|
|
6193
|
-
[[package]]
|
|
6194
|
-
name = "wit-component"
|
|
6195
|
-
version = "0.244.0"
|
|
6196
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6197
|
-
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
6198
|
-
dependencies = [
|
|
6199
|
-
"anyhow",
|
|
6200
|
-
"bitflags",
|
|
6201
|
-
"indexmap",
|
|
6202
|
-
"log",
|
|
6203
|
-
"serde",
|
|
6204
|
-
"serde_derive",
|
|
6205
|
-
"serde_json",
|
|
6206
|
-
"wasm-encoder",
|
|
6207
|
-
"wasm-metadata",
|
|
6208
|
-
"wasmparser",
|
|
6209
|
-
"wit-parser",
|
|
6210
|
-
]
|
|
6211
|
-
|
|
6212
|
-
[[package]]
|
|
6213
|
-
name = "wit-parser"
|
|
6214
|
-
version = "0.244.0"
|
|
6215
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6216
|
-
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
6217
|
-
dependencies = [
|
|
6218
|
-
"anyhow",
|
|
6219
|
-
"id-arena",
|
|
6220
|
-
"indexmap",
|
|
6221
|
-
"log",
|
|
6222
|
-
"semver",
|
|
6223
|
-
"serde",
|
|
6224
|
-
"serde_derive",
|
|
6225
|
-
"serde_json",
|
|
6226
|
-
"unicode-xid",
|
|
6227
|
-
"wasmparser",
|
|
6228
|
-
]
|
|
6229
|
-
|
|
6230
6070
|
[[package]]
|
|
6231
6071
|
name = "writeable"
|
|
6232
6072
|
version = "0.6.3"
|
|
@@ -6331,9 +6171,9 @@ dependencies = [
|
|
|
6331
6171
|
|
|
6332
6172
|
[[package]]
|
|
6333
6173
|
name = "zeroize"
|
|
6334
|
-
version = "1.
|
|
6174
|
+
version = "1.9.0"
|
|
6335
6175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6336
|
-
checksum = "
|
|
6176
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
6337
6177
|
|
|
6338
6178
|
[[package]]
|
|
6339
6179
|
name = "zerotrie"
|
|
@@ -7,10 +7,10 @@ resolver = "2"
|
|
|
7
7
|
members = ["crates/*"]
|
|
8
8
|
|
|
9
9
|
[workspace.package]
|
|
10
|
-
version = "0.
|
|
10
|
+
version = "0.12.0"
|
|
11
11
|
edition = "2024"
|
|
12
12
|
license = "MIT"
|
|
13
|
-
authors = ["Everruns"]
|
|
13
|
+
authors = ["Mykhailo Chalyi <mike@chaliy.name>", "Everruns"]
|
|
14
14
|
repository = "https://github.com/everruns/bashkit"
|
|
15
15
|
description = "Awesomely fast virtual sandbox with bash and file system"
|
|
16
16
|
keywords = ["bash", "virtual", "ai", "agent", "everruns"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bashkit
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.12.0
|
|
4
4
|
Classifier: Development Status :: 4 - Beta
|
|
5
5
|
Classifier: Intended Audience :: Developers
|
|
6
6
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -27,6 +27,7 @@ Provides-Extra: langchain
|
|
|
27
27
|
Provides-Extra: pydantic-ai
|
|
28
28
|
Summary: A sandboxed bash interpreter for AI agents
|
|
29
29
|
Keywords: bash,sandbox,ai,agent,shell,interpreter
|
|
30
|
+
Author-email: Mykhailo Chalyi <mike@chaliy.name>
|
|
30
31
|
License: MIT
|
|
31
32
|
Requires-Python: >=3.9
|
|
32
33
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
@@ -47,7 +48,7 @@ Homepage: [bashkit.sh](https://bashkit.sh)
|
|
|
47
48
|
|
|
48
49
|
- Sandboxed execution in-process, without containers or subprocess orchestration
|
|
49
50
|
- Full bash syntax: variables, pipelines, redirects, loops, functions, and arrays
|
|
50
|
-
-
|
|
51
|
+
- 156 built-in commands including `grep`, `sed`, `awk`, `jq`, `curl`, and `find`
|
|
51
52
|
- Persistent interpreter state across calls, including variables, cwd, and VFS contents
|
|
52
53
|
- Direct virtual filesystem APIs, constructor mounts, and live host mounts
|
|
53
54
|
- Snapshot and restore support on `Bash` and `BashTool`
|
|
@@ -111,6 +112,8 @@ from bashkit import Bash
|
|
|
111
112
|
bash = Bash(
|
|
112
113
|
username="agent",
|
|
113
114
|
hostname="sandbox",
|
|
115
|
+
cwd="/home/agent",
|
|
116
|
+
env={"LANG": "en_US.UTF-8"},
|
|
114
117
|
max_commands=1000,
|
|
115
118
|
max_loop_iterations=10000,
|
|
116
119
|
max_memory=10 * 1024 * 1024,
|
|
@@ -10,7 +10,7 @@ Homepage: [bashkit.sh](https://bashkit.sh)
|
|
|
10
10
|
|
|
11
11
|
- Sandboxed execution in-process, without containers or subprocess orchestration
|
|
12
12
|
- Full bash syntax: variables, pipelines, redirects, loops, functions, and arrays
|
|
13
|
-
-
|
|
13
|
+
- 156 built-in commands including `grep`, `sed`, `awk`, `jq`, `curl`, and `find`
|
|
14
14
|
- Persistent interpreter state across calls, including variables, cwd, and VFS contents
|
|
15
15
|
- Direct virtual filesystem APIs, constructor mounts, and live host mounts
|
|
16
16
|
- Snapshot and restore support on `Bash` and `BashTool`
|
|
@@ -74,6 +74,8 @@ from bashkit import Bash
|
|
|
74
74
|
bash = Bash(
|
|
75
75
|
username="agent",
|
|
76
76
|
hostname="sandbox",
|
|
77
|
+
cwd="/home/agent",
|
|
78
|
+
env={"LANG": "en_US.UTF-8"},
|
|
77
79
|
max_commands=1000,
|
|
78
80
|
max_loop_iterations=10000,
|
|
79
81
|
max_memory=10 * 1024 * 1024,
|
|
@@ -130,7 +130,7 @@ BuiltinCallback = Callable[
|
|
|
130
130
|
]
|
|
131
131
|
|
|
132
132
|
class FileSystem:
|
|
133
|
-
"""Direct access to
|
|
133
|
+
"""Direct access to Bashkit's virtual filesystem or a standalone mountable FS.
|
|
134
134
|
|
|
135
135
|
Two ways to create:
|
|
136
136
|
|
|
@@ -458,13 +458,15 @@ class Bash:
|
|
|
458
458
|
... external_functions=["api_request"],
|
|
459
459
|
... external_handler=handler,
|
|
460
460
|
... )
|
|
461
|
-
>>> result = await bash.execute("python3 -c 'print(api_request(
|
|
461
|
+
>>> result = await bash.execute("python3 -c 'print(api_request())'")
|
|
462
462
|
"""
|
|
463
463
|
|
|
464
464
|
def __init__(
|
|
465
465
|
self,
|
|
466
466
|
username: str | None = None,
|
|
467
467
|
hostname: str | None = None,
|
|
468
|
+
cwd: str | None = None,
|
|
469
|
+
env: Mapping[str, str] | None = None,
|
|
468
470
|
max_commands: int | None = None,
|
|
469
471
|
max_loop_iterations: int | None = None,
|
|
470
472
|
max_memory: int | None = None,
|
|
@@ -485,6 +487,10 @@ class Bash:
|
|
|
485
487
|
Args:
|
|
486
488
|
username: Custom username (default ``"user"``).
|
|
487
489
|
hostname: Custom hostname (default ``"bashkit"``).
|
|
490
|
+
cwd: Initial working directory for the shell. Sets the starting
|
|
491
|
+
directory directly instead of running a leading ``cd``.
|
|
492
|
+
env: Initial environment variables applied before execution, so
|
|
493
|
+
scripts see them without an ``export`` prelude.
|
|
488
494
|
max_commands: Limit total commands executed.
|
|
489
495
|
max_loop_iterations: Limit iterations per loop.
|
|
490
496
|
max_memory: Memory limit in bytes for the VFS.
|
|
@@ -716,6 +722,8 @@ class Bash:
|
|
|
716
722
|
data: bytes,
|
|
717
723
|
username: str | None = None,
|
|
718
724
|
hostname: str | None = None,
|
|
725
|
+
cwd: str | None = None,
|
|
726
|
+
env: Mapping[str, str] | None = None,
|
|
719
727
|
max_commands: int | None = None,
|
|
720
728
|
max_loop_iterations: int | None = None,
|
|
721
729
|
max_memory: int | None = None,
|
|
@@ -740,6 +748,8 @@ class Bash:
|
|
|
740
748
|
key: bytes,
|
|
741
749
|
username: str | None = None,
|
|
742
750
|
hostname: str | None = None,
|
|
751
|
+
cwd: str | None = None,
|
|
752
|
+
env: Mapping[str, str] | None = None,
|
|
743
753
|
max_commands: int | None = None,
|
|
744
754
|
max_loop_iterations: int | None = None,
|
|
745
755
|
max_memory: int | None = None,
|
|
@@ -922,6 +932,8 @@ class BashTool:
|
|
|
922
932
|
self,
|
|
923
933
|
username: str | None = None,
|
|
924
934
|
hostname: str | None = None,
|
|
935
|
+
cwd: str | None = None,
|
|
936
|
+
env: Mapping[str, str] | None = None,
|
|
925
937
|
max_commands: int | None = None,
|
|
926
938
|
max_loop_iterations: int | None = None,
|
|
927
939
|
max_memory: int | None = None,
|
|
@@ -938,6 +950,10 @@ class BashTool:
|
|
|
938
950
|
Args:
|
|
939
951
|
username: Custom username (default ``"user"``).
|
|
940
952
|
hostname: Custom hostname (default ``"bashkit"``).
|
|
953
|
+
cwd: Initial working directory for the shell. Sets the starting
|
|
954
|
+
directory directly instead of running a leading ``cd``.
|
|
955
|
+
env: Initial environment variables applied before execution, so
|
|
956
|
+
scripts see them without an ``export`` prelude.
|
|
941
957
|
max_commands: Limit total commands executed.
|
|
942
958
|
max_loop_iterations: Limit iterations per loop.
|
|
943
959
|
max_memory: Memory limit in bytes for the VFS.
|
|
@@ -1188,6 +1204,8 @@ class BashTool:
|
|
|
1188
1204
|
data: bytes,
|
|
1189
1205
|
username: str | None = None,
|
|
1190
1206
|
hostname: str | None = None,
|
|
1207
|
+
cwd: str | None = None,
|
|
1208
|
+
env: Mapping[str, str] | None = None,
|
|
1191
1209
|
max_commands: int | None = None,
|
|
1192
1210
|
max_loop_iterations: int | None = None,
|
|
1193
1211
|
max_memory: int | None = None,
|
|
@@ -1208,6 +1226,8 @@ class BashTool:
|
|
|
1208
1226
|
key: bytes,
|
|
1209
1227
|
username: str | None = None,
|
|
1210
1228
|
hostname: str | None = None,
|
|
1229
|
+
cwd: str | None = None,
|
|
1230
|
+
env: Mapping[str, str] | None = None,
|
|
1211
1231
|
max_commands: int | None = None,
|
|
1212
1232
|
max_loop_iterations: int | None = None,
|
|
1213
1233
|
max_memory: int | None = None,
|