bashkit 0.11.0__tar.gz → 0.13.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.11.0 → bashkit-0.13.0}/Cargo.lock +155 -268
- {bashkit-0.11.0 → bashkit-0.13.0}/Cargo.toml +29 -4
- {bashkit-0.11.0 → bashkit-0.13.0}/PKG-INFO +1 -1
- {bashkit-0.11.0 → bashkit-0.13.0}/bashkit/_bashkit.pyi +2 -2
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/Cargo.toml +23 -4
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/README.md +15 -9
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/benches/parallel_execution.rs +4 -2
- bashkit-0.13.0/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782162173.md +67 -0
- bashkit-0.13.0/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782168239.md +75 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/docs/compatibility.md +1 -1
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/archive.rs +2 -2
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/arg_parser.rs +82 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/curl.rs +11 -13
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/date.rs +1 -1
- bashkit-0.13.0/crates/bashkit/src/builtins/dirstack.rs +192 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/fileops.rs +2 -2
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/inspect.rs +1 -1
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/limits.rs +2 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/ls/find.rs +3 -1
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/ls/list.rs +14 -23
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/ls/tests.rs +208 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/mod.rs +12 -2
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/pipeline.rs +307 -8
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/python.rs +34 -37
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/read.rs +79 -9
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/rg/mod.rs +53 -10
- bashkit-0.13.0/crates/bashkit/src/builtins/runtime_limits.rs +110 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/shuf.rs +2 -2
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/sleep.rs +2 -2
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/sqlite/engine.rs +1 -1
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/strings.rs +32 -2
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/timeout.rs +1 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/typescript.rs +34 -38
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/vars.rs +18 -24
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/fs/backend.rs +1 -1
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/fs/memory.rs +49 -1
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/fs/mod.rs +1 -1
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/fs/mountable.rs +3 -3
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/fs/overlay.rs +96 -15
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/fs/posix.rs +1 -1
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/fs/readonly.rs +1 -1
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/fs/realfs.rs +1 -1
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/fs/traits.rs +1 -1
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/interop/fs.rs +2 -1
- bashkit-0.13.0/crates/bashkit/src/interpreter/arithmetic.rs +989 -0
- bashkit-0.13.0/crates/bashkit/src/interpreter/brace_expansion.rs +275 -0
- bashkit-0.13.0/crates/bashkit/src/interpreter/expansion.rs +1738 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/interpreter/glob.rs +134 -54
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/interpreter/mod.rs +695 -3691
- bashkit-0.13.0/crates/bashkit/src/interpreter/redirection.rs +457 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/lib.rs +252 -46
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/network/bot_auth.rs +1 -1
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/network/client.rs +227 -226
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/network/mod.rs +7 -1
- bashkit-0.13.0/crates/bashkit/src/network/transport.rs +198 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/parser/mod.rs +44 -9
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/scripted_tool/execute.rs +3 -3
- bashkit-0.13.0/crates/bashkit/src/time_compat.rs +121 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/tool.rs +65 -22
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/blackbox_security_tests.rs +22 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/builtin_registry_tests.rs +9 -0
- bashkit-0.13.0/crates/bashkit/tests/integration/exec_options_tests.rs +73 -0
- bashkit-0.13.0/crates/bashkit/tests/integration/for_in_reserved_word_tests.rs +39 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/main.rs +4 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/network_security_tests.rs +114 -34
- bashkit-0.13.0/crates/bashkit/tests/integration/parallel_sessions_tests.rs +74 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/proptest_differential.rs +56 -2
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/set_e_and_or_tests.rs +42 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/snapshot_tests.rs +49 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/threat_model_tests.rs +33 -4
- bashkit-0.13.0/crates/bashkit/tests/integration/time_compat_scan_tests.rs +82 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/command.test.sh +14 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +30 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +30 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +21 -0
- bashkit-0.13.0/crates/bashkit/tests/spec_cases/bash/wait.test.sh +52 -0
- bashkit-0.13.0/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +81 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/Cargo.toml +6 -2
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/src/lib.rs +1 -1
- bashkit-0.11.0/crates/bashkit/src/builtins/dirstack.rs +0 -482
- bashkit-0.11.0/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -19
- bashkit-0.11.0/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -52
- {bashkit-0.11.0 → bashkit-0.13.0}/README.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/bashkit/__init__.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/bashkit/deepagents.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/bashkit/langchain.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/bashkit/py.typed +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/bashkit/pydantic_ai.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/benches/file_ops.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/benches/hotpath.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/benches/results/README.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/benches/results/criterion-file_ops-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/benches/results/criterion-hotpath-attrs+shopt-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/benches/results/criterion-hotpath-perf-linux-x86_64-1779744742.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/benches/results/criterion-parallel-(none)-linux-x86_64-1773469129.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1777865268.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/benches/sqlite.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/docs/clap-builtins.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/docs/credential-injection.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/docs/custom_builtins.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/docs/hooks.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/docs/jq.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/docs/live_mounts.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/docs/logging.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/docs/python.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/docs/sqlite.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/docs/ssh.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/docs/threat-model.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/docs/typescript.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/agent_tool.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/basic.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/clap_builtin.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/clap_builtin_subcommands.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/custom_backend.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/custom_builtins.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/custom_fs.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/dump_builtins.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/git_workflow.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/live_mounts.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/python_external_functions.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/python_scripts.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/realfs_readonly.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/resource_limits.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/scripted_tool.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/show_tool_output.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/sqlite_basic.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/sqlite_workflow.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/ssh_supabase.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/streaming_output.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/text_files.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/text_processing.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/typescript_scripts.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/examples/virtual_identity.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/out file.txt +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/alias.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/assert.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/awk/interpreter.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/awk/mod.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/awk/parser.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/awk/tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/base64.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/bc.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/caller.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/cat.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/checksum.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/clap_env.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/clear.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/column.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/comm.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/compgen.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/csv.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/cuttr.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/diff.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/disk.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/dotenv.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/echo.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/environ.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/envsubst.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/expand.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/export.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/expr.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/fc.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/flow.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/fold.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/cat_args.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/extendedbigdecimal.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/format/argument.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/format/escape.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/format/human.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/format/mod.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/format/num_format.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/format/spec.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/format_support.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/ls_args.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/mktemp_args.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/mod.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/num_parser.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/od_args.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/readlink_args.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/realpath_args.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/shuf_args.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/stat_args.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/tac_args.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/tee_args.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/generated/truncate_args.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/git/client.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/git/cmd.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/git/config.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/git/mod.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/grep.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/headtail.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/help.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/helpers.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/hextools.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/http.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/iconv.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/introspect.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/join.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/jq/args.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/jq/compat.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/jq/convert.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/jq/errors.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/jq/format.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/jq/mod.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/jq/regex_compat.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/jq/tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/json.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/log.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/ls/glob.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/ls/mod.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/ls/rmdir.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/mapfile.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/navigation.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/nl.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/numfmt.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/parallel.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/paste.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/patch.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/path.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/printf.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/retry.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/search_common.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/sed.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/semver.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/seq.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/sortuniq.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/source.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/split.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/sqlite/dot_commands.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/sqlite/formatter.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/sqlite/mod.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/sqlite/parser.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/sqlite/tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/sqlite/vfs_io.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/ssh/allowlist.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/ssh/client.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/ssh/cmd.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/ssh/config.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/ssh/handler.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/ssh/mod.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/ssh/russh_handler.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/system.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/template.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/textrev.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/tomlq.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/trap.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/tree.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/truncate.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/verify.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/wait.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/wc.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/yaml.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/yes.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/builtins/zip_cmd.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/credential.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/error.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/fs/limits.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/fs/search.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/hooks.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/interop/mod.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/interpreter/jobs.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/interpreter/state.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/limits.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/logging_impl.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/network/allowlist.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/parser/ast.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/parser/budget.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/parser/lexer.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/parser/span.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/parser/tokens.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/scripted_tool/extension.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/scripted_tool/mod.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/snapshot.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/testing.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/tool_def.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/src/trace.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/agent_skills_publication_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/allexport_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/awk_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/awk_newline_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/awk_pattern_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/awk_printf_expr_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/awk_range_pattern_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/background_exec_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/base64_binary_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/bash_source_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/builtin_error_security_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/byte_range_panic_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/cancellation_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/cmdsub_quote_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/compgen_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/coproc_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/coreutils_differential_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/credential_injection_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/custom_builtins_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/custom_fs_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/dev_null_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/final_env_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/find_multi_path_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/git_advanced_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/git_inspection_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/git_integration_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/git_remote_security_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/git_security_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/harness_example_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/history_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/issue_1175_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/issue_1776_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/issue_1777_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/issue_274_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/issue_275_279_282_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/issue_276_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/issue_277_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/issue_289_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/issue_290_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/issue_291_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/issue_853_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/issue_872_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/issue_873_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/issue_875_test.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/jq_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/limitations_doc_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/limitations_evidence_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/live_mount_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/mkfifo_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/nested_subscript_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/output_truncation_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/python_integration_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/python_security_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/regex_limit_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/release_profile_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/script_execution_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/security_audit_pocs.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/shuf_resource_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/skills_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/source_function_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/spec_runner.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/spec_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/sqlite_compat_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/sqlite_differential_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/sqlite_fuzz_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/sqlite_integration_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/sqlite_security_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/stack_overflow_regression_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/subst_depth_limit_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/symlink_overlay_security_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/threat_model_doc_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/tty_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/typescript_integration_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/typescript_security_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/unicode_security_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/unset_function_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/urandom_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/integration/workflow_security_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/logging_security_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/proptest_security.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/realfs_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/cat.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/mktemp.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/od.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/readlink.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/shuf.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/truncate.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/README.md +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/examples/bash_basics.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/examples/data_pipeline.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/examples/llm_tool.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/_bashkit_categories.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/_security_advanced.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/_security_core.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_basic.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_builtins.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_control_flow.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_custom_builtin_fs.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_error_handling.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_fastapi_integration.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_integration.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_network_config.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_network_credentials.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_python_security.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_scripts.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_security.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_sqlite.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_teardown_determinism.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/crates/bashkit-python/tests/test_vfs.py +0 -0
- {bashkit-0.11.0 → bashkit-0.13.0}/pyproject.toml +0 -0
|
@@ -77,9 +77,9 @@ dependencies = [
|
|
|
77
77
|
|
|
78
78
|
[[package]]
|
|
79
79
|
name = "aes-gcm"
|
|
80
|
-
version = "0.11.0
|
|
80
|
+
version = "0.11.0"
|
|
81
81
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
-
checksum = "
|
|
82
|
+
checksum = "fdf011db2e21ce0d575593d749db5554b47fed37aff429e4dc50bc91ac93a028"
|
|
83
83
|
dependencies = [
|
|
84
84
|
"aead 0.6.0",
|
|
85
85
|
"aes 0.9.1",
|
|
@@ -211,9 +211,9 @@ dependencies = [
|
|
|
211
211
|
|
|
212
212
|
[[package]]
|
|
213
213
|
name = "anyhow"
|
|
214
|
-
version = "1.0.
|
|
214
|
+
version = "1.0.103"
|
|
215
215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
-
checksum = "
|
|
216
|
+
checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
|
|
217
217
|
|
|
218
218
|
[[package]]
|
|
219
219
|
name = "arc-swap"
|
|
@@ -347,7 +347,7 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
347
347
|
|
|
348
348
|
[[package]]
|
|
349
349
|
name = "bashkit"
|
|
350
|
-
version = "0.
|
|
350
|
+
version = "0.13.0"
|
|
351
351
|
dependencies = [
|
|
352
352
|
"anyhow",
|
|
353
353
|
"async-trait",
|
|
@@ -363,7 +363,7 @@ dependencies = [
|
|
|
363
363
|
"flate2",
|
|
364
364
|
"futures-core",
|
|
365
365
|
"futures-util",
|
|
366
|
-
"getrandom 0.4.
|
|
366
|
+
"getrandom 0.4.3",
|
|
367
367
|
"hmac",
|
|
368
368
|
"insta",
|
|
369
369
|
"jaq-core",
|
|
@@ -375,7 +375,7 @@ dependencies = [
|
|
|
375
375
|
"os_display",
|
|
376
376
|
"pretty_assertions",
|
|
377
377
|
"proptest",
|
|
378
|
-
"rand 0.10.
|
|
378
|
+
"rand 0.10.2",
|
|
379
379
|
"regex",
|
|
380
380
|
"reqwest",
|
|
381
381
|
"russh",
|
|
@@ -394,13 +394,14 @@ dependencies = [
|
|
|
394
394
|
"turso_core",
|
|
395
395
|
"unit-prefix",
|
|
396
396
|
"url",
|
|
397
|
+
"web-time",
|
|
397
398
|
"zapcode-core",
|
|
398
399
|
"zeroize",
|
|
399
400
|
]
|
|
400
401
|
|
|
401
402
|
[[package]]
|
|
402
403
|
name = "bashkit-bench"
|
|
403
|
-
version = "0.
|
|
404
|
+
version = "0.13.0"
|
|
404
405
|
dependencies = [
|
|
405
406
|
"anyhow",
|
|
406
407
|
"bashkit",
|
|
@@ -415,7 +416,7 @@ dependencies = [
|
|
|
415
416
|
|
|
416
417
|
[[package]]
|
|
417
418
|
name = "bashkit-cli"
|
|
418
|
-
version = "0.
|
|
419
|
+
version = "0.13.0"
|
|
419
420
|
dependencies = [
|
|
420
421
|
"anyhow",
|
|
421
422
|
"bashkit",
|
|
@@ -429,7 +430,7 @@ dependencies = [
|
|
|
429
430
|
|
|
430
431
|
[[package]]
|
|
431
432
|
name = "bashkit-coreutils-port"
|
|
432
|
-
version = "0.
|
|
433
|
+
version = "0.13.0"
|
|
433
434
|
dependencies = [
|
|
434
435
|
"anyhow",
|
|
435
436
|
"prettyplease",
|
|
@@ -443,13 +444,13 @@ dependencies = [
|
|
|
443
444
|
|
|
444
445
|
[[package]]
|
|
445
446
|
name = "bashkit-eval"
|
|
446
|
-
version = "0.
|
|
447
|
+
version = "0.13.0"
|
|
447
448
|
dependencies = [
|
|
448
449
|
"anyhow",
|
|
449
450
|
"async-trait",
|
|
450
451
|
"bashkit",
|
|
451
452
|
"chrono",
|
|
452
|
-
"
|
|
453
|
+
"mira-eval",
|
|
453
454
|
"regex",
|
|
454
455
|
"reqwest",
|
|
455
456
|
"rustls",
|
|
@@ -460,7 +461,7 @@ dependencies = [
|
|
|
460
461
|
|
|
461
462
|
[[package]]
|
|
462
463
|
name = "bashkit-js"
|
|
463
|
-
version = "0.
|
|
464
|
+
version = "0.13.0"
|
|
464
465
|
dependencies = [
|
|
465
466
|
"bashkit",
|
|
466
467
|
"napi",
|
|
@@ -472,7 +473,7 @@ dependencies = [
|
|
|
472
473
|
|
|
473
474
|
[[package]]
|
|
474
475
|
name = "bashkit-python"
|
|
475
|
-
version = "0.
|
|
476
|
+
version = "0.13.0"
|
|
476
477
|
dependencies = [
|
|
477
478
|
"bashkit",
|
|
478
479
|
"num-bigint",
|
|
@@ -1057,9 +1058,9 @@ dependencies = [
|
|
|
1057
1058
|
|
|
1058
1059
|
[[package]]
|
|
1059
1060
|
name = "crossbeam-epoch"
|
|
1060
|
-
version = "0.9.
|
|
1061
|
+
version = "0.9.20"
|
|
1061
1062
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
-
checksum = "
|
|
1063
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
1063
1064
|
dependencies = [
|
|
1064
1065
|
"crossbeam-utils",
|
|
1065
1066
|
]
|
|
@@ -1088,13 +1089,13 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
|
1088
1089
|
|
|
1089
1090
|
[[package]]
|
|
1090
1091
|
name = "crypto-bigint"
|
|
1091
|
-
version = "0.7.
|
|
1092
|
+
version = "0.7.5"
|
|
1092
1093
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1093
|
-
checksum = "
|
|
1094
|
+
checksum = "1a52aa3fcda4e6302a9f48734f234d35d4721b96f8fe07d073f07ce9df4f0271"
|
|
1094
1095
|
dependencies = [
|
|
1095
1096
|
"cpubits",
|
|
1096
1097
|
"ctutils",
|
|
1097
|
-
"getrandom 0.4.
|
|
1098
|
+
"getrandom 0.4.3",
|
|
1098
1099
|
"hybrid-array",
|
|
1099
1100
|
"num-traits",
|
|
1100
1101
|
"rand_core 0.10.1",
|
|
@@ -1120,7 +1121,7 @@ version = "0.2.2"
|
|
|
1120
1121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
1122
|
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
1122
1123
|
dependencies = [
|
|
1123
|
-
"getrandom 0.4.
|
|
1124
|
+
"getrandom 0.4.3",
|
|
1124
1125
|
"hybrid-array",
|
|
1125
1126
|
"rand_core 0.10.1",
|
|
1126
1127
|
]
|
|
@@ -1187,9 +1188,9 @@ dependencies = [
|
|
|
1187
1188
|
|
|
1188
1189
|
[[package]]
|
|
1189
1190
|
name = "curve25519-dalek"
|
|
1190
|
-
version = "5.0.0-rc.
|
|
1191
|
+
version = "5.0.0-rc.1"
|
|
1191
1192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
-
checksum = "
|
|
1193
|
+
checksum = "c906a87e53a36ff795d72e06e8162a83c5436e3ea89e942a9cb9fc083f0a384f"
|
|
1193
1194
|
dependencies = [
|
|
1194
1195
|
"cfg-if",
|
|
1195
1196
|
"cpufeatures 0.3.0",
|
|
@@ -1329,9 +1330,9 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
|
1329
1330
|
|
|
1330
1331
|
[[package]]
|
|
1331
1332
|
name = "ecdsa"
|
|
1332
|
-
version = "0.17.0
|
|
1333
|
+
version = "0.17.0"
|
|
1333
1334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
-
checksum = "
|
|
1335
|
+
checksum = "c0681a4fc24c767085329728d8dfba959af91228aa4610cca4f8ce317ba46ae0"
|
|
1335
1336
|
dependencies = [
|
|
1336
1337
|
"der 0.8.0",
|
|
1337
1338
|
"digest 0.11.3",
|
|
@@ -1379,11 +1380,11 @@ dependencies = [
|
|
|
1379
1380
|
|
|
1380
1381
|
[[package]]
|
|
1381
1382
|
name = "ed25519-dalek"
|
|
1382
|
-
version = "3.0.0-rc.
|
|
1383
|
+
version = "3.0.0-rc.1"
|
|
1383
1384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
-
checksum = "
|
|
1385
|
+
checksum = "1685663e23882cd8517dcbcb1c23a6ebff4433c22dfb681d760219b62cd1b849"
|
|
1385
1386
|
dependencies = [
|
|
1386
|
-
"curve25519-dalek 5.0.0-rc.
|
|
1387
|
+
"curve25519-dalek 5.0.0-rc.1",
|
|
1387
1388
|
"ed25519 3.0.0",
|
|
1388
1389
|
"rand_core 0.10.1",
|
|
1389
1390
|
"serde",
|
|
@@ -1401,9 +1402,9 @@ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
|
1401
1402
|
|
|
1402
1403
|
[[package]]
|
|
1403
1404
|
name = "elliptic-curve"
|
|
1404
|
-
version = "0.14.
|
|
1405
|
+
version = "0.14.1"
|
|
1405
1406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
-
checksum = "
|
|
1407
|
+
checksum = "9d65aa39b3a5c1c9c1b745c9a019234bb7a21b77abcb4f4d266d706e2d577d65"
|
|
1407
1408
|
dependencies = [
|
|
1408
1409
|
"base16ct",
|
|
1409
1410
|
"crypto-bigint",
|
|
@@ -1413,7 +1414,6 @@ dependencies = [
|
|
|
1413
1414
|
"group",
|
|
1414
1415
|
"hkdf",
|
|
1415
1416
|
"hybrid-array",
|
|
1416
|
-
"once_cell",
|
|
1417
1417
|
"pem-rfc7468",
|
|
1418
1418
|
"pkcs8 0.11.0",
|
|
1419
1419
|
"rand_core 0.10.1",
|
|
@@ -1796,17 +1796,15 @@ dependencies = [
|
|
|
1796
1796
|
|
|
1797
1797
|
[[package]]
|
|
1798
1798
|
name = "getrandom"
|
|
1799
|
-
version = "0.4.
|
|
1799
|
+
version = "0.4.3"
|
|
1800
1800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
-
checksum = "
|
|
1801
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
1802
1802
|
dependencies = [
|
|
1803
1803
|
"cfg-if",
|
|
1804
1804
|
"js-sys",
|
|
1805
1805
|
"libc",
|
|
1806
1806
|
"r-efi 6.0.0",
|
|
1807
1807
|
"rand_core 0.10.1",
|
|
1808
|
-
"wasip2",
|
|
1809
|
-
"wasip3",
|
|
1810
1808
|
"wasm-bindgen",
|
|
1811
1809
|
]
|
|
1812
1810
|
|
|
@@ -1860,15 +1858,6 @@ dependencies = [
|
|
|
1860
1858
|
"byteorder",
|
|
1861
1859
|
]
|
|
1862
1860
|
|
|
1863
|
-
[[package]]
|
|
1864
|
-
name = "hashbrown"
|
|
1865
|
-
version = "0.15.5"
|
|
1866
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
-
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1868
|
-
dependencies = [
|
|
1869
|
-
"foldhash 0.1.5",
|
|
1870
|
-
]
|
|
1871
|
-
|
|
1872
1861
|
[[package]]
|
|
1873
1862
|
name = "hashbrown"
|
|
1874
1863
|
version = "0.16.1"
|
|
@@ -1998,9 +1987,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
|
1998
1987
|
|
|
1999
1988
|
[[package]]
|
|
2000
1989
|
name = "hybrid-array"
|
|
2001
|
-
version = "0.4.
|
|
1990
|
+
version = "0.4.13"
|
|
2002
1991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
-
checksum = "
|
|
1992
|
+
checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
|
|
2004
1993
|
dependencies = [
|
|
2005
1994
|
"ctutils",
|
|
2006
1995
|
"subtle",
|
|
@@ -2172,12 +2161,6 @@ dependencies = [
|
|
|
2172
2161
|
"zerovec",
|
|
2173
2162
|
]
|
|
2174
2163
|
|
|
2175
|
-
[[package]]
|
|
2176
|
-
name = "id-arena"
|
|
2177
|
-
version = "2.3.0"
|
|
2178
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2179
|
-
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
2180
|
-
|
|
2181
2164
|
[[package]]
|
|
2182
2165
|
name = "idna"
|
|
2183
2166
|
version = "1.1.0"
|
|
@@ -2250,7 +2233,7 @@ checksum = "ae8e22120c32fb4d19ec55fba35015f57095cd95a2e3b732e44457f5915b2ee8"
|
|
|
2250
2233
|
dependencies = [
|
|
2251
2234
|
"num-integer",
|
|
2252
2235
|
"num-traits",
|
|
2253
|
-
"rand 0.10.
|
|
2236
|
+
"rand 0.10.2",
|
|
2254
2237
|
"rand_core 0.10.1",
|
|
2255
2238
|
]
|
|
2256
2239
|
|
|
@@ -2269,6 +2252,15 @@ dependencies = [
|
|
|
2269
2252
|
"memoffset",
|
|
2270
2253
|
]
|
|
2271
2254
|
|
|
2255
|
+
[[package]]
|
|
2256
|
+
name = "inventory"
|
|
2257
|
+
version = "0.3.24"
|
|
2258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2259
|
+
checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
|
|
2260
|
+
dependencies = [
|
|
2261
|
+
"rustversion",
|
|
2262
|
+
]
|
|
2263
|
+
|
|
2272
2264
|
[[package]]
|
|
2273
2265
|
name = "ipnet"
|
|
2274
2266
|
version = "2.12.0"
|
|
@@ -2408,8 +2400,7 @@ dependencies = [
|
|
|
2408
2400
|
[[package]]
|
|
2409
2401
|
name = "jiter"
|
|
2410
2402
|
version = "0.15.0"
|
|
2411
|
-
source = "
|
|
2412
|
-
checksum = "7866f284df68dbc242796251ed9768bde2b58ebc4d7d32cc07cc7fd993e3ed6c"
|
|
2403
|
+
source = "git+https://github.com/pydantic/jiter?rev=6d57715e01ec78859c62fc5447073c0b5902de39#6d57715e01ec78859c62fc5447073c0b5902de39"
|
|
2413
2404
|
dependencies = [
|
|
2414
2405
|
"ahash",
|
|
2415
2406
|
"bitvec",
|
|
@@ -2516,12 +2507,6 @@ version = "1.5.0"
|
|
|
2516
2507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2517
2508
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
2518
2509
|
|
|
2519
|
-
[[package]]
|
|
2520
|
-
name = "leb128fmt"
|
|
2521
|
-
version = "0.1.0"
|
|
2522
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2523
|
-
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
2524
|
-
|
|
2525
2510
|
[[package]]
|
|
2526
2511
|
name = "lexical-parse-float"
|
|
2527
2512
|
version = "1.0.6"
|
|
@@ -2745,6 +2730,33 @@ dependencies = [
|
|
|
2745
2730
|
"windows-sys 0.61.2",
|
|
2746
2731
|
]
|
|
2747
2732
|
|
|
2733
|
+
[[package]]
|
|
2734
|
+
name = "mira-eval"
|
|
2735
|
+
version = "0.3.0"
|
|
2736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2737
|
+
checksum = "bf935bd40f8219ff9e63c4759ae0fdecc0b4630f39e43698672c27c915066872"
|
|
2738
|
+
dependencies = [
|
|
2739
|
+
"async-trait",
|
|
2740
|
+
"inventory",
|
|
2741
|
+
"mira-macros",
|
|
2742
|
+
"regex",
|
|
2743
|
+
"serde",
|
|
2744
|
+
"serde_json",
|
|
2745
|
+
"tempfile",
|
|
2746
|
+
"tokio",
|
|
2747
|
+
]
|
|
2748
|
+
|
|
2749
|
+
[[package]]
|
|
2750
|
+
name = "mira-macros"
|
|
2751
|
+
version = "0.3.0"
|
|
2752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2753
|
+
checksum = "7370b92382487f6e7e0b62b8dc4c94a504b2a8169d999fc85a87e5df448bce2c"
|
|
2754
|
+
dependencies = [
|
|
2755
|
+
"proc-macro2",
|
|
2756
|
+
"quote",
|
|
2757
|
+
"syn",
|
|
2758
|
+
]
|
|
2759
|
+
|
|
2748
2760
|
[[package]]
|
|
2749
2761
|
name = "ml-kem"
|
|
2750
2762
|
version = "0.3.2"
|
|
@@ -2811,9 +2823,9 @@ dependencies = [
|
|
|
2811
2823
|
|
|
2812
2824
|
[[package]]
|
|
2813
2825
|
name = "napi"
|
|
2814
|
-
version = "3.
|
|
2826
|
+
version = "3.10.3"
|
|
2815
2827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2816
|
-
checksum = "
|
|
2828
|
+
checksum = "0c71997d6f7ad4a756966e452426848ac27d3b37a295302d63afbbcce0270f93"
|
|
2817
2829
|
dependencies = [
|
|
2818
2830
|
"bitflags",
|
|
2819
2831
|
"ctor",
|
|
@@ -2833,9 +2845,9 @@ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
|
|
|
2833
2845
|
|
|
2834
2846
|
[[package]]
|
|
2835
2847
|
name = "napi-derive"
|
|
2836
|
-
version = "3.5.
|
|
2848
|
+
version = "3.5.9"
|
|
2837
2849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2838
|
-
checksum = "
|
|
2850
|
+
checksum = "d4ba572deef53e2c386759a8c2014175a62679d74ff83adc205c8bc0e0285727"
|
|
2839
2851
|
dependencies = [
|
|
2840
2852
|
"convert_case",
|
|
2841
2853
|
"ctor",
|
|
@@ -2847,9 +2859,9 @@ dependencies = [
|
|
|
2847
2859
|
|
|
2848
2860
|
[[package]]
|
|
2849
2861
|
name = "napi-derive-backend"
|
|
2850
|
-
version = "5.
|
|
2862
|
+
version = "5.1.1"
|
|
2851
2863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2852
|
-
checksum = "
|
|
2864
|
+
checksum = "ddd961eb2aa8965e3f29722d754f3a86907eb1984e2fbcbe3fe87b9a02d6bfba"
|
|
2853
2865
|
dependencies = [
|
|
2854
2866
|
"convert_case",
|
|
2855
2867
|
"proc-macro2",
|
|
@@ -2911,9 +2923,9 @@ dependencies = [
|
|
|
2911
2923
|
|
|
2912
2924
|
[[package]]
|
|
2913
2925
|
name = "num-bigint"
|
|
2914
|
-
version = "0.4.
|
|
2926
|
+
version = "0.4.8"
|
|
2915
2927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2916
|
-
checksum = "
|
|
2928
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
2917
2929
|
dependencies = [
|
|
2918
2930
|
"num-integer",
|
|
2919
2931
|
"num-traits",
|
|
@@ -3200,9 +3212,9 @@ dependencies = [
|
|
|
3200
3212
|
|
|
3201
3213
|
[[package]]
|
|
3202
3214
|
name = "p256"
|
|
3203
|
-
version = "0.14.0-rc.
|
|
3215
|
+
version = "0.14.0-rc.15"
|
|
3204
3216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3205
|
-
checksum = "
|
|
3217
|
+
checksum = "b6bb40a5099e2c38a09dd29321a7a7f045f165a54317679c7cdfb0cbaf8f6b1e"
|
|
3206
3218
|
dependencies = [
|
|
3207
3219
|
"ecdsa",
|
|
3208
3220
|
"elliptic-curve",
|
|
@@ -3213,9 +3225,9 @@ dependencies = [
|
|
|
3213
3225
|
|
|
3214
3226
|
[[package]]
|
|
3215
3227
|
name = "p384"
|
|
3216
|
-
version = "0.14.0-rc.
|
|
3228
|
+
version = "0.14.0-rc.15"
|
|
3217
3229
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3218
|
-
checksum = "
|
|
3230
|
+
checksum = "492f329d7eb11d22dadc988626b9ea1f503b4ab043a8b1e4e2cc4ae45dabdd70"
|
|
3219
3231
|
dependencies = [
|
|
3220
3232
|
"ecdsa",
|
|
3221
3233
|
"elliptic-curve",
|
|
@@ -3227,9 +3239,9 @@ dependencies = [
|
|
|
3227
3239
|
|
|
3228
3240
|
[[package]]
|
|
3229
3241
|
name = "p521"
|
|
3230
|
-
version = "0.14.0-rc.
|
|
3242
|
+
version = "0.14.0-rc.15"
|
|
3231
3243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3232
|
-
checksum = "
|
|
3244
|
+
checksum = "ff42e4ace5424e3b6d7cb82514be89866b85af87015f80341e37dcc21a66ce6e"
|
|
3233
3245
|
dependencies = [
|
|
3234
3246
|
"base16ct",
|
|
3235
3247
|
"ecdsa",
|
|
@@ -3270,7 +3282,7 @@ dependencies = [
|
|
|
3270
3282
|
"delegate",
|
|
3271
3283
|
"futures",
|
|
3272
3284
|
"log",
|
|
3273
|
-
"rand 0.10.
|
|
3285
|
+
"rand 0.10.2",
|
|
3274
3286
|
"sha2 0.11.0",
|
|
3275
3287
|
"thiserror",
|
|
3276
3288
|
"tokio",
|
|
@@ -3641,9 +3653,9 @@ dependencies = [
|
|
|
3641
3653
|
|
|
3642
3654
|
[[package]]
|
|
3643
3655
|
name = "primefield"
|
|
3644
|
-
version = "0.14.0
|
|
3656
|
+
version = "0.14.0"
|
|
3645
3657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3646
|
-
checksum = "
|
|
3658
|
+
checksum = "c555a6e4eb7d4e158fcb028c835c3b8642206ddc279b5c6b202ef9a8bdb592f4"
|
|
3647
3659
|
dependencies = [
|
|
3648
3660
|
"crypto-bigint",
|
|
3649
3661
|
"crypto-common 0.2.2",
|
|
@@ -3655,11 +3667,15 @@ dependencies = [
|
|
|
3655
3667
|
|
|
3656
3668
|
[[package]]
|
|
3657
3669
|
name = "primeorder"
|
|
3658
|
-
version = "0.14.0
|
|
3670
|
+
version = "0.14.0"
|
|
3659
3671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3660
|
-
checksum = "
|
|
3672
|
+
checksum = "5c9f42978c78a00e3d68f69fc03e57a234debae69da4020a4fb588fcdcd07b06"
|
|
3661
3673
|
dependencies = [
|
|
3662
3674
|
"elliptic-curve",
|
|
3675
|
+
"once_cell",
|
|
3676
|
+
"primefield",
|
|
3677
|
+
"serdect",
|
|
3678
|
+
"wnaf",
|
|
3663
3679
|
]
|
|
3664
3680
|
|
|
3665
3681
|
[[package]]
|
|
@@ -3725,9 +3741,9 @@ dependencies = [
|
|
|
3725
3741
|
|
|
3726
3742
|
[[package]]
|
|
3727
3743
|
name = "pyo3"
|
|
3728
|
-
version = "0.
|
|
3744
|
+
version = "0.29.0"
|
|
3729
3745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3730
|
-
checksum = "
|
|
3746
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
3731
3747
|
dependencies = [
|
|
3732
3748
|
"libc",
|
|
3733
3749
|
"num-bigint",
|
|
@@ -3741,9 +3757,9 @@ dependencies = [
|
|
|
3741
3757
|
|
|
3742
3758
|
[[package]]
|
|
3743
3759
|
name = "pyo3-async-runtimes"
|
|
3744
|
-
version = "0.
|
|
3760
|
+
version = "0.29.0"
|
|
3745
3761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3746
|
-
checksum = "
|
|
3762
|
+
checksum = "b3ef68daa7316a3fac65e5e18b2203f010346de1c1c53456811a2624673ab046"
|
|
3747
3763
|
dependencies = [
|
|
3748
3764
|
"futures-channel",
|
|
3749
3765
|
"futures-util",
|
|
@@ -3755,19 +3771,18 @@ dependencies = [
|
|
|
3755
3771
|
|
|
3756
3772
|
[[package]]
|
|
3757
3773
|
name = "pyo3-build-config"
|
|
3758
|
-
version = "0.
|
|
3774
|
+
version = "0.29.0"
|
|
3759
3775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3760
|
-
checksum = "
|
|
3776
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
3761
3777
|
dependencies = [
|
|
3762
|
-
"python3-dll-a",
|
|
3763
3778
|
"target-lexicon",
|
|
3764
3779
|
]
|
|
3765
3780
|
|
|
3766
3781
|
[[package]]
|
|
3767
3782
|
name = "pyo3-ffi"
|
|
3768
|
-
version = "0.
|
|
3783
|
+
version = "0.29.0"
|
|
3769
3784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3770
|
-
checksum = "
|
|
3785
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
3771
3786
|
dependencies = [
|
|
3772
3787
|
"libc",
|
|
3773
3788
|
"pyo3-build-config",
|
|
@@ -3775,9 +3790,9 @@ dependencies = [
|
|
|
3775
3790
|
|
|
3776
3791
|
[[package]]
|
|
3777
3792
|
name = "pyo3-macros"
|
|
3778
|
-
version = "0.
|
|
3793
|
+
version = "0.29.0"
|
|
3779
3794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3780
|
-
checksum = "
|
|
3795
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
3781
3796
|
dependencies = [
|
|
3782
3797
|
"proc-macro2",
|
|
3783
3798
|
"pyo3-macros-backend",
|
|
@@ -3787,26 +3802,16 @@ dependencies = [
|
|
|
3787
3802
|
|
|
3788
3803
|
[[package]]
|
|
3789
3804
|
name = "pyo3-macros-backend"
|
|
3790
|
-
version = "0.
|
|
3805
|
+
version = "0.29.0"
|
|
3791
3806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3792
|
-
checksum = "
|
|
3807
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
3793
3808
|
dependencies = [
|
|
3794
3809
|
"heck",
|
|
3795
3810
|
"proc-macro2",
|
|
3796
|
-
"pyo3-build-config",
|
|
3797
3811
|
"quote",
|
|
3798
3812
|
"syn",
|
|
3799
3813
|
]
|
|
3800
3814
|
|
|
3801
|
-
[[package]]
|
|
3802
|
-
name = "python3-dll-a"
|
|
3803
|
-
version = "0.2.15"
|
|
3804
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3805
|
-
checksum = "d80ba7540edb18890d444c5aa8e1f1f99b1bdf26fb26ae383135325f4a36042b"
|
|
3806
|
-
dependencies = [
|
|
3807
|
-
"cc",
|
|
3808
|
-
]
|
|
3809
|
-
|
|
3810
3815
|
[[package]]
|
|
3811
3816
|
name = "quick-error"
|
|
3812
3817
|
version = "1.2.3"
|
|
@@ -3815,9 +3820,9 @@ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
|
3815
3820
|
|
|
3816
3821
|
[[package]]
|
|
3817
3822
|
name = "quote"
|
|
3818
|
-
version = "1.0.
|
|
3823
|
+
version = "1.0.46"
|
|
3819
3824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3820
|
-
checksum = "
|
|
3825
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
3821
3826
|
dependencies = [
|
|
3822
3827
|
"proc-macro2",
|
|
3823
3828
|
]
|
|
@@ -3895,12 +3900,12 @@ dependencies = [
|
|
|
3895
3900
|
|
|
3896
3901
|
[[package]]
|
|
3897
3902
|
name = "rand"
|
|
3898
|
-
version = "0.10.
|
|
3903
|
+
version = "0.10.2"
|
|
3899
3904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3900
|
-
checksum = "
|
|
3905
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
3901
3906
|
dependencies = [
|
|
3902
3907
|
"chacha20",
|
|
3903
|
-
"getrandom 0.4.
|
|
3908
|
+
"getrandom 0.4.3",
|
|
3904
3909
|
"rand_core 0.10.1",
|
|
3905
3910
|
]
|
|
3906
3911
|
|
|
@@ -4080,12 +4085,12 @@ dependencies = [
|
|
|
4080
4085
|
|
|
4081
4086
|
[[package]]
|
|
4082
4087
|
name = "rfc6979"
|
|
4083
|
-
version = "0.
|
|
4088
|
+
version = "0.6.0"
|
|
4084
4089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4085
|
-
checksum = "
|
|
4090
|
+
checksum = "b4a459cddafb3fe76b31fd8f1108007566c40301feb64dc7b54656eb7388172b"
|
|
4086
4091
|
dependencies = [
|
|
4092
|
+
"crypto-bigint",
|
|
4087
4093
|
"hmac",
|
|
4088
|
-
"subtle",
|
|
4089
4094
|
]
|
|
4090
4095
|
|
|
4091
4096
|
[[package]]
|
|
@@ -4210,9 +4215,9 @@ dependencies = [
|
|
|
4210
4215
|
|
|
4211
4216
|
[[package]]
|
|
4212
4217
|
name = "russh"
|
|
4213
|
-
version = "0.
|
|
4218
|
+
version = "0.62.1"
|
|
4214
4219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4215
|
-
checksum = "
|
|
4220
|
+
checksum = "20d2039c3e50abb1ec3bdadea27098679da12a33befa9ab4e62adad9a13ebcb2"
|
|
4216
4221
|
dependencies = [
|
|
4217
4222
|
"aes 0.9.1",
|
|
4218
4223
|
"aws-lc-rs",
|
|
@@ -4224,19 +4229,19 @@ dependencies = [
|
|
|
4224
4229
|
"cipher 0.5.2",
|
|
4225
4230
|
"crypto-bigint",
|
|
4226
4231
|
"ctr 0.10.1",
|
|
4227
|
-
"curve25519-dalek 5.0.0-rc.
|
|
4232
|
+
"curve25519-dalek 5.0.0-rc.1",
|
|
4228
4233
|
"data-encoding",
|
|
4229
4234
|
"delegate",
|
|
4230
4235
|
"der 0.8.0",
|
|
4231
4236
|
"digest 0.11.3",
|
|
4232
4237
|
"ecdsa",
|
|
4233
|
-
"ed25519-dalek 3.0.0-rc.
|
|
4238
|
+
"ed25519-dalek 3.0.0-rc.1",
|
|
4234
4239
|
"elliptic-curve",
|
|
4235
4240
|
"enum_dispatch",
|
|
4236
4241
|
"flate2",
|
|
4237
4242
|
"futures",
|
|
4238
4243
|
"generic-array 1.4.3",
|
|
4239
|
-
"getrandom 0.4.
|
|
4244
|
+
"getrandom 0.4.3",
|
|
4240
4245
|
"ghash 0.6.0",
|
|
4241
4246
|
"hex-literal",
|
|
4242
4247
|
"hmac",
|
|
@@ -4257,7 +4262,7 @@ dependencies = [
|
|
|
4257
4262
|
"pkcs5",
|
|
4258
4263
|
"pkcs8 0.11.0",
|
|
4259
4264
|
"polyval 0.7.1",
|
|
4260
|
-
"rand 0.10.
|
|
4265
|
+
"rand 0.10.2",
|
|
4261
4266
|
"rand_core 0.10.1",
|
|
4262
4267
|
"rsa",
|
|
4263
4268
|
"russh-cryptovec",
|
|
@@ -4282,9 +4287,9 @@ dependencies = [
|
|
|
4282
4287
|
|
|
4283
4288
|
[[package]]
|
|
4284
4289
|
name = "russh-cryptovec"
|
|
4285
|
-
version = "0.
|
|
4290
|
+
version = "0.62.0"
|
|
4286
4291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4287
|
-
checksum = "
|
|
4292
|
+
checksum = "3aec6cb630dbe85d72ffd7bcd95f07e1bd69f9f270ee8adfa1afe443a6331438"
|
|
4288
4293
|
dependencies = [
|
|
4289
4294
|
"log",
|
|
4290
4295
|
"nix",
|
|
@@ -4344,9 +4349,9 @@ dependencies = [
|
|
|
4344
4349
|
|
|
4345
4350
|
[[package]]
|
|
4346
4351
|
name = "rustls"
|
|
4347
|
-
version = "0.23.
|
|
4352
|
+
version = "0.23.41"
|
|
4348
4353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4349
|
-
checksum = "
|
|
4354
|
+
checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
|
|
4350
4355
|
dependencies = [
|
|
4351
4356
|
"log",
|
|
4352
4357
|
"once_cell",
|
|
@@ -4436,9 +4441,9 @@ dependencies = [
|
|
|
4436
4441
|
|
|
4437
4442
|
[[package]]
|
|
4438
4443
|
name = "rustyline"
|
|
4439
|
-
version = "18.0.
|
|
4444
|
+
version = "18.0.1"
|
|
4440
4445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4441
|
-
checksum = "
|
|
4446
|
+
checksum = "53f6a737db68eb1a8ccff86b584b2fc13eca6a7bb6f78ebc7c529547e3ab9684"
|
|
4442
4447
|
dependencies = [
|
|
4443
4448
|
"bitflags",
|
|
4444
4449
|
"cfg-if",
|
|
@@ -4900,17 +4905,15 @@ dependencies = [
|
|
|
4900
4905
|
|
|
4901
4906
|
[[package]]
|
|
4902
4907
|
name = "ssh-cipher"
|
|
4903
|
-
version = "0.3.0
|
|
4908
|
+
version = "0.3.0"
|
|
4904
4909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4905
|
-
checksum = "
|
|
4910
|
+
checksum = "d801accda99469cde6d73da741422610fdf6508a72d9a69d1b55cb241c720597"
|
|
4906
4911
|
dependencies = [
|
|
4907
4912
|
"aead 0.6.0",
|
|
4908
4913
|
"aes 0.9.1",
|
|
4909
|
-
"aes-gcm 0.11.0
|
|
4910
|
-
"cbc",
|
|
4914
|
+
"aes-gcm 0.11.0",
|
|
4911
4915
|
"chacha20",
|
|
4912
4916
|
"cipher 0.5.2",
|
|
4913
|
-
"ctr 0.10.1",
|
|
4914
4917
|
"ctutils",
|
|
4915
4918
|
"des",
|
|
4916
4919
|
"poly1305",
|
|
@@ -4920,9 +4923,9 @@ dependencies = [
|
|
|
4920
4923
|
|
|
4921
4924
|
[[package]]
|
|
4922
4925
|
name = "ssh-encoding"
|
|
4923
|
-
version = "0.3.0
|
|
4926
|
+
version = "0.3.0"
|
|
4924
4927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4925
|
-
checksum = "
|
|
4928
|
+
checksum = "7b54d0ed0498daf3f78d82e00e28c8eec9d75a067c4cfbcc7a0f7d0f4077749e"
|
|
4926
4929
|
dependencies = [
|
|
4927
4930
|
"base64ct",
|
|
4928
4931
|
"bytes",
|
|
@@ -4935,14 +4938,14 @@ dependencies = [
|
|
|
4935
4938
|
|
|
4936
4939
|
[[package]]
|
|
4937
4940
|
name = "ssh-key"
|
|
4938
|
-
version = "0.7.0-rc.
|
|
4941
|
+
version = "0.7.0-rc.11"
|
|
4939
4942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4940
|
-
checksum = "
|
|
4943
|
+
checksum = "f9a32fae177b74a22aa9c5b01bf7e68b33545be32d9e381e248058d2adc15ce3"
|
|
4941
4944
|
dependencies = [
|
|
4942
4945
|
"argon2",
|
|
4943
4946
|
"bcrypt-pbkdf",
|
|
4944
4947
|
"ctutils",
|
|
4945
|
-
"ed25519-dalek 3.0.0-rc.
|
|
4948
|
+
"ed25519-dalek 3.0.0-rc.1",
|
|
4946
4949
|
"hex",
|
|
4947
4950
|
"hmac",
|
|
4948
4951
|
"p256",
|
|
@@ -5028,9 +5031,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
5028
5031
|
|
|
5029
5032
|
[[package]]
|
|
5030
5033
|
name = "syn"
|
|
5031
|
-
version = "2.0.
|
|
5034
|
+
version = "2.0.118"
|
|
5032
5035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5033
|
-
checksum = "
|
|
5036
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
5034
5037
|
dependencies = [
|
|
5035
5038
|
"proc-macro2",
|
|
5036
5039
|
"quote",
|
|
@@ -5100,7 +5103,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5100
5103
|
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
5101
5104
|
dependencies = [
|
|
5102
5105
|
"fastrand",
|
|
5103
|
-
"getrandom 0.4.
|
|
5106
|
+
"getrandom 0.4.3",
|
|
5104
5107
|
"once_cell",
|
|
5105
5108
|
"rustix",
|
|
5106
5109
|
"windows-sys 0.61.2",
|
|
@@ -5500,7 +5503,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5500
5503
|
checksum = "f9a47927d766b9ae7e3adf092d5e150dce80533615edc502641797878f190080"
|
|
5501
5504
|
dependencies = [
|
|
5502
5505
|
"chrono",
|
|
5503
|
-
"getrandom 0.4.
|
|
5506
|
+
"getrandom 0.4.3",
|
|
5504
5507
|
"turso_macros",
|
|
5505
5508
|
]
|
|
5506
5509
|
|
|
@@ -5611,12 +5614,6 @@ version = "0.2.2"
|
|
|
5611
5614
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5612
5615
|
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
5613
5616
|
|
|
5614
|
-
[[package]]
|
|
5615
|
-
name = "unicode-xid"
|
|
5616
|
-
version = "0.2.6"
|
|
5617
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5618
|
-
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
5619
|
-
|
|
5620
5617
|
[[package]]
|
|
5621
5618
|
name = "unicode_names2"
|
|
5622
5619
|
version = "1.3.0"
|
|
@@ -5713,7 +5710,7 @@ version = "1.23.3"
|
|
|
5713
5710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5714
5711
|
checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
|
|
5715
5712
|
dependencies = [
|
|
5716
|
-
"getrandom 0.4.
|
|
5713
|
+
"getrandom 0.4.3",
|
|
5717
5714
|
"js-sys",
|
|
5718
5715
|
"sha1_smol",
|
|
5719
5716
|
"wasm-bindgen",
|
|
@@ -5771,16 +5768,7 @@ version = "1.0.4+wasi-0.2.12"
|
|
|
5771
5768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5772
5769
|
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
5773
5770
|
dependencies = [
|
|
5774
|
-
"wit-bindgen
|
|
5775
|
-
]
|
|
5776
|
-
|
|
5777
|
-
[[package]]
|
|
5778
|
-
name = "wasip3"
|
|
5779
|
-
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
5780
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5781
|
-
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
5782
|
-
dependencies = [
|
|
5783
|
-
"wit-bindgen 0.51.0",
|
|
5771
|
+
"wit-bindgen",
|
|
5784
5772
|
]
|
|
5785
5773
|
|
|
5786
5774
|
[[package]]
|
|
@@ -5838,28 +5826,6 @@ dependencies = [
|
|
|
5838
5826
|
"unicode-ident",
|
|
5839
5827
|
]
|
|
5840
5828
|
|
|
5841
|
-
[[package]]
|
|
5842
|
-
name = "wasm-encoder"
|
|
5843
|
-
version = "0.244.0"
|
|
5844
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5845
|
-
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
5846
|
-
dependencies = [
|
|
5847
|
-
"leb128fmt",
|
|
5848
|
-
"wasmparser",
|
|
5849
|
-
]
|
|
5850
|
-
|
|
5851
|
-
[[package]]
|
|
5852
|
-
name = "wasm-metadata"
|
|
5853
|
-
version = "0.244.0"
|
|
5854
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5855
|
-
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
5856
|
-
dependencies = [
|
|
5857
|
-
"anyhow",
|
|
5858
|
-
"indexmap",
|
|
5859
|
-
"wasm-encoder",
|
|
5860
|
-
"wasmparser",
|
|
5861
|
-
]
|
|
5862
|
-
|
|
5863
5829
|
[[package]]
|
|
5864
5830
|
name = "wasm-streams"
|
|
5865
5831
|
version = "0.5.0"
|
|
@@ -5874,22 +5840,20 @@ dependencies = [
|
|
|
5874
5840
|
]
|
|
5875
5841
|
|
|
5876
5842
|
[[package]]
|
|
5877
|
-
name = "
|
|
5878
|
-
version = "0.
|
|
5843
|
+
name = "web-sys"
|
|
5844
|
+
version = "0.3.102"
|
|
5879
5845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5880
|
-
checksum = "
|
|
5846
|
+
checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
|
|
5881
5847
|
dependencies = [
|
|
5882
|
-
"
|
|
5883
|
-
"
|
|
5884
|
-
"indexmap",
|
|
5885
|
-
"semver",
|
|
5848
|
+
"js-sys",
|
|
5849
|
+
"wasm-bindgen",
|
|
5886
5850
|
]
|
|
5887
5851
|
|
|
5888
5852
|
[[package]]
|
|
5889
|
-
name = "web-
|
|
5890
|
-
version = "
|
|
5853
|
+
name = "web-time"
|
|
5854
|
+
version = "1.1.0"
|
|
5891
5855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5892
|
-
checksum = "
|
|
5856
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
5893
5857
|
dependencies = [
|
|
5894
5858
|
"js-sys",
|
|
5895
5859
|
"wasm-bindgen",
|
|
@@ -6133,15 +6097,6 @@ version = "1.0.3"
|
|
|
6133
6097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6134
6098
|
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
6135
6099
|
|
|
6136
|
-
[[package]]
|
|
6137
|
-
name = "wit-bindgen"
|
|
6138
|
-
version = "0.51.0"
|
|
6139
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6140
|
-
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
6141
|
-
dependencies = [
|
|
6142
|
-
"wit-bindgen-rust-macro",
|
|
6143
|
-
]
|
|
6144
|
-
|
|
6145
6100
|
[[package]]
|
|
6146
6101
|
name = "wit-bindgen"
|
|
6147
6102
|
version = "0.57.1"
|
|
@@ -6149,82 +6104,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
6149
6104
|
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
6150
6105
|
|
|
6151
6106
|
[[package]]
|
|
6152
|
-
name = "
|
|
6153
|
-
version = "0.
|
|
6154
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6155
|
-
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
6156
|
-
dependencies = [
|
|
6157
|
-
"anyhow",
|
|
6158
|
-
"heck",
|
|
6159
|
-
"wit-parser",
|
|
6160
|
-
]
|
|
6161
|
-
|
|
6162
|
-
[[package]]
|
|
6163
|
-
name = "wit-bindgen-rust"
|
|
6164
|
-
version = "0.51.0"
|
|
6165
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6166
|
-
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
6167
|
-
dependencies = [
|
|
6168
|
-
"anyhow",
|
|
6169
|
-
"heck",
|
|
6170
|
-
"indexmap",
|
|
6171
|
-
"prettyplease",
|
|
6172
|
-
"syn",
|
|
6173
|
-
"wasm-metadata",
|
|
6174
|
-
"wit-bindgen-core",
|
|
6175
|
-
"wit-component",
|
|
6176
|
-
]
|
|
6177
|
-
|
|
6178
|
-
[[package]]
|
|
6179
|
-
name = "wit-bindgen-rust-macro"
|
|
6180
|
-
version = "0.51.0"
|
|
6181
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6182
|
-
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
6183
|
-
dependencies = [
|
|
6184
|
-
"anyhow",
|
|
6185
|
-
"prettyplease",
|
|
6186
|
-
"proc-macro2",
|
|
6187
|
-
"quote",
|
|
6188
|
-
"syn",
|
|
6189
|
-
"wit-bindgen-core",
|
|
6190
|
-
"wit-bindgen-rust",
|
|
6191
|
-
]
|
|
6192
|
-
|
|
6193
|
-
[[package]]
|
|
6194
|
-
name = "wit-component"
|
|
6195
|
-
version = "0.244.0"
|
|
6196
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6197
|
-
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
6198
|
-
dependencies = [
|
|
6199
|
-
"anyhow",
|
|
6200
|
-
"bitflags",
|
|
6201
|
-
"indexmap",
|
|
6202
|
-
"log",
|
|
6203
|
-
"serde",
|
|
6204
|
-
"serde_derive",
|
|
6205
|
-
"serde_json",
|
|
6206
|
-
"wasm-encoder",
|
|
6207
|
-
"wasm-metadata",
|
|
6208
|
-
"wasmparser",
|
|
6209
|
-
"wit-parser",
|
|
6210
|
-
]
|
|
6211
|
-
|
|
6212
|
-
[[package]]
|
|
6213
|
-
name = "wit-parser"
|
|
6214
|
-
version = "0.244.0"
|
|
6107
|
+
name = "wnaf"
|
|
6108
|
+
version = "0.14.0"
|
|
6215
6109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6216
|
-
checksum = "
|
|
6110
|
+
checksum = "ab12e7090f27e2ffd9322651492942d50c2926094af30601e1964337db39daf1"
|
|
6217
6111
|
dependencies = [
|
|
6218
|
-
"
|
|
6219
|
-
"
|
|
6220
|
-
"
|
|
6221
|
-
"log",
|
|
6222
|
-
"semver",
|
|
6223
|
-
"serde",
|
|
6224
|
-
"serde_derive",
|
|
6225
|
-
"serde_json",
|
|
6226
|
-
"unicode-xid",
|
|
6227
|
-
"wasmparser",
|
|
6112
|
+
"ff",
|
|
6113
|
+
"group",
|
|
6114
|
+
"hybrid-array",
|
|
6228
6115
|
]
|
|
6229
6116
|
|
|
6230
6117
|
[[package]]
|