bashkit 0.14.4__tar.gz → 0.15.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.14.4 → bashkit-0.15.0}/Cargo.lock +107 -219
- {bashkit-0.14.4 → bashkit-0.15.0}/Cargo.toml +3 -3
- {bashkit-0.14.4 → bashkit-0.15.0}/PKG-INFO +64 -1
- {bashkit-0.14.4/crates/bashkit-python → bashkit-0.15.0}/README.md +63 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/bashkit/__init__.py +14 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/bashkit/_bashkit.pyi +257 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/bashkit/langchain.py +1 -1
- {bashkit-0.14.4 → bashkit-0.15.0}/bashkit/pydantic_ai.py +2 -2
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/Cargo.toml +4 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/README.md +34 -0
- bashkit-0.15.0/crates/bashkit/benches/results/criterion-snapshot-history-baseline-linux-x86_64-1785444523.md +118 -0
- bashkit-0.15.0/crates/bashkit/benches/snapshot_history.rs +213 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/docs/namespace_filesystems.md +1 -1
- bashkit-0.15.0/crates/bashkit/docs/script-analysis.md +345 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/docs/threat-model.md +15 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/agent_tool.rs +1 -1
- bashkit-0.15.0/crates/bashkit/examples/generate_snapshot_fixtures.rs +51 -0
- bashkit-0.15.0/crates/bashkit/examples/large_binary_probe.rs +86 -0
- bashkit-0.15.0/crates/bashkit/src/analysis.rs +830 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/error.rs +20 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/fs/memory.rs +43 -7
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/fs/mod.rs +1 -1
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/fs/mountable.rs +6 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/fs/overlay.rs +4 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/fs/readonly.rs +4 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/fs/traits.rs +13 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/interpreter/arithmetic.rs +19 -4
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/interpreter/glob.rs +107 -65
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/interpreter/mod.rs +54 -6
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/lib.rs +176 -5
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/parser/lexer.rs +64 -11
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/parser/mod.rs +31 -2
- bashkit-0.15.0/crates/bashkit/src/snapshot/capabilities.rs +382 -0
- bashkit-0.15.0/crates/bashkit/src/snapshot/chunker.rs +167 -0
- bashkit-0.15.0/crates/bashkit/src/snapshot/container.rs +541 -0
- bashkit-0.15.0/crates/bashkit/src/snapshot/graph.rs +843 -0
- bashkit-0.14.4/crates/bashkit/src/snapshot.rs → bashkit-0.15.0/crates/bashkit/src/snapshot/mod.rs +209 -68
- bashkit-0.15.0/crates/bashkit/src/snapshot/objects.rs +874 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/tool.rs +3 -0
- bashkit-0.15.0/crates/bashkit/tests/fixtures/snapshots/v1.snapshot +2 -0
- bashkit-0.15.0/crates/bashkit/tests/fixtures/snapshots/v2.snapshot +0 -0
- bashkit-0.15.0/crates/bashkit/tests/integration/exec_options_tests.rs +269 -0
- bashkit-0.15.0/crates/bashkit/tests/integration/glob_intermediate_component_tests.rs +226 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/main.rs +4 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/proptest_differential.rs +29 -0
- bashkit-0.15.0/crates/bashkit/tests/integration/script_analysis.rs +335 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/security_audit_pocs.rs +50 -4
- bashkit-0.15.0/crates/bashkit/tests/integration/snapshot_fixture_tests.rs +139 -0
- bashkit-0.15.0/crates/bashkit/tests/integration/snapshot_history_tests.rs +1336 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/snapshot_tests.rs +22 -10
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/proptest_security.rs +260 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +29 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +10 -0
- {bashkit-0.14.4 → bashkit-0.15.0/crates/bashkit-python}/README.md +63 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/examples/k8s_orchestrator.py +3 -1
- bashkit-0.15.0/crates/bashkit-python/examples/session_history.py +174 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/src/lib.rs +728 -0
- bashkit-0.15.0/crates/bashkit-python/tests/test_analyze.py +214 -0
- bashkit-0.15.0/crates/bashkit-python/tests/test_snapshot_history.py +310 -0
- bashkit-0.14.4/crates/bashkit/tests/integration/exec_options_tests.rs +0 -73
- {bashkit-0.14.4 → bashkit-0.15.0}/bashkit/deepagents.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/bashkit/py.typed +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/benches/file_ops.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/benches/hotpath.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/benches/parallel_execution.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/benches/results/README.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/benches/results/criterion-file_ops-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/benches/results/criterion-hotpath-attrs+shopt-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/benches/results/criterion-hotpath-perf-linux-x86_64-1779744742.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/benches/results/criterion-parallel-(none)-linux-x86_64-1773469129.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782162173.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782168239.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1777865268.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/benches/sqlite.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/docs/clap-builtins.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/docs/compatibility.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/docs/credential-injection.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/docs/custom_builtins.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/docs/hooks.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/docs/jq.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/docs/live_mounts.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/docs/logging.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/docs/python.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/docs/sqlite.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/docs/ssh.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/docs/typescript.md +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/basic.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/clap_builtin.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/clap_builtin_subcommands.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/custom_backend.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/custom_builtins.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/custom_fs.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/dump_builtins.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/git_workflow.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/live_mounts.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/namespace_rebase.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/namespace_sandbox.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/python_external_functions.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/python_scripts.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/realfs_readonly.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/resource_limits.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/scripted_tool.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/show_tool_output.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/sqlite_basic.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/sqlite_workflow.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/ssh_supabase.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/streaming_output.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/text_files.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/text_processing.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/typescript_scripts.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/examples/virtual_identity.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/out file.txt +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/alias.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/archive.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/assert.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/awk/interpreter.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/awk/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/awk/parser.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/awk/tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/base64.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/bc.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/caller.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/cat.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/checksum.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/clap_env.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/clear.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/column.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/comm.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/compgen.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/csv.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/curl.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/cuttr.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/date.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/diff.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/dirstack.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/disk.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/dotenv.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/echo.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/environ.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/envsubst.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/expand.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/export.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/expr.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/fc.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/fileops.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/flow.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/fold.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/cat_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/extendedbigdecimal.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/format/argument.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/format/escape.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/format/human.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/format/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/format/num_format.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/format/spec.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/format_support.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/ls_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/mktemp_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/num_parser.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/od_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/readlink_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/realpath_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/shuf_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/stat_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/tac_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/tee_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/generated/truncate_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/git/client.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/git/cmd.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/git/config.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/git/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/grep.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/headtail.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/help.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/helpers.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/hextools.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/http.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/iconv.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/inspect.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/introspect.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/join.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/jq/args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/jq/compat.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/jq/convert.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/jq/errors.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/jq/format.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/jq/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/jq/regex_compat.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/jq/tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/json.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/limits.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/log.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/ls/find.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/ls/glob.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/ls/list.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/ls/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/ls/rmdir.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/ls/tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/mapfile.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/navigation.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/nl.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/numfmt.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/parallel.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/paste.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/patch.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/path.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/pipeline.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/printf.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/python.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/read.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/retry.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/rg/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/runtime_limits.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/search_common.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/sed.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/semver.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/seq.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/shuf.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/sleep.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/sortuniq.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/source.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/split.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/sqlite/dot_commands.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/sqlite/engine.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/sqlite/formatter.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/sqlite/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/sqlite/parser.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/sqlite/tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/sqlite/vfs_io.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/ssh/allowlist.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/ssh/client.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/ssh/cmd.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/ssh/config.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/ssh/handler.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/ssh/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/ssh/russh_handler.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/strings.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/system.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/template.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/textrev.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/timeout.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/tomlq.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/trap.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/tree.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/truncate.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/typescript.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/vars.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/verify.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/wait.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/wc.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/yaml.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/yes.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/builtins/zip_cmd.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/credential.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/fs/backend.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/fs/limits.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/fs/namespace.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/fs/posix.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/fs/realfs.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/fs/search.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/hooks.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/interop/fs.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/interop/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/interpreter/brace_expansion.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/interpreter/expansion.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/interpreter/jobs.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/interpreter/redirection.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/interpreter/state.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/limits.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/logging_impl.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/network/allowlist.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/network/bot_auth.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/network/client.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/network/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/network/transport.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/parser/ast.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/parser/budget.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/parser/span.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/parser/tokens.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/scripted_tool/execute.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/scripted_tool/extension.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/scripted_tool/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/testing.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/time_compat.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/tool_def.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/src/trace.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/agent_skills_publication_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/allexport_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/awk_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/awk_newline_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/awk_pattern_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/awk_printf_expr_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/awk_range_pattern_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/background_exec_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/base64_binary_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/bash_source_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/blackbox_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/builtin_error_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/builtin_registry_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/byte_range_panic_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/cancellation_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/cmdsub_quote_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/compgen_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/coproc_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/coreutils_differential_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/credential_injection_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/custom_builtins_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/custom_fs_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/dev_null_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/final_env_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/find_multi_path_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/for_in_reserved_word_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/git_advanced_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/git_inspection_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/git_integration_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/git_remote_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/git_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/harness_example_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/history_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/issue_1175_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/issue_1776_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/issue_1777_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/issue_274_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/issue_275_279_282_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/issue_276_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/issue_277_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/issue_289_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/issue_290_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/issue_291_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/issue_853_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/issue_872_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/issue_873_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/issue_875_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/jq_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/limitations_doc_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/limitations_evidence_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/live_mount_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/mkfifo_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/namespace_fs_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/nested_subscript_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/network_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/output_truncation_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/parallel_sessions_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/python_integration_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/python_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/regex_limit_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/release_profile_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/script_execution_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/set_e_and_or_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/shuf_resource_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/skills_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/source_function_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/spec_runner.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/spec_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/sqlite_compat_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/sqlite_differential_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/sqlite_fuzz_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/sqlite_integration_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/sqlite_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/stack_overflow_regression_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/subst_depth_limit_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/symlink_overlay_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/threat_model_doc_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/threat_model_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/time_compat_scan_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/tty_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/typescript_integration_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/typescript_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/unicode_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/unset_function_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/urandom_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/integration/workflow_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/logging_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/realfs_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/cat.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/mktemp.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/od.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/readlink.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/shuf.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/truncate.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/Cargo.toml +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/examples/bash_basics.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/examples/data_pipeline.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/examples/llm_tool.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/_bashkit_categories.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/_security_advanced.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/_security_core.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_basic.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_builtins.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_control_flow.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_custom_builtin_fs.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_error_handling.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_fastapi_integration.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_integration.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_network_config.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_network_credentials.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_python_security.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_scripts.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_security.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_sqlite.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_teardown_determinism.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/crates/bashkit-python/tests/test_vfs.py +0 -0
- {bashkit-0.14.4 → bashkit-0.15.0}/pyproject.toml +0 -0
|
@@ -386,7 +386,7 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
386
386
|
|
|
387
387
|
[[package]]
|
|
388
388
|
name = "bashkit"
|
|
389
|
-
version = "0.
|
|
389
|
+
version = "0.15.0"
|
|
390
390
|
dependencies = [
|
|
391
391
|
"anyhow",
|
|
392
392
|
"async-trait",
|
|
@@ -396,7 +396,7 @@ dependencies = [
|
|
|
396
396
|
"chrono",
|
|
397
397
|
"clap",
|
|
398
398
|
"criterion",
|
|
399
|
-
"ed25519-dalek
|
|
399
|
+
"ed25519-dalek",
|
|
400
400
|
"fail",
|
|
401
401
|
"fancy-regex 0.18.0",
|
|
402
402
|
"flate2",
|
|
@@ -424,7 +424,7 @@ dependencies = [
|
|
|
424
424
|
"serde_json",
|
|
425
425
|
"serial_test",
|
|
426
426
|
"sha1",
|
|
427
|
-
"sha2
|
|
427
|
+
"sha2",
|
|
428
428
|
"tempfile",
|
|
429
429
|
"thiserror",
|
|
430
430
|
"tokio",
|
|
@@ -441,7 +441,7 @@ dependencies = [
|
|
|
441
441
|
|
|
442
442
|
[[package]]
|
|
443
443
|
name = "bashkit-bench"
|
|
444
|
-
version = "0.
|
|
444
|
+
version = "0.15.0"
|
|
445
445
|
dependencies = [
|
|
446
446
|
"anyhow",
|
|
447
447
|
"bashkit",
|
|
@@ -454,9 +454,19 @@ dependencies = [
|
|
|
454
454
|
"tokio",
|
|
455
455
|
]
|
|
456
456
|
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "bashkit-capi"
|
|
459
|
+
version = "0.15.0"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"bashkit",
|
|
462
|
+
"serde",
|
|
463
|
+
"serde_json",
|
|
464
|
+
"tokio",
|
|
465
|
+
]
|
|
466
|
+
|
|
457
467
|
[[package]]
|
|
458
468
|
name = "bashkit-cli"
|
|
459
|
-
version = "0.
|
|
469
|
+
version = "0.15.0"
|
|
460
470
|
dependencies = [
|
|
461
471
|
"anyhow",
|
|
462
472
|
"bashkit",
|
|
@@ -470,7 +480,7 @@ dependencies = [
|
|
|
470
480
|
|
|
471
481
|
[[package]]
|
|
472
482
|
name = "bashkit-coreutils-port"
|
|
473
|
-
version = "0.
|
|
483
|
+
version = "0.15.0"
|
|
474
484
|
dependencies = [
|
|
475
485
|
"anyhow",
|
|
476
486
|
"prettyplease",
|
|
@@ -484,7 +494,7 @@ dependencies = [
|
|
|
484
494
|
|
|
485
495
|
[[package]]
|
|
486
496
|
name = "bashkit-eval"
|
|
487
|
-
version = "0.
|
|
497
|
+
version = "0.15.0"
|
|
488
498
|
dependencies = [
|
|
489
499
|
"anyhow",
|
|
490
500
|
"async-trait",
|
|
@@ -501,7 +511,7 @@ dependencies = [
|
|
|
501
511
|
|
|
502
512
|
[[package]]
|
|
503
513
|
name = "bashkit-js"
|
|
504
|
-
version = "0.
|
|
514
|
+
version = "0.15.0"
|
|
505
515
|
dependencies = [
|
|
506
516
|
"bashkit",
|
|
507
517
|
"napi",
|
|
@@ -513,7 +523,7 @@ dependencies = [
|
|
|
513
523
|
|
|
514
524
|
[[package]]
|
|
515
525
|
name = "bashkit-python"
|
|
516
|
-
version = "0.
|
|
526
|
+
version = "0.15.0"
|
|
517
527
|
dependencies = [
|
|
518
528
|
"bashkit",
|
|
519
529
|
"num-bigint",
|
|
@@ -525,7 +535,7 @@ dependencies = [
|
|
|
525
535
|
|
|
526
536
|
[[package]]
|
|
527
537
|
name = "bashkit-wasm"
|
|
528
|
-
version = "0.
|
|
538
|
+
version = "0.15.0"
|
|
529
539
|
dependencies = [
|
|
530
540
|
"bashkit",
|
|
531
541
|
"console_error_panic_hook",
|
|
@@ -548,7 +558,7 @@ checksum = "144e573728da132683b9488acd528274c790e07fc06ff81ee29f9d8f8b1041e0"
|
|
|
548
558
|
dependencies = [
|
|
549
559
|
"blowfish",
|
|
550
560
|
"pbkdf2",
|
|
551
|
-
"sha2
|
|
561
|
+
"sha2",
|
|
552
562
|
]
|
|
553
563
|
|
|
554
564
|
[[package]]
|
|
@@ -609,16 +619,7 @@ version = "0.11.0-rc.6"
|
|
|
609
619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
620
|
checksum = "061f1a09225e328e1ffbb378d2d49923c0ca5fee19fb5ac1cc9c1e9d52b93690"
|
|
611
621
|
dependencies = [
|
|
612
|
-
"digest
|
|
613
|
-
]
|
|
614
|
-
|
|
615
|
-
[[package]]
|
|
616
|
-
name = "block-buffer"
|
|
617
|
-
version = "0.10.4"
|
|
618
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
-
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
620
|
-
dependencies = [
|
|
621
|
-
"generic-array 0.14.7",
|
|
622
|
+
"digest",
|
|
622
623
|
]
|
|
623
624
|
|
|
624
625
|
[[package]]
|
|
@@ -838,7 +839,7 @@ version = "0.5.2"
|
|
|
838
839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
840
|
checksum = "e8cf2a2c93cd704877c0858356ed03480ff301ee950b43f1cbe4573b088bfa6c"
|
|
840
841
|
dependencies = [
|
|
841
|
-
"block-buffer
|
|
842
|
+
"block-buffer",
|
|
842
843
|
"crypto-common 0.2.2",
|
|
843
844
|
"inout 0.2.2",
|
|
844
845
|
"zeroize",
|
|
@@ -935,7 +936,7 @@ version = "3.1.1"
|
|
|
935
936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
937
|
checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
|
|
937
938
|
dependencies = [
|
|
938
|
-
"windows-sys 0.
|
|
939
|
+
"windows-sys 0.52.0",
|
|
939
940
|
]
|
|
940
941
|
|
|
941
942
|
[[package]]
|
|
@@ -992,12 +993,6 @@ dependencies = [
|
|
|
992
993
|
"wasm-bindgen",
|
|
993
994
|
]
|
|
994
995
|
|
|
995
|
-
[[package]]
|
|
996
|
-
name = "const-oid"
|
|
997
|
-
version = "0.9.6"
|
|
998
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
-
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
1000
|
-
|
|
1001
996
|
[[package]]
|
|
1002
997
|
name = "const-oid"
|
|
1003
998
|
version = "0.10.2"
|
|
@@ -1233,22 +1228,6 @@ dependencies = [
|
|
|
1233
1228
|
"subtle",
|
|
1234
1229
|
]
|
|
1235
1230
|
|
|
1236
|
-
[[package]]
|
|
1237
|
-
name = "curve25519-dalek"
|
|
1238
|
-
version = "4.1.3"
|
|
1239
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
-
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
|
1241
|
-
dependencies = [
|
|
1242
|
-
"cfg-if",
|
|
1243
|
-
"cpufeatures 0.2.17",
|
|
1244
|
-
"curve25519-dalek-derive",
|
|
1245
|
-
"digest 0.10.7",
|
|
1246
|
-
"fiat-crypto 0.2.9",
|
|
1247
|
-
"rustc_version",
|
|
1248
|
-
"subtle",
|
|
1249
|
-
"zeroize",
|
|
1250
|
-
]
|
|
1251
|
-
|
|
1252
1231
|
[[package]]
|
|
1253
1232
|
name = "curve25519-dalek"
|
|
1254
1233
|
version = "5.0.0"
|
|
@@ -1258,8 +1237,8 @@ dependencies = [
|
|
|
1258
1237
|
"cfg-if",
|
|
1259
1238
|
"cpufeatures 0.3.0",
|
|
1260
1239
|
"curve25519-dalek-derive",
|
|
1261
|
-
"digest
|
|
1262
|
-
"fiat-crypto
|
|
1240
|
+
"digest",
|
|
1241
|
+
"fiat-crypto",
|
|
1263
1242
|
"rand_core 0.10.1",
|
|
1264
1243
|
"rustc_version",
|
|
1265
1244
|
"subtle",
|
|
@@ -1325,23 +1304,13 @@ dependencies = [
|
|
|
1325
1304
|
"syn 2.0.119",
|
|
1326
1305
|
]
|
|
1327
1306
|
|
|
1328
|
-
[[package]]
|
|
1329
|
-
name = "der"
|
|
1330
|
-
version = "0.7.10"
|
|
1331
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
-
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
1333
|
-
dependencies = [
|
|
1334
|
-
"const-oid 0.9.6",
|
|
1335
|
-
"zeroize",
|
|
1336
|
-
]
|
|
1337
|
-
|
|
1338
1307
|
[[package]]
|
|
1339
1308
|
name = "der"
|
|
1340
1309
|
version = "0.8.0"
|
|
1341
1310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
1311
|
checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
|
|
1343
1312
|
dependencies = [
|
|
1344
|
-
"const-oid
|
|
1313
|
+
"const-oid",
|
|
1345
1314
|
"pem-rfc7468",
|
|
1346
1315
|
"zeroize",
|
|
1347
1316
|
]
|
|
@@ -1372,24 +1341,14 @@ version = "0.1.13"
|
|
|
1372
1341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1373
1342
|
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
1374
1343
|
|
|
1375
|
-
[[package]]
|
|
1376
|
-
name = "digest"
|
|
1377
|
-
version = "0.10.7"
|
|
1378
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
-
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1380
|
-
dependencies = [
|
|
1381
|
-
"block-buffer 0.10.4",
|
|
1382
|
-
"crypto-common 0.1.7",
|
|
1383
|
-
]
|
|
1384
|
-
|
|
1385
1344
|
[[package]]
|
|
1386
1345
|
name = "digest"
|
|
1387
1346
|
version = "0.11.3"
|
|
1388
1347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
1348
|
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
1390
1349
|
dependencies = [
|
|
1391
|
-
"block-buffer
|
|
1392
|
-
"const-oid
|
|
1350
|
+
"block-buffer",
|
|
1351
|
+
"const-oid",
|
|
1393
1352
|
"crypto-common 0.2.2",
|
|
1394
1353
|
"ctutils",
|
|
1395
1354
|
]
|
|
@@ -1429,48 +1388,23 @@ version = "0.17.0"
|
|
|
1429
1388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
1389
|
checksum = "c0681a4fc24c767085329728d8dfba959af91228aa4610cca4f8ce317ba46ae0"
|
|
1431
1390
|
dependencies = [
|
|
1432
|
-
"der
|
|
1433
|
-
"digest
|
|
1391
|
+
"der",
|
|
1392
|
+
"digest",
|
|
1434
1393
|
"elliptic-curve",
|
|
1435
1394
|
"rfc6979",
|
|
1436
|
-
"signature
|
|
1437
|
-
"spki
|
|
1395
|
+
"signature",
|
|
1396
|
+
"spki",
|
|
1438
1397
|
"zeroize",
|
|
1439
1398
|
]
|
|
1440
1399
|
|
|
1441
|
-
[[package]]
|
|
1442
|
-
name = "ed25519"
|
|
1443
|
-
version = "2.2.3"
|
|
1444
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
|
-
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
|
1446
|
-
dependencies = [
|
|
1447
|
-
"pkcs8 0.10.2",
|
|
1448
|
-
"signature 2.2.0",
|
|
1449
|
-
]
|
|
1450
|
-
|
|
1451
1400
|
[[package]]
|
|
1452
1401
|
name = "ed25519"
|
|
1453
1402
|
version = "3.0.0"
|
|
1454
1403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
1404
|
checksum = "29fcf32e6c73d1079f83ab4d782de2d81620346a5f38c6237a86a22f8368980a"
|
|
1456
1405
|
dependencies = [
|
|
1457
|
-
"pkcs8
|
|
1458
|
-
"signature
|
|
1459
|
-
]
|
|
1460
|
-
|
|
1461
|
-
[[package]]
|
|
1462
|
-
name = "ed25519-dalek"
|
|
1463
|
-
version = "2.2.0"
|
|
1464
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1465
|
-
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
|
1466
|
-
dependencies = [
|
|
1467
|
-
"curve25519-dalek 4.1.3",
|
|
1468
|
-
"ed25519 2.2.3",
|
|
1469
|
-
"rand_core 0.6.4",
|
|
1470
|
-
"serde",
|
|
1471
|
-
"sha2 0.10.9",
|
|
1472
|
-
"subtle",
|
|
1473
|
-
"zeroize",
|
|
1406
|
+
"pkcs8",
|
|
1407
|
+
"signature",
|
|
1474
1408
|
]
|
|
1475
1409
|
|
|
1476
1410
|
[[package]]
|
|
@@ -1479,12 +1413,12 @@ version = "3.0.0"
|
|
|
1479
1413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
1414
|
checksum = "6ebaa1a2bf1290ab3bfe5a7b771d050ebffab2711c19a81691c683a5144a25de"
|
|
1481
1415
|
dependencies = [
|
|
1482
|
-
"curve25519-dalek
|
|
1483
|
-
"ed25519
|
|
1416
|
+
"curve25519-dalek",
|
|
1417
|
+
"ed25519",
|
|
1484
1418
|
"rand_core 0.10.1",
|
|
1485
1419
|
"serde",
|
|
1486
|
-
"sha2
|
|
1487
|
-
"signature
|
|
1420
|
+
"sha2",
|
|
1421
|
+
"signature",
|
|
1488
1422
|
"subtle",
|
|
1489
1423
|
"zeroize",
|
|
1490
1424
|
]
|
|
@@ -1504,13 +1438,13 @@ dependencies = [
|
|
|
1504
1438
|
"base16ct",
|
|
1505
1439
|
"crypto-bigint",
|
|
1506
1440
|
"crypto-common 0.2.2",
|
|
1507
|
-
"digest
|
|
1441
|
+
"digest",
|
|
1508
1442
|
"ff",
|
|
1509
1443
|
"group",
|
|
1510
1444
|
"hkdf",
|
|
1511
1445
|
"hybrid-array",
|
|
1512
1446
|
"pem-rfc7468",
|
|
1513
|
-
"pkcs8
|
|
1447
|
+
"pkcs8",
|
|
1514
1448
|
"rand_core 0.10.1",
|
|
1515
1449
|
"sec1",
|
|
1516
1450
|
"subtle",
|
|
@@ -1566,7 +1500,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1566
1500
|
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1567
1501
|
dependencies = [
|
|
1568
1502
|
"libc",
|
|
1569
|
-
"windows-sys 0.
|
|
1503
|
+
"windows-sys 0.52.0",
|
|
1570
1504
|
]
|
|
1571
1505
|
|
|
1572
1506
|
[[package]]
|
|
@@ -1641,12 +1575,6 @@ dependencies = [
|
|
|
1641
1575
|
"subtle",
|
|
1642
1576
|
]
|
|
1643
1577
|
|
|
1644
|
-
[[package]]
|
|
1645
|
-
name = "fiat-crypto"
|
|
1646
|
-
version = "0.2.9"
|
|
1647
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
-
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
1649
|
-
|
|
1650
1578
|
[[package]]
|
|
1651
1579
|
name = "fiat-crypto"
|
|
1652
1580
|
version = "0.3.0"
|
|
@@ -2029,7 +1957,7 @@ version = "0.13.0"
|
|
|
2029
1957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2030
1958
|
checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
|
|
2031
1959
|
dependencies = [
|
|
2032
|
-
"digest
|
|
1960
|
+
"digest",
|
|
2033
1961
|
]
|
|
2034
1962
|
|
|
2035
1963
|
[[package]]
|
|
@@ -2820,7 +2748,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2820
2748
|
checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
|
|
2821
2749
|
dependencies = [
|
|
2822
2750
|
"cfg-if",
|
|
2823
|
-
"digest
|
|
2751
|
+
"digest",
|
|
2824
2752
|
]
|
|
2825
2753
|
|
|
2826
2754
|
[[package]]
|
|
@@ -2889,9 +2817,9 @@ dependencies = [
|
|
|
2889
2817
|
|
|
2890
2818
|
[[package]]
|
|
2891
2819
|
name = "mira-eval"
|
|
2892
|
-
version = "0.
|
|
2820
|
+
version = "0.5.0"
|
|
2893
2821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2894
|
-
checksum = "
|
|
2822
|
+
checksum = "75db8c713ee4b8ed2fd8eb1797dd3129b0e545a039e9cef45ac19458447cc16c"
|
|
2895
2823
|
dependencies = [
|
|
2896
2824
|
"async-trait",
|
|
2897
2825
|
"inventory",
|
|
@@ -2905,9 +2833,9 @@ dependencies = [
|
|
|
2905
2833
|
|
|
2906
2834
|
[[package]]
|
|
2907
2835
|
name = "mira-macros"
|
|
2908
|
-
version = "0.
|
|
2836
|
+
version = "0.5.0"
|
|
2909
2837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
-
checksum = "
|
|
2838
|
+
checksum = "2bfd4d98e649e99b006acace5360e65ca6fd0bc6593e6502514592316ab38530"
|
|
2911
2839
|
dependencies = [
|
|
2912
2840
|
"proc-macro2",
|
|
2913
2841
|
"quote",
|
|
@@ -2923,7 +2851,7 @@ dependencies = [
|
|
|
2923
2851
|
"hybrid-array",
|
|
2924
2852
|
"kem",
|
|
2925
2853
|
"module-lattice",
|
|
2926
|
-
"pkcs8
|
|
2854
|
+
"pkcs8",
|
|
2927
2855
|
"rand_core 0.10.1",
|
|
2928
2856
|
"sha3 0.11.0",
|
|
2929
2857
|
]
|
|
@@ -3398,7 +3326,7 @@ dependencies = [
|
|
|
3398
3326
|
"elliptic-curve",
|
|
3399
3327
|
"primefield",
|
|
3400
3328
|
"primeorder",
|
|
3401
|
-
"sha2
|
|
3329
|
+
"sha2",
|
|
3402
3330
|
]
|
|
3403
3331
|
|
|
3404
3332
|
[[package]]
|
|
@@ -3409,10 +3337,10 @@ checksum = "d17b851e6b3e378ab4ecb07fa2ed23f4d15f075735f8fec9fa1e7bdce5f8301f"
|
|
|
3409
3337
|
dependencies = [
|
|
3410
3338
|
"ecdsa",
|
|
3411
3339
|
"elliptic-curve",
|
|
3412
|
-
"fiat-crypto
|
|
3340
|
+
"fiat-crypto",
|
|
3413
3341
|
"primefield",
|
|
3414
3342
|
"primeorder",
|
|
3415
|
-
"sha2
|
|
3343
|
+
"sha2",
|
|
3416
3344
|
]
|
|
3417
3345
|
|
|
3418
3346
|
[[package]]
|
|
@@ -3426,7 +3354,7 @@ dependencies = [
|
|
|
3426
3354
|
"elliptic-curve",
|
|
3427
3355
|
"primefield",
|
|
3428
3356
|
"primeorder",
|
|
3429
|
-
"sha2
|
|
3357
|
+
"sha2",
|
|
3430
3358
|
]
|
|
3431
3359
|
|
|
3432
3360
|
[[package]]
|
|
@@ -3461,7 +3389,7 @@ dependencies = [
|
|
|
3461
3389
|
"futures",
|
|
3462
3390
|
"log",
|
|
3463
3391
|
"rand 0.10.2",
|
|
3464
|
-
"sha2
|
|
3392
|
+
"sha2",
|
|
3465
3393
|
"thiserror",
|
|
3466
3394
|
"tokio",
|
|
3467
3395
|
"windows",
|
|
@@ -3523,7 +3451,7 @@ version = "0.13.0"
|
|
|
3523
3451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3524
3452
|
checksum = "112d82ceb8c5bf524d9af484d4e4970c9fd5a0cc15ba14ad93dccd28873b0629"
|
|
3525
3453
|
dependencies = [
|
|
3526
|
-
"digest
|
|
3454
|
+
"digest",
|
|
3527
3455
|
"hmac",
|
|
3528
3456
|
]
|
|
3529
3457
|
|
|
@@ -3645,8 +3573,8 @@ version = "0.8.0-rc.4"
|
|
|
3645
3573
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3646
3574
|
checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e"
|
|
3647
3575
|
dependencies = [
|
|
3648
|
-
"der
|
|
3649
|
-
"spki
|
|
3576
|
+
"der",
|
|
3577
|
+
"spki",
|
|
3650
3578
|
]
|
|
3651
3579
|
|
|
3652
3580
|
[[package]]
|
|
@@ -3658,22 +3586,12 @@ dependencies = [
|
|
|
3658
3586
|
"aes 0.9.1",
|
|
3659
3587
|
"aes-gcm 0.11.0",
|
|
3660
3588
|
"cbc",
|
|
3661
|
-
"der
|
|
3589
|
+
"der",
|
|
3662
3590
|
"pbkdf2",
|
|
3663
3591
|
"rand_core 0.10.1",
|
|
3664
3592
|
"scrypt",
|
|
3665
|
-
"sha2
|
|
3666
|
-
"spki
|
|
3667
|
-
]
|
|
3668
|
-
|
|
3669
|
-
[[package]]
|
|
3670
|
-
name = "pkcs8"
|
|
3671
|
-
version = "0.10.2"
|
|
3672
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3673
|
-
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
3674
|
-
dependencies = [
|
|
3675
|
-
"der 0.7.10",
|
|
3676
|
-
"spki 0.7.3",
|
|
3593
|
+
"sha2",
|
|
3594
|
+
"spki",
|
|
3677
3595
|
]
|
|
3678
3596
|
|
|
3679
3597
|
[[package]]
|
|
@@ -3682,10 +3600,10 @@ version = "0.11.0"
|
|
|
3682
3600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3683
3601
|
checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7"
|
|
3684
3602
|
dependencies = [
|
|
3685
|
-
"der
|
|
3603
|
+
"der",
|
|
3686
3604
|
"pkcs5",
|
|
3687
3605
|
"rand_core 0.10.1",
|
|
3688
|
-
"spki
|
|
3606
|
+
"spki",
|
|
3689
3607
|
]
|
|
3690
3608
|
|
|
3691
3609
|
[[package]]
|
|
@@ -4310,16 +4228,16 @@ version = "0.10.0-rc.18"
|
|
|
4310
4228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4311
4229
|
checksum = "30b2aa4ba0d89f73d1e332df05be0eeab8840351c36ca5654341dfdb57bb3caf"
|
|
4312
4230
|
dependencies = [
|
|
4313
|
-
"const-oid
|
|
4231
|
+
"const-oid",
|
|
4314
4232
|
"crypto-bigint",
|
|
4315
4233
|
"crypto-primes",
|
|
4316
|
-
"digest
|
|
4234
|
+
"digest",
|
|
4317
4235
|
"pkcs1",
|
|
4318
|
-
"pkcs8
|
|
4236
|
+
"pkcs8",
|
|
4319
4237
|
"rand_core 0.10.1",
|
|
4320
|
-
"sha2
|
|
4321
|
-
"signature
|
|
4322
|
-
"spki
|
|
4238
|
+
"sha2",
|
|
4239
|
+
"signature",
|
|
4240
|
+
"spki",
|
|
4323
4241
|
"zeroize",
|
|
4324
4242
|
]
|
|
4325
4243
|
|
|
@@ -4409,9 +4327,9 @@ dependencies = [
|
|
|
4409
4327
|
|
|
4410
4328
|
[[package]]
|
|
4411
4329
|
name = "russh"
|
|
4412
|
-
version = "0.62.
|
|
4330
|
+
version = "0.62.5"
|
|
4413
4331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4414
|
-
checksum = "
|
|
4332
|
+
checksum = "da7c230e0ed9cbeb92fbad6c8848985d6df2a1464c0dc247a021abd666e9005e"
|
|
4415
4333
|
dependencies = [
|
|
4416
4334
|
"aes 0.9.1",
|
|
4417
4335
|
"aws-lc-rs",
|
|
@@ -4423,13 +4341,13 @@ dependencies = [
|
|
|
4423
4341
|
"cipher 0.5.2",
|
|
4424
4342
|
"crypto-bigint",
|
|
4425
4343
|
"ctr 0.10.1",
|
|
4426
|
-
"curve25519-dalek
|
|
4344
|
+
"curve25519-dalek",
|
|
4427
4345
|
"data-encoding",
|
|
4428
4346
|
"delegate",
|
|
4429
|
-
"der
|
|
4430
|
-
"digest
|
|
4347
|
+
"der",
|
|
4348
|
+
"digest",
|
|
4431
4349
|
"ecdsa",
|
|
4432
|
-
"ed25519-dalek
|
|
4350
|
+
"ed25519-dalek",
|
|
4433
4351
|
"elliptic-curve",
|
|
4434
4352
|
"enum_dispatch",
|
|
4435
4353
|
"flate2",
|
|
@@ -4454,7 +4372,7 @@ dependencies = [
|
|
|
4454
4372
|
"pbkdf2",
|
|
4455
4373
|
"pkcs1",
|
|
4456
4374
|
"pkcs5",
|
|
4457
|
-
"pkcs8
|
|
4375
|
+
"pkcs8",
|
|
4458
4376
|
"polyval 0.7.1",
|
|
4459
4377
|
"rand 0.10.2",
|
|
4460
4378
|
"rand_core 0.10.1",
|
|
@@ -4465,10 +4383,10 @@ dependencies = [
|
|
|
4465
4383
|
"scrypt",
|
|
4466
4384
|
"sec1",
|
|
4467
4385
|
"sha1",
|
|
4468
|
-
"sha2
|
|
4386
|
+
"sha2",
|
|
4469
4387
|
"sha3 0.12.0",
|
|
4470
|
-
"signature
|
|
4471
|
-
"spki
|
|
4388
|
+
"signature",
|
|
4389
|
+
"spki",
|
|
4472
4390
|
"ssh-encoding",
|
|
4473
4391
|
"ssh-key",
|
|
4474
4392
|
"subtle",
|
|
@@ -4538,7 +4456,7 @@ dependencies = [
|
|
|
4538
4456
|
"errno",
|
|
4539
4457
|
"libc",
|
|
4540
4458
|
"linux-raw-sys",
|
|
4541
|
-
"windows-sys 0.
|
|
4459
|
+
"windows-sys 0.52.0",
|
|
4542
4460
|
]
|
|
4543
4461
|
|
|
4544
4462
|
[[package]]
|
|
@@ -4595,7 +4513,7 @@ dependencies = [
|
|
|
4595
4513
|
"security-framework",
|
|
4596
4514
|
"security-framework-sys",
|
|
4597
4515
|
"webpki-root-certs",
|
|
4598
|
-
"windows-sys 0.
|
|
4516
|
+
"windows-sys 0.52.0",
|
|
4599
4517
|
]
|
|
4600
4518
|
|
|
4601
4519
|
[[package]]
|
|
@@ -4709,7 +4627,7 @@ dependencies = [
|
|
|
4709
4627
|
"cfg-if",
|
|
4710
4628
|
"pbkdf2",
|
|
4711
4629
|
"salsa20",
|
|
4712
|
-
"sha2
|
|
4630
|
+
"sha2",
|
|
4713
4631
|
]
|
|
4714
4632
|
|
|
4715
4633
|
[[package]]
|
|
@@ -4720,7 +4638,7 @@ checksum = "d56d437c2f19203ce5f7122e507831de96f3d2d4d3be5af44a0b0a09d8a80e4d"
|
|
|
4720
4638
|
dependencies = [
|
|
4721
4639
|
"base16ct",
|
|
4722
4640
|
"ctutils",
|
|
4723
|
-
"der
|
|
4641
|
+
"der",
|
|
4724
4642
|
"hybrid-array",
|
|
4725
4643
|
"subtle",
|
|
4726
4644
|
"zeroize",
|
|
@@ -4851,9 +4769,9 @@ dependencies = [
|
|
|
4851
4769
|
|
|
4852
4770
|
[[package]]
|
|
4853
4771
|
name = "serial_test"
|
|
4854
|
-
version = "
|
|
4772
|
+
version = "4.0.1"
|
|
4855
4773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4856
|
-
checksum = "
|
|
4774
|
+
checksum = "a6df5ed973ad8d834e09f824f9e9f449af6b9a3745f78dec7cc752770bd3bf11"
|
|
4857
4775
|
dependencies = [
|
|
4858
4776
|
"futures-executor",
|
|
4859
4777
|
"futures-util",
|
|
@@ -4865,13 +4783,13 @@ dependencies = [
|
|
|
4865
4783
|
|
|
4866
4784
|
[[package]]
|
|
4867
4785
|
name = "serial_test_derive"
|
|
4868
|
-
version = "
|
|
4786
|
+
version = "4.0.1"
|
|
4869
4787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4870
|
-
checksum = "
|
|
4788
|
+
checksum = "a22144e767da4ddd8416dbf383700542ffd8a5dc493dfecedfe1fe3ad03c98ae"
|
|
4871
4789
|
dependencies = [
|
|
4872
4790
|
"proc-macro2",
|
|
4873
4791
|
"quote",
|
|
4874
|
-
"syn
|
|
4792
|
+
"syn 3.0.3",
|
|
4875
4793
|
]
|
|
4876
4794
|
|
|
4877
4795
|
[[package]]
|
|
@@ -4882,7 +4800,7 @@ checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
|
|
|
4882
4800
|
dependencies = [
|
|
4883
4801
|
"cfg-if",
|
|
4884
4802
|
"cpufeatures 0.3.0",
|
|
4885
|
-
"digest
|
|
4803
|
+
"digest",
|
|
4886
4804
|
]
|
|
4887
4805
|
|
|
4888
4806
|
[[package]]
|
|
@@ -4891,17 +4809,6 @@ version = "1.0.1"
|
|
|
4891
4809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4892
4810
|
checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
|
|
4893
4811
|
|
|
4894
|
-
[[package]]
|
|
4895
|
-
name = "sha2"
|
|
4896
|
-
version = "0.10.9"
|
|
4897
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4898
|
-
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
4899
|
-
dependencies = [
|
|
4900
|
-
"cfg-if",
|
|
4901
|
-
"cpufeatures 0.2.17",
|
|
4902
|
-
"digest 0.10.7",
|
|
4903
|
-
]
|
|
4904
|
-
|
|
4905
4812
|
[[package]]
|
|
4906
4813
|
name = "sha2"
|
|
4907
4814
|
version = "0.11.0"
|
|
@@ -4910,7 +4817,7 @@ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
|
4910
4817
|
dependencies = [
|
|
4911
4818
|
"cfg-if",
|
|
4912
4819
|
"cpufeatures 0.3.0",
|
|
4913
|
-
"digest
|
|
4820
|
+
"digest",
|
|
4914
4821
|
]
|
|
4915
4822
|
|
|
4916
4823
|
[[package]]
|
|
@@ -4919,7 +4826,7 @@ version = "0.11.0"
|
|
|
4919
4826
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4920
4827
|
checksum = "be176f1a57ce4e3d31c1a166222d9768de5954f811601fb7ca06fc8203905ce1"
|
|
4921
4828
|
dependencies = [
|
|
4922
|
-
"digest
|
|
4829
|
+
"digest",
|
|
4923
4830
|
"keccak",
|
|
4924
4831
|
]
|
|
4925
4832
|
|
|
@@ -4929,7 +4836,7 @@ version = "0.12.0"
|
|
|
4929
4836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4930
4837
|
checksum = "bc9bad02c26382724b2d2692c6f179285e4b54eeecd7968f52a50059c3c11759"
|
|
4931
4838
|
dependencies = [
|
|
4932
|
-
"digest
|
|
4839
|
+
"digest",
|
|
4933
4840
|
"keccak",
|
|
4934
4841
|
"sponge-cursor",
|
|
4935
4842
|
]
|
|
@@ -4989,22 +4896,13 @@ dependencies = [
|
|
|
4989
4896
|
"libc",
|
|
4990
4897
|
]
|
|
4991
4898
|
|
|
4992
|
-
[[package]]
|
|
4993
|
-
name = "signature"
|
|
4994
|
-
version = "2.2.0"
|
|
4995
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4996
|
-
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
4997
|
-
dependencies = [
|
|
4998
|
-
"rand_core 0.6.4",
|
|
4999
|
-
]
|
|
5000
|
-
|
|
5001
4899
|
[[package]]
|
|
5002
4900
|
name = "signature"
|
|
5003
4901
|
version = "3.0.0"
|
|
5004
4902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5005
4903
|
checksum = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5"
|
|
5006
4904
|
dependencies = [
|
|
5007
|
-
"digest
|
|
4905
|
+
"digest",
|
|
5008
4906
|
"rand_core 0.10.1",
|
|
5009
4907
|
]
|
|
5010
4908
|
|
|
@@ -5108,16 +5006,6 @@ dependencies = [
|
|
|
5108
5006
|
"lock_api",
|
|
5109
5007
|
]
|
|
5110
5008
|
|
|
5111
|
-
[[package]]
|
|
5112
|
-
name = "spki"
|
|
5113
|
-
version = "0.7.3"
|
|
5114
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5115
|
-
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
5116
|
-
dependencies = [
|
|
5117
|
-
"base64ct",
|
|
5118
|
-
"der 0.7.10",
|
|
5119
|
-
]
|
|
5120
|
-
|
|
5121
5009
|
[[package]]
|
|
5122
5010
|
name = "spki"
|
|
5123
5011
|
version = "0.8.0"
|
|
@@ -5125,7 +5013,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5125
5013
|
checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
|
|
5126
5014
|
dependencies = [
|
|
5127
5015
|
"base64ct",
|
|
5128
|
-
"der
|
|
5016
|
+
"der",
|
|
5129
5017
|
]
|
|
5130
5018
|
|
|
5131
5019
|
[[package]]
|
|
@@ -5162,7 +5050,7 @@ dependencies = [
|
|
|
5162
5050
|
"bytes",
|
|
5163
5051
|
"crypto-bigint",
|
|
5164
5052
|
"ctutils",
|
|
5165
|
-
"digest
|
|
5053
|
+
"digest",
|
|
5166
5054
|
"pem-rfc7468",
|
|
5167
5055
|
"zeroize",
|
|
5168
5056
|
]
|
|
@@ -5176,7 +5064,7 @@ dependencies = [
|
|
|
5176
5064
|
"argon2",
|
|
5177
5065
|
"bcrypt-pbkdf",
|
|
5178
5066
|
"ctutils",
|
|
5179
|
-
"ed25519-dalek
|
|
5067
|
+
"ed25519-dalek",
|
|
5180
5068
|
"hex",
|
|
5181
5069
|
"hmac",
|
|
5182
5070
|
"p256",
|
|
@@ -5186,8 +5074,8 @@ dependencies = [
|
|
|
5186
5074
|
"rsa",
|
|
5187
5075
|
"sec1",
|
|
5188
5076
|
"sha1",
|
|
5189
|
-
"sha2
|
|
5190
|
-
"signature
|
|
5077
|
+
"sha2",
|
|
5078
|
+
"signature",
|
|
5191
5079
|
"ssh-cipher",
|
|
5192
5080
|
"ssh-encoding",
|
|
5193
5081
|
"zeroize",
|
|
@@ -5348,7 +5236,7 @@ dependencies = [
|
|
|
5348
5236
|
"getrandom 0.4.3",
|
|
5349
5237
|
"once_cell",
|
|
5350
5238
|
"rustix",
|
|
5351
|
-
"windows-sys 0.
|
|
5239
|
+
"windows-sys 0.52.0",
|
|
5352
5240
|
]
|
|
5353
5241
|
|
|
5354
5242
|
[[package]]
|
|
@@ -5677,9 +5565,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
5677
5565
|
|
|
5678
5566
|
[[package]]
|
|
5679
5567
|
name = "turso_core"
|
|
5680
|
-
version = "0.8.0-pre.
|
|
5568
|
+
version = "0.8.0-pre.2"
|
|
5681
5569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5682
|
-
checksum = "
|
|
5570
|
+
checksum = "126a369027e3f8d5736f871267e9a79fe18e081cf4023b520d3a45097bc9e841"
|
|
5683
5571
|
dependencies = [
|
|
5684
5572
|
"aegis",
|
|
5685
5573
|
"aes 0.8.4",
|
|
@@ -5746,9 +5634,9 @@ dependencies = [
|
|
|
5746
5634
|
|
|
5747
5635
|
[[package]]
|
|
5748
5636
|
name = "turso_ext"
|
|
5749
|
-
version = "0.8.0-pre.
|
|
5637
|
+
version = "0.8.0-pre.2"
|
|
5750
5638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5751
|
-
checksum = "
|
|
5639
|
+
checksum = "2cca983d5255440f8074a017c1bebe4bb387f079a43fedc179f3de1e6f3e3def"
|
|
5752
5640
|
dependencies = [
|
|
5753
5641
|
"chrono",
|
|
5754
5642
|
"getrandom 0.4.3",
|
|
@@ -5757,9 +5645,9 @@ dependencies = [
|
|
|
5757
5645
|
|
|
5758
5646
|
[[package]]
|
|
5759
5647
|
name = "turso_macros"
|
|
5760
|
-
version = "0.8.0-pre.
|
|
5648
|
+
version = "0.8.0-pre.2"
|
|
5761
5649
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5762
|
-
checksum = "
|
|
5650
|
+
checksum = "0cd0d06b919b0c6a517451c05a855368fecf101eeb87b4eaf299a3daa97ad2e2"
|
|
5763
5651
|
dependencies = [
|
|
5764
5652
|
"proc-macro2",
|
|
5765
5653
|
"quote",
|
|
@@ -5768,9 +5656,9 @@ dependencies = [
|
|
|
5768
5656
|
|
|
5769
5657
|
[[package]]
|
|
5770
5658
|
name = "turso_parser"
|
|
5771
|
-
version = "0.8.0-pre.
|
|
5659
|
+
version = "0.8.0-pre.2"
|
|
5772
5660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5773
|
-
checksum = "
|
|
5661
|
+
checksum = "d6c143277cc1387ba02aed82856a20c43108f8aaa4caf55201f73b229db08fcf"
|
|
5774
5662
|
dependencies = [
|
|
5775
5663
|
"bitflags 2.13.1",
|
|
5776
5664
|
"memchr",
|
|
@@ -6150,7 +6038,7 @@ version = "0.1.11"
|
|
|
6150
6038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6151
6039
|
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
6152
6040
|
dependencies = [
|
|
6153
|
-
"windows-sys 0.
|
|
6041
|
+
"windows-sys 0.52.0",
|
|
6154
6042
|
]
|
|
6155
6043
|
|
|
6156
6044
|
[[package]]
|