bashkit 0.17.0__tar.gz → 0.18.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.17.0 → bashkit-0.18.0}/Cargo.lock +204 -216
- {bashkit-0.17.0 → bashkit-0.18.0}/Cargo.toml +2 -2
- {bashkit-0.17.0 → bashkit-0.18.0}/PKG-INFO +15 -3
- {bashkit-0.17.0/crates/bashkit-python → bashkit-0.18.0}/README.md +13 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/bashkit/_bashkit.pyi +17 -2
- {bashkit-0.17.0 → bashkit-0.18.0}/bashkit/deepagents.py +149 -158
- {bashkit-0.17.0 → bashkit-0.18.0}/bashkit/langchain.py +8 -7
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/Cargo.toml +24 -4
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/README.md +24 -5
- bashkit-0.18.0/crates/bashkit/benches/builtin_args.rs +178 -0
- bashkit-0.18.0/crates/bashkit/benches/results/criterion-builtin_args-baseline-linux-x86_64-1787421390.md +93 -0
- bashkit-0.18.0/crates/bashkit/benches/results/criterion-parallel-Mykhailos-Mac-mini.local-darwin-arm64-1788628263.md +75 -0
- bashkit-0.18.0/crates/bashkit/benches/results/criterion-sqlite-Mykhailos-Mac-mini.local-darwin-arm64-1788628889.md +89 -0
- bashkit-0.18.0/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1788221595.md +89 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/compatibility.md +3 -2
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/custom_builtins.md +20 -6
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/live_mounts.md +20 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/logging.md +1 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/sqlite.md +1 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/threat-model.md +4 -3
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/awk/parser.rs +26 -5
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/awk/tests.rs +29 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/cat.rs +6 -7
- bashkit-0.18.0/crates/bashkit/src/builtins/clap_cache.rs +131 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/fileops.rs +6 -4
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/cat_args.rs +1 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/extendedbigdecimal.rs +1 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/format/argument.rs +6 -4
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/format/escape.rs +1 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/format/human.rs +1 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/format/mod.rs +3 -4
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/format/num_format.rs +23 -11
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/format/spec.rs +18 -5
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/ls_args.rs +1 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/mktemp_args.rs +1 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/mod.rs +1 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/num_parser.rs +1 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/od_args.rs +5 -3
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/readlink_args.rs +2 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/realpath_args.rs +1 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/shuf_args.rs +1 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/stat_args.rs +5 -2
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/tac_args.rs +1 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/tee_args.rs +1 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/truncate_args.rs +7 -4
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/hextools.rs +6 -4
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/inspect.rs +13 -4
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/ls/list.rs +7 -7
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/mod.rs +60 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/path.rs +27 -7
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/pipeline.rs +6 -4
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/shuf.rs +6 -4
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/sqlite/engine.rs +93 -4
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/sqlite/tests.rs +60 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/ssh/russh_handler.rs +120 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/textrev.rs +6 -4
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/truncate.rs +12 -6
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/fs/realfs.rs +25 -4
- bashkit-0.18.0/crates/bashkit/src/host_call.rs +476 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/lib.rs +56 -49
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/execution_budget_tests.rs +26 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/host_call_execution_tests.rs +85 -4
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/realfs_tests.rs +35 -0
- {bashkit-0.17.0 → bashkit-0.18.0/crates/bashkit-python}/README.md +13 -1
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/src/lib.rs +52 -7
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/_bashkit_categories.py +9 -3
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/_security_advanced.py +0 -15
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_ai_adapters.py +0 -53
- bashkit-0.18.0/crates/bashkit-python/tests/test_deepagents_backend.py +151 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_python_security.py +0 -50
- bashkit-0.18.0/crates/bashkit-python/tests/test_readonly_mounts.py +76 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_runtime_extension.py +8 -0
- bashkit-0.18.0/crates/bashkit-python/tests/test_shell_injection.py +30 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/pyproject.toml +1 -1
- bashkit-0.17.0/crates/bashkit/src/host_call.rs +0 -258
- bashkit-0.17.0/crates/bashkit-python/tests/test_shell_injection.py +0 -104
- {bashkit-0.17.0 → bashkit-0.18.0}/bashkit/__init__.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/bashkit/py.typed +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/bashkit/pydantic_ai.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/awk_regex.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/file_ops.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/hotpath.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/parallel_execution.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/results/README.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/results/criterion-awk-regex-mykhailos-mini-darwin-arm64-1785952907.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/results/criterion-file_ops-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/results/criterion-hotpath-attrs+shopt-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/results/criterion-hotpath-perf-linux-x86_64-1779744742.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/results/criterion-parallel-(none)-linux-x86_64-1773469129.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782162173.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782168239.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/results/criterion-snapshot-history-baseline-linux-x86_64-1785444523.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/results/criterion-sqlite-Mykhailos-Mini.lan-darwin-arm64-1785957173.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1777865268.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1786872580.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/snapshot_history.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/benches/sqlite.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/clap-builtins.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/credential-injection.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/hooks.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/jq.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/namespace_filesystems.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/python.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/script-analysis.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/ssh.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/typescript.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/docs/yq.md +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/agent_tool.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/basic.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/clap_builtin.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/clap_builtin_subcommands.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/custom_backend.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/custom_builtins.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/custom_fs.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/dump_builtins.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/generate_snapshot_fixtures.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/git_workflow.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/large_binary_probe.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/live_mounts.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/namespace_rebase.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/namespace_sandbox.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/python_external_functions.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/python_scripts.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/realfs_readonly.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/resource_limits.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/scripted_tool.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/show_tool_output.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/sqlite_basic.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/sqlite_workflow.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/ssh_supabase.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/streaming_output.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/text_files.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/text_processing.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/typescript_scripts.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/examples/virtual_identity.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/out file.txt +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/analysis.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/alias.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/archive.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/assert.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/awk/interpreter.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/awk/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/base64.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/bc.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/caller.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/checksum.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/clap_env.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/clear.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/column.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/comm.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/compgen.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/csv.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/curl.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/cuttr.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/date.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/diff.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/dirstack.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/disk.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/dotenv.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/echo.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/environ.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/envsubst.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/expand.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/export.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/expr.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/fc.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/flow.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/fold.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/generated/format_support.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/git/client.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/git/cmd.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/git/config.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/git/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/grep.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/headtail.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/help.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/helpers.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/http.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/iconv.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/introspect.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/join.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/jq/args.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/jq/compat.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/jq/convert.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/jq/errors.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/jq/format.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/jq/input.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/jq/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/jq/regex_compat.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/jq/tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/json.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/limits.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/log.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/ls/find.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/ls/glob.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/ls/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/ls/rmdir.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/ls/tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/mapfile.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/navigation.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/nl.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/numfmt.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/parallel.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/paste.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/patch.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/printf.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/python.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/read.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/retry.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/rg/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/runtime_limits.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/search_common.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/sed.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/semver.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/seq.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/sleep.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/sortuniq.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/source.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/split.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/sqlite/dot_commands.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/sqlite/formatter.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/sqlite/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/sqlite/parser.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/sqlite/vfs_io.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/ssh/allowlist.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/ssh/client.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/ssh/cmd.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/ssh/config.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/ssh/handler.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/ssh/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/strings.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/system.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/template.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/timeout.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/tomlq.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/trap.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/tree.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/typescript.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/vars.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/verify.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/wait.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/wc.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/yes.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/yq.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/builtins/zip_cmd.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/credential.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/error.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/execution_capability.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/fs/backend.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/fs/limits.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/fs/memory.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/fs/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/fs/mountable.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/fs/namespace.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/fs/overlay.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/fs/posix.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/fs/readonly.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/fs/search.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/fs/traits.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/hooks.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/interop/fs.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/interop/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/interpreter/arithmetic.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/interpreter/brace_expansion.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/interpreter/expansion.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/interpreter/glob.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/interpreter/jobs.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/interpreter/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/interpreter/redirection.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/interpreter/state.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/interpreter/time_command.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/limits.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/logging_impl.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/network/allowlist.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/network/bot_auth.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/network/client.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/network/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/network/transport.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/parser/ast.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/parser/budget.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/parser/lexer.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/parser/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/parser/span.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/parser/tokens.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/profile.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/scripted_tool/execute.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/scripted_tool/extension.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/scripted_tool/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/snapshot/capabilities.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/snapshot/chunker.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/snapshot/container.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/snapshot/graph.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/snapshot/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/snapshot/objects.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/stream.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/testing.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/time_compat/host_clock.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/time_compat/mod.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/tool.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/tool_def.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/tool_registry.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/src/trace.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/fixtures/competitor-regressions/just-bash-2026-08-05.json +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/fixtures/snapshots/v1.snapshot +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/fixtures/snapshots/v2.snapshot +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/agent_skills_publication_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/allexport_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/archive_bzip2_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/awk_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/awk_newline_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/awk_pattern_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/awk_printf_expr_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/awk_range_pattern_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/background_exec_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/base64_binary_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/bash_source_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/blackbox_security_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/builtin_error_security_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/builtin_registry_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/byte_range_panic_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/byte_stream_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/cancellation_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/cmdsub_quote_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/command_resolver_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/competitor_regression_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/compgen_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/coproc_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/coreutils_differential_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/credential_injection_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/curl_data_compat_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/custom_builtins_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/custom_fs_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/date_timezone_differential_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/date_timezone_no_tzdata_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/date_timezone_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/dev_null_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/exec_options_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/execution_capability_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/execution_profile_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/filesystem_security_conformance_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/final_env_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/find_multi_path_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/for_in_reserved_word_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/git_advanced_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/git_inspection_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/git_integration_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/git_remote_security_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/git_security_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/glob_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/glob_intermediate_component_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/harness_example_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/history_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/host_mounts_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/issue_1175_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/issue_1776_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/issue_1777_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/issue_274_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/issue_275_279_282_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/issue_276_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/issue_277_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/issue_289_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/issue_290_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/issue_291_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/issue_853_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/issue_872_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/issue_873_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/issue_875_test.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/jq_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/limitations_doc_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/limitations_evidence_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/live_mount_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/main.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/mkfifo_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/namespace_fs_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/nested_subscript_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/network_security_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/output_truncation_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/parallel_sessions_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/proptest_differential.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/python_integration_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/python_security_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/regex_limit_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/release_profile_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/request_lifecycle_contract_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/runtime_env_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/script_analysis.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/script_execution_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/security_audit_pocs.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/set_e_and_or_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/shuf_resource_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/skills_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/snapshot_fixture_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/snapshot_history_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/snapshot_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/source_function_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/spec_runner.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/spec_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/sqlite_compat_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/sqlite_differential_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/sqlite_fuzz_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/sqlite_integration_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/sqlite_security_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/stack_overflow_regression_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/subst_depth_limit_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/symlink_overlay_security_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/thirdparty_adoption_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/threat_model_doc_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/threat_model_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/time_command_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/time_compat_scan_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/tool_registry_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/tty_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/typescript_integration_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/typescript_security_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/unicode_security_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/unset_function_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/urandom_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/workflow_security_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/integration/yq_integration_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/logging_security_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/proptest_security.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/cat.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/mktemp.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/od.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/readlink.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/shuf.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/truncate.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/spec_cases/yq/yq.test.sh +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit/tests/support/filesystem_security_conformance.rs +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/Cargo.toml +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/examples/bash_basics.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/examples/data_pipeline.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/examples/llm_tool.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/examples/session_history.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/_security_core.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_analyze.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_basic.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_builtins.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_control_flow.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_custom_builtin_fs.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_error_handling.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_execution_profiles.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_fastapi_integration.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_integration.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_network_config.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_network_credentials.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_scripts.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_security.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_snapshot_history.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_sqlite.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_teardown_determinism.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
- {bashkit-0.17.0 → bashkit-0.18.0}/crates/bashkit-python/tests/test_vfs.py +0 -0
|
@@ -51,13 +51,13 @@ dependencies = [
|
|
|
51
51
|
|
|
52
52
|
[[package]]
|
|
53
53
|
name = "aes"
|
|
54
|
-
version = "0.9.
|
|
54
|
+
version = "0.9.3"
|
|
55
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
-
checksum = "
|
|
56
|
+
checksum = "35f0f96ce78e38c3dc6d8948aa8163d06385be74000f3c7a95bf1eef35d3ea32"
|
|
57
57
|
dependencies = [
|
|
58
58
|
"cipher 0.5.2",
|
|
59
59
|
"cpubits",
|
|
60
|
-
"cpufeatures 0.3.
|
|
60
|
+
"cpufeatures 0.3.1",
|
|
61
61
|
"zeroize",
|
|
62
62
|
]
|
|
63
63
|
|
|
@@ -77,16 +77,16 @@ dependencies = [
|
|
|
77
77
|
|
|
78
78
|
[[package]]
|
|
79
79
|
name = "aes-gcm"
|
|
80
|
-
version = "0.11.
|
|
80
|
+
version = "0.11.1"
|
|
81
81
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
-
checksum = "
|
|
82
|
+
checksum = "7f2b8006a0c83f52b62ba44a97b58bf76fe2f70a329e588f67f89691d93d498f"
|
|
83
83
|
dependencies = [
|
|
84
84
|
"aead 0.6.1",
|
|
85
|
-
"aes 0.9.
|
|
85
|
+
"aes 0.9.3",
|
|
86
86
|
"cipher 0.5.2",
|
|
87
87
|
"ctr 0.10.1",
|
|
88
|
+
"ctutils",
|
|
88
89
|
"ghash 0.6.0",
|
|
89
|
-
"subtle",
|
|
90
90
|
"zeroize",
|
|
91
91
|
]
|
|
92
92
|
|
|
@@ -157,15 +157,15 @@ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
|
157
157
|
|
|
158
158
|
[[package]]
|
|
159
159
|
name = "antithesis_sdk"
|
|
160
|
-
version = "0.
|
|
160
|
+
version = "0.3.0"
|
|
161
161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
-
checksum = "
|
|
162
|
+
checksum = "a8ed6751597568a284314fd9e2db420665898600109dedc7d8d9b588f00ae9c4"
|
|
163
163
|
dependencies = [
|
|
164
164
|
"libc",
|
|
165
165
|
"libloading 0.8.9",
|
|
166
166
|
"linkme",
|
|
167
167
|
"once_cell",
|
|
168
|
-
"rand 0.8.
|
|
168
|
+
"rand 0.8.8",
|
|
169
169
|
"rustc_version_runtime",
|
|
170
170
|
"serde",
|
|
171
171
|
"serde_json",
|
|
@@ -188,13 +188,13 @@ dependencies = [
|
|
|
188
188
|
|
|
189
189
|
[[package]]
|
|
190
190
|
name = "argon2"
|
|
191
|
-
version = "0.6.0
|
|
191
|
+
version = "0.6.0"
|
|
192
192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
-
checksum = "
|
|
193
|
+
checksum = "134c52ddac6d63c576bef8168db10c83c49c26444ecbc68060fef078925a901c"
|
|
194
194
|
dependencies = [
|
|
195
195
|
"base64ct",
|
|
196
196
|
"blake2",
|
|
197
|
-
"cpufeatures 0.3.
|
|
197
|
+
"cpufeatures 0.3.1",
|
|
198
198
|
"password-hash",
|
|
199
199
|
]
|
|
200
200
|
|
|
@@ -238,7 +238,7 @@ checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667"
|
|
|
238
238
|
dependencies = [
|
|
239
239
|
"proc-macro2",
|
|
240
240
|
"quote",
|
|
241
|
-
"syn 3.0.
|
|
241
|
+
"syn 3.0.5",
|
|
242
242
|
]
|
|
243
243
|
|
|
244
244
|
[[package]]
|
|
@@ -294,9 +294,9 @@ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
|
294
294
|
|
|
295
295
|
[[package]]
|
|
296
296
|
name = "aws-lc-rs"
|
|
297
|
-
version = "1.18.
|
|
297
|
+
version = "1.18.1"
|
|
298
298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
-
checksum = "
|
|
299
|
+
checksum = "b281d307588d634de920874890732659e2e7672f72b5e10e81badc1a8a83621e"
|
|
300
300
|
dependencies = [
|
|
301
301
|
"aws-lc-sys",
|
|
302
302
|
"untrusted 0.7.1",
|
|
@@ -305,9 +305,9 @@ dependencies = [
|
|
|
305
305
|
|
|
306
306
|
[[package]]
|
|
307
307
|
name = "aws-lc-sys"
|
|
308
|
-
version = "0.
|
|
308
|
+
version = "0.45.0"
|
|
309
309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
-
checksum = "
|
|
310
|
+
checksum = "9bff6c3b54fad79a2e60b8102caf565819711497c1f5f092f49508e2f5c31b27"
|
|
311
311
|
dependencies = [
|
|
312
312
|
"cc",
|
|
313
313
|
"cmake",
|
|
@@ -342,7 +342,7 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
342
342
|
|
|
343
343
|
[[package]]
|
|
344
344
|
name = "bashkit"
|
|
345
|
-
version = "0.
|
|
345
|
+
version = "0.18.0"
|
|
346
346
|
dependencies = [
|
|
347
347
|
"anyhow",
|
|
348
348
|
"async-trait",
|
|
@@ -360,6 +360,7 @@ dependencies = [
|
|
|
360
360
|
"flate2",
|
|
361
361
|
"futures-core",
|
|
362
362
|
"futures-util",
|
|
363
|
+
"get-size2",
|
|
363
364
|
"getrandom 0.4.3",
|
|
364
365
|
"gloo-timers",
|
|
365
366
|
"hmac",
|
|
@@ -395,6 +396,7 @@ dependencies = [
|
|
|
395
396
|
"turso_core",
|
|
396
397
|
"unit-prefix",
|
|
397
398
|
"url",
|
|
399
|
+
"wasm-bindgen-futures",
|
|
398
400
|
"web-time",
|
|
399
401
|
"zapcode-core",
|
|
400
402
|
"zeroize",
|
|
@@ -402,7 +404,7 @@ dependencies = [
|
|
|
402
404
|
|
|
403
405
|
[[package]]
|
|
404
406
|
name = "bashkit-bench"
|
|
405
|
-
version = "0.
|
|
407
|
+
version = "0.18.0"
|
|
406
408
|
dependencies = [
|
|
407
409
|
"anyhow",
|
|
408
410
|
"bashkit",
|
|
@@ -417,7 +419,7 @@ dependencies = [
|
|
|
417
419
|
|
|
418
420
|
[[package]]
|
|
419
421
|
name = "bashkit-capi"
|
|
420
|
-
version = "0.
|
|
422
|
+
version = "0.18.0"
|
|
421
423
|
dependencies = [
|
|
422
424
|
"bashkit",
|
|
423
425
|
"serde",
|
|
@@ -427,7 +429,7 @@ dependencies = [
|
|
|
427
429
|
|
|
428
430
|
[[package]]
|
|
429
431
|
name = "bashkit-cli"
|
|
430
|
-
version = "0.
|
|
432
|
+
version = "0.18.0"
|
|
431
433
|
dependencies = [
|
|
432
434
|
"anyhow",
|
|
433
435
|
"bashkit",
|
|
@@ -441,21 +443,21 @@ dependencies = [
|
|
|
441
443
|
|
|
442
444
|
[[package]]
|
|
443
445
|
name = "bashkit-coreutils-port"
|
|
444
|
-
version = "0.
|
|
446
|
+
version = "0.18.0"
|
|
445
447
|
dependencies = [
|
|
446
448
|
"anyhow",
|
|
447
449
|
"prettyplease",
|
|
448
450
|
"proc-macro2",
|
|
449
451
|
"quote",
|
|
450
452
|
"serde",
|
|
451
|
-
"syn 3.0.
|
|
453
|
+
"syn 3.0.5",
|
|
452
454
|
"tempfile",
|
|
453
455
|
"toml",
|
|
454
456
|
]
|
|
455
457
|
|
|
456
458
|
[[package]]
|
|
457
459
|
name = "bashkit-eval"
|
|
458
|
-
version = "0.
|
|
460
|
+
version = "0.18.0"
|
|
459
461
|
dependencies = [
|
|
460
462
|
"anyhow",
|
|
461
463
|
"async-trait",
|
|
@@ -472,7 +474,7 @@ dependencies = [
|
|
|
472
474
|
|
|
473
475
|
[[package]]
|
|
474
476
|
name = "bashkit-js"
|
|
475
|
-
version = "0.
|
|
477
|
+
version = "0.18.0"
|
|
476
478
|
dependencies = [
|
|
477
479
|
"bashkit",
|
|
478
480
|
"napi",
|
|
@@ -484,10 +486,10 @@ dependencies = [
|
|
|
484
486
|
|
|
485
487
|
[[package]]
|
|
486
488
|
name = "bashkit-python"
|
|
487
|
-
version = "0.
|
|
489
|
+
version = "0.18.0"
|
|
488
490
|
dependencies = [
|
|
489
491
|
"bashkit",
|
|
490
|
-
"num-bigint",
|
|
492
|
+
"num-bigint 0.4.8",
|
|
491
493
|
"pyo3",
|
|
492
494
|
"pyo3-async-runtimes",
|
|
493
495
|
"serde_json",
|
|
@@ -496,7 +498,7 @@ dependencies = [
|
|
|
496
498
|
|
|
497
499
|
[[package]]
|
|
498
500
|
name = "bashkit-wasm"
|
|
499
|
-
version = "0.
|
|
501
|
+
version = "0.18.0"
|
|
500
502
|
dependencies = [
|
|
501
503
|
"bashkit",
|
|
502
504
|
"console_error_panic_hook",
|
|
@@ -531,7 +533,7 @@ checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695"
|
|
|
531
533
|
dependencies = [
|
|
532
534
|
"autocfg",
|
|
533
535
|
"libm",
|
|
534
|
-
"num-bigint",
|
|
536
|
+
"num-bigint 0.4.8",
|
|
535
537
|
"num-integer",
|
|
536
538
|
"num-traits",
|
|
537
539
|
]
|
|
@@ -577,9 +579,9 @@ dependencies = [
|
|
|
577
579
|
|
|
578
580
|
[[package]]
|
|
579
581
|
name = "blake2"
|
|
580
|
-
version = "0.11.0
|
|
582
|
+
version = "0.11.0"
|
|
581
583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
-
checksum = "
|
|
584
|
+
checksum = "5b5d4d889834ee8ecfc0f8426ad30faf7cdcb10f741a8e6d7224d95325479f6f"
|
|
583
585
|
dependencies = [
|
|
584
586
|
"digest",
|
|
585
587
|
]
|
|
@@ -615,9 +617,9 @@ dependencies = [
|
|
|
615
617
|
|
|
616
618
|
[[package]]
|
|
617
619
|
name = "branches"
|
|
618
|
-
version = "0.4.
|
|
620
|
+
version = "0.4.6"
|
|
619
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
-
checksum = "
|
|
622
|
+
checksum = "7436b21fd6195415058eb41c9090e156b556bc7e0377bb57c5c026a421521525"
|
|
621
623
|
dependencies = [
|
|
622
624
|
"rustc_version",
|
|
623
625
|
]
|
|
@@ -662,7 +664,7 @@ checksum = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f"
|
|
|
662
664
|
dependencies = [
|
|
663
665
|
"proc-macro2",
|
|
664
666
|
"quote",
|
|
665
|
-
"syn 3.0.
|
|
667
|
+
"syn 3.0.5",
|
|
666
668
|
]
|
|
667
669
|
|
|
668
670
|
[[package]]
|
|
@@ -712,9 +714,9 @@ dependencies = [
|
|
|
712
714
|
|
|
713
715
|
[[package]]
|
|
714
716
|
name = "cc"
|
|
715
|
-
version = "1.4.
|
|
717
|
+
version = "1.4.5"
|
|
716
718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
-
checksum = "
|
|
719
|
+
checksum = "005ec2760ca554fae18df7a11195552ec576cd665632a881bc011d5bb2fd4d80"
|
|
718
720
|
dependencies = [
|
|
719
721
|
"find-msvc-tools",
|
|
720
722
|
"jobserver",
|
|
@@ -742,13 +744,13 @@ checksum = "18758054972164c3264f7c8386f5fc6da6114cb46b619fd365d4e3b2dc3ae487"
|
|
|
742
744
|
|
|
743
745
|
[[package]]
|
|
744
746
|
name = "chacha20"
|
|
745
|
-
version = "0.10.
|
|
747
|
+
version = "0.10.2"
|
|
746
748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
-
checksum = "
|
|
749
|
+
checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
|
|
748
750
|
dependencies = [
|
|
749
751
|
"cfg-if",
|
|
750
752
|
"cipher 0.5.2",
|
|
751
|
-
"cpufeatures 0.3.
|
|
753
|
+
"cpufeatures 0.3.1",
|
|
752
754
|
"rand_core 0.10.1",
|
|
753
755
|
"zeroize",
|
|
754
756
|
]
|
|
@@ -855,7 +857,7 @@ dependencies = [
|
|
|
855
857
|
"heck",
|
|
856
858
|
"proc-macro2",
|
|
857
859
|
"quote",
|
|
858
|
-
"syn 3.0.
|
|
860
|
+
"syn 3.0.5",
|
|
859
861
|
]
|
|
860
862
|
|
|
861
863
|
[[package]]
|
|
@@ -914,9 +916,9 @@ dependencies = [
|
|
|
914
916
|
|
|
915
917
|
[[package]]
|
|
916
918
|
name = "combine"
|
|
917
|
-
version = "4.6.
|
|
919
|
+
version = "4.6.8"
|
|
918
920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
-
checksum = "
|
|
921
|
+
checksum = "cfc320937d09e6de266b31b9afb480f197d7a861be86be7cb2ea7e5d1bfffc5e"
|
|
920
922
|
dependencies = [
|
|
921
923
|
"bytes",
|
|
922
924
|
"memchr",
|
|
@@ -1020,9 +1022,9 @@ dependencies = [
|
|
|
1020
1022
|
|
|
1021
1023
|
[[package]]
|
|
1022
1024
|
name = "cpufeatures"
|
|
1023
|
-
version = "0.3.
|
|
1025
|
+
version = "0.3.1"
|
|
1024
1026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1025
|
-
checksum = "
|
|
1027
|
+
checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
|
|
1026
1028
|
dependencies = [
|
|
1027
1029
|
"libc",
|
|
1028
1030
|
]
|
|
@@ -1038,9 +1040,9 @@ dependencies = [
|
|
|
1038
1040
|
|
|
1039
1041
|
[[package]]
|
|
1040
1042
|
name = "crc32fast"
|
|
1041
|
-
version = "1.5.
|
|
1043
|
+
version = "1.5.1"
|
|
1042
1044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
-
checksum = "
|
|
1045
|
+
checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550"
|
|
1044
1046
|
dependencies = [
|
|
1045
1047
|
"cfg-if",
|
|
1046
1048
|
]
|
|
@@ -1208,7 +1210,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1208
1210
|
checksum = "b5eed333089e2e1c1ac8c6c0398e5e2497b4c9926ca6d0365ed1e099afa5bc23"
|
|
1209
1211
|
dependencies = [
|
|
1210
1212
|
"cfg-if",
|
|
1211
|
-
"cpufeatures 0.3.
|
|
1213
|
+
"cpufeatures 0.3.1",
|
|
1212
1214
|
"curve25519-dalek-derive",
|
|
1213
1215
|
"digest",
|
|
1214
1216
|
"fiat-crypto",
|
|
@@ -1279,9 +1281,9 @@ dependencies = [
|
|
|
1279
1281
|
|
|
1280
1282
|
[[package]]
|
|
1281
1283
|
name = "der"
|
|
1282
|
-
version = "0.8.
|
|
1284
|
+
version = "0.8.2"
|
|
1283
1285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
-
checksum = "
|
|
1286
|
+
checksum = "a878c850e9e421b20262e9b41f9c860e4785fa07541c266b62ff9d1ef998a80a"
|
|
1285
1287
|
dependencies = [
|
|
1286
1288
|
"const-oid",
|
|
1287
1289
|
"pem-rfc7468",
|
|
@@ -1334,7 +1336,7 @@ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
|
|
|
1334
1336
|
dependencies = [
|
|
1335
1337
|
"proc-macro2",
|
|
1336
1338
|
"quote",
|
|
1337
|
-
"syn 3.0.
|
|
1339
|
+
"syn 3.0.5",
|
|
1338
1340
|
]
|
|
1339
1341
|
|
|
1340
1342
|
[[package]]
|
|
@@ -1398,9 +1400,9 @@ dependencies = [
|
|
|
1398
1400
|
|
|
1399
1401
|
[[package]]
|
|
1400
1402
|
name = "either"
|
|
1401
|
-
version = "1.
|
|
1403
|
+
version = "1.18.0"
|
|
1402
1404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
-
checksum = "
|
|
1405
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
1404
1406
|
|
|
1405
1407
|
[[package]]
|
|
1406
1408
|
name = "elliptic-curve"
|
|
@@ -1490,7 +1492,7 @@ checksum = "fe5e43d0f78a42ad591453aedb1d7ae631ce7ee445c7643691055a9ed8d3b01c"
|
|
|
1490
1492
|
dependencies = [
|
|
1491
1493
|
"log",
|
|
1492
1494
|
"once_cell",
|
|
1493
|
-
"rand 0.8.
|
|
1495
|
+
"rand 0.8.8",
|
|
1494
1496
|
]
|
|
1495
1497
|
|
|
1496
1498
|
[[package]]
|
|
@@ -1556,18 +1558,19 @@ checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24"
|
|
|
1556
1558
|
|
|
1557
1559
|
[[package]]
|
|
1558
1560
|
name = "find-msvc-tools"
|
|
1559
|
-
version = "0.1.
|
|
1561
|
+
version = "0.1.12"
|
|
1560
1562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
-
checksum = "
|
|
1563
|
+
checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
|
|
1562
1564
|
|
|
1563
1565
|
[[package]]
|
|
1564
1566
|
name = "flate2"
|
|
1565
|
-
version = "1.1.
|
|
1567
|
+
version = "1.1.10"
|
|
1566
1568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
-
checksum = "
|
|
1569
|
+
checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
|
|
1568
1570
|
dependencies = [
|
|
1569
1571
|
"crc32fast",
|
|
1570
1572
|
"miniz_oxide",
|
|
1573
|
+
"zlib-rs",
|
|
1571
1574
|
]
|
|
1572
1575
|
|
|
1573
1576
|
[[package]]
|
|
@@ -1665,7 +1668,7 @@ checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
|
|
|
1665
1668
|
dependencies = [
|
|
1666
1669
|
"proc-macro2",
|
|
1667
1670
|
"quote",
|
|
1668
|
-
"syn 3.0.
|
|
1671
|
+
"syn 3.0.5",
|
|
1669
1672
|
]
|
|
1670
1673
|
|
|
1671
1674
|
[[package]]
|
|
@@ -1825,6 +1828,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1825
1828
|
checksum = "2eecf2d5dc9b66b732b97707a0210906b1d30523eb773193ab777c0c84b3e8d5"
|
|
1826
1829
|
dependencies = [
|
|
1827
1830
|
"polyval 0.7.3",
|
|
1831
|
+
"zeroize",
|
|
1828
1832
|
]
|
|
1829
1833
|
|
|
1830
1834
|
[[package]]
|
|
@@ -1909,9 +1913,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
1909
1913
|
|
|
1910
1914
|
[[package]]
|
|
1911
1915
|
name = "hermit-abi"
|
|
1912
|
-
version = "0.5.
|
|
1916
|
+
version = "0.5.3"
|
|
1913
1917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1914
|
-
checksum = "
|
|
1918
|
+
checksum = "e17592d60ebacc7d5e169f4663c5f84f9161cc90328abcfe8456f41e4dfcb284"
|
|
1915
1919
|
|
|
1916
1920
|
[[package]]
|
|
1917
1921
|
name = "hex"
|
|
@@ -2011,9 +2015,9 @@ dependencies = [
|
|
|
2011
2015
|
|
|
2012
2016
|
[[package]]
|
|
2013
2017
|
name = "hyper"
|
|
2014
|
-
version = "1.11.
|
|
2018
|
+
version = "1.11.1"
|
|
2015
2019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
-
checksum = "
|
|
2020
|
+
checksum = "27b501faa50e7a26c3d3560ca625132f4078a17771f4810baf70475ae48cbe43"
|
|
2017
2021
|
dependencies = [
|
|
2018
2022
|
"atomic-waker",
|
|
2019
2023
|
"bytes",
|
|
@@ -2093,9 +2097,9 @@ dependencies = [
|
|
|
2093
2097
|
|
|
2094
2098
|
[[package]]
|
|
2095
2099
|
name = "icu_collator"
|
|
2096
|
-
version = "2.3.
|
|
2100
|
+
version = "2.3.1"
|
|
2097
2101
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2098
|
-
checksum = "
|
|
2102
|
+
checksum = "08984ed58ac439ebf3e13d2cf26b0c46a60afcd21721c1d14087c0b240344dda"
|
|
2099
2103
|
dependencies = [
|
|
2100
2104
|
"icu_collator_data",
|
|
2101
2105
|
"icu_collections",
|
|
@@ -2132,9 +2136,9 @@ dependencies = [
|
|
|
2132
2136
|
|
|
2133
2137
|
[[package]]
|
|
2134
2138
|
name = "icu_locale"
|
|
2135
|
-
version = "2.3.
|
|
2139
|
+
version = "2.3.1"
|
|
2136
2140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
-
checksum = "
|
|
2141
|
+
checksum = "785f595c61ef57169a467eeed7b4b6936a66f6cacbb116a96ee86da983251bf4"
|
|
2138
2142
|
dependencies = [
|
|
2139
2143
|
"icu_collections",
|
|
2140
2144
|
"icu_locale_core",
|
|
@@ -2231,9 +2235,9 @@ checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
|
|
|
2231
2235
|
|
|
2232
2236
|
[[package]]
|
|
2233
2237
|
name = "icu_provider"
|
|
2234
|
-
version = "2.3.
|
|
2238
|
+
version = "2.3.1"
|
|
2235
2239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2236
|
-
checksum = "
|
|
2240
|
+
checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"
|
|
2237
2241
|
dependencies = [
|
|
2238
2242
|
"displaydoc",
|
|
2239
2243
|
"icu_locale_core",
|
|
@@ -2265,9 +2269,9 @@ checksum = "cfdf4f5d937a025381f5ab13624b1c5f51414bfe5c9885663226eae8d6d39560"
|
|
|
2265
2269
|
|
|
2266
2270
|
[[package]]
|
|
2267
2271
|
name = "indexmap"
|
|
2268
|
-
version = "2.14.
|
|
2272
|
+
version = "2.14.2"
|
|
2269
2273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2270
|
-
checksum = "
|
|
2274
|
+
checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
|
|
2271
2275
|
dependencies = [
|
|
2272
2276
|
"equivalent",
|
|
2273
2277
|
"hashbrown 0.17.1",
|
|
@@ -2306,18 +2310,6 @@ dependencies = [
|
|
|
2306
2310
|
"tempfile",
|
|
2307
2311
|
]
|
|
2308
2312
|
|
|
2309
|
-
[[package]]
|
|
2310
|
-
name = "internal-russh-num-bigint"
|
|
2311
|
-
version = "0.5.0"
|
|
2312
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2313
|
-
checksum = "ae8e22120c32fb4d19ec55fba35015f57095cd95a2e3b732e44457f5915b2ee8"
|
|
2314
|
-
dependencies = [
|
|
2315
|
-
"num-integer",
|
|
2316
|
-
"num-traits",
|
|
2317
|
-
"rand 0.10.2",
|
|
2318
|
-
"rand_core 0.10.1",
|
|
2319
|
-
]
|
|
2320
|
-
|
|
2321
2313
|
[[package]]
|
|
2322
2314
|
name = "interpolator"
|
|
2323
2315
|
version = "0.5.0"
|
|
@@ -2350,9 +2342,9 @@ checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
|
|
|
2350
2342
|
|
|
2351
2343
|
[[package]]
|
|
2352
2344
|
name = "is-macro"
|
|
2353
|
-
version = "0.3.
|
|
2345
|
+
version = "0.3.8"
|
|
2354
2346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2355
|
-
checksum = "
|
|
2347
|
+
checksum = "8267aa6001e25494f3015f9663bbd88a18240c74483afa5f0934a1b3e4c388e9"
|
|
2356
2348
|
dependencies = [
|
|
2357
2349
|
"heck",
|
|
2358
2350
|
"proc-macro2",
|
|
@@ -2395,9 +2387,9 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
|
2395
2387
|
|
|
2396
2388
|
[[package]]
|
|
2397
2389
|
name = "jaq-core"
|
|
2398
|
-
version = "3.1.
|
|
2390
|
+
version = "3.1.1"
|
|
2399
2391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2400
|
-
checksum = "
|
|
2392
|
+
checksum = "f72ba7158fe9fc1bc4baace1b71e6d0d3d27c6839dd87dc1f233dd408f5dd85b"
|
|
2401
2393
|
dependencies = [
|
|
2402
2394
|
"dyn-clone",
|
|
2403
2395
|
"once_cell",
|
|
@@ -2406,9 +2398,9 @@ dependencies = [
|
|
|
2406
2398
|
|
|
2407
2399
|
[[package]]
|
|
2408
2400
|
name = "jaq-json"
|
|
2409
|
-
version = "2.0.
|
|
2401
|
+
version = "2.0.3"
|
|
2410
2402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2411
|
-
checksum = "
|
|
2403
|
+
checksum = "4be2f53207ffb1313a2d2ad819cfa8bfaa7936cb85a110eda10fd5da822cec94"
|
|
2412
2404
|
dependencies = [
|
|
2413
2405
|
"bstr",
|
|
2414
2406
|
"bytes",
|
|
@@ -2417,7 +2409,7 @@ dependencies = [
|
|
|
2417
2409
|
"indexmap",
|
|
2418
2410
|
"jaq-core",
|
|
2419
2411
|
"jaq-std",
|
|
2420
|
-
"num-bigint",
|
|
2412
|
+
"num-bigint 0.4.8",
|
|
2421
2413
|
"num-traits",
|
|
2422
2414
|
"ryu",
|
|
2423
2415
|
"self_cell",
|
|
@@ -2425,9 +2417,9 @@ dependencies = [
|
|
|
2425
2417
|
|
|
2426
2418
|
[[package]]
|
|
2427
2419
|
name = "jaq-std"
|
|
2428
|
-
version = "3.0.
|
|
2420
|
+
version = "3.0.3"
|
|
2429
2421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2430
|
-
checksum = "
|
|
2422
|
+
checksum = "9f90e485abfd3189510c996e77be55056a51038b0fa5805e6c97b5dcf0d9ab55"
|
|
2431
2423
|
dependencies = [
|
|
2432
2424
|
"aho-corasick",
|
|
2433
2425
|
"base64 0.22.1",
|
|
@@ -2501,7 +2493,7 @@ dependencies = [
|
|
|
2501
2493
|
"ahash",
|
|
2502
2494
|
"bitvec",
|
|
2503
2495
|
"lexical-parse-float",
|
|
2504
|
-
"num-bigint",
|
|
2496
|
+
"num-bigint 0.4.8",
|
|
2505
2497
|
"num-traits",
|
|
2506
2498
|
"pyo3",
|
|
2507
2499
|
"smallvec",
|
|
@@ -2568,9 +2560,9 @@ dependencies = [
|
|
|
2568
2560
|
|
|
2569
2561
|
[[package]]
|
|
2570
2562
|
name = "js-sys"
|
|
2571
|
-
version = "0.3.
|
|
2563
|
+
version = "0.3.105"
|
|
2572
2564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2573
|
-
checksum = "
|
|
2565
|
+
checksum = "ce57d20d1ea864ce2ac172ab472d409214f4fd359f0b2a2775abdf522e2af99e"
|
|
2574
2566
|
dependencies = [
|
|
2575
2567
|
"cfg-if",
|
|
2576
2568
|
"futures-util",
|
|
@@ -2579,12 +2571,12 @@ dependencies = [
|
|
|
2579
2571
|
|
|
2580
2572
|
[[package]]
|
|
2581
2573
|
name = "keccak"
|
|
2582
|
-
version = "0.2.
|
|
2574
|
+
version = "0.2.2"
|
|
2583
2575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2584
|
-
checksum = "
|
|
2576
|
+
checksum = "d8f198d1db720e4940b5a493201d199d9f24f568f8f746bd13706243a2f71598"
|
|
2585
2577
|
dependencies = [
|
|
2586
2578
|
"cfg-if",
|
|
2587
|
-
"cpufeatures 0.3.
|
|
2579
|
+
"cpufeatures 0.3.1",
|
|
2588
2580
|
]
|
|
2589
2581
|
|
|
2590
2582
|
[[package]]
|
|
@@ -2683,7 +2675,7 @@ checksum = "77060ebe535362c3da75682cd17b0431017b6e7c5661e714fc69a7ad017d1301"
|
|
|
2683
2675
|
dependencies = [
|
|
2684
2676
|
"proc-macro2",
|
|
2685
2677
|
"quote",
|
|
2686
|
-
"syn 3.0.
|
|
2678
|
+
"syn 3.0.5",
|
|
2687
2679
|
]
|
|
2688
2680
|
|
|
2689
2681
|
[[package]]
|
|
@@ -2709,9 +2701,9 @@ dependencies = [
|
|
|
2709
2701
|
|
|
2710
2702
|
[[package]]
|
|
2711
2703
|
name = "log"
|
|
2712
|
-
version = "0.4.
|
|
2704
|
+
version = "0.4.34"
|
|
2713
2705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2714
|
-
checksum = "
|
|
2706
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
2715
2707
|
|
|
2716
2708
|
[[package]]
|
|
2717
2709
|
name = "loom"
|
|
@@ -2813,9 +2805,9 @@ dependencies = [
|
|
|
2813
2805
|
|
|
2814
2806
|
[[package]]
|
|
2815
2807
|
name = "miniz_oxide"
|
|
2816
|
-
version = "0.
|
|
2808
|
+
version = "0.9.1"
|
|
2817
2809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2818
|
-
checksum = "
|
|
2810
|
+
checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
|
|
2819
2811
|
dependencies = [
|
|
2820
2812
|
"adler2",
|
|
2821
2813
|
"simd-adler32",
|
|
@@ -2823,9 +2815,9 @@ dependencies = [
|
|
|
2823
2815
|
|
|
2824
2816
|
[[package]]
|
|
2825
2817
|
name = "mio"
|
|
2826
|
-
version = "1.2.
|
|
2818
|
+
version = "1.2.3"
|
|
2827
2819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2828
|
-
checksum = "
|
|
2820
|
+
checksum = "4b18443e9c262bfe8fa82f51666e2642c53393f7e5c27b3e1aeab922cff5b9d8"
|
|
2829
2821
|
dependencies = [
|
|
2830
2822
|
"libc",
|
|
2831
2823
|
"wasi",
|
|
@@ -2900,7 +2892,7 @@ dependencies = [
|
|
|
2900
2892
|
"libm",
|
|
2901
2893
|
"monty-macros",
|
|
2902
2894
|
"monty-types",
|
|
2903
|
-
"num-bigint",
|
|
2895
|
+
"num-bigint 0.4.8",
|
|
2904
2896
|
"num-integer",
|
|
2905
2897
|
"num-traits",
|
|
2906
2898
|
"postcard",
|
|
@@ -2936,7 +2928,7 @@ checksum = "3a8988fa8d9902432d5e685a7bb97c84844022dd9560e796c00b119a4c27519b"
|
|
|
2936
2928
|
dependencies = [
|
|
2937
2929
|
"chrono",
|
|
2938
2930
|
"monty-macros",
|
|
2939
|
-
"num-bigint",
|
|
2931
|
+
"num-bigint 0.4.8",
|
|
2940
2932
|
"num-traits",
|
|
2941
2933
|
"serde",
|
|
2942
2934
|
"strum 0.27.2",
|
|
@@ -2946,9 +2938,9 @@ dependencies = [
|
|
|
2946
2938
|
|
|
2947
2939
|
[[package]]
|
|
2948
2940
|
name = "napi"
|
|
2949
|
-
version = "3.12.
|
|
2941
|
+
version = "3.12.2"
|
|
2950
2942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2951
|
-
checksum = "
|
|
2943
|
+
checksum = "58c5f4d5375213fdb7be2655e152386e82f026f9a5ba36a75556e11359aafe09"
|
|
2952
2944
|
dependencies = [
|
|
2953
2945
|
"bitflags 2.13.1",
|
|
2954
2946
|
"ctor",
|
|
@@ -3056,6 +3048,18 @@ dependencies = [
|
|
|
3056
3048
|
"serde",
|
|
3057
3049
|
]
|
|
3058
3050
|
|
|
3051
|
+
[[package]]
|
|
3052
|
+
name = "num-bigint"
|
|
3053
|
+
version = "0.5.1"
|
|
3054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3055
|
+
checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0"
|
|
3056
|
+
dependencies = [
|
|
3057
|
+
"num-integer",
|
|
3058
|
+
"num-traits",
|
|
3059
|
+
"rand 0.10.2",
|
|
3060
|
+
"rand_core 0.10.1",
|
|
3061
|
+
]
|
|
3062
|
+
|
|
3059
3063
|
[[package]]
|
|
3060
3064
|
name = "num-integer"
|
|
3061
3065
|
version = "0.1.47"
|
|
@@ -3100,9 +3104,9 @@ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
|
3100
3104
|
|
|
3101
3105
|
[[package]]
|
|
3102
3106
|
name = "ordermap"
|
|
3103
|
-
version = "1.2.
|
|
3107
|
+
version = "1.2.2"
|
|
3104
3108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3105
|
-
checksum = "
|
|
3109
|
+
checksum = "16a756ddcdeb6c0efc8927bdf0ed112885815a35ba350472a467be5104f01ca1"
|
|
3106
3110
|
dependencies = [
|
|
3107
3111
|
"indexmap",
|
|
3108
3112
|
]
|
|
@@ -3124,9 +3128,9 @@ checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
|
|
|
3124
3128
|
|
|
3125
3129
|
[[package]]
|
|
3126
3130
|
name = "owo-colors"
|
|
3127
|
-
version = "4.
|
|
3131
|
+
version = "4.4.0"
|
|
3128
3132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3129
|
-
checksum = "
|
|
3133
|
+
checksum = "13c45bb4a6ae1280ec0803b1ef9d3455eb50f01efbbe1447ab020f1d54fba9d8"
|
|
3130
3134
|
|
|
3131
3135
|
[[package]]
|
|
3132
3136
|
name = "oxc-miette"
|
|
@@ -3135,7 +3139,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3135
3139
|
checksum = "4356a61f2ed4c9b3610245215fbf48970eb277126919f87db9d0efa93a74245c"
|
|
3136
3140
|
dependencies = [
|
|
3137
3141
|
"cfg-if",
|
|
3138
|
-
"owo-colors 4.
|
|
3142
|
+
"owo-colors 4.4.0",
|
|
3139
3143
|
"oxc-miette-derive",
|
|
3140
3144
|
"textwrap",
|
|
3141
3145
|
"thiserror",
|
|
@@ -3219,7 +3223,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3219
3223
|
checksum = "71b23b64fa8c4a84b1406de383c4666366c9f54ffb9cb11a63b8d7433950460a"
|
|
3220
3224
|
dependencies = [
|
|
3221
3225
|
"cow-utils",
|
|
3222
|
-
"num-bigint",
|
|
3226
|
+
"num-bigint 0.4.8",
|
|
3223
3227
|
"num-traits",
|
|
3224
3228
|
"oxc_allocator",
|
|
3225
3229
|
"oxc_ast",
|
|
@@ -3253,7 +3257,7 @@ dependencies = [
|
|
|
3253
3257
|
"bitflags 2.13.1",
|
|
3254
3258
|
"cow-utils",
|
|
3255
3259
|
"memchr",
|
|
3256
|
-
"num-bigint",
|
|
3260
|
+
"num-bigint 0.4.8",
|
|
3257
3261
|
"num-traits",
|
|
3258
3262
|
"oxc_allocator",
|
|
3259
3263
|
"oxc_ast",
|
|
@@ -3390,9 +3394,9 @@ dependencies = [
|
|
|
3390
3394
|
|
|
3391
3395
|
[[package]]
|
|
3392
3396
|
name = "pageant"
|
|
3393
|
-
version = "0.2.
|
|
3397
|
+
version = "0.2.3"
|
|
3394
3398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3395
|
-
checksum = "
|
|
3399
|
+
checksum = "6d8eab09a361a4afe0b1668be978cd97e4f052e927a92b0b608cf902965d49ce"
|
|
3396
3400
|
dependencies = [
|
|
3397
3401
|
"base16ct",
|
|
3398
3402
|
"byteorder",
|
|
@@ -3538,7 +3542,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3538
3542
|
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
3539
3543
|
dependencies = [
|
|
3540
3544
|
"phf_shared 0.11.3",
|
|
3541
|
-
"rand 0.8.
|
|
3545
|
+
"rand 0.8.8",
|
|
3542
3546
|
]
|
|
3543
3547
|
|
|
3544
3548
|
[[package]]
|
|
@@ -3613,8 +3617,8 @@ version = "0.8.1"
|
|
|
3613
3617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3614
3618
|
checksum = "63d440a804ec8d6fafbb6b84471e013286658d373248927692ab3366686220ca"
|
|
3615
3619
|
dependencies = [
|
|
3616
|
-
"aes 0.9.
|
|
3617
|
-
"aes-gcm 0.11.
|
|
3620
|
+
"aes 0.9.3",
|
|
3621
|
+
"aes-gcm 0.11.1",
|
|
3618
3622
|
"cbc",
|
|
3619
3623
|
"der",
|
|
3620
3624
|
"pbkdf2",
|
|
@@ -3690,7 +3694,7 @@ version = "0.9.1"
|
|
|
3690
3694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3691
3695
|
checksum = "6e2d0073b297041425c7c3df6eb4792d598a15323fe63346852b092eca02904c"
|
|
3692
3696
|
dependencies = [
|
|
3693
|
-
"cpufeatures 0.3.
|
|
3697
|
+
"cpufeatures 0.3.1",
|
|
3694
3698
|
"universal-hash 0.6.1",
|
|
3695
3699
|
"zeroize",
|
|
3696
3700
|
]
|
|
@@ -3714,8 +3718,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3714
3718
|
checksum = "f0fa31d631f2b2cb2a544d0aa321ce847a94764d701ca2becc411138b93d49cd"
|
|
3715
3719
|
dependencies = [
|
|
3716
3720
|
"cpubits",
|
|
3717
|
-
"cpufeatures 0.3.
|
|
3721
|
+
"cpufeatures 0.3.1",
|
|
3718
3722
|
"universal-hash 0.6.1",
|
|
3723
|
+
"zeroize",
|
|
3719
3724
|
]
|
|
3720
3725
|
|
|
3721
3726
|
[[package]]
|
|
@@ -3726,9 +3731,9 @@ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
|
3726
3731
|
|
|
3727
3732
|
[[package]]
|
|
3728
3733
|
name = "portable-atomic-util"
|
|
3729
|
-
version = "0.2.
|
|
3734
|
+
version = "0.2.8"
|
|
3730
3735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3731
|
-
checksum = "
|
|
3736
|
+
checksum = "10ab3eb7f3becc3a1cbc4f2c6f20267996cfc1a6467a873763411b136a122715"
|
|
3732
3737
|
dependencies = [
|
|
3733
3738
|
"portable-atomic",
|
|
3734
3739
|
]
|
|
@@ -3783,7 +3788,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3783
3788
|
checksum = "2bfe0f4c752e450fc2faf62654f1c134747922825d5b04ca717b8874f41a40c0"
|
|
3784
3789
|
dependencies = [
|
|
3785
3790
|
"proc-macro2",
|
|
3786
|
-
"syn 3.0.
|
|
3791
|
+
"syn 3.0.5",
|
|
3787
3792
|
]
|
|
3788
3793
|
|
|
3789
3794
|
[[package]]
|
|
@@ -3813,28 +3818,6 @@ dependencies = [
|
|
|
3813
3818
|
"wnaf",
|
|
3814
3819
|
]
|
|
3815
3820
|
|
|
3816
|
-
[[package]]
|
|
3817
|
-
name = "proc-macro-error-attr2"
|
|
3818
|
-
version = "2.0.0"
|
|
3819
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3820
|
-
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
3821
|
-
dependencies = [
|
|
3822
|
-
"proc-macro2",
|
|
3823
|
-
"quote",
|
|
3824
|
-
]
|
|
3825
|
-
|
|
3826
|
-
[[package]]
|
|
3827
|
-
name = "proc-macro-error2"
|
|
3828
|
-
version = "2.0.1"
|
|
3829
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3830
|
-
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
3831
|
-
dependencies = [
|
|
3832
|
-
"proc-macro-error-attr2",
|
|
3833
|
-
"proc-macro2",
|
|
3834
|
-
"quote",
|
|
3835
|
-
"syn 2.0.119",
|
|
3836
|
-
]
|
|
3837
|
-
|
|
3838
3821
|
[[package]]
|
|
3839
3822
|
name = "proc-macro-utils"
|
|
3840
3823
|
version = "0.10.0"
|
|
@@ -3881,7 +3864,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3881
3864
|
checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
3882
3865
|
dependencies = [
|
|
3883
3866
|
"libc",
|
|
3884
|
-
"num-bigint",
|
|
3867
|
+
"num-bigint 0.4.8",
|
|
3885
3868
|
"num-traits",
|
|
3886
3869
|
"once_cell",
|
|
3887
3870
|
"portable-atomic",
|
|
@@ -4014,9 +3997,9 @@ dependencies = [
|
|
|
4014
3997
|
|
|
4015
3998
|
[[package]]
|
|
4016
3999
|
name = "rand"
|
|
4017
|
-
version = "0.8.
|
|
4000
|
+
version = "0.8.8"
|
|
4018
4001
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4019
|
-
checksum = "
|
|
4002
|
+
checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
|
|
4020
4003
|
dependencies = [
|
|
4021
4004
|
"libc",
|
|
4022
4005
|
"rand_chacha 0.3.1",
|
|
@@ -4357,11 +4340,11 @@ dependencies = [
|
|
|
4357
4340
|
|
|
4358
4341
|
[[package]]
|
|
4359
4342
|
name = "russh"
|
|
4360
|
-
version = "0.
|
|
4343
|
+
version = "0.63.2"
|
|
4361
4344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4362
|
-
checksum = "
|
|
4345
|
+
checksum = "8e134e2480f4e86f83e4aa45b4c0a9723f84beaffa694c54bdf056e74efdd7dd"
|
|
4363
4346
|
dependencies = [
|
|
4364
|
-
"aes 0.9.
|
|
4347
|
+
"aes 0.9.3",
|
|
4365
4348
|
"aws-lc-rs",
|
|
4366
4349
|
"bitflags 2.13.1",
|
|
4367
4350
|
"block-padding",
|
|
@@ -4388,13 +4371,12 @@ dependencies = [
|
|
|
4388
4371
|
"hex-literal",
|
|
4389
4372
|
"hmac",
|
|
4390
4373
|
"inout 0.2.2",
|
|
4391
|
-
"internal-russh-num-bigint",
|
|
4392
4374
|
"keccak",
|
|
4393
4375
|
"log",
|
|
4394
4376
|
"md5",
|
|
4395
4377
|
"ml-kem",
|
|
4396
4378
|
"module-lattice",
|
|
4397
|
-
"num-bigint",
|
|
4379
|
+
"num-bigint 0.5.1",
|
|
4398
4380
|
"p256",
|
|
4399
4381
|
"p384",
|
|
4400
4382
|
"p521",
|
|
@@ -4555,9 +4537,9 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
|
4555
4537
|
|
|
4556
4538
|
[[package]]
|
|
4557
4539
|
name = "rustls-webpki"
|
|
4558
|
-
version = "0.103.
|
|
4540
|
+
version = "0.103.15"
|
|
4559
4541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4560
|
-
checksum = "
|
|
4542
|
+
checksum = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2"
|
|
4561
4543
|
dependencies = [
|
|
4562
4544
|
"aws-lc-rs",
|
|
4563
4545
|
"ring",
|
|
@@ -4764,7 +4746,7 @@ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
|
4764
4746
|
dependencies = [
|
|
4765
4747
|
"proc-macro2",
|
|
4766
4748
|
"quote",
|
|
4767
|
-
"syn 3.0.
|
|
4749
|
+
"syn 3.0.5",
|
|
4768
4750
|
]
|
|
4769
4751
|
|
|
4770
4752
|
[[package]]
|
|
@@ -4834,7 +4816,7 @@ checksum = "a22144e767da4ddd8416dbf383700542ffd8a5dc493dfecedfe1fe3ad03c98ae"
|
|
|
4834
4816
|
dependencies = [
|
|
4835
4817
|
"proc-macro2",
|
|
4836
4818
|
"quote",
|
|
4837
|
-
"syn 3.0.
|
|
4819
|
+
"syn 3.0.5",
|
|
4838
4820
|
]
|
|
4839
4821
|
|
|
4840
4822
|
[[package]]
|
|
@@ -4844,7 +4826,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4844
4826
|
checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
|
|
4845
4827
|
dependencies = [
|
|
4846
4828
|
"cfg-if",
|
|
4847
|
-
"cpufeatures 0.3.
|
|
4829
|
+
"cpufeatures 0.3.1",
|
|
4848
4830
|
"digest",
|
|
4849
4831
|
]
|
|
4850
4832
|
|
|
@@ -4861,7 +4843,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4861
4843
|
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
4862
4844
|
dependencies = [
|
|
4863
4845
|
"cfg-if",
|
|
4864
|
-
"cpufeatures 0.3.
|
|
4846
|
+
"cpufeatures 0.3.1",
|
|
4865
4847
|
"digest",
|
|
4866
4848
|
]
|
|
4867
4849
|
|
|
@@ -4913,7 +4895,7 @@ dependencies = [
|
|
|
4913
4895
|
"generator",
|
|
4914
4896
|
"hex",
|
|
4915
4897
|
"owo-colors 3.5.0",
|
|
4916
|
-
"rand 0.8.
|
|
4898
|
+
"rand 0.8.8",
|
|
4917
4899
|
"rand_core 0.6.4",
|
|
4918
4900
|
"rand_pcg",
|
|
4919
4901
|
"scoped-tls",
|
|
@@ -5002,9 +4984,9 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
|
5002
4984
|
|
|
5003
4985
|
[[package]]
|
|
5004
4986
|
name = "smallvec"
|
|
5005
|
-
version = "1.
|
|
4987
|
+
version = "1.16.0"
|
|
5006
4988
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5007
|
-
checksum = "
|
|
4989
|
+
checksum = "b9be42f50aa861c555654aa3a37f52f4b1074bacf4e48fe0ef7fa584e80f1f0f"
|
|
5008
4990
|
dependencies = [
|
|
5009
4991
|
"serde",
|
|
5010
4992
|
]
|
|
@@ -5074,8 +5056,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5074
5056
|
checksum = "d801accda99469cde6d73da741422610fdf6508a72d9a69d1b55cb241c720597"
|
|
5075
5057
|
dependencies = [
|
|
5076
5058
|
"aead 0.6.1",
|
|
5077
|
-
"aes 0.9.
|
|
5078
|
-
"aes-gcm 0.11.
|
|
5059
|
+
"aes 0.9.3",
|
|
5060
|
+
"aes-gcm 0.11.1",
|
|
5079
5061
|
"chacha20",
|
|
5080
5062
|
"cipher 0.5.2",
|
|
5081
5063
|
"ctutils",
|
|
@@ -5200,9 +5182,9 @@ dependencies = [
|
|
|
5200
5182
|
|
|
5201
5183
|
[[package]]
|
|
5202
5184
|
name = "syn"
|
|
5203
|
-
version = "3.0.
|
|
5185
|
+
version = "3.0.5"
|
|
5204
5186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5205
|
-
checksum = "
|
|
5187
|
+
checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
|
|
5206
5188
|
dependencies = [
|
|
5207
5189
|
"proc-macro2",
|
|
5208
5190
|
"quote",
|
|
@@ -5231,9 +5213,9 @@ dependencies = [
|
|
|
5231
5213
|
|
|
5232
5214
|
[[package]]
|
|
5233
5215
|
name = "tabled"
|
|
5234
|
-
version = "0.
|
|
5216
|
+
version = "0.22.0"
|
|
5235
5217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5236
|
-
checksum = "
|
|
5218
|
+
checksum = "2d2596a104db1900b943f97d793a6c99addca918c4525c999f751a0f17d472eb"
|
|
5237
5219
|
dependencies = [
|
|
5238
5220
|
"papergrid",
|
|
5239
5221
|
"tabled_derive",
|
|
@@ -5242,12 +5224,11 @@ dependencies = [
|
|
|
5242
5224
|
|
|
5243
5225
|
[[package]]
|
|
5244
5226
|
name = "tabled_derive"
|
|
5245
|
-
version = "0.
|
|
5227
|
+
version = "0.12.0"
|
|
5246
5228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5247
|
-
checksum = "
|
|
5229
|
+
checksum = "7dca1937322a1e892b1a65f6a6736183bb0a29d3b4234d1d53bc436dff9beb76"
|
|
5248
5230
|
dependencies = [
|
|
5249
5231
|
"heck",
|
|
5250
|
-
"proc-macro-error2",
|
|
5251
5232
|
"proc-macro2",
|
|
5252
5233
|
"quote",
|
|
5253
5234
|
"syn 2.0.119",
|
|
@@ -5331,7 +5312,7 @@ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
|
5331
5312
|
dependencies = [
|
|
5332
5313
|
"proc-macro2",
|
|
5333
5314
|
"quote",
|
|
5334
|
-
"syn 3.0.
|
|
5315
|
+
"syn 3.0.5",
|
|
5335
5316
|
]
|
|
5336
5317
|
|
|
5337
5318
|
[[package]]
|
|
@@ -5366,9 +5347,9 @@ dependencies = [
|
|
|
5366
5347
|
|
|
5367
5348
|
[[package]]
|
|
5368
5349
|
name = "tinyvec"
|
|
5369
|
-
version = "1.
|
|
5350
|
+
version = "1.13.2"
|
|
5370
5351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5371
|
-
checksum = "
|
|
5352
|
+
checksum = "4cf0ded5c4e56918d8f8a339e1bb67d038d3bc6d144ac407904015ba2e4cde9b"
|
|
5372
5353
|
dependencies = [
|
|
5373
5354
|
"tinyvec_macros",
|
|
5374
5355
|
]
|
|
@@ -5403,14 +5384,14 @@ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
|
|
|
5403
5384
|
dependencies = [
|
|
5404
5385
|
"proc-macro2",
|
|
5405
5386
|
"quote",
|
|
5406
|
-
"syn 3.0.
|
|
5387
|
+
"syn 3.0.5",
|
|
5407
5388
|
]
|
|
5408
5389
|
|
|
5409
5390
|
[[package]]
|
|
5410
5391
|
name = "tokio-rustls"
|
|
5411
|
-
version = "0.26.
|
|
5392
|
+
version = "0.26.5"
|
|
5412
5393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5413
|
-
checksum = "
|
|
5394
|
+
checksum = "b0c85f2c3ef0b1cd58b36682f4b17aaa995f0e5db534d85692b4903abce21f67"
|
|
5414
5395
|
dependencies = [
|
|
5415
5396
|
"rustls",
|
|
5416
5397
|
"tokio",
|
|
@@ -5453,9 +5434,9 @@ dependencies = [
|
|
|
5453
5434
|
|
|
5454
5435
|
[[package]]
|
|
5455
5436
|
name = "toml"
|
|
5456
|
-
version = "1.1.
|
|
5437
|
+
version = "1.1.5+spec-1.1.0"
|
|
5457
5438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5458
|
-
checksum = "
|
|
5439
|
+
checksum = "12c0ba9680044b4ce98d391a62094047eada0d64860b80166c39f4a6b5640785"
|
|
5459
5440
|
dependencies = [
|
|
5460
5441
|
"indexmap",
|
|
5461
5442
|
"serde_core",
|
|
@@ -5604,9 +5585,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
5604
5585
|
|
|
5605
5586
|
[[package]]
|
|
5606
5587
|
name = "turso_core"
|
|
5607
|
-
version = "0.8.0-pre.
|
|
5588
|
+
version = "0.8.0-pre.8"
|
|
5608
5589
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5609
|
-
checksum = "
|
|
5590
|
+
checksum = "8aa9df0e2dd9894ddc61cf6c35e0726f4fc26dd08c584afebd319c1969aaf504"
|
|
5610
5591
|
dependencies = [
|
|
5611
5592
|
"aegis",
|
|
5612
5593
|
"aes 0.8.4",
|
|
@@ -5640,7 +5621,7 @@ dependencies = [
|
|
|
5640
5621
|
"libm",
|
|
5641
5622
|
"loom",
|
|
5642
5623
|
"miette",
|
|
5643
|
-
"num-bigint",
|
|
5624
|
+
"num-bigint 0.4.8",
|
|
5644
5625
|
"num-traits",
|
|
5645
5626
|
"pack1",
|
|
5646
5627
|
"parking_lot",
|
|
@@ -5676,9 +5657,9 @@ dependencies = [
|
|
|
5676
5657
|
|
|
5677
5658
|
[[package]]
|
|
5678
5659
|
name = "turso_ext"
|
|
5679
|
-
version = "0.8.0-pre.
|
|
5660
|
+
version = "0.8.0-pre.8"
|
|
5680
5661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5681
|
-
checksum = "
|
|
5662
|
+
checksum = "a27e351e5f30b21d186a62895761a59a944e209111ea7ba84bf8c611068d87fc"
|
|
5682
5663
|
dependencies = [
|
|
5683
5664
|
"chrono",
|
|
5684
5665
|
"getrandom 0.4.3",
|
|
@@ -5687,9 +5668,9 @@ dependencies = [
|
|
|
5687
5668
|
|
|
5688
5669
|
[[package]]
|
|
5689
5670
|
name = "turso_macros"
|
|
5690
|
-
version = "0.8.0-pre.
|
|
5671
|
+
version = "0.8.0-pre.8"
|
|
5691
5672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5692
|
-
checksum = "
|
|
5673
|
+
checksum = "f5c30032b9cd45798d5ed012a3728d9cf4e39a8dbb7d820d82908facb4b665dc"
|
|
5693
5674
|
dependencies = [
|
|
5694
5675
|
"proc-macro2",
|
|
5695
5676
|
"quote",
|
|
@@ -5698,9 +5679,9 @@ dependencies = [
|
|
|
5698
5679
|
|
|
5699
5680
|
[[package]]
|
|
5700
5681
|
name = "turso_parser"
|
|
5701
|
-
version = "0.8.0-pre.
|
|
5682
|
+
version = "0.8.0-pre.8"
|
|
5702
5683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5703
|
-
checksum = "
|
|
5684
|
+
checksum = "6823c91624d12ae67d6c6dfc819406a279265ca8879307f92c12d7de77bc6846"
|
|
5704
5685
|
dependencies = [
|
|
5705
5686
|
"bitflags 2.13.1",
|
|
5706
5687
|
"memchr",
|
|
@@ -5713,9 +5694,9 @@ dependencies = [
|
|
|
5713
5694
|
|
|
5714
5695
|
[[package]]
|
|
5715
5696
|
name = "twox-hash"
|
|
5716
|
-
version = "2.1.
|
|
5697
|
+
version = "2.1.4"
|
|
5717
5698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5718
|
-
checksum = "
|
|
5699
|
+
checksum = "5283634e518fe9e82c7b20520bb4bc209009fd16c82077c802f8111ecbb0117a"
|
|
5719
5700
|
dependencies = [
|
|
5720
5701
|
"rand 0.10.2",
|
|
5721
5702
|
]
|
|
@@ -5817,7 +5798,7 @@ dependencies = [
|
|
|
5817
5798
|
"getopts",
|
|
5818
5799
|
"log",
|
|
5819
5800
|
"phf_codegen",
|
|
5820
|
-
"rand 0.8.
|
|
5801
|
+
"rand 0.8.8",
|
|
5821
5802
|
]
|
|
5822
5803
|
|
|
5823
5804
|
[[package]]
|
|
@@ -5902,9 +5883,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
5902
5883
|
|
|
5903
5884
|
[[package]]
|
|
5904
5885
|
name = "uuid"
|
|
5905
|
-
version = "1.
|
|
5886
|
+
version = "1.26.0"
|
|
5906
5887
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5907
|
-
checksum = "
|
|
5888
|
+
checksum = "b5772d71c9be8a8a6ac2117d949c5b224c1b72241bb611d9a3012edcf8af7812"
|
|
5908
5889
|
dependencies = [
|
|
5909
5890
|
"getrandom 0.4.3",
|
|
5910
5891
|
"js-sys",
|
|
@@ -5969,9 +5950,9 @@ dependencies = [
|
|
|
5969
5950
|
|
|
5970
5951
|
[[package]]
|
|
5971
5952
|
name = "wasm-bindgen"
|
|
5972
|
-
version = "0.2.
|
|
5953
|
+
version = "0.2.128"
|
|
5973
5954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5974
|
-
checksum = "
|
|
5955
|
+
checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
|
|
5975
5956
|
dependencies = [
|
|
5976
5957
|
"cfg-if",
|
|
5977
5958
|
"once_cell",
|
|
@@ -5982,9 +5963,9 @@ dependencies = [
|
|
|
5982
5963
|
|
|
5983
5964
|
[[package]]
|
|
5984
5965
|
name = "wasm-bindgen-futures"
|
|
5985
|
-
version = "0.4.
|
|
5966
|
+
version = "0.4.78"
|
|
5986
5967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5987
|
-
checksum = "
|
|
5968
|
+
checksum = "6ef4c5d3d2cdf5c54f4231181768f5510842e350db025faf1f7163b1030ed928"
|
|
5988
5969
|
dependencies = [
|
|
5989
5970
|
"js-sys",
|
|
5990
5971
|
"wasm-bindgen",
|
|
@@ -5992,9 +5973,9 @@ dependencies = [
|
|
|
5992
5973
|
|
|
5993
5974
|
[[package]]
|
|
5994
5975
|
name = "wasm-bindgen-macro"
|
|
5995
|
-
version = "0.2.
|
|
5976
|
+
version = "0.2.128"
|
|
5996
5977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5997
|
-
checksum = "
|
|
5978
|
+
checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
|
|
5998
5979
|
dependencies = [
|
|
5999
5980
|
"quote",
|
|
6000
5981
|
"wasm-bindgen-macro-support",
|
|
@@ -6002,22 +5983,22 @@ dependencies = [
|
|
|
6002
5983
|
|
|
6003
5984
|
[[package]]
|
|
6004
5985
|
name = "wasm-bindgen-macro-support"
|
|
6005
|
-
version = "0.2.
|
|
5986
|
+
version = "0.2.128"
|
|
6006
5987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6007
|
-
checksum = "
|
|
5988
|
+
checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
|
|
6008
5989
|
dependencies = [
|
|
6009
5990
|
"bumpalo",
|
|
6010
5991
|
"proc-macro2",
|
|
6011
5992
|
"quote",
|
|
6012
|
-
"syn
|
|
5993
|
+
"syn 3.0.5",
|
|
6013
5994
|
"wasm-bindgen-shared",
|
|
6014
5995
|
]
|
|
6015
5996
|
|
|
6016
5997
|
[[package]]
|
|
6017
5998
|
name = "wasm-bindgen-shared"
|
|
6018
|
-
version = "0.2.
|
|
5999
|
+
version = "0.2.128"
|
|
6019
6000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6020
|
-
checksum = "
|
|
6001
|
+
checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
|
|
6021
6002
|
dependencies = [
|
|
6022
6003
|
"unicode-ident",
|
|
6023
6004
|
]
|
|
@@ -6037,9 +6018,9 @@ dependencies = [
|
|
|
6037
6018
|
|
|
6038
6019
|
[[package]]
|
|
6039
6020
|
name = "web-sys"
|
|
6040
|
-
version = "0.3.
|
|
6021
|
+
version = "0.3.105"
|
|
6041
6022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6042
|
-
checksum = "
|
|
6023
|
+
checksum = "9fbddc4a036f00ec4f18c83445bd3115cb306a91da554919a099d9222fe4a7f8"
|
|
6043
6024
|
dependencies = [
|
|
6044
6025
|
"js-sys",
|
|
6045
6026
|
"wasm-bindgen",
|
|
@@ -6301,13 +6282,14 @@ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
|
6301
6282
|
|
|
6302
6283
|
[[package]]
|
|
6303
6284
|
name = "wnaf"
|
|
6304
|
-
version = "0.14.
|
|
6285
|
+
version = "0.14.1"
|
|
6305
6286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6306
|
-
checksum = "
|
|
6287
|
+
checksum = "795ca18b3fdb5e62bf982199278341ddcf7ebf7d32e25e212ad05d496e95f6fa"
|
|
6307
6288
|
dependencies = [
|
|
6308
6289
|
"ff",
|
|
6309
6290
|
"group",
|
|
6310
6291
|
"hybrid-array",
|
|
6292
|
+
"primefield",
|
|
6311
6293
|
]
|
|
6312
6294
|
|
|
6313
6295
|
[[package]]
|
|
@@ -6438,9 +6420,9 @@ dependencies = [
|
|
|
6438
6420
|
|
|
6439
6421
|
[[package]]
|
|
6440
6422
|
name = "zerovec"
|
|
6441
|
-
version = "0.11.
|
|
6423
|
+
version = "0.11.8"
|
|
6442
6424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6443
|
-
checksum = "
|
|
6425
|
+
checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
|
|
6444
6426
|
dependencies = [
|
|
6445
6427
|
"serde",
|
|
6446
6428
|
"yoke",
|
|
@@ -6450,15 +6432,21 @@ dependencies = [
|
|
|
6450
6432
|
|
|
6451
6433
|
[[package]]
|
|
6452
6434
|
name = "zerovec-derive"
|
|
6453
|
-
version = "0.11.
|
|
6435
|
+
version = "0.11.6"
|
|
6454
6436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6455
|
-
checksum = "
|
|
6437
|
+
checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"
|
|
6456
6438
|
dependencies = [
|
|
6457
6439
|
"proc-macro2",
|
|
6458
6440
|
"quote",
|
|
6459
|
-
"syn 3.0.
|
|
6441
|
+
"syn 3.0.5",
|
|
6460
6442
|
]
|
|
6461
6443
|
|
|
6444
|
+
[[package]]
|
|
6445
|
+
name = "zlib-rs"
|
|
6446
|
+
version = "0.6.7"
|
|
6447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6448
|
+
checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
|
|
6449
|
+
|
|
6462
6450
|
[[package]]
|
|
6463
6451
|
name = "zmij"
|
|
6464
6452
|
version = "1.0.23"
|