bashkit 0.14.4__tar.gz → 0.14.5__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.14.5}/Cargo.lock +95 -217
- {bashkit-0.14.4 → bashkit-0.14.5}/Cargo.toml +3 -3
- {bashkit-0.14.4 → bashkit-0.14.5}/PKG-INFO +64 -1
- {bashkit-0.14.4/crates/bashkit-python → bashkit-0.14.5}/README.md +63 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/bashkit/__init__.py +6 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/bashkit/_bashkit.pyi +118 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/bashkit/langchain.py +1 -1
- {bashkit-0.14.4 → bashkit-0.14.5}/bashkit/pydantic_ai.py +2 -2
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/README.md +27 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/docs/namespace_filesystems.md +1 -1
- bashkit-0.14.5/crates/bashkit/docs/script-analysis.md +345 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/docs/threat-model.md +5 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/agent_tool.rs +1 -1
- bashkit-0.14.5/crates/bashkit/src/analysis.rs +786 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/fs/memory.rs +43 -7
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/fs/mod.rs +1 -1
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/fs/mountable.rs +6 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/fs/overlay.rs +4 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/fs/readonly.rs +4 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/fs/traits.rs +19 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/lib.rs +56 -0
- bashkit-0.14.5/crates/bashkit/src/snapshot/capabilities.rs +386 -0
- bashkit-0.14.5/crates/bashkit/src/snapshot/chunker.rs +167 -0
- bashkit-0.14.5/crates/bashkit/src/snapshot/container.rs +547 -0
- bashkit-0.14.5/crates/bashkit/src/snapshot/graph.rs +849 -0
- bashkit-0.14.4/crates/bashkit/src/snapshot.rs → bashkit-0.14.5/crates/bashkit/src/snapshot/mod.rs +183 -68
- bashkit-0.14.5/crates/bashkit/src/snapshot/objects.rs +874 -0
- bashkit-0.14.5/crates/bashkit/tests/fixtures/snapshots/v1.snapshot +2 -0
- bashkit-0.14.5/crates/bashkit/tests/fixtures/snapshots/v2.snapshot +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/main.rs +2 -0
- bashkit-0.14.5/crates/bashkit/tests/integration/script_analysis.rs +274 -0
- bashkit-0.14.5/crates/bashkit/tests/integration/snapshot_fixture_tests.rs +132 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/proptest_security.rs +214 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +10 -0
- {bashkit-0.14.4 → bashkit-0.14.5/crates/bashkit-python}/README.md +63 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/examples/k8s_orchestrator.py +3 -1
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/src/lib.rs +260 -0
- bashkit-0.14.5/crates/bashkit-python/tests/test_analyze.py +214 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/bashkit/deepagents.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/bashkit/py.typed +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/Cargo.toml +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/benches/file_ops.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/benches/hotpath.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/benches/parallel_execution.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/benches/results/README.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/benches/results/criterion-file_ops-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/benches/results/criterion-hotpath-attrs+shopt-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/benches/results/criterion-hotpath-perf-linux-x86_64-1779744742.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/benches/results/criterion-parallel-(none)-linux-x86_64-1773469129.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782162173.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782168239.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1777865268.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/benches/sqlite.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/docs/clap-builtins.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/docs/compatibility.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/docs/credential-injection.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/docs/custom_builtins.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/docs/hooks.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/docs/jq.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/docs/live_mounts.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/docs/logging.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/docs/python.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/docs/sqlite.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/docs/ssh.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/docs/typescript.md +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/basic.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/clap_builtin.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/clap_builtin_subcommands.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/custom_backend.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/custom_builtins.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/custom_fs.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/dump_builtins.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/git_workflow.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/live_mounts.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/namespace_rebase.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/namespace_sandbox.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/python_external_functions.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/python_scripts.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/realfs_readonly.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/resource_limits.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/scripted_tool.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/show_tool_output.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/sqlite_basic.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/sqlite_workflow.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/ssh_supabase.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/streaming_output.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/text_files.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/text_processing.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/typescript_scripts.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/examples/virtual_identity.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/out file.txt +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/alias.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/archive.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/assert.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/awk/interpreter.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/awk/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/awk/parser.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/awk/tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/base64.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/bc.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/caller.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/cat.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/checksum.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/clap_env.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/clear.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/column.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/comm.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/compgen.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/csv.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/curl.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/cuttr.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/date.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/diff.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/dirstack.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/disk.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/dotenv.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/echo.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/environ.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/envsubst.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/expand.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/export.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/expr.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/fc.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/fileops.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/flow.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/fold.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/cat_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/extendedbigdecimal.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/format/argument.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/format/escape.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/format/human.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/format/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/format/num_format.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/format/spec.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/format_support.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/ls_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/mktemp_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/num_parser.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/od_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/readlink_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/realpath_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/shuf_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/stat_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/tac_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/tee_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/truncate_args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/git/client.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/git/cmd.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/git/config.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/git/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/grep.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/headtail.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/help.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/helpers.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/hextools.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/http.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/iconv.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/inspect.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/introspect.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/join.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/args.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/compat.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/convert.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/errors.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/format.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/regex_compat.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/json.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/limits.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/log.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/ls/find.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/ls/glob.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/ls/list.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/ls/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/ls/rmdir.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/ls/tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/mapfile.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/navigation.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/nl.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/numfmt.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/parallel.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/paste.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/patch.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/path.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/pipeline.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/printf.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/python.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/read.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/retry.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/rg/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/runtime_limits.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/search_common.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/sed.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/semver.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/seq.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/shuf.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/sleep.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/sortuniq.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/source.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/split.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/sqlite/dot_commands.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/sqlite/engine.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/sqlite/formatter.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/sqlite/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/sqlite/parser.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/sqlite/tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/sqlite/vfs_io.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/ssh/allowlist.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/ssh/client.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/ssh/cmd.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/ssh/config.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/ssh/handler.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/ssh/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/ssh/russh_handler.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/strings.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/system.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/template.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/textrev.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/timeout.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/tomlq.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/trap.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/tree.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/truncate.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/typescript.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/vars.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/verify.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/wait.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/wc.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/yaml.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/yes.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/builtins/zip_cmd.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/credential.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/error.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/fs/backend.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/fs/limits.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/fs/namespace.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/fs/posix.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/fs/realfs.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/fs/search.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/hooks.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/interop/fs.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/interop/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/interpreter/arithmetic.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/interpreter/brace_expansion.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/interpreter/expansion.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/interpreter/glob.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/interpreter/jobs.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/interpreter/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/interpreter/redirection.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/interpreter/state.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/limits.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/logging_impl.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/network/allowlist.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/network/bot_auth.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/network/client.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/network/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/network/transport.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/parser/ast.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/parser/budget.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/parser/lexer.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/parser/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/parser/span.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/parser/tokens.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/scripted_tool/execute.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/scripted_tool/extension.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/scripted_tool/mod.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/testing.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/time_compat.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/tool.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/tool_def.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/src/trace.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/agent_skills_publication_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/allexport_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/awk_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/awk_newline_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/awk_pattern_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/awk_printf_expr_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/awk_range_pattern_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/background_exec_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/base64_binary_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/bash_source_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/blackbox_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/builtin_error_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/builtin_registry_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/byte_range_panic_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/cancellation_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/cmdsub_quote_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/compgen_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/coproc_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/coreutils_differential_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/credential_injection_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/custom_builtins_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/custom_fs_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/dev_null_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/exec_options_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/final_env_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/find_multi_path_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/for_in_reserved_word_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/git_advanced_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/git_inspection_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/git_integration_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/git_remote_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/git_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/harness_example_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/history_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_1175_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_1776_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_1777_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_274_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_275_279_282_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_276_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_277_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_289_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_290_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_291_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_853_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_872_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_873_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_875_test.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/jq_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/limitations_doc_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/limitations_evidence_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/live_mount_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/mkfifo_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/namespace_fs_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/nested_subscript_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/network_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/output_truncation_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/parallel_sessions_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/proptest_differential.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/python_integration_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/python_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/regex_limit_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/release_profile_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/script_execution_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/security_audit_pocs.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/set_e_and_or_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/shuf_resource_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/skills_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/snapshot_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/source_function_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/spec_runner.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/spec_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/sqlite_compat_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/sqlite_differential_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/sqlite_fuzz_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/sqlite_integration_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/sqlite_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/stack_overflow_regression_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/subst_depth_limit_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/symlink_overlay_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/threat_model_doc_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/threat_model_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/time_compat_scan_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/tty_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/typescript_integration_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/typescript_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/unicode_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/unset_function_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/urandom_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/integration/workflow_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/logging_security_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/realfs_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/cat.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/mktemp.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/od.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/readlink.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/shuf.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/truncate.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/Cargo.toml +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/examples/bash_basics.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/examples/data_pipeline.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/examples/llm_tool.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/_bashkit_categories.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/_security_advanced.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/_security_core.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_basic.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_builtins.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_control_flow.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_custom_builtin_fs.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_error_handling.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_fastapi_integration.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_integration.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_network_config.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_network_credentials.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_python_security.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_scripts.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_security.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_sqlite.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_teardown_determinism.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/crates/bashkit-python/tests/test_vfs.py +0 -0
- {bashkit-0.14.4 → bashkit-0.14.5}/pyproject.toml +0 -0
|
@@ -386,7 +386,7 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
386
386
|
|
|
387
387
|
[[package]]
|
|
388
388
|
name = "bashkit"
|
|
389
|
-
version = "0.14.
|
|
389
|
+
version = "0.14.5"
|
|
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.14.
|
|
444
|
+
version = "0.14.5"
|
|
445
445
|
dependencies = [
|
|
446
446
|
"anyhow",
|
|
447
447
|
"bashkit",
|
|
@@ -456,7 +456,7 @@ dependencies = [
|
|
|
456
456
|
|
|
457
457
|
[[package]]
|
|
458
458
|
name = "bashkit-cli"
|
|
459
|
-
version = "0.14.
|
|
459
|
+
version = "0.14.5"
|
|
460
460
|
dependencies = [
|
|
461
461
|
"anyhow",
|
|
462
462
|
"bashkit",
|
|
@@ -470,7 +470,7 @@ dependencies = [
|
|
|
470
470
|
|
|
471
471
|
[[package]]
|
|
472
472
|
name = "bashkit-coreutils-port"
|
|
473
|
-
version = "0.14.
|
|
473
|
+
version = "0.14.5"
|
|
474
474
|
dependencies = [
|
|
475
475
|
"anyhow",
|
|
476
476
|
"prettyplease",
|
|
@@ -484,7 +484,7 @@ dependencies = [
|
|
|
484
484
|
|
|
485
485
|
[[package]]
|
|
486
486
|
name = "bashkit-eval"
|
|
487
|
-
version = "0.14.
|
|
487
|
+
version = "0.14.5"
|
|
488
488
|
dependencies = [
|
|
489
489
|
"anyhow",
|
|
490
490
|
"async-trait",
|
|
@@ -501,7 +501,7 @@ dependencies = [
|
|
|
501
501
|
|
|
502
502
|
[[package]]
|
|
503
503
|
name = "bashkit-js"
|
|
504
|
-
version = "0.14.
|
|
504
|
+
version = "0.14.5"
|
|
505
505
|
dependencies = [
|
|
506
506
|
"bashkit",
|
|
507
507
|
"napi",
|
|
@@ -513,7 +513,7 @@ dependencies = [
|
|
|
513
513
|
|
|
514
514
|
[[package]]
|
|
515
515
|
name = "bashkit-python"
|
|
516
|
-
version = "0.14.
|
|
516
|
+
version = "0.14.5"
|
|
517
517
|
dependencies = [
|
|
518
518
|
"bashkit",
|
|
519
519
|
"num-bigint",
|
|
@@ -525,7 +525,7 @@ dependencies = [
|
|
|
525
525
|
|
|
526
526
|
[[package]]
|
|
527
527
|
name = "bashkit-wasm"
|
|
528
|
-
version = "0.14.
|
|
528
|
+
version = "0.14.5"
|
|
529
529
|
dependencies = [
|
|
530
530
|
"bashkit",
|
|
531
531
|
"console_error_panic_hook",
|
|
@@ -548,7 +548,7 @@ checksum = "144e573728da132683b9488acd528274c790e07fc06ff81ee29f9d8f8b1041e0"
|
|
|
548
548
|
dependencies = [
|
|
549
549
|
"blowfish",
|
|
550
550
|
"pbkdf2",
|
|
551
|
-
"sha2
|
|
551
|
+
"sha2",
|
|
552
552
|
]
|
|
553
553
|
|
|
554
554
|
[[package]]
|
|
@@ -609,16 +609,7 @@ version = "0.11.0-rc.6"
|
|
|
609
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
610
|
checksum = "061f1a09225e328e1ffbb378d2d49923c0ca5fee19fb5ac1cc9c1e9d52b93690"
|
|
611
611
|
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",
|
|
612
|
+
"digest",
|
|
622
613
|
]
|
|
623
614
|
|
|
624
615
|
[[package]]
|
|
@@ -838,7 +829,7 @@ version = "0.5.2"
|
|
|
838
829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
830
|
checksum = "e8cf2a2c93cd704877c0858356ed03480ff301ee950b43f1cbe4573b088bfa6c"
|
|
840
831
|
dependencies = [
|
|
841
|
-
"block-buffer
|
|
832
|
+
"block-buffer",
|
|
842
833
|
"crypto-common 0.2.2",
|
|
843
834
|
"inout 0.2.2",
|
|
844
835
|
"zeroize",
|
|
@@ -935,7 +926,7 @@ version = "3.1.1"
|
|
|
935
926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
927
|
checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
|
|
937
928
|
dependencies = [
|
|
938
|
-
"windows-sys 0.
|
|
929
|
+
"windows-sys 0.52.0",
|
|
939
930
|
]
|
|
940
931
|
|
|
941
932
|
[[package]]
|
|
@@ -992,12 +983,6 @@ dependencies = [
|
|
|
992
983
|
"wasm-bindgen",
|
|
993
984
|
]
|
|
994
985
|
|
|
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
986
|
[[package]]
|
|
1002
987
|
name = "const-oid"
|
|
1003
988
|
version = "0.10.2"
|
|
@@ -1233,22 +1218,6 @@ dependencies = [
|
|
|
1233
1218
|
"subtle",
|
|
1234
1219
|
]
|
|
1235
1220
|
|
|
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
1221
|
[[package]]
|
|
1253
1222
|
name = "curve25519-dalek"
|
|
1254
1223
|
version = "5.0.0"
|
|
@@ -1258,8 +1227,8 @@ dependencies = [
|
|
|
1258
1227
|
"cfg-if",
|
|
1259
1228
|
"cpufeatures 0.3.0",
|
|
1260
1229
|
"curve25519-dalek-derive",
|
|
1261
|
-
"digest
|
|
1262
|
-
"fiat-crypto
|
|
1230
|
+
"digest",
|
|
1231
|
+
"fiat-crypto",
|
|
1263
1232
|
"rand_core 0.10.1",
|
|
1264
1233
|
"rustc_version",
|
|
1265
1234
|
"subtle",
|
|
@@ -1325,23 +1294,13 @@ dependencies = [
|
|
|
1325
1294
|
"syn 2.0.119",
|
|
1326
1295
|
]
|
|
1327
1296
|
|
|
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
1297
|
[[package]]
|
|
1339
1298
|
name = "der"
|
|
1340
1299
|
version = "0.8.0"
|
|
1341
1300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
1301
|
checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
|
|
1343
1302
|
dependencies = [
|
|
1344
|
-
"const-oid
|
|
1303
|
+
"const-oid",
|
|
1345
1304
|
"pem-rfc7468",
|
|
1346
1305
|
"zeroize",
|
|
1347
1306
|
]
|
|
@@ -1372,24 +1331,14 @@ version = "0.1.13"
|
|
|
1372
1331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1373
1332
|
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
1374
1333
|
|
|
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
1334
|
[[package]]
|
|
1386
1335
|
name = "digest"
|
|
1387
1336
|
version = "0.11.3"
|
|
1388
1337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
1338
|
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
1390
1339
|
dependencies = [
|
|
1391
|
-
"block-buffer
|
|
1392
|
-
"const-oid
|
|
1340
|
+
"block-buffer",
|
|
1341
|
+
"const-oid",
|
|
1393
1342
|
"crypto-common 0.2.2",
|
|
1394
1343
|
"ctutils",
|
|
1395
1344
|
]
|
|
@@ -1429,48 +1378,23 @@ version = "0.17.0"
|
|
|
1429
1378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
1379
|
checksum = "c0681a4fc24c767085329728d8dfba959af91228aa4610cca4f8ce317ba46ae0"
|
|
1431
1380
|
dependencies = [
|
|
1432
|
-
"der
|
|
1433
|
-
"digest
|
|
1381
|
+
"der",
|
|
1382
|
+
"digest",
|
|
1434
1383
|
"elliptic-curve",
|
|
1435
1384
|
"rfc6979",
|
|
1436
|
-
"signature
|
|
1437
|
-
"spki
|
|
1385
|
+
"signature",
|
|
1386
|
+
"spki",
|
|
1438
1387
|
"zeroize",
|
|
1439
1388
|
]
|
|
1440
1389
|
|
|
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
1390
|
[[package]]
|
|
1452
1391
|
name = "ed25519"
|
|
1453
1392
|
version = "3.0.0"
|
|
1454
1393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
1394
|
checksum = "29fcf32e6c73d1079f83ab4d782de2d81620346a5f38c6237a86a22f8368980a"
|
|
1456
1395
|
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",
|
|
1396
|
+
"pkcs8",
|
|
1397
|
+
"signature",
|
|
1474
1398
|
]
|
|
1475
1399
|
|
|
1476
1400
|
[[package]]
|
|
@@ -1479,12 +1403,12 @@ version = "3.0.0"
|
|
|
1479
1403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
1404
|
checksum = "6ebaa1a2bf1290ab3bfe5a7b771d050ebffab2711c19a81691c683a5144a25de"
|
|
1481
1405
|
dependencies = [
|
|
1482
|
-
"curve25519-dalek
|
|
1483
|
-
"ed25519
|
|
1406
|
+
"curve25519-dalek",
|
|
1407
|
+
"ed25519",
|
|
1484
1408
|
"rand_core 0.10.1",
|
|
1485
1409
|
"serde",
|
|
1486
|
-
"sha2
|
|
1487
|
-
"signature
|
|
1410
|
+
"sha2",
|
|
1411
|
+
"signature",
|
|
1488
1412
|
"subtle",
|
|
1489
1413
|
"zeroize",
|
|
1490
1414
|
]
|
|
@@ -1504,13 +1428,13 @@ dependencies = [
|
|
|
1504
1428
|
"base16ct",
|
|
1505
1429
|
"crypto-bigint",
|
|
1506
1430
|
"crypto-common 0.2.2",
|
|
1507
|
-
"digest
|
|
1431
|
+
"digest",
|
|
1508
1432
|
"ff",
|
|
1509
1433
|
"group",
|
|
1510
1434
|
"hkdf",
|
|
1511
1435
|
"hybrid-array",
|
|
1512
1436
|
"pem-rfc7468",
|
|
1513
|
-
"pkcs8
|
|
1437
|
+
"pkcs8",
|
|
1514
1438
|
"rand_core 0.10.1",
|
|
1515
1439
|
"sec1",
|
|
1516
1440
|
"subtle",
|
|
@@ -1566,7 +1490,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1566
1490
|
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1567
1491
|
dependencies = [
|
|
1568
1492
|
"libc",
|
|
1569
|
-
"windows-sys 0.
|
|
1493
|
+
"windows-sys 0.52.0",
|
|
1570
1494
|
]
|
|
1571
1495
|
|
|
1572
1496
|
[[package]]
|
|
@@ -1641,12 +1565,6 @@ dependencies = [
|
|
|
1641
1565
|
"subtle",
|
|
1642
1566
|
]
|
|
1643
1567
|
|
|
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
1568
|
[[package]]
|
|
1651
1569
|
name = "fiat-crypto"
|
|
1652
1570
|
version = "0.3.0"
|
|
@@ -2029,7 +1947,7 @@ version = "0.13.0"
|
|
|
2029
1947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2030
1948
|
checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
|
|
2031
1949
|
dependencies = [
|
|
2032
|
-
"digest
|
|
1950
|
+
"digest",
|
|
2033
1951
|
]
|
|
2034
1952
|
|
|
2035
1953
|
[[package]]
|
|
@@ -2820,7 +2738,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2820
2738
|
checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
|
|
2821
2739
|
dependencies = [
|
|
2822
2740
|
"cfg-if",
|
|
2823
|
-
"digest
|
|
2741
|
+
"digest",
|
|
2824
2742
|
]
|
|
2825
2743
|
|
|
2826
2744
|
[[package]]
|
|
@@ -2889,9 +2807,9 @@ dependencies = [
|
|
|
2889
2807
|
|
|
2890
2808
|
[[package]]
|
|
2891
2809
|
name = "mira-eval"
|
|
2892
|
-
version = "0.
|
|
2810
|
+
version = "0.5.0"
|
|
2893
2811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2894
|
-
checksum = "
|
|
2812
|
+
checksum = "75db8c713ee4b8ed2fd8eb1797dd3129b0e545a039e9cef45ac19458447cc16c"
|
|
2895
2813
|
dependencies = [
|
|
2896
2814
|
"async-trait",
|
|
2897
2815
|
"inventory",
|
|
@@ -2905,9 +2823,9 @@ dependencies = [
|
|
|
2905
2823
|
|
|
2906
2824
|
[[package]]
|
|
2907
2825
|
name = "mira-macros"
|
|
2908
|
-
version = "0.
|
|
2826
|
+
version = "0.5.0"
|
|
2909
2827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
-
checksum = "
|
|
2828
|
+
checksum = "2bfd4d98e649e99b006acace5360e65ca6fd0bc6593e6502514592316ab38530"
|
|
2911
2829
|
dependencies = [
|
|
2912
2830
|
"proc-macro2",
|
|
2913
2831
|
"quote",
|
|
@@ -2923,7 +2841,7 @@ dependencies = [
|
|
|
2923
2841
|
"hybrid-array",
|
|
2924
2842
|
"kem",
|
|
2925
2843
|
"module-lattice",
|
|
2926
|
-
"pkcs8
|
|
2844
|
+
"pkcs8",
|
|
2927
2845
|
"rand_core 0.10.1",
|
|
2928
2846
|
"sha3 0.11.0",
|
|
2929
2847
|
]
|
|
@@ -3398,7 +3316,7 @@ dependencies = [
|
|
|
3398
3316
|
"elliptic-curve",
|
|
3399
3317
|
"primefield",
|
|
3400
3318
|
"primeorder",
|
|
3401
|
-
"sha2
|
|
3319
|
+
"sha2",
|
|
3402
3320
|
]
|
|
3403
3321
|
|
|
3404
3322
|
[[package]]
|
|
@@ -3409,10 +3327,10 @@ checksum = "d17b851e6b3e378ab4ecb07fa2ed23f4d15f075735f8fec9fa1e7bdce5f8301f"
|
|
|
3409
3327
|
dependencies = [
|
|
3410
3328
|
"ecdsa",
|
|
3411
3329
|
"elliptic-curve",
|
|
3412
|
-
"fiat-crypto
|
|
3330
|
+
"fiat-crypto",
|
|
3413
3331
|
"primefield",
|
|
3414
3332
|
"primeorder",
|
|
3415
|
-
"sha2
|
|
3333
|
+
"sha2",
|
|
3416
3334
|
]
|
|
3417
3335
|
|
|
3418
3336
|
[[package]]
|
|
@@ -3426,7 +3344,7 @@ dependencies = [
|
|
|
3426
3344
|
"elliptic-curve",
|
|
3427
3345
|
"primefield",
|
|
3428
3346
|
"primeorder",
|
|
3429
|
-
"sha2
|
|
3347
|
+
"sha2",
|
|
3430
3348
|
]
|
|
3431
3349
|
|
|
3432
3350
|
[[package]]
|
|
@@ -3461,7 +3379,7 @@ dependencies = [
|
|
|
3461
3379
|
"futures",
|
|
3462
3380
|
"log",
|
|
3463
3381
|
"rand 0.10.2",
|
|
3464
|
-
"sha2
|
|
3382
|
+
"sha2",
|
|
3465
3383
|
"thiserror",
|
|
3466
3384
|
"tokio",
|
|
3467
3385
|
"windows",
|
|
@@ -3523,7 +3441,7 @@ version = "0.13.0"
|
|
|
3523
3441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3524
3442
|
checksum = "112d82ceb8c5bf524d9af484d4e4970c9fd5a0cc15ba14ad93dccd28873b0629"
|
|
3525
3443
|
dependencies = [
|
|
3526
|
-
"digest
|
|
3444
|
+
"digest",
|
|
3527
3445
|
"hmac",
|
|
3528
3446
|
]
|
|
3529
3447
|
|
|
@@ -3645,8 +3563,8 @@ version = "0.8.0-rc.4"
|
|
|
3645
3563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3646
3564
|
checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e"
|
|
3647
3565
|
dependencies = [
|
|
3648
|
-
"der
|
|
3649
|
-
"spki
|
|
3566
|
+
"der",
|
|
3567
|
+
"spki",
|
|
3650
3568
|
]
|
|
3651
3569
|
|
|
3652
3570
|
[[package]]
|
|
@@ -3658,22 +3576,12 @@ dependencies = [
|
|
|
3658
3576
|
"aes 0.9.1",
|
|
3659
3577
|
"aes-gcm 0.11.0",
|
|
3660
3578
|
"cbc",
|
|
3661
|
-
"der
|
|
3579
|
+
"der",
|
|
3662
3580
|
"pbkdf2",
|
|
3663
3581
|
"rand_core 0.10.1",
|
|
3664
3582
|
"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",
|
|
3583
|
+
"sha2",
|
|
3584
|
+
"spki",
|
|
3677
3585
|
]
|
|
3678
3586
|
|
|
3679
3587
|
[[package]]
|
|
@@ -3682,10 +3590,10 @@ version = "0.11.0"
|
|
|
3682
3590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3683
3591
|
checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7"
|
|
3684
3592
|
dependencies = [
|
|
3685
|
-
"der
|
|
3593
|
+
"der",
|
|
3686
3594
|
"pkcs5",
|
|
3687
3595
|
"rand_core 0.10.1",
|
|
3688
|
-
"spki
|
|
3596
|
+
"spki",
|
|
3689
3597
|
]
|
|
3690
3598
|
|
|
3691
3599
|
[[package]]
|
|
@@ -4310,16 +4218,16 @@ version = "0.10.0-rc.18"
|
|
|
4310
4218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4311
4219
|
checksum = "30b2aa4ba0d89f73d1e332df05be0eeab8840351c36ca5654341dfdb57bb3caf"
|
|
4312
4220
|
dependencies = [
|
|
4313
|
-
"const-oid
|
|
4221
|
+
"const-oid",
|
|
4314
4222
|
"crypto-bigint",
|
|
4315
4223
|
"crypto-primes",
|
|
4316
|
-
"digest
|
|
4224
|
+
"digest",
|
|
4317
4225
|
"pkcs1",
|
|
4318
|
-
"pkcs8
|
|
4226
|
+
"pkcs8",
|
|
4319
4227
|
"rand_core 0.10.1",
|
|
4320
|
-
"sha2
|
|
4321
|
-
"signature
|
|
4322
|
-
"spki
|
|
4228
|
+
"sha2",
|
|
4229
|
+
"signature",
|
|
4230
|
+
"spki",
|
|
4323
4231
|
"zeroize",
|
|
4324
4232
|
]
|
|
4325
4233
|
|
|
@@ -4423,13 +4331,13 @@ dependencies = [
|
|
|
4423
4331
|
"cipher 0.5.2",
|
|
4424
4332
|
"crypto-bigint",
|
|
4425
4333
|
"ctr 0.10.1",
|
|
4426
|
-
"curve25519-dalek
|
|
4334
|
+
"curve25519-dalek",
|
|
4427
4335
|
"data-encoding",
|
|
4428
4336
|
"delegate",
|
|
4429
|
-
"der
|
|
4430
|
-
"digest
|
|
4337
|
+
"der",
|
|
4338
|
+
"digest",
|
|
4431
4339
|
"ecdsa",
|
|
4432
|
-
"ed25519-dalek
|
|
4340
|
+
"ed25519-dalek",
|
|
4433
4341
|
"elliptic-curve",
|
|
4434
4342
|
"enum_dispatch",
|
|
4435
4343
|
"flate2",
|
|
@@ -4454,7 +4362,7 @@ dependencies = [
|
|
|
4454
4362
|
"pbkdf2",
|
|
4455
4363
|
"pkcs1",
|
|
4456
4364
|
"pkcs5",
|
|
4457
|
-
"pkcs8
|
|
4365
|
+
"pkcs8",
|
|
4458
4366
|
"polyval 0.7.1",
|
|
4459
4367
|
"rand 0.10.2",
|
|
4460
4368
|
"rand_core 0.10.1",
|
|
@@ -4465,10 +4373,10 @@ dependencies = [
|
|
|
4465
4373
|
"scrypt",
|
|
4466
4374
|
"sec1",
|
|
4467
4375
|
"sha1",
|
|
4468
|
-
"sha2
|
|
4376
|
+
"sha2",
|
|
4469
4377
|
"sha3 0.12.0",
|
|
4470
|
-
"signature
|
|
4471
|
-
"spki
|
|
4378
|
+
"signature",
|
|
4379
|
+
"spki",
|
|
4472
4380
|
"ssh-encoding",
|
|
4473
4381
|
"ssh-key",
|
|
4474
4382
|
"subtle",
|
|
@@ -4538,7 +4446,7 @@ dependencies = [
|
|
|
4538
4446
|
"errno",
|
|
4539
4447
|
"libc",
|
|
4540
4448
|
"linux-raw-sys",
|
|
4541
|
-
"windows-sys 0.
|
|
4449
|
+
"windows-sys 0.52.0",
|
|
4542
4450
|
]
|
|
4543
4451
|
|
|
4544
4452
|
[[package]]
|
|
@@ -4595,7 +4503,7 @@ dependencies = [
|
|
|
4595
4503
|
"security-framework",
|
|
4596
4504
|
"security-framework-sys",
|
|
4597
4505
|
"webpki-root-certs",
|
|
4598
|
-
"windows-sys 0.
|
|
4506
|
+
"windows-sys 0.52.0",
|
|
4599
4507
|
]
|
|
4600
4508
|
|
|
4601
4509
|
[[package]]
|
|
@@ -4709,7 +4617,7 @@ dependencies = [
|
|
|
4709
4617
|
"cfg-if",
|
|
4710
4618
|
"pbkdf2",
|
|
4711
4619
|
"salsa20",
|
|
4712
|
-
"sha2
|
|
4620
|
+
"sha2",
|
|
4713
4621
|
]
|
|
4714
4622
|
|
|
4715
4623
|
[[package]]
|
|
@@ -4720,7 +4628,7 @@ checksum = "d56d437c2f19203ce5f7122e507831de96f3d2d4d3be5af44a0b0a09d8a80e4d"
|
|
|
4720
4628
|
dependencies = [
|
|
4721
4629
|
"base16ct",
|
|
4722
4630
|
"ctutils",
|
|
4723
|
-
"der
|
|
4631
|
+
"der",
|
|
4724
4632
|
"hybrid-array",
|
|
4725
4633
|
"subtle",
|
|
4726
4634
|
"zeroize",
|
|
@@ -4851,9 +4759,9 @@ dependencies = [
|
|
|
4851
4759
|
|
|
4852
4760
|
[[package]]
|
|
4853
4761
|
name = "serial_test"
|
|
4854
|
-
version = "
|
|
4762
|
+
version = "4.0.1"
|
|
4855
4763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4856
|
-
checksum = "
|
|
4764
|
+
checksum = "a6df5ed973ad8d834e09f824f9e9f449af6b9a3745f78dec7cc752770bd3bf11"
|
|
4857
4765
|
dependencies = [
|
|
4858
4766
|
"futures-executor",
|
|
4859
4767
|
"futures-util",
|
|
@@ -4865,13 +4773,13 @@ dependencies = [
|
|
|
4865
4773
|
|
|
4866
4774
|
[[package]]
|
|
4867
4775
|
name = "serial_test_derive"
|
|
4868
|
-
version = "
|
|
4776
|
+
version = "4.0.1"
|
|
4869
4777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4870
|
-
checksum = "
|
|
4778
|
+
checksum = "a22144e767da4ddd8416dbf383700542ffd8a5dc493dfecedfe1fe3ad03c98ae"
|
|
4871
4779
|
dependencies = [
|
|
4872
4780
|
"proc-macro2",
|
|
4873
4781
|
"quote",
|
|
4874
|
-
"syn
|
|
4782
|
+
"syn 3.0.3",
|
|
4875
4783
|
]
|
|
4876
4784
|
|
|
4877
4785
|
[[package]]
|
|
@@ -4882,7 +4790,7 @@ checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
|
|
|
4882
4790
|
dependencies = [
|
|
4883
4791
|
"cfg-if",
|
|
4884
4792
|
"cpufeatures 0.3.0",
|
|
4885
|
-
"digest
|
|
4793
|
+
"digest",
|
|
4886
4794
|
]
|
|
4887
4795
|
|
|
4888
4796
|
[[package]]
|
|
@@ -4891,17 +4799,6 @@ version = "1.0.1"
|
|
|
4891
4799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4892
4800
|
checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
|
|
4893
4801
|
|
|
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
4802
|
[[package]]
|
|
4906
4803
|
name = "sha2"
|
|
4907
4804
|
version = "0.11.0"
|
|
@@ -4910,7 +4807,7 @@ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
|
4910
4807
|
dependencies = [
|
|
4911
4808
|
"cfg-if",
|
|
4912
4809
|
"cpufeatures 0.3.0",
|
|
4913
|
-
"digest
|
|
4810
|
+
"digest",
|
|
4914
4811
|
]
|
|
4915
4812
|
|
|
4916
4813
|
[[package]]
|
|
@@ -4919,7 +4816,7 @@ version = "0.11.0"
|
|
|
4919
4816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4920
4817
|
checksum = "be176f1a57ce4e3d31c1a166222d9768de5954f811601fb7ca06fc8203905ce1"
|
|
4921
4818
|
dependencies = [
|
|
4922
|
-
"digest
|
|
4819
|
+
"digest",
|
|
4923
4820
|
"keccak",
|
|
4924
4821
|
]
|
|
4925
4822
|
|
|
@@ -4929,7 +4826,7 @@ version = "0.12.0"
|
|
|
4929
4826
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4930
4827
|
checksum = "bc9bad02c26382724b2d2692c6f179285e4b54eeecd7968f52a50059c3c11759"
|
|
4931
4828
|
dependencies = [
|
|
4932
|
-
"digest
|
|
4829
|
+
"digest",
|
|
4933
4830
|
"keccak",
|
|
4934
4831
|
"sponge-cursor",
|
|
4935
4832
|
]
|
|
@@ -4989,22 +4886,13 @@ dependencies = [
|
|
|
4989
4886
|
"libc",
|
|
4990
4887
|
]
|
|
4991
4888
|
|
|
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
4889
|
[[package]]
|
|
5002
4890
|
name = "signature"
|
|
5003
4891
|
version = "3.0.0"
|
|
5004
4892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5005
4893
|
checksum = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5"
|
|
5006
4894
|
dependencies = [
|
|
5007
|
-
"digest
|
|
4895
|
+
"digest",
|
|
5008
4896
|
"rand_core 0.10.1",
|
|
5009
4897
|
]
|
|
5010
4898
|
|
|
@@ -5108,16 +4996,6 @@ dependencies = [
|
|
|
5108
4996
|
"lock_api",
|
|
5109
4997
|
]
|
|
5110
4998
|
|
|
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
4999
|
[[package]]
|
|
5122
5000
|
name = "spki"
|
|
5123
5001
|
version = "0.8.0"
|
|
@@ -5125,7 +5003,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5125
5003
|
checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
|
|
5126
5004
|
dependencies = [
|
|
5127
5005
|
"base64ct",
|
|
5128
|
-
"der
|
|
5006
|
+
"der",
|
|
5129
5007
|
]
|
|
5130
5008
|
|
|
5131
5009
|
[[package]]
|
|
@@ -5162,7 +5040,7 @@ dependencies = [
|
|
|
5162
5040
|
"bytes",
|
|
5163
5041
|
"crypto-bigint",
|
|
5164
5042
|
"ctutils",
|
|
5165
|
-
"digest
|
|
5043
|
+
"digest",
|
|
5166
5044
|
"pem-rfc7468",
|
|
5167
5045
|
"zeroize",
|
|
5168
5046
|
]
|
|
@@ -5176,7 +5054,7 @@ dependencies = [
|
|
|
5176
5054
|
"argon2",
|
|
5177
5055
|
"bcrypt-pbkdf",
|
|
5178
5056
|
"ctutils",
|
|
5179
|
-
"ed25519-dalek
|
|
5057
|
+
"ed25519-dalek",
|
|
5180
5058
|
"hex",
|
|
5181
5059
|
"hmac",
|
|
5182
5060
|
"p256",
|
|
@@ -5186,8 +5064,8 @@ dependencies = [
|
|
|
5186
5064
|
"rsa",
|
|
5187
5065
|
"sec1",
|
|
5188
5066
|
"sha1",
|
|
5189
|
-
"sha2
|
|
5190
|
-
"signature
|
|
5067
|
+
"sha2",
|
|
5068
|
+
"signature",
|
|
5191
5069
|
"ssh-cipher",
|
|
5192
5070
|
"ssh-encoding",
|
|
5193
5071
|
"zeroize",
|
|
@@ -5348,7 +5226,7 @@ dependencies = [
|
|
|
5348
5226
|
"getrandom 0.4.3",
|
|
5349
5227
|
"once_cell",
|
|
5350
5228
|
"rustix",
|
|
5351
|
-
"windows-sys 0.
|
|
5229
|
+
"windows-sys 0.52.0",
|
|
5352
5230
|
]
|
|
5353
5231
|
|
|
5354
5232
|
[[package]]
|
|
@@ -5677,9 +5555,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
5677
5555
|
|
|
5678
5556
|
[[package]]
|
|
5679
5557
|
name = "turso_core"
|
|
5680
|
-
version = "0.8.0-pre.
|
|
5558
|
+
version = "0.8.0-pre.2"
|
|
5681
5559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5682
|
-
checksum = "
|
|
5560
|
+
checksum = "126a369027e3f8d5736f871267e9a79fe18e081cf4023b520d3a45097bc9e841"
|
|
5683
5561
|
dependencies = [
|
|
5684
5562
|
"aegis",
|
|
5685
5563
|
"aes 0.8.4",
|
|
@@ -5746,9 +5624,9 @@ dependencies = [
|
|
|
5746
5624
|
|
|
5747
5625
|
[[package]]
|
|
5748
5626
|
name = "turso_ext"
|
|
5749
|
-
version = "0.8.0-pre.
|
|
5627
|
+
version = "0.8.0-pre.2"
|
|
5750
5628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5751
|
-
checksum = "
|
|
5629
|
+
checksum = "2cca983d5255440f8074a017c1bebe4bb387f079a43fedc179f3de1e6f3e3def"
|
|
5752
5630
|
dependencies = [
|
|
5753
5631
|
"chrono",
|
|
5754
5632
|
"getrandom 0.4.3",
|
|
@@ -5757,9 +5635,9 @@ dependencies = [
|
|
|
5757
5635
|
|
|
5758
5636
|
[[package]]
|
|
5759
5637
|
name = "turso_macros"
|
|
5760
|
-
version = "0.8.0-pre.
|
|
5638
|
+
version = "0.8.0-pre.2"
|
|
5761
5639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5762
|
-
checksum = "
|
|
5640
|
+
checksum = "0cd0d06b919b0c6a517451c05a855368fecf101eeb87b4eaf299a3daa97ad2e2"
|
|
5763
5641
|
dependencies = [
|
|
5764
5642
|
"proc-macro2",
|
|
5765
5643
|
"quote",
|
|
@@ -5768,9 +5646,9 @@ dependencies = [
|
|
|
5768
5646
|
|
|
5769
5647
|
[[package]]
|
|
5770
5648
|
name = "turso_parser"
|
|
5771
|
-
version = "0.8.0-pre.
|
|
5649
|
+
version = "0.8.0-pre.2"
|
|
5772
5650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5773
|
-
checksum = "
|
|
5651
|
+
checksum = "d6c143277cc1387ba02aed82856a20c43108f8aaa4caf55201f73b229db08fcf"
|
|
5774
5652
|
dependencies = [
|
|
5775
5653
|
"bitflags 2.13.1",
|
|
5776
5654
|
"memchr",
|
|
@@ -6150,7 +6028,7 @@ version = "0.1.11"
|
|
|
6150
6028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6151
6029
|
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
6152
6030
|
dependencies = [
|
|
6153
|
-
"windows-sys 0.
|
|
6031
|
+
"windows-sys 0.52.0",
|
|
6154
6032
|
]
|
|
6155
6033
|
|
|
6156
6034
|
[[package]]
|