bashkit 0.12.0__tar.gz → 0.14.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.12.0 → bashkit-0.14.0}/Cargo.lock +452 -222
- {bashkit-0.12.0 → bashkit-0.14.0}/Cargo.toml +30 -5
- {bashkit-0.12.0 → bashkit-0.14.0}/PKG-INFO +2 -2
- {bashkit-0.12.0/crates/bashkit-python → bashkit-0.14.0}/README.md +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/Cargo.toml +15 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/README.md +19 -13
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/docs/compatibility.md +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/docs/live_mounts.md +1 -0
- bashkit-0.14.0/crates/bashkit/docs/namespace_filesystems.md +89 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/docs/threat-model.md +92 -7
- bashkit-0.14.0/crates/bashkit/examples/namespace_rebase.rs +44 -0
- bashkit-0.14.0/crates/bashkit/examples/namespace_sandbox.rs +42 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/archive.rs +2 -2
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/arg_parser.rs +82 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/curl.rs +11 -13
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/date.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/fileops.rs +2 -2
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/cat_args.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/extendedbigdecimal.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/format/argument.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/format/escape.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/format/human.rs +18 -2
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/format/mod.rs +10 -6
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/format/num_format.rs +37 -7
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/format/spec.rs +8 -17
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/ls_args.rs +1 -5
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/mktemp_args.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/mod.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/num_parser.rs +6 -6
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/od_args.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/readlink_args.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/realpath_args.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/shuf_args.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/stat_args.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/tac_args.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/tee_args.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/truncate_args.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/inspect.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/ls/find.rs +3 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/ls/list.rs +14 -23
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/ls/tests.rs +208 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/mod.rs +6 -2
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/pipeline.rs +307 -8
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/python.rs +3 -2
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/rg/mod.rs +2 -2
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/shuf.rs +2 -2
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/sleep.rs +2 -2
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/sqlite/engine.rs +8 -2
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/timeout.rs +1 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/fs/backend.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/fs/memory.rs +83 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/fs/mod.rs +4 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/fs/mountable.rs +3 -3
- bashkit-0.14.0/crates/bashkit/src/fs/namespace.rs +531 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/fs/overlay.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/fs/posix.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/fs/readonly.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/fs/realfs.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/fs/traits.rs +3 -2
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/interop/fs.rs +2 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/interpreter/glob.rs +107 -33
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/interpreter/mod.rs +54 -69
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/lib.rs +154 -42
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/network/bot_auth.rs +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/network/client.rs +227 -226
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/network/mod.rs +7 -1
- bashkit-0.14.0/crates/bashkit/src/network/transport.rs +198 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/parser/mod.rs +11 -5
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/scripted_tool/execute.rs +3 -3
- bashkit-0.14.0/crates/bashkit/src/time_compat.rs +121 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/tool.rs +1 -1
- bashkit-0.14.0/crates/bashkit/tests/integration/for_in_reserved_word_tests.rs +39 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/main.rs +3 -0
- bashkit-0.14.0/crates/bashkit/tests/integration/namespace_fs_tests.rs +420 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/network_security_tests.rs +114 -34
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/proptest_differential.rs +59 -2
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/sqlite_integration_tests.rs +34 -2
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/threat_model_doc_tests.rs +56 -0
- bashkit-0.14.0/crates/bashkit/tests/integration/time_compat_scan_tests.rs +82 -0
- bashkit-0.14.0/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +81 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/Cargo.toml +6 -2
- {bashkit-0.12.0 → bashkit-0.14.0/crates/bashkit-python}/README.md +1 -1
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/src/lib.rs +1 -1
- bashkit-0.12.0/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -52
- {bashkit-0.12.0 → bashkit-0.14.0}/bashkit/__init__.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/bashkit/_bashkit.pyi +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/bashkit/deepagents.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/bashkit/langchain.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/bashkit/py.typed +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/bashkit/pydantic_ai.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/benches/file_ops.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/benches/hotpath.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/benches/parallel_execution.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/benches/results/README.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/benches/results/criterion-file_ops-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/benches/results/criterion-hotpath-attrs+shopt-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/benches/results/criterion-hotpath-perf-linux-x86_64-1779744742.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/benches/results/criterion-parallel-(none)-linux-x86_64-1773469129.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782162173.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782168239.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1777865268.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/benches/sqlite.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/docs/clap-builtins.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/docs/credential-injection.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/docs/custom_builtins.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/docs/hooks.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/docs/jq.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/docs/logging.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/docs/python.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/docs/sqlite.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/docs/ssh.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/docs/typescript.md +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/agent_tool.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/basic.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/clap_builtin.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/clap_builtin_subcommands.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/custom_backend.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/custom_builtins.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/custom_fs.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/dump_builtins.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/git_workflow.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/live_mounts.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/python_external_functions.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/python_scripts.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/realfs_readonly.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/resource_limits.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/scripted_tool.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/show_tool_output.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/sqlite_basic.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/sqlite_workflow.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/ssh_supabase.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/streaming_output.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/text_files.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/text_processing.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/typescript_scripts.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/examples/virtual_identity.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/out file.txt +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/alias.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/assert.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/awk/interpreter.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/awk/mod.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/awk/parser.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/awk/tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/base64.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/bc.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/caller.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/cat.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/checksum.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/clap_env.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/clear.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/column.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/comm.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/compgen.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/csv.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/cuttr.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/diff.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/dirstack.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/disk.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/dotenv.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/echo.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/environ.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/envsubst.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/expand.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/export.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/expr.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/fc.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/flow.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/fold.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/generated/format_support.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/git/client.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/git/cmd.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/git/config.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/git/mod.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/grep.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/headtail.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/help.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/helpers.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/hextools.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/http.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/iconv.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/introspect.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/join.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/jq/args.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/jq/compat.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/jq/convert.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/jq/errors.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/jq/format.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/jq/mod.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/jq/regex_compat.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/jq/tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/json.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/limits.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/log.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/ls/glob.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/ls/mod.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/ls/rmdir.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/mapfile.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/navigation.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/nl.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/numfmt.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/parallel.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/paste.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/patch.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/path.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/printf.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/read.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/retry.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/runtime_limits.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/search_common.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/sed.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/semver.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/seq.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/sortuniq.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/source.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/split.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/sqlite/dot_commands.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/sqlite/formatter.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/sqlite/mod.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/sqlite/parser.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/sqlite/tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/sqlite/vfs_io.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/ssh/allowlist.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/ssh/client.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/ssh/cmd.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/ssh/config.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/ssh/handler.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/ssh/mod.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/ssh/russh_handler.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/strings.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/system.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/template.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/textrev.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/tomlq.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/trap.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/tree.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/truncate.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/typescript.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/vars.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/verify.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/wait.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/wc.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/yaml.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/yes.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/builtins/zip_cmd.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/credential.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/error.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/fs/limits.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/fs/search.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/hooks.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/interop/mod.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/interpreter/arithmetic.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/interpreter/brace_expansion.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/interpreter/expansion.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/interpreter/jobs.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/interpreter/redirection.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/interpreter/state.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/limits.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/logging_impl.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/network/allowlist.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/parser/ast.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/parser/budget.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/parser/lexer.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/parser/span.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/parser/tokens.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/scripted_tool/extension.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/scripted_tool/mod.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/snapshot.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/testing.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/tool_def.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/src/trace.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/agent_skills_publication_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/allexport_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/awk_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/awk_newline_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/awk_pattern_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/awk_printf_expr_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/awk_range_pattern_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/background_exec_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/base64_binary_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/bash_source_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/blackbox_security_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/builtin_error_security_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/builtin_registry_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/byte_range_panic_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/cancellation_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/cmdsub_quote_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/compgen_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/coproc_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/coreutils_differential_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/credential_injection_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/custom_builtins_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/custom_fs_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/dev_null_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/exec_options_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/final_env_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/find_multi_path_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/git_advanced_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/git_inspection_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/git_integration_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/git_remote_security_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/git_security_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/harness_example_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/history_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/issue_1175_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/issue_1776_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/issue_1777_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/issue_274_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/issue_275_279_282_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/issue_276_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/issue_277_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/issue_289_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/issue_290_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/issue_291_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/issue_853_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/issue_872_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/issue_873_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/issue_875_test.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/jq_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/limitations_doc_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/limitations_evidence_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/live_mount_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/mkfifo_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/nested_subscript_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/output_truncation_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/parallel_sessions_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/python_integration_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/python_security_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/regex_limit_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/release_profile_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/script_execution_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/security_audit_pocs.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/set_e_and_or_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/shuf_resource_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/skills_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/snapshot_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/source_function_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/spec_runner.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/spec_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/sqlite_compat_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/sqlite_differential_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/sqlite_fuzz_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/sqlite_security_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/stack_overflow_regression_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/subst_depth_limit_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/symlink_overlay_security_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/threat_model_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/tty_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/typescript_integration_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/typescript_security_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/unicode_security_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/unset_function_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/urandom_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/integration/workflow_security_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/logging_security_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/proptest_security.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/realfs_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/cat.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/mktemp.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/od.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/readlink.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/shuf.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/truncate.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/examples/bash_basics.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/examples/data_pipeline.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/examples/llm_tool.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/_bashkit_categories.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/_security_advanced.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/_security_core.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_basic.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_builtins.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_control_flow.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_custom_builtin_fs.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_error_handling.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_fastapi_integration.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_integration.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_network_config.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_network_credentials.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_python_security.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_scripts.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_security.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_sqlite.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_teardown_determinism.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/crates/bashkit-python/tests/test_vfs.py +0 -0
- {bashkit-0.12.0 → bashkit-0.14.0}/pyproject.toml +0 -0
|
@@ -20,9 +20,9 @@ dependencies = [
|
|
|
20
20
|
|
|
21
21
|
[[package]]
|
|
22
22
|
name = "aead"
|
|
23
|
-
version = "0.6.
|
|
23
|
+
version = "0.6.1"
|
|
24
24
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
-
checksum = "
|
|
25
|
+
checksum = "1973cfbc1a2daf9cf550e74e1f088c28e7f7d8c1e1418fb6c9dc5184b7e84c99"
|
|
26
26
|
dependencies = [
|
|
27
27
|
"crypto-common 0.2.2",
|
|
28
28
|
"inout 0.2.2",
|
|
@@ -77,11 +77,11 @@ 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
|
-
"aead 0.6.
|
|
84
|
+
"aead 0.6.1",
|
|
85
85
|
"aes 0.9.1",
|
|
86
86
|
"cipher 0.5.2",
|
|
87
87
|
"ctr 0.10.1",
|
|
@@ -128,6 +128,12 @@ version = "0.2.21"
|
|
|
128
128
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
129
|
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
130
130
|
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "allocator-api2"
|
|
133
|
+
version = "0.4.0"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "c880a97d28a3681c0267bd29cff89621202715b065127cd445fa0f0fe0aa2880"
|
|
136
|
+
|
|
131
137
|
[[package]]
|
|
132
138
|
name = "android_system_properties"
|
|
133
139
|
version = "0.1.5"
|
|
@@ -211,15 +217,15 @@ dependencies = [
|
|
|
211
217
|
|
|
212
218
|
[[package]]
|
|
213
219
|
name = "anyhow"
|
|
214
|
-
version = "1.0.
|
|
220
|
+
version = "1.0.103"
|
|
215
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
-
checksum = "
|
|
222
|
+
checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
|
|
217
223
|
|
|
218
224
|
[[package]]
|
|
219
225
|
name = "arc-swap"
|
|
220
|
-
version = "1.9.
|
|
226
|
+
version = "1.9.2"
|
|
221
227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
-
checksum = "
|
|
228
|
+
checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b"
|
|
223
229
|
dependencies = [
|
|
224
230
|
"rustversion",
|
|
225
231
|
]
|
|
@@ -236,6 +242,26 @@ dependencies = [
|
|
|
236
242
|
"password-hash",
|
|
237
243
|
]
|
|
238
244
|
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "aristo"
|
|
247
|
+
version = "0.4.1"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "fcdeefa800110050103e2459a2f8dbdbd560ad046e30f1f87e24ce19c2cb8bde"
|
|
250
|
+
dependencies = [
|
|
251
|
+
"aristo-macros",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "aristo-macros"
|
|
256
|
+
version = "0.4.1"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "d64a66d21a80182b35b1741997a6d2456911f54b7eb1918aa4e2382fc205268d"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"proc-macro2",
|
|
261
|
+
"quote",
|
|
262
|
+
"syn",
|
|
263
|
+
]
|
|
264
|
+
|
|
239
265
|
[[package]]
|
|
240
266
|
name = "assoc"
|
|
241
267
|
version = "0.1.3"
|
|
@@ -306,9 +332,9 @@ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
|
306
332
|
|
|
307
333
|
[[package]]
|
|
308
334
|
name = "aws-lc-rs"
|
|
309
|
-
version = "1.17.
|
|
335
|
+
version = "1.17.1"
|
|
310
336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
-
checksum = "
|
|
337
|
+
checksum = "4342d8937fc7e5dd9b1c60292261c0670c882a2cd1719cfc11b1af41731e32ad"
|
|
312
338
|
dependencies = [
|
|
313
339
|
"aws-lc-sys",
|
|
314
340
|
"untrusted 0.7.1",
|
|
@@ -317,14 +343,15 @@ dependencies = [
|
|
|
317
343
|
|
|
318
344
|
[[package]]
|
|
319
345
|
name = "aws-lc-sys"
|
|
320
|
-
version = "0.
|
|
346
|
+
version = "0.42.0"
|
|
321
347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
-
checksum = "
|
|
348
|
+
checksum = "6d9ceb1da931507a12f4fccea479dccd00da1943e1b4ae72d8e502d707361444"
|
|
323
349
|
dependencies = [
|
|
324
350
|
"cc",
|
|
325
351
|
"cmake",
|
|
326
352
|
"dunce",
|
|
327
353
|
"fs_extra",
|
|
354
|
+
"pkg-config",
|
|
328
355
|
]
|
|
329
356
|
|
|
330
357
|
[[package]]
|
|
@@ -347,13 +374,13 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
347
374
|
|
|
348
375
|
[[package]]
|
|
349
376
|
name = "bashkit"
|
|
350
|
-
version = "0.
|
|
377
|
+
version = "0.14.0"
|
|
351
378
|
dependencies = [
|
|
352
379
|
"anyhow",
|
|
353
380
|
"async-trait",
|
|
354
381
|
"base64",
|
|
355
382
|
"bigdecimal",
|
|
356
|
-
"bitflags",
|
|
383
|
+
"bitflags 2.13.0",
|
|
357
384
|
"chrono",
|
|
358
385
|
"clap",
|
|
359
386
|
"criterion",
|
|
@@ -375,7 +402,7 @@ dependencies = [
|
|
|
375
402
|
"os_display",
|
|
376
403
|
"pretty_assertions",
|
|
377
404
|
"proptest",
|
|
378
|
-
"rand 0.10.
|
|
405
|
+
"rand 0.10.2",
|
|
379
406
|
"regex",
|
|
380
407
|
"reqwest",
|
|
381
408
|
"russh",
|
|
@@ -394,13 +421,14 @@ dependencies = [
|
|
|
394
421
|
"turso_core",
|
|
395
422
|
"unit-prefix",
|
|
396
423
|
"url",
|
|
424
|
+
"web-time",
|
|
397
425
|
"zapcode-core",
|
|
398
426
|
"zeroize",
|
|
399
427
|
]
|
|
400
428
|
|
|
401
429
|
[[package]]
|
|
402
430
|
name = "bashkit-bench"
|
|
403
|
-
version = "0.
|
|
431
|
+
version = "0.14.0"
|
|
404
432
|
dependencies = [
|
|
405
433
|
"anyhow",
|
|
406
434
|
"bashkit",
|
|
@@ -415,7 +443,7 @@ dependencies = [
|
|
|
415
443
|
|
|
416
444
|
[[package]]
|
|
417
445
|
name = "bashkit-cli"
|
|
418
|
-
version = "0.
|
|
446
|
+
version = "0.14.0"
|
|
419
447
|
dependencies = [
|
|
420
448
|
"anyhow",
|
|
421
449
|
"bashkit",
|
|
@@ -429,7 +457,7 @@ dependencies = [
|
|
|
429
457
|
|
|
430
458
|
[[package]]
|
|
431
459
|
name = "bashkit-coreutils-port"
|
|
432
|
-
version = "0.
|
|
460
|
+
version = "0.14.0"
|
|
433
461
|
dependencies = [
|
|
434
462
|
"anyhow",
|
|
435
463
|
"prettyplease",
|
|
@@ -443,13 +471,13 @@ dependencies = [
|
|
|
443
471
|
|
|
444
472
|
[[package]]
|
|
445
473
|
name = "bashkit-eval"
|
|
446
|
-
version = "0.
|
|
474
|
+
version = "0.14.0"
|
|
447
475
|
dependencies = [
|
|
448
476
|
"anyhow",
|
|
449
477
|
"async-trait",
|
|
450
478
|
"bashkit",
|
|
451
479
|
"chrono",
|
|
452
|
-
"
|
|
480
|
+
"mira-eval",
|
|
453
481
|
"regex",
|
|
454
482
|
"reqwest",
|
|
455
483
|
"rustls",
|
|
@@ -460,7 +488,7 @@ dependencies = [
|
|
|
460
488
|
|
|
461
489
|
[[package]]
|
|
462
490
|
name = "bashkit-js"
|
|
463
|
-
version = "0.
|
|
491
|
+
version = "0.14.0"
|
|
464
492
|
dependencies = [
|
|
465
493
|
"bashkit",
|
|
466
494
|
"napi",
|
|
@@ -472,7 +500,7 @@ dependencies = [
|
|
|
472
500
|
|
|
473
501
|
[[package]]
|
|
474
502
|
name = "bashkit-python"
|
|
475
|
-
version = "0.
|
|
503
|
+
version = "0.14.0"
|
|
476
504
|
dependencies = [
|
|
477
505
|
"bashkit",
|
|
478
506
|
"num-bigint",
|
|
@@ -482,6 +510,23 @@ dependencies = [
|
|
|
482
510
|
"tokio",
|
|
483
511
|
]
|
|
484
512
|
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "bashkit-wasm"
|
|
515
|
+
version = "0.14.0"
|
|
516
|
+
dependencies = [
|
|
517
|
+
"bashkit",
|
|
518
|
+
"console_error_panic_hook",
|
|
519
|
+
"futures-util",
|
|
520
|
+
"getrandom 0.4.3",
|
|
521
|
+
"js-sys",
|
|
522
|
+
"send_wrapper",
|
|
523
|
+
"serde",
|
|
524
|
+
"serde-wasm-bindgen",
|
|
525
|
+
"serde_json",
|
|
526
|
+
"wasm-bindgen",
|
|
527
|
+
"wasm-bindgen-futures",
|
|
528
|
+
]
|
|
529
|
+
|
|
485
530
|
[[package]]
|
|
486
531
|
name = "bcrypt-pbkdf"
|
|
487
532
|
version = "0.11.0"
|
|
@@ -521,6 +566,12 @@ version = "0.8.0"
|
|
|
521
566
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
567
|
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
523
568
|
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "bitflags"
|
|
571
|
+
version = "1.3.2"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
574
|
+
|
|
524
575
|
[[package]]
|
|
525
576
|
name = "bitflags"
|
|
526
577
|
version = "2.13.0"
|
|
@@ -529,9 +580,9 @@ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
|
529
580
|
|
|
530
581
|
[[package]]
|
|
531
582
|
name = "bitvec"
|
|
532
|
-
version = "1.
|
|
583
|
+
version = "1.1.1"
|
|
533
584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
-
checksum = "
|
|
585
|
+
checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
|
|
535
586
|
dependencies = [
|
|
536
587
|
"funty",
|
|
537
588
|
"radium",
|
|
@@ -597,13 +648,13 @@ dependencies = [
|
|
|
597
648
|
|
|
598
649
|
[[package]]
|
|
599
650
|
name = "bstr"
|
|
600
|
-
version = "1.12.
|
|
651
|
+
version = "1.12.3"
|
|
601
652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
-
checksum = "
|
|
653
|
+
checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
|
|
603
654
|
dependencies = [
|
|
604
655
|
"memchr",
|
|
605
656
|
"regex-automata",
|
|
606
|
-
"
|
|
657
|
+
"serde_core",
|
|
607
658
|
]
|
|
608
659
|
|
|
609
660
|
[[package]]
|
|
@@ -646,9 +697,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
646
697
|
|
|
647
698
|
[[package]]
|
|
648
699
|
name = "bytes"
|
|
649
|
-
version = "1.
|
|
700
|
+
version = "1.12.1"
|
|
650
701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
-
checksum = "
|
|
702
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
652
703
|
|
|
653
704
|
[[package]]
|
|
654
705
|
name = "cast"
|
|
@@ -676,9 +727,9 @@ dependencies = [
|
|
|
676
727
|
|
|
677
728
|
[[package]]
|
|
678
729
|
name = "cc"
|
|
679
|
-
version = "1.2.
|
|
730
|
+
version = "1.2.66"
|
|
680
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
-
checksum = "
|
|
732
|
+
checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
|
|
682
733
|
dependencies = [
|
|
683
734
|
"find-msvc-tools",
|
|
684
735
|
"jobserver",
|
|
@@ -706,9 +757,9 @@ checksum = "18758054972164c3264f7c8386f5fc6da6114cb46b619fd365d4e3b2dc3ae487"
|
|
|
706
757
|
|
|
707
758
|
[[package]]
|
|
708
759
|
name = "chacha20"
|
|
709
|
-
version = "0.10.
|
|
760
|
+
version = "0.10.1"
|
|
710
761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
-
checksum = "
|
|
762
|
+
checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
|
|
712
763
|
dependencies = [
|
|
713
764
|
"cfg-if",
|
|
714
765
|
"cipher 0.5.2",
|
|
@@ -909,15 +960,25 @@ dependencies = [
|
|
|
909
960
|
|
|
910
961
|
[[package]]
|
|
911
962
|
name = "console"
|
|
912
|
-
version = "0.16.
|
|
963
|
+
version = "0.16.4"
|
|
913
964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
-
checksum = "
|
|
965
|
+
checksum = "4fe5f465a4f6fee88fad41b85d990f84c835335e85b5d9e6e63e0d06d28cba7c"
|
|
915
966
|
dependencies = [
|
|
916
967
|
"encode_unicode",
|
|
917
968
|
"libc",
|
|
918
969
|
"windows-sys 0.61.2",
|
|
919
970
|
]
|
|
920
971
|
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "console_error_panic_hook"
|
|
974
|
+
version = "0.1.7"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
|
|
977
|
+
dependencies = [
|
|
978
|
+
"cfg-if",
|
|
979
|
+
"wasm-bindgen",
|
|
980
|
+
]
|
|
981
|
+
|
|
921
982
|
[[package]]
|
|
922
983
|
name = "const-oid"
|
|
923
984
|
version = "0.9.6"
|
|
@@ -1047,9 +1108,9 @@ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
|
|
|
1047
1108
|
|
|
1048
1109
|
[[package]]
|
|
1049
1110
|
name = "crossbeam-deque"
|
|
1050
|
-
version = "0.8.
|
|
1111
|
+
version = "0.8.7"
|
|
1051
1112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
-
checksum = "
|
|
1113
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
1053
1114
|
dependencies = [
|
|
1054
1115
|
"crossbeam-epoch",
|
|
1055
1116
|
"crossbeam-utils",
|
|
@@ -1057,28 +1118,18 @@ dependencies = [
|
|
|
1057
1118
|
|
|
1058
1119
|
[[package]]
|
|
1059
1120
|
name = "crossbeam-epoch"
|
|
1060
|
-
version = "0.9.
|
|
1121
|
+
version = "0.9.20"
|
|
1061
1122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
-
checksum = "
|
|
1123
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
1063
1124
|
dependencies = [
|
|
1064
1125
|
"crossbeam-utils",
|
|
1065
1126
|
]
|
|
1066
1127
|
|
|
1067
|
-
[[package]]
|
|
1068
|
-
name = "crossbeam-skiplist"
|
|
1069
|
-
version = "0.1.3"
|
|
1070
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
-
checksum = "df29de440c58ca2cc6e587ec3d22347551a32435fbde9d2bff64e78a9ffa151b"
|
|
1072
|
-
dependencies = [
|
|
1073
|
-
"crossbeam-epoch",
|
|
1074
|
-
"crossbeam-utils",
|
|
1075
|
-
]
|
|
1076
|
-
|
|
1077
1128
|
[[package]]
|
|
1078
1129
|
name = "crossbeam-utils"
|
|
1079
|
-
version = "0.8.
|
|
1130
|
+
version = "0.8.22"
|
|
1080
1131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
-
checksum = "
|
|
1132
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
1082
1133
|
|
|
1083
1134
|
[[package]]
|
|
1084
1135
|
name = "crunchy"
|
|
@@ -1088,9 +1139,9 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
|
1088
1139
|
|
|
1089
1140
|
[[package]]
|
|
1090
1141
|
name = "crypto-bigint"
|
|
1091
|
-
version = "0.7.
|
|
1142
|
+
version = "0.7.5"
|
|
1092
1143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1093
|
-
checksum = "
|
|
1144
|
+
checksum = "1a52aa3fcda4e6302a9f48734f234d35d4721b96f8fe07d073f07ce9df4f0271"
|
|
1094
1145
|
dependencies = [
|
|
1095
1146
|
"cpubits",
|
|
1096
1147
|
"ctutils",
|
|
@@ -1137,9 +1188,9 @@ dependencies = [
|
|
|
1137
1188
|
|
|
1138
1189
|
[[package]]
|
|
1139
1190
|
name = "ctor"
|
|
1140
|
-
version = "1.0.
|
|
1191
|
+
version = "1.0.8"
|
|
1141
1192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
-
checksum = "
|
|
1193
|
+
checksum = "fb22e947478ccf9dc44d8922042c677a63fbb88f2cb468521d1145816e5087cb"
|
|
1143
1194
|
|
|
1144
1195
|
[[package]]
|
|
1145
1196
|
name = "ctr"
|
|
@@ -1187,9 +1238,9 @@ dependencies = [
|
|
|
1187
1238
|
|
|
1188
1239
|
[[package]]
|
|
1189
1240
|
name = "curve25519-dalek"
|
|
1190
|
-
version = "5.0.0-rc.
|
|
1241
|
+
version = "5.0.0-rc.1"
|
|
1191
1242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
-
checksum = "
|
|
1243
|
+
checksum = "c906a87e53a36ff795d72e06e8162a83c5436e3ea89e942a9cb9fc083f0a384f"
|
|
1193
1244
|
dependencies = [
|
|
1194
1245
|
"cfg-if",
|
|
1195
1246
|
"cpufeatures 0.3.0",
|
|
@@ -1218,6 +1269,37 @@ version = "2.11.0"
|
|
|
1218
1269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
1270
|
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
1220
1271
|
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "defmt"
|
|
1274
|
+
version = "1.1.1"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
|
|
1277
|
+
dependencies = [
|
|
1278
|
+
"bitflags 1.3.2",
|
|
1279
|
+
"defmt-macros",
|
|
1280
|
+
]
|
|
1281
|
+
|
|
1282
|
+
[[package]]
|
|
1283
|
+
name = "defmt-macros"
|
|
1284
|
+
version = "1.1.1"
|
|
1285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1286
|
+
checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
|
|
1287
|
+
dependencies = [
|
|
1288
|
+
"defmt-parser",
|
|
1289
|
+
"proc-macro2",
|
|
1290
|
+
"quote",
|
|
1291
|
+
"syn",
|
|
1292
|
+
]
|
|
1293
|
+
|
|
1294
|
+
[[package]]
|
|
1295
|
+
name = "defmt-parser"
|
|
1296
|
+
version = "1.0.0"
|
|
1297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
+
checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
|
|
1299
|
+
dependencies = [
|
|
1300
|
+
"thiserror",
|
|
1301
|
+
]
|
|
1302
|
+
|
|
1221
1303
|
[[package]]
|
|
1222
1304
|
name = "delegate"
|
|
1223
1305
|
version = "0.13.5"
|
|
@@ -1329,9 +1411,9 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
|
1329
1411
|
|
|
1330
1412
|
[[package]]
|
|
1331
1413
|
name = "ecdsa"
|
|
1332
|
-
version = "0.17.0
|
|
1414
|
+
version = "0.17.0"
|
|
1333
1415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
-
checksum = "
|
|
1416
|
+
checksum = "c0681a4fc24c767085329728d8dfba959af91228aa4610cca4f8ce317ba46ae0"
|
|
1335
1417
|
dependencies = [
|
|
1336
1418
|
"der 0.8.0",
|
|
1337
1419
|
"digest 0.11.3",
|
|
@@ -1379,11 +1461,11 @@ dependencies = [
|
|
|
1379
1461
|
|
|
1380
1462
|
[[package]]
|
|
1381
1463
|
name = "ed25519-dalek"
|
|
1382
|
-
version = "3.0.0-rc.
|
|
1464
|
+
version = "3.0.0-rc.1"
|
|
1383
1465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
-
checksum = "
|
|
1466
|
+
checksum = "1685663e23882cd8517dcbcb1c23a6ebff4433c22dfb681d760219b62cd1b849"
|
|
1385
1467
|
dependencies = [
|
|
1386
|
-
"curve25519-dalek 5.0.0-rc.
|
|
1468
|
+
"curve25519-dalek 5.0.0-rc.1",
|
|
1387
1469
|
"ed25519 3.0.0",
|
|
1388
1470
|
"rand_core 0.10.1",
|
|
1389
1471
|
"serde",
|
|
@@ -1401,9 +1483,9 @@ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
|
1401
1483
|
|
|
1402
1484
|
[[package]]
|
|
1403
1485
|
name = "elliptic-curve"
|
|
1404
|
-
version = "0.14.
|
|
1486
|
+
version = "0.14.1"
|
|
1405
1487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
-
checksum = "
|
|
1488
|
+
checksum = "9d65aa39b3a5c1c9c1b745c9a019234bb7a21b77abcb4f4d266d706e2d577d65"
|
|
1407
1489
|
dependencies = [
|
|
1408
1490
|
"base16ct",
|
|
1409
1491
|
"crypto-bigint",
|
|
@@ -1413,7 +1495,6 @@ dependencies = [
|
|
|
1413
1495
|
"group",
|
|
1414
1496
|
"hkdf",
|
|
1415
1497
|
"hybrid-array",
|
|
1416
|
-
"once_cell",
|
|
1417
1498
|
"pem-rfc7468",
|
|
1418
1499
|
"pkcs8 0.11.0",
|
|
1419
1500
|
"rand_core 0.10.1",
|
|
@@ -1864,7 +1945,7 @@ version = "0.16.1"
|
|
|
1864
1945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1865
1946
|
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1866
1947
|
dependencies = [
|
|
1867
|
-
"allocator-api2",
|
|
1948
|
+
"allocator-api2 0.2.21",
|
|
1868
1949
|
"equivalent",
|
|
1869
1950
|
"foldhash 0.2.0",
|
|
1870
1951
|
]
|
|
@@ -1987,9 +2068,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
|
1987
2068
|
|
|
1988
2069
|
[[package]]
|
|
1989
2070
|
name = "hybrid-array"
|
|
1990
|
-
version = "0.4.
|
|
2071
|
+
version = "0.4.13"
|
|
1991
2072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1992
|
-
checksum = "
|
|
2073
|
+
checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
|
|
1993
2074
|
dependencies = [
|
|
1994
2075
|
"ctutils",
|
|
1995
2076
|
"subtle",
|
|
@@ -2079,6 +2160,31 @@ dependencies = [
|
|
|
2079
2160
|
"cc",
|
|
2080
2161
|
]
|
|
2081
2162
|
|
|
2163
|
+
[[package]]
|
|
2164
|
+
name = "icu_collator"
|
|
2165
|
+
version = "2.2.1"
|
|
2166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2167
|
+
checksum = "8bbdf98e5e0aa827770acee171ebb568aaab975a36b56afdb5fd0e2f525750bb"
|
|
2168
|
+
dependencies = [
|
|
2169
|
+
"icu_collator_data",
|
|
2170
|
+
"icu_collections",
|
|
2171
|
+
"icu_locale",
|
|
2172
|
+
"icu_locale_core",
|
|
2173
|
+
"icu_normalizer",
|
|
2174
|
+
"icu_properties",
|
|
2175
|
+
"icu_provider",
|
|
2176
|
+
"smallvec",
|
|
2177
|
+
"utf16_iter",
|
|
2178
|
+
"utf8_iter",
|
|
2179
|
+
"zerovec",
|
|
2180
|
+
]
|
|
2181
|
+
|
|
2182
|
+
[[package]]
|
|
2183
|
+
name = "icu_collator_data"
|
|
2184
|
+
version = "2.2.0"
|
|
2185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2186
|
+
checksum = "038ed8e5817f2059c2f3efb0945ba78d060d3d25e8f1a1bea5139f821a21a2f0"
|
|
2187
|
+
|
|
2082
2188
|
[[package]]
|
|
2083
2189
|
name = "icu_collections"
|
|
2084
2190
|
version = "2.2.0"
|
|
@@ -2093,6 +2199,21 @@ dependencies = [
|
|
|
2093
2199
|
"zerovec",
|
|
2094
2200
|
]
|
|
2095
2201
|
|
|
2202
|
+
[[package]]
|
|
2203
|
+
name = "icu_locale"
|
|
2204
|
+
version = "2.2.0"
|
|
2205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2206
|
+
checksum = "d5a396343c7208121dc86e35623d3dfe19814a7613cfd14964994cdc9c9a2e26"
|
|
2207
|
+
dependencies = [
|
|
2208
|
+
"icu_collections",
|
|
2209
|
+
"icu_locale_core",
|
|
2210
|
+
"icu_locale_data",
|
|
2211
|
+
"icu_provider",
|
|
2212
|
+
"potential_utf",
|
|
2213
|
+
"tinystr",
|
|
2214
|
+
"zerovec",
|
|
2215
|
+
]
|
|
2216
|
+
|
|
2096
2217
|
[[package]]
|
|
2097
2218
|
name = "icu_locale_core"
|
|
2098
2219
|
version = "2.2.0"
|
|
@@ -2101,11 +2222,18 @@ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
|
2101
2222
|
dependencies = [
|
|
2102
2223
|
"displaydoc",
|
|
2103
2224
|
"litemap",
|
|
2225
|
+
"serde",
|
|
2104
2226
|
"tinystr",
|
|
2105
2227
|
"writeable",
|
|
2106
2228
|
"zerovec",
|
|
2107
2229
|
]
|
|
2108
2230
|
|
|
2231
|
+
[[package]]
|
|
2232
|
+
name = "icu_locale_data"
|
|
2233
|
+
version = "2.2.0"
|
|
2234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2235
|
+
checksum = "d5fdcc9ac77c6d74ff5cf6e65ef3181d6af32003b16fce3a77fb451d2f695993"
|
|
2236
|
+
|
|
2109
2237
|
[[package]]
|
|
2110
2238
|
name = "icu_normalizer"
|
|
2111
2239
|
version = "2.2.0"
|
|
@@ -2117,6 +2245,9 @@ dependencies = [
|
|
|
2117
2245
|
"icu_properties",
|
|
2118
2246
|
"icu_provider",
|
|
2119
2247
|
"smallvec",
|
|
2248
|
+
"utf16_iter",
|
|
2249
|
+
"utf8_iter",
|
|
2250
|
+
"write16",
|
|
2120
2251
|
"zerovec",
|
|
2121
2252
|
]
|
|
2122
2253
|
|
|
@@ -2154,6 +2285,8 @@ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
|
2154
2285
|
dependencies = [
|
|
2155
2286
|
"displaydoc",
|
|
2156
2287
|
"icu_locale_core",
|
|
2288
|
+
"serde",
|
|
2289
|
+
"stable_deref_trait",
|
|
2157
2290
|
"writeable",
|
|
2158
2291
|
"yoke",
|
|
2159
2292
|
"zerofrom",
|
|
@@ -2233,7 +2366,7 @@ checksum = "ae8e22120c32fb4d19ec55fba35015f57095cd95a2e3b732e44457f5915b2ee8"
|
|
|
2233
2366
|
dependencies = [
|
|
2234
2367
|
"num-integer",
|
|
2235
2368
|
"num-traits",
|
|
2236
|
-
"rand 0.10.
|
|
2369
|
+
"rand 0.10.2",
|
|
2237
2370
|
"rand_core 0.10.1",
|
|
2238
2371
|
]
|
|
2239
2372
|
|
|
@@ -2252,6 +2385,15 @@ dependencies = [
|
|
|
2252
2385
|
"memoffset",
|
|
2253
2386
|
]
|
|
2254
2387
|
|
|
2388
|
+
[[package]]
|
|
2389
|
+
name = "inventory"
|
|
2390
|
+
version = "0.3.24"
|
|
2391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2392
|
+
checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
|
|
2393
|
+
dependencies = [
|
|
2394
|
+
"rustversion",
|
|
2395
|
+
]
|
|
2396
|
+
|
|
2255
2397
|
[[package]]
|
|
2256
2398
|
name = "ipnet"
|
|
2257
2399
|
version = "2.12.0"
|
|
@@ -2349,10 +2491,11 @@ dependencies = [
|
|
|
2349
2491
|
|
|
2350
2492
|
[[package]]
|
|
2351
2493
|
name = "jiff"
|
|
2352
|
-
version = "0.2.
|
|
2494
|
+
version = "0.2.32"
|
|
2353
2495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
-
checksum = "
|
|
2496
|
+
checksum = "961d16382652bfdd8c6f68b223b26a8c93e0d475c672f414411db31c6c5c900e"
|
|
2355
2497
|
dependencies = [
|
|
2498
|
+
"defmt",
|
|
2356
2499
|
"jiff-static",
|
|
2357
2500
|
"jiff-tzdb-platform",
|
|
2358
2501
|
"log",
|
|
@@ -2364,9 +2507,9 @@ dependencies = [
|
|
|
2364
2507
|
|
|
2365
2508
|
[[package]]
|
|
2366
2509
|
name = "jiff-static"
|
|
2367
|
-
version = "0.2.
|
|
2510
|
+
version = "0.2.32"
|
|
2368
2511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2369
|
-
checksum = "
|
|
2512
|
+
checksum = "d0879bd39df99c4c5e2c6615ccc026391a423dde10532c573e6086eb94a802cc"
|
|
2370
2513
|
dependencies = [
|
|
2371
2514
|
"proc-macro2",
|
|
2372
2515
|
"quote",
|
|
@@ -2375,9 +2518,9 @@ dependencies = [
|
|
|
2375
2518
|
|
|
2376
2519
|
[[package]]
|
|
2377
2520
|
name = "jiff-tzdb"
|
|
2378
|
-
version = "0.1.
|
|
2521
|
+
version = "0.1.8"
|
|
2379
2522
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2380
|
-
checksum = "
|
|
2523
|
+
checksum = "142bd39932ad231f10513df9ab62661fead8719872150b7ad02a2df79f4e141e"
|
|
2381
2524
|
|
|
2382
2525
|
[[package]]
|
|
2383
2526
|
name = "jiff-tzdb-platform"
|
|
@@ -2391,8 +2534,7 @@ dependencies = [
|
|
|
2391
2534
|
[[package]]
|
|
2392
2535
|
name = "jiter"
|
|
2393
2536
|
version = "0.15.0"
|
|
2394
|
-
source = "
|
|
2395
|
-
checksum = "7866f284df68dbc242796251ed9768bde2b58ebc4d7d32cc07cc7fd993e3ed6c"
|
|
2537
|
+
source = "git+https://github.com/pydantic/jiter?rev=6d57715e01ec78859c62fc5447073c0b5902de39#6d57715e01ec78859c62fc5447073c0b5902de39"
|
|
2396
2538
|
dependencies = [
|
|
2397
2539
|
"ahash",
|
|
2398
2540
|
"bitvec",
|
|
@@ -2454,19 +2596,19 @@ dependencies = [
|
|
|
2454
2596
|
|
|
2455
2597
|
[[package]]
|
|
2456
2598
|
name = "jobserver"
|
|
2457
|
-
version = "0.1.
|
|
2599
|
+
version = "0.1.35"
|
|
2458
2600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2459
|
-
checksum = "
|
|
2601
|
+
checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
|
|
2460
2602
|
dependencies = [
|
|
2461
|
-
"getrandom 0.3
|
|
2603
|
+
"getrandom 0.4.3",
|
|
2462
2604
|
"libc",
|
|
2463
2605
|
]
|
|
2464
2606
|
|
|
2465
2607
|
[[package]]
|
|
2466
2608
|
name = "js-sys"
|
|
2467
|
-
version = "0.3.
|
|
2609
|
+
version = "0.3.103"
|
|
2468
2610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2469
|
-
checksum = "
|
|
2611
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
2470
2612
|
dependencies = [
|
|
2471
2613
|
"cfg-if",
|
|
2472
2614
|
"futures-util",
|
|
@@ -2599,9 +2741,9 @@ dependencies = [
|
|
|
2599
2741
|
|
|
2600
2742
|
[[package]]
|
|
2601
2743
|
name = "log"
|
|
2602
|
-
version = "0.4.
|
|
2744
|
+
version = "0.4.33"
|
|
2603
2745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2604
|
-
checksum = "
|
|
2746
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
2605
2747
|
|
|
2606
2748
|
[[package]]
|
|
2607
2749
|
name = "loom"
|
|
@@ -2666,9 +2808,9 @@ checksum = "ae960838283323069879657ca3de837e9f7bbb4c7bf6ea7f1b290d5e9476d2e0"
|
|
|
2666
2808
|
|
|
2667
2809
|
[[package]]
|
|
2668
2810
|
name = "memchr"
|
|
2669
|
-
version = "2.8.
|
|
2811
|
+
version = "2.8.3"
|
|
2670
2812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2671
|
-
checksum = "
|
|
2813
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
2672
2814
|
|
|
2673
2815
|
[[package]]
|
|
2674
2816
|
name = "memoffset"
|
|
@@ -2722,6 +2864,33 @@ dependencies = [
|
|
|
2722
2864
|
"windows-sys 0.61.2",
|
|
2723
2865
|
]
|
|
2724
2866
|
|
|
2867
|
+
[[package]]
|
|
2868
|
+
name = "mira-eval"
|
|
2869
|
+
version = "0.4.0"
|
|
2870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2871
|
+
checksum = "a8a983e47b39772faf20d898dad72f124eb4e8929679f561ec2193d77aef56d5"
|
|
2872
|
+
dependencies = [
|
|
2873
|
+
"async-trait",
|
|
2874
|
+
"inventory",
|
|
2875
|
+
"mira-macros",
|
|
2876
|
+
"regex",
|
|
2877
|
+
"serde",
|
|
2878
|
+
"serde_json",
|
|
2879
|
+
"tempfile",
|
|
2880
|
+
"tokio",
|
|
2881
|
+
]
|
|
2882
|
+
|
|
2883
|
+
[[package]]
|
|
2884
|
+
name = "mira-macros"
|
|
2885
|
+
version = "0.4.0"
|
|
2886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2887
|
+
checksum = "0a770347f4ce22c743dbf02c1a55af1dd88ee9bc35decc392e69e8df911fd38b"
|
|
2888
|
+
dependencies = [
|
|
2889
|
+
"proc-macro2",
|
|
2890
|
+
"quote",
|
|
2891
|
+
"syn",
|
|
2892
|
+
]
|
|
2893
|
+
|
|
2725
2894
|
[[package]]
|
|
2726
2895
|
name = "ml-kem"
|
|
2727
2896
|
version = "0.3.2"
|
|
@@ -2788,11 +2957,11 @@ dependencies = [
|
|
|
2788
2957
|
|
|
2789
2958
|
[[package]]
|
|
2790
2959
|
name = "napi"
|
|
2791
|
-
version = "3.
|
|
2960
|
+
version = "3.10.5"
|
|
2792
2961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
-
checksum = "
|
|
2962
|
+
checksum = "6826e5ddc15589b2d68c8ad5321c18e85d40488e93e32962f362e572669bccf6"
|
|
2794
2963
|
dependencies = [
|
|
2795
|
-
"bitflags",
|
|
2964
|
+
"bitflags 2.13.0",
|
|
2796
2965
|
"ctor",
|
|
2797
2966
|
"futures",
|
|
2798
2967
|
"napi-build",
|
|
@@ -2810,9 +2979,9 @@ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
|
|
|
2810
2979
|
|
|
2811
2980
|
[[package]]
|
|
2812
2981
|
name = "napi-derive"
|
|
2813
|
-
version = "3.5.
|
|
2982
|
+
version = "3.5.10"
|
|
2814
2983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2815
|
-
checksum = "
|
|
2984
|
+
checksum = "b0fe526e81c105d3640516fcde83909dd1afe757c0d7a15af58830b5bc0fb9a1"
|
|
2816
2985
|
dependencies = [
|
|
2817
2986
|
"convert_case",
|
|
2818
2987
|
"ctor",
|
|
@@ -2824,9 +2993,9 @@ dependencies = [
|
|
|
2824
2993
|
|
|
2825
2994
|
[[package]]
|
|
2826
2995
|
name = "napi-derive-backend"
|
|
2827
|
-
version = "5.
|
|
2996
|
+
version = "5.1.2"
|
|
2828
2997
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2829
|
-
checksum = "
|
|
2998
|
+
checksum = "514281397bcddd9ea9a876c7a21a57bff2374237a000ca9a64ea0211ec1993e2"
|
|
2830
2999
|
dependencies = [
|
|
2831
3000
|
"convert_case",
|
|
2832
3001
|
"proc-macro2",
|
|
@@ -2837,9 +3006,9 @@ dependencies = [
|
|
|
2837
3006
|
|
|
2838
3007
|
[[package]]
|
|
2839
3008
|
name = "napi-sys"
|
|
2840
|
-
version = "3.2.
|
|
3009
|
+
version = "3.2.3"
|
|
2841
3010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2842
|
-
checksum = "
|
|
3011
|
+
checksum = "73e43cf2eb0bd1bf95a43c07c076ebd2da5d1e015a71c3d201faeffffcc0ecac"
|
|
2843
3012
|
dependencies = [
|
|
2844
3013
|
"libloading 0.9.0",
|
|
2845
3014
|
]
|
|
@@ -2859,7 +3028,7 @@ version = "0.31.3"
|
|
|
2859
3028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2860
3029
|
checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
|
|
2861
3030
|
dependencies = [
|
|
2862
|
-
"bitflags",
|
|
3031
|
+
"bitflags 2.13.0",
|
|
2863
3032
|
"cfg-if",
|
|
2864
3033
|
"cfg_aliases",
|
|
2865
3034
|
"libc",
|
|
@@ -2888,9 +3057,9 @@ dependencies = [
|
|
|
2888
3057
|
|
|
2889
3058
|
[[package]]
|
|
2890
3059
|
name = "num-bigint"
|
|
2891
|
-
version = "0.4.
|
|
3060
|
+
version = "0.4.8"
|
|
2892
3061
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2893
|
-
checksum = "
|
|
3062
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
2894
3063
|
dependencies = [
|
|
2895
3064
|
"num-integer",
|
|
2896
3065
|
"num-traits",
|
|
@@ -3007,7 +3176,7 @@ version = "0.117.0"
|
|
|
3007
3176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3008
3177
|
checksum = "97b44277218c002c09167474648a478d3d29a29095ef8950ec9f1fac016c62d7"
|
|
3009
3178
|
dependencies = [
|
|
3010
|
-
"allocator-api2",
|
|
3179
|
+
"allocator-api2 0.2.21",
|
|
3011
3180
|
"hashbrown 0.16.1",
|
|
3012
3181
|
"oxc_data_structures",
|
|
3013
3182
|
"rustc-hash",
|
|
@@ -3019,7 +3188,7 @@ version = "0.117.0"
|
|
|
3019
3188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3020
3189
|
checksum = "e4222e4e7a1ab01b2a20420a5a65798377a748ea37ee7ece4d7a6b733f86eb61"
|
|
3021
3190
|
dependencies = [
|
|
3022
|
-
"bitflags",
|
|
3191
|
+
"bitflags 2.13.0",
|
|
3023
3192
|
"oxc_allocator",
|
|
3024
3193
|
"oxc_ast_macros",
|
|
3025
3194
|
"oxc_data_structures",
|
|
@@ -3097,7 +3266,7 @@ version = "0.117.0"
|
|
|
3097
3266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3098
3267
|
checksum = "3278d4f34d01cdaf85a2391d7b12daba1d95c20c1ff2ac9316d3c28f36353e4e"
|
|
3099
3268
|
dependencies = [
|
|
3100
|
-
"bitflags",
|
|
3269
|
+
"bitflags 2.13.0",
|
|
3101
3270
|
"cow-utils",
|
|
3102
3271
|
"memchr",
|
|
3103
3272
|
"num-bigint",
|
|
@@ -3120,7 +3289,7 @@ version = "0.117.0"
|
|
|
3120
3289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3121
3290
|
checksum = "f3d680252672b22c24abbaf6e401eace0be9f53072a03411936204625ff349d0"
|
|
3122
3291
|
dependencies = [
|
|
3123
|
-
"bitflags",
|
|
3292
|
+
"bitflags 2.13.0",
|
|
3124
3293
|
"oxc_allocator",
|
|
3125
3294
|
"oxc_ast_macros",
|
|
3126
3295
|
"oxc_diagnostics",
|
|
@@ -3162,7 +3331,7 @@ version = "0.117.0"
|
|
|
3162
3331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3163
3332
|
checksum = "e0f1617f0aa890517fb61ffa1d2d73a8497aca52e84ef6f027fad1e93250eccc"
|
|
3164
3333
|
dependencies = [
|
|
3165
|
-
"bitflags",
|
|
3334
|
+
"bitflags 2.13.0",
|
|
3166
3335
|
"cow-utils",
|
|
3167
3336
|
"dragonbox_ecma",
|
|
3168
3337
|
"nonmax",
|
|
@@ -3177,9 +3346,9 @@ dependencies = [
|
|
|
3177
3346
|
|
|
3178
3347
|
[[package]]
|
|
3179
3348
|
name = "p256"
|
|
3180
|
-
version = "0.14.0-rc.
|
|
3349
|
+
version = "0.14.0-rc.15"
|
|
3181
3350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3182
|
-
checksum = "
|
|
3351
|
+
checksum = "b6bb40a5099e2c38a09dd29321a7a7f045f165a54317679c7cdfb0cbaf8f6b1e"
|
|
3183
3352
|
dependencies = [
|
|
3184
3353
|
"ecdsa",
|
|
3185
3354
|
"elliptic-curve",
|
|
@@ -3190,9 +3359,9 @@ dependencies = [
|
|
|
3190
3359
|
|
|
3191
3360
|
[[package]]
|
|
3192
3361
|
name = "p384"
|
|
3193
|
-
version = "0.14.0-rc.
|
|
3362
|
+
version = "0.14.0-rc.15"
|
|
3194
3363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3195
|
-
checksum = "
|
|
3364
|
+
checksum = "492f329d7eb11d22dadc988626b9ea1f503b4ab043a8b1e4e2cc4ae45dabdd70"
|
|
3196
3365
|
dependencies = [
|
|
3197
3366
|
"ecdsa",
|
|
3198
3367
|
"elliptic-curve",
|
|
@@ -3204,9 +3373,9 @@ dependencies = [
|
|
|
3204
3373
|
|
|
3205
3374
|
[[package]]
|
|
3206
3375
|
name = "p521"
|
|
3207
|
-
version = "0.14.0-rc.
|
|
3376
|
+
version = "0.14.0-rc.15"
|
|
3208
3377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3209
|
-
checksum = "
|
|
3378
|
+
checksum = "ff42e4ace5424e3b6d7cb82514be89866b85af87015f80341e37dcc21a66ce6e"
|
|
3210
3379
|
dependencies = [
|
|
3211
3380
|
"base16ct",
|
|
3212
3381
|
"ecdsa",
|
|
@@ -3247,7 +3416,7 @@ dependencies = [
|
|
|
3247
3416
|
"delegate",
|
|
3248
3417
|
"futures",
|
|
3249
3418
|
"log",
|
|
3250
|
-
"rand 0.10.
|
|
3419
|
+
"rand 0.10.2",
|
|
3251
3420
|
"sha2 0.11.0",
|
|
3252
3421
|
"thiserror",
|
|
3253
3422
|
"tokio",
|
|
@@ -3438,11 +3607,12 @@ dependencies = [
|
|
|
3438
3607
|
|
|
3439
3608
|
[[package]]
|
|
3440
3609
|
name = "pkcs5"
|
|
3441
|
-
version = "0.8.
|
|
3610
|
+
version = "0.8.1"
|
|
3442
3611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3443
|
-
checksum = "
|
|
3612
|
+
checksum = "63d440a804ec8d6fafbb6b84471e013286658d373248927692ab3366686220ca"
|
|
3444
3613
|
dependencies = [
|
|
3445
3614
|
"aes 0.9.1",
|
|
3615
|
+
"aes-gcm 0.11.0",
|
|
3446
3616
|
"cbc",
|
|
3447
3617
|
"der 0.8.0",
|
|
3448
3618
|
"pbkdf2",
|
|
@@ -3474,6 +3644,12 @@ dependencies = [
|
|
|
3474
3644
|
"spki 0.8.0",
|
|
3475
3645
|
]
|
|
3476
3646
|
|
|
3647
|
+
[[package]]
|
|
3648
|
+
name = "pkg-config"
|
|
3649
|
+
version = "0.3.33"
|
|
3650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3651
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
3652
|
+
|
|
3477
3653
|
[[package]]
|
|
3478
3654
|
name = "plotters"
|
|
3479
3655
|
version = "0.3.7"
|
|
@@ -3518,9 +3694,9 @@ dependencies = [
|
|
|
3518
3694
|
|
|
3519
3695
|
[[package]]
|
|
3520
3696
|
name = "poly1305"
|
|
3521
|
-
version = "0.9.
|
|
3697
|
+
version = "0.9.1"
|
|
3522
3698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3523
|
-
checksum = "
|
|
3699
|
+
checksum = "6e2d0073b297041425c7c3df6eb4792d598a15323fe63346852b092eca02904c"
|
|
3524
3700
|
dependencies = [
|
|
3525
3701
|
"cpufeatures 0.3.0",
|
|
3526
3702
|
"universal-hash 0.6.1",
|
|
@@ -3584,6 +3760,8 @@ version = "0.1.5"
|
|
|
3584
3760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3585
3761
|
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
3586
3762
|
dependencies = [
|
|
3763
|
+
"serde_core",
|
|
3764
|
+
"writeable",
|
|
3587
3765
|
"zerovec",
|
|
3588
3766
|
]
|
|
3589
3767
|
|
|
@@ -3618,9 +3796,9 @@ dependencies = [
|
|
|
3618
3796
|
|
|
3619
3797
|
[[package]]
|
|
3620
3798
|
name = "primefield"
|
|
3621
|
-
version = "0.14.0
|
|
3799
|
+
version = "0.14.0"
|
|
3622
3800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3623
|
-
checksum = "
|
|
3801
|
+
checksum = "c555a6e4eb7d4e158fcb028c835c3b8642206ddc279b5c6b202ef9a8bdb592f4"
|
|
3624
3802
|
dependencies = [
|
|
3625
3803
|
"crypto-bigint",
|
|
3626
3804
|
"crypto-common 0.2.2",
|
|
@@ -3632,11 +3810,15 @@ dependencies = [
|
|
|
3632
3810
|
|
|
3633
3811
|
[[package]]
|
|
3634
3812
|
name = "primeorder"
|
|
3635
|
-
version = "0.14.0
|
|
3813
|
+
version = "0.14.0"
|
|
3636
3814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3637
|
-
checksum = "
|
|
3815
|
+
checksum = "5c9f42978c78a00e3d68f69fc03e57a234debae69da4020a4fb588fcdcd07b06"
|
|
3638
3816
|
dependencies = [
|
|
3639
3817
|
"elliptic-curve",
|
|
3818
|
+
"once_cell",
|
|
3819
|
+
"primefield",
|
|
3820
|
+
"serdect",
|
|
3821
|
+
"wnaf",
|
|
3640
3822
|
]
|
|
3641
3823
|
|
|
3642
3824
|
[[package]]
|
|
@@ -3689,7 +3871,7 @@ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
|
3689
3871
|
dependencies = [
|
|
3690
3872
|
"bit-set",
|
|
3691
3873
|
"bit-vec",
|
|
3692
|
-
"bitflags",
|
|
3874
|
+
"bitflags 2.13.0",
|
|
3693
3875
|
"num-traits",
|
|
3694
3876
|
"rand 0.9.4",
|
|
3695
3877
|
"rand_chacha 0.9.0",
|
|
@@ -3702,9 +3884,9 @@ dependencies = [
|
|
|
3702
3884
|
|
|
3703
3885
|
[[package]]
|
|
3704
3886
|
name = "pyo3"
|
|
3705
|
-
version = "0.
|
|
3887
|
+
version = "0.29.0"
|
|
3706
3888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3707
|
-
checksum = "
|
|
3889
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
3708
3890
|
dependencies = [
|
|
3709
3891
|
"libc",
|
|
3710
3892
|
"num-bigint",
|
|
@@ -3718,9 +3900,9 @@ dependencies = [
|
|
|
3718
3900
|
|
|
3719
3901
|
[[package]]
|
|
3720
3902
|
name = "pyo3-async-runtimes"
|
|
3721
|
-
version = "0.
|
|
3903
|
+
version = "0.29.0"
|
|
3722
3904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3723
|
-
checksum = "
|
|
3905
|
+
checksum = "b3ef68daa7316a3fac65e5e18b2203f010346de1c1c53456811a2624673ab046"
|
|
3724
3906
|
dependencies = [
|
|
3725
3907
|
"futures-channel",
|
|
3726
3908
|
"futures-util",
|
|
@@ -3732,19 +3914,18 @@ dependencies = [
|
|
|
3732
3914
|
|
|
3733
3915
|
[[package]]
|
|
3734
3916
|
name = "pyo3-build-config"
|
|
3735
|
-
version = "0.
|
|
3917
|
+
version = "0.29.0"
|
|
3736
3918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3737
|
-
checksum = "
|
|
3919
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
3738
3920
|
dependencies = [
|
|
3739
|
-
"python3-dll-a",
|
|
3740
3921
|
"target-lexicon",
|
|
3741
3922
|
]
|
|
3742
3923
|
|
|
3743
3924
|
[[package]]
|
|
3744
3925
|
name = "pyo3-ffi"
|
|
3745
|
-
version = "0.
|
|
3926
|
+
version = "0.29.0"
|
|
3746
3927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3747
|
-
checksum = "
|
|
3928
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
3748
3929
|
dependencies = [
|
|
3749
3930
|
"libc",
|
|
3750
3931
|
"pyo3-build-config",
|
|
@@ -3752,9 +3933,9 @@ dependencies = [
|
|
|
3752
3933
|
|
|
3753
3934
|
[[package]]
|
|
3754
3935
|
name = "pyo3-macros"
|
|
3755
|
-
version = "0.
|
|
3936
|
+
version = "0.29.0"
|
|
3756
3937
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3757
|
-
checksum = "
|
|
3938
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
3758
3939
|
dependencies = [
|
|
3759
3940
|
"proc-macro2",
|
|
3760
3941
|
"pyo3-macros-backend",
|
|
@@ -3764,26 +3945,16 @@ dependencies = [
|
|
|
3764
3945
|
|
|
3765
3946
|
[[package]]
|
|
3766
3947
|
name = "pyo3-macros-backend"
|
|
3767
|
-
version = "0.
|
|
3948
|
+
version = "0.29.0"
|
|
3768
3949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3769
|
-
checksum = "
|
|
3950
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
3770
3951
|
dependencies = [
|
|
3771
3952
|
"heck",
|
|
3772
3953
|
"proc-macro2",
|
|
3773
|
-
"pyo3-build-config",
|
|
3774
3954
|
"quote",
|
|
3775
3955
|
"syn",
|
|
3776
3956
|
]
|
|
3777
3957
|
|
|
3778
|
-
[[package]]
|
|
3779
|
-
name = "python3-dll-a"
|
|
3780
|
-
version = "0.2.15"
|
|
3781
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3782
|
-
checksum = "d80ba7540edb18890d444c5aa8e1f1f99b1bdf26fb26ae383135325f4a36042b"
|
|
3783
|
-
dependencies = [
|
|
3784
|
-
"cc",
|
|
3785
|
-
]
|
|
3786
|
-
|
|
3787
3958
|
[[package]]
|
|
3788
3959
|
name = "quick-error"
|
|
3789
3960
|
version = "1.2.3"
|
|
@@ -3872,9 +4043,9 @@ dependencies = [
|
|
|
3872
4043
|
|
|
3873
4044
|
[[package]]
|
|
3874
4045
|
name = "rand"
|
|
3875
|
-
version = "0.10.
|
|
4046
|
+
version = "0.10.2"
|
|
3876
4047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3877
|
-
checksum = "
|
|
4048
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
3878
4049
|
dependencies = [
|
|
3879
4050
|
"chacha20",
|
|
3880
4051
|
"getrandom 0.4.3",
|
|
@@ -3945,9 +4116,9 @@ dependencies = [
|
|
|
3945
4116
|
|
|
3946
4117
|
[[package]]
|
|
3947
4118
|
name = "rapidhash"
|
|
3948
|
-
version = "4.
|
|
4119
|
+
version = "4.5.1"
|
|
3949
4120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3950
|
-
checksum = "
|
|
4121
|
+
checksum = "5da7e78a036ce858e8d55b7e7dc8ba3a88b78350fd2155d3591bbd966b58589e"
|
|
3951
4122
|
dependencies = [
|
|
3952
4123
|
"rustversion",
|
|
3953
4124
|
]
|
|
@@ -3978,14 +4149,14 @@ version = "0.5.18"
|
|
|
3978
4149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3979
4150
|
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
3980
4151
|
dependencies = [
|
|
3981
|
-
"bitflags",
|
|
4152
|
+
"bitflags 2.13.0",
|
|
3982
4153
|
]
|
|
3983
4154
|
|
|
3984
4155
|
[[package]]
|
|
3985
4156
|
name = "regex"
|
|
3986
|
-
version = "1.
|
|
4157
|
+
version = "1.13.0"
|
|
3987
4158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3988
|
-
checksum = "
|
|
4159
|
+
checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2"
|
|
3989
4160
|
dependencies = [
|
|
3990
4161
|
"aho-corasick",
|
|
3991
4162
|
"memchr",
|
|
@@ -4057,12 +4228,12 @@ dependencies = [
|
|
|
4057
4228
|
|
|
4058
4229
|
[[package]]
|
|
4059
4230
|
name = "rfc6979"
|
|
4060
|
-
version = "0.
|
|
4231
|
+
version = "0.6.0"
|
|
4061
4232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4062
|
-
checksum = "
|
|
4233
|
+
checksum = "b4a459cddafb3fe76b31fd8f1108007566c40301feb64dc7b54656eb7388172b"
|
|
4063
4234
|
dependencies = [
|
|
4235
|
+
"crypto-bigint",
|
|
4064
4236
|
"hmac",
|
|
4065
|
-
"subtle",
|
|
4066
4237
|
]
|
|
4067
4238
|
|
|
4068
4239
|
[[package]]
|
|
@@ -4114,7 +4285,7 @@ version = "0.0.0"
|
|
|
4114
4285
|
source = "git+https://github.com/samuelcolvin/ruff.git?rev=6aaa91ac2b269df1414954ccd5134f0e6f5c6d30#6aaa91ac2b269df1414954ccd5134f0e6f5c6d30"
|
|
4115
4286
|
dependencies = [
|
|
4116
4287
|
"aho-corasick",
|
|
4117
|
-
"bitflags",
|
|
4288
|
+
"bitflags 2.13.0",
|
|
4118
4289
|
"compact_str",
|
|
4119
4290
|
"get-size2",
|
|
4120
4291
|
"is-macro",
|
|
@@ -4132,7 +4303,7 @@ name = "ruff_python_parser"
|
|
|
4132
4303
|
version = "0.0.0"
|
|
4133
4304
|
source = "git+https://github.com/samuelcolvin/ruff.git?rev=6aaa91ac2b269df1414954ccd5134f0e6f5c6d30#6aaa91ac2b269df1414954ccd5134f0e6f5c6d30"
|
|
4134
4305
|
dependencies = [
|
|
4135
|
-
"bitflags",
|
|
4306
|
+
"bitflags 2.13.0",
|
|
4136
4307
|
"bstr",
|
|
4137
4308
|
"compact_str",
|
|
4138
4309
|
"get-size2",
|
|
@@ -4153,7 +4324,7 @@ name = "ruff_python_stdlib"
|
|
|
4153
4324
|
version = "0.0.0"
|
|
4154
4325
|
source = "git+https://github.com/samuelcolvin/ruff.git?rev=6aaa91ac2b269df1414954ccd5134f0e6f5c6d30#6aaa91ac2b269df1414954ccd5134f0e6f5c6d30"
|
|
4155
4326
|
dependencies = [
|
|
4156
|
-
"bitflags",
|
|
4327
|
+
"bitflags 2.13.0",
|
|
4157
4328
|
"unicode-ident",
|
|
4158
4329
|
]
|
|
4159
4330
|
|
|
@@ -4187,13 +4358,13 @@ dependencies = [
|
|
|
4187
4358
|
|
|
4188
4359
|
[[package]]
|
|
4189
4360
|
name = "russh"
|
|
4190
|
-
version = "0.
|
|
4361
|
+
version = "0.62.2"
|
|
4191
4362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4192
|
-
checksum = "
|
|
4363
|
+
checksum = "ca6c3c1dd0a9ad3a9915a2f6e907d158f9a7e9ac32ddc772b003faafc027d9a8"
|
|
4193
4364
|
dependencies = [
|
|
4194
4365
|
"aes 0.9.1",
|
|
4195
4366
|
"aws-lc-rs",
|
|
4196
|
-
"bitflags",
|
|
4367
|
+
"bitflags 2.13.0",
|
|
4197
4368
|
"block-padding",
|
|
4198
4369
|
"byteorder",
|
|
4199
4370
|
"bytes",
|
|
@@ -4201,13 +4372,13 @@ dependencies = [
|
|
|
4201
4372
|
"cipher 0.5.2",
|
|
4202
4373
|
"crypto-bigint",
|
|
4203
4374
|
"ctr 0.10.1",
|
|
4204
|
-
"curve25519-dalek 5.0.0-rc.
|
|
4375
|
+
"curve25519-dalek 5.0.0-rc.1",
|
|
4205
4376
|
"data-encoding",
|
|
4206
4377
|
"delegate",
|
|
4207
4378
|
"der 0.8.0",
|
|
4208
4379
|
"digest 0.11.3",
|
|
4209
4380
|
"ecdsa",
|
|
4210
|
-
"ed25519-dalek 3.0.0-rc.
|
|
4381
|
+
"ed25519-dalek 3.0.0-rc.1",
|
|
4211
4382
|
"elliptic-curve",
|
|
4212
4383
|
"enum_dispatch",
|
|
4213
4384
|
"flate2",
|
|
@@ -4234,7 +4405,7 @@ dependencies = [
|
|
|
4234
4405
|
"pkcs5",
|
|
4235
4406
|
"pkcs8 0.11.0",
|
|
4236
4407
|
"polyval 0.7.1",
|
|
4237
|
-
"rand 0.10.
|
|
4408
|
+
"rand 0.10.2",
|
|
4238
4409
|
"rand_core 0.10.1",
|
|
4239
4410
|
"rsa",
|
|
4240
4411
|
"russh-cryptovec",
|
|
@@ -4259,9 +4430,9 @@ dependencies = [
|
|
|
4259
4430
|
|
|
4260
4431
|
[[package]]
|
|
4261
4432
|
name = "russh-cryptovec"
|
|
4262
|
-
version = "0.
|
|
4433
|
+
version = "0.62.0"
|
|
4263
4434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4264
|
-
checksum = "
|
|
4435
|
+
checksum = "3aec6cb630dbe85d72ffd7bcd95f07e1bd69f9f270ee8adfa1afe443a6331438"
|
|
4265
4436
|
dependencies = [
|
|
4266
4437
|
"log",
|
|
4267
4438
|
"nix",
|
|
@@ -4283,9 +4454,9 @@ dependencies = [
|
|
|
4283
4454
|
|
|
4284
4455
|
[[package]]
|
|
4285
4456
|
name = "rustc-hash"
|
|
4286
|
-
version = "2.1.
|
|
4457
|
+
version = "2.1.3"
|
|
4287
4458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4288
|
-
checksum = "
|
|
4459
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
4289
4460
|
|
|
4290
4461
|
[[package]]
|
|
4291
4462
|
name = "rustc_version"
|
|
@@ -4312,7 +4483,7 @@ version = "1.1.4"
|
|
|
4312
4483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4313
4484
|
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
4314
4485
|
dependencies = [
|
|
4315
|
-
"bitflags",
|
|
4486
|
+
"bitflags 2.13.0",
|
|
4316
4487
|
"errno",
|
|
4317
4488
|
"libc",
|
|
4318
4489
|
"linux-raw-sys",
|
|
@@ -4321,9 +4492,9 @@ dependencies = [
|
|
|
4321
4492
|
|
|
4322
4493
|
[[package]]
|
|
4323
4494
|
name = "rustls"
|
|
4324
|
-
version = "0.23.
|
|
4495
|
+
version = "0.23.42"
|
|
4325
4496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4326
|
-
checksum = "
|
|
4497
|
+
checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
|
|
4327
4498
|
dependencies = [
|
|
4328
4499
|
"log",
|
|
4329
4500
|
"once_cell",
|
|
@@ -4348,9 +4519,9 @@ dependencies = [
|
|
|
4348
4519
|
|
|
4349
4520
|
[[package]]
|
|
4350
4521
|
name = "rustls-pki-types"
|
|
4351
|
-
version = "1.
|
|
4522
|
+
version = "1.15.0"
|
|
4352
4523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4353
|
-
checksum = "
|
|
4524
|
+
checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
|
|
4354
4525
|
dependencies = [
|
|
4355
4526
|
"zeroize",
|
|
4356
4527
|
]
|
|
@@ -4395,9 +4566,9 @@ dependencies = [
|
|
|
4395
4566
|
|
|
4396
4567
|
[[package]]
|
|
4397
4568
|
name = "rustversion"
|
|
4398
|
-
version = "1.0.
|
|
4569
|
+
version = "1.0.23"
|
|
4399
4570
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4400
|
-
checksum = "
|
|
4571
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
4401
4572
|
|
|
4402
4573
|
[[package]]
|
|
4403
4574
|
name = "rusty-fork"
|
|
@@ -4413,11 +4584,11 @@ dependencies = [
|
|
|
4413
4584
|
|
|
4414
4585
|
[[package]]
|
|
4415
4586
|
name = "rustyline"
|
|
4416
|
-
version = "18.0.
|
|
4587
|
+
version = "18.0.1"
|
|
4417
4588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4418
|
-
checksum = "
|
|
4589
|
+
checksum = "53f6a737db68eb1a8ccff86b584b2fc13eca6a7bb6f78ebc7c529547e3ab9684"
|
|
4419
4590
|
dependencies = [
|
|
4420
|
-
"bitflags",
|
|
4591
|
+
"bitflags 2.13.0",
|
|
4421
4592
|
"cfg-if",
|
|
4422
4593
|
"clipboard-win",
|
|
4423
4594
|
"home",
|
|
@@ -4510,7 +4681,7 @@ version = "3.7.0"
|
|
|
4510
4681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4511
4682
|
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
4512
4683
|
dependencies = [
|
|
4513
|
-
"bitflags",
|
|
4684
|
+
"bitflags 2.13.0",
|
|
4514
4685
|
"core-foundation",
|
|
4515
4686
|
"core-foundation-sys",
|
|
4516
4687
|
"libc",
|
|
@@ -4539,6 +4710,15 @@ version = "1.0.28"
|
|
|
4539
4710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4540
4711
|
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
4541
4712
|
|
|
4713
|
+
[[package]]
|
|
4714
|
+
name = "send_wrapper"
|
|
4715
|
+
version = "0.6.0"
|
|
4716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4717
|
+
checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
|
|
4718
|
+
dependencies = [
|
|
4719
|
+
"futures-core",
|
|
4720
|
+
]
|
|
4721
|
+
|
|
4542
4722
|
[[package]]
|
|
4543
4723
|
name = "seq-macro"
|
|
4544
4724
|
version = "0.3.6"
|
|
@@ -4555,6 +4735,17 @@ dependencies = [
|
|
|
4555
4735
|
"serde_derive",
|
|
4556
4736
|
]
|
|
4557
4737
|
|
|
4738
|
+
[[package]]
|
|
4739
|
+
name = "serde-wasm-bindgen"
|
|
4740
|
+
version = "0.6.5"
|
|
4741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4742
|
+
checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
|
|
4743
|
+
dependencies = [
|
|
4744
|
+
"js-sys",
|
|
4745
|
+
"serde",
|
|
4746
|
+
"wasm-bindgen",
|
|
4747
|
+
]
|
|
4748
|
+
|
|
4558
4749
|
[[package]]
|
|
4559
4750
|
name = "serde_core"
|
|
4560
4751
|
version = "1.0.228"
|
|
@@ -4815,9 +5006,9 @@ dependencies = [
|
|
|
4815
5006
|
|
|
4816
5007
|
[[package]]
|
|
4817
5008
|
name = "smawk"
|
|
4818
|
-
version = "0.3.
|
|
5009
|
+
version = "0.3.3"
|
|
4819
5010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4820
|
-
checksum = "
|
|
5011
|
+
checksum = "e8e2fb0f499abb4d162f2bedad68f5ef91a1682b5a03596ddb67efd37768d100"
|
|
4821
5012
|
|
|
4822
5013
|
[[package]]
|
|
4823
5014
|
name = "socket2"
|
|
@@ -4877,17 +5068,15 @@ dependencies = [
|
|
|
4877
5068
|
|
|
4878
5069
|
[[package]]
|
|
4879
5070
|
name = "ssh-cipher"
|
|
4880
|
-
version = "0.3.0
|
|
5071
|
+
version = "0.3.0"
|
|
4881
5072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4882
|
-
checksum = "
|
|
5073
|
+
checksum = "d801accda99469cde6d73da741422610fdf6508a72d9a69d1b55cb241c720597"
|
|
4883
5074
|
dependencies = [
|
|
4884
|
-
"aead 0.6.
|
|
5075
|
+
"aead 0.6.1",
|
|
4885
5076
|
"aes 0.9.1",
|
|
4886
|
-
"aes-gcm 0.11.0
|
|
4887
|
-
"cbc",
|
|
5077
|
+
"aes-gcm 0.11.0",
|
|
4888
5078
|
"chacha20",
|
|
4889
5079
|
"cipher 0.5.2",
|
|
4890
|
-
"ctr 0.10.1",
|
|
4891
5080
|
"ctutils",
|
|
4892
5081
|
"des",
|
|
4893
5082
|
"poly1305",
|
|
@@ -4897,9 +5086,9 @@ dependencies = [
|
|
|
4897
5086
|
|
|
4898
5087
|
[[package]]
|
|
4899
5088
|
name = "ssh-encoding"
|
|
4900
|
-
version = "0.3.0
|
|
5089
|
+
version = "0.3.0"
|
|
4901
5090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4902
|
-
checksum = "
|
|
5091
|
+
checksum = "7b54d0ed0498daf3f78d82e00e28c8eec9d75a067c4cfbcc7a0f7d0f4077749e"
|
|
4903
5092
|
dependencies = [
|
|
4904
5093
|
"base64ct",
|
|
4905
5094
|
"bytes",
|
|
@@ -4912,14 +5101,14 @@ dependencies = [
|
|
|
4912
5101
|
|
|
4913
5102
|
[[package]]
|
|
4914
5103
|
name = "ssh-key"
|
|
4915
|
-
version = "0.7.0-rc.
|
|
5104
|
+
version = "0.7.0-rc.11"
|
|
4916
5105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4917
|
-
checksum = "
|
|
5106
|
+
checksum = "f9a32fae177b74a22aa9c5b01bf7e68b33545be32d9e381e248058d2adc15ce3"
|
|
4918
5107
|
dependencies = [
|
|
4919
5108
|
"argon2",
|
|
4920
5109
|
"bcrypt-pbkdf",
|
|
4921
5110
|
"ctutils",
|
|
4922
|
-
"ed25519-dalek 3.0.0-rc.
|
|
5111
|
+
"ed25519-dalek 3.0.0-rc.1",
|
|
4923
5112
|
"hex",
|
|
4924
5113
|
"hmac",
|
|
4925
5114
|
"p256",
|
|
@@ -5155,6 +5344,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5155
5344
|
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
5156
5345
|
dependencies = [
|
|
5157
5346
|
"displaydoc",
|
|
5347
|
+
"serde_core",
|
|
5158
5348
|
"zerovec",
|
|
5159
5349
|
]
|
|
5160
5350
|
|
|
@@ -5315,7 +5505,7 @@ version = "0.6.11"
|
|
|
5315
5505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5316
5506
|
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
5317
5507
|
dependencies = [
|
|
5318
|
-
"bitflags",
|
|
5508
|
+
"bitflags 2.13.0",
|
|
5319
5509
|
"bytes",
|
|
5320
5510
|
"futures-util",
|
|
5321
5511
|
"http",
|
|
@@ -5408,17 +5598,19 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
5408
5598
|
|
|
5409
5599
|
[[package]]
|
|
5410
5600
|
name = "turso_core"
|
|
5411
|
-
version = "0.
|
|
5601
|
+
version = "0.7.0"
|
|
5412
5602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5413
|
-
checksum = "
|
|
5603
|
+
checksum = "a77f2106de5a3014261be18283999fde0d06c24ae5d4cb85a6eff1aaeaff453d"
|
|
5414
5604
|
dependencies = [
|
|
5415
5605
|
"aegis",
|
|
5416
5606
|
"aes 0.8.4",
|
|
5417
5607
|
"aes-gcm 0.10.3",
|
|
5608
|
+
"allocator-api2 0.4.0",
|
|
5418
5609
|
"antithesis_sdk",
|
|
5419
5610
|
"arc-swap",
|
|
5611
|
+
"aristo",
|
|
5420
5612
|
"bigdecimal",
|
|
5421
|
-
"bitflags",
|
|
5613
|
+
"bitflags 2.13.0",
|
|
5422
5614
|
"branches",
|
|
5423
5615
|
"bumpalo",
|
|
5424
5616
|
"bytemuck",
|
|
@@ -5426,11 +5618,14 @@ dependencies = [
|
|
|
5426
5618
|
"cfg_block",
|
|
5427
5619
|
"chrono",
|
|
5428
5620
|
"crc32c",
|
|
5429
|
-
"crossbeam-
|
|
5621
|
+
"crossbeam-epoch",
|
|
5622
|
+
"crossbeam-utils",
|
|
5430
5623
|
"either",
|
|
5431
5624
|
"fallible-iterator",
|
|
5432
5625
|
"fastbloom",
|
|
5433
5626
|
"hex",
|
|
5627
|
+
"icu_collator",
|
|
5628
|
+
"icu_locale",
|
|
5434
5629
|
"intrusive-collections",
|
|
5435
5630
|
"libc",
|
|
5436
5631
|
"libloading 0.8.9",
|
|
@@ -5472,9 +5667,9 @@ dependencies = [
|
|
|
5472
5667
|
|
|
5473
5668
|
[[package]]
|
|
5474
5669
|
name = "turso_ext"
|
|
5475
|
-
version = "0.
|
|
5670
|
+
version = "0.7.0"
|
|
5476
5671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5477
|
-
checksum = "
|
|
5672
|
+
checksum = "48d367d863b095a9893690fc6c52bbf27edf422c135a58ba5ed2b03dbec8faac"
|
|
5478
5673
|
dependencies = [
|
|
5479
5674
|
"chrono",
|
|
5480
5675
|
"getrandom 0.4.3",
|
|
@@ -5483,9 +5678,9 @@ dependencies = [
|
|
|
5483
5678
|
|
|
5484
5679
|
[[package]]
|
|
5485
5680
|
name = "turso_macros"
|
|
5486
|
-
version = "0.
|
|
5681
|
+
version = "0.7.0"
|
|
5487
5682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5488
|
-
checksum = "
|
|
5683
|
+
checksum = "1a817815d9ca218cb971ed2a0a41a89a5160966b5b4bd103c82792fd2f230f1c"
|
|
5489
5684
|
dependencies = [
|
|
5490
5685
|
"proc-macro2",
|
|
5491
5686
|
"quote",
|
|
@@ -5494,11 +5689,11 @@ dependencies = [
|
|
|
5494
5689
|
|
|
5495
5690
|
[[package]]
|
|
5496
5691
|
name = "turso_parser"
|
|
5497
|
-
version = "0.
|
|
5692
|
+
version = "0.7.0"
|
|
5498
5693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5499
|
-
checksum = "
|
|
5694
|
+
checksum = "4ad90c0e6eea7ab131214804c70edad5372acecdcad8d4ccc75b0ded55b0df8f"
|
|
5500
5695
|
dependencies = [
|
|
5501
|
-
"bitflags",
|
|
5696
|
+
"bitflags 2.13.0",
|
|
5502
5697
|
"memchr",
|
|
5503
5698
|
"miette",
|
|
5504
5699
|
"strum 0.26.3",
|
|
@@ -5666,6 +5861,12 @@ version = "2.1.3"
|
|
|
5666
5861
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5667
5862
|
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
5668
5863
|
|
|
5864
|
+
[[package]]
|
|
5865
|
+
name = "utf16_iter"
|
|
5866
|
+
version = "1.0.5"
|
|
5867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5868
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
5869
|
+
|
|
5669
5870
|
[[package]]
|
|
5670
5871
|
name = "utf8_iter"
|
|
5671
5872
|
version = "1.0.4"
|
|
@@ -5680,9 +5881,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
5680
5881
|
|
|
5681
5882
|
[[package]]
|
|
5682
5883
|
name = "uuid"
|
|
5683
|
-
version = "1.23.
|
|
5884
|
+
version = "1.23.4"
|
|
5684
5885
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5685
|
-
checksum = "
|
|
5886
|
+
checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
|
|
5686
5887
|
dependencies = [
|
|
5687
5888
|
"getrandom 0.4.3",
|
|
5688
5889
|
"js-sys",
|
|
@@ -5747,9 +5948,9 @@ dependencies = [
|
|
|
5747
5948
|
|
|
5748
5949
|
[[package]]
|
|
5749
5950
|
name = "wasm-bindgen"
|
|
5750
|
-
version = "0.2.
|
|
5951
|
+
version = "0.2.126"
|
|
5751
5952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5752
|
-
checksum = "
|
|
5953
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
5753
5954
|
dependencies = [
|
|
5754
5955
|
"cfg-if",
|
|
5755
5956
|
"once_cell",
|
|
@@ -5760,9 +5961,9 @@ dependencies = [
|
|
|
5760
5961
|
|
|
5761
5962
|
[[package]]
|
|
5762
5963
|
name = "wasm-bindgen-futures"
|
|
5763
|
-
version = "0.4.
|
|
5964
|
+
version = "0.4.76"
|
|
5764
5965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5765
|
-
checksum = "
|
|
5966
|
+
checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
|
|
5766
5967
|
dependencies = [
|
|
5767
5968
|
"js-sys",
|
|
5768
5969
|
"wasm-bindgen",
|
|
@@ -5770,9 +5971,9 @@ dependencies = [
|
|
|
5770
5971
|
|
|
5771
5972
|
[[package]]
|
|
5772
5973
|
name = "wasm-bindgen-macro"
|
|
5773
|
-
version = "0.2.
|
|
5974
|
+
version = "0.2.126"
|
|
5774
5975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5775
|
-
checksum = "
|
|
5976
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
5776
5977
|
dependencies = [
|
|
5777
5978
|
"quote",
|
|
5778
5979
|
"wasm-bindgen-macro-support",
|
|
@@ -5780,9 +5981,9 @@ dependencies = [
|
|
|
5780
5981
|
|
|
5781
5982
|
[[package]]
|
|
5782
5983
|
name = "wasm-bindgen-macro-support"
|
|
5783
|
-
version = "0.2.
|
|
5984
|
+
version = "0.2.126"
|
|
5784
5985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5785
|
-
checksum = "
|
|
5986
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
5786
5987
|
dependencies = [
|
|
5787
5988
|
"bumpalo",
|
|
5788
5989
|
"proc-macro2",
|
|
@@ -5793,9 +5994,9 @@ dependencies = [
|
|
|
5793
5994
|
|
|
5794
5995
|
[[package]]
|
|
5795
5996
|
name = "wasm-bindgen-shared"
|
|
5796
|
-
version = "0.2.
|
|
5997
|
+
version = "0.2.126"
|
|
5797
5998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5798
|
-
checksum = "
|
|
5999
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
5799
6000
|
dependencies = [
|
|
5800
6001
|
"unicode-ident",
|
|
5801
6002
|
]
|
|
@@ -5815,9 +6016,19 @@ dependencies = [
|
|
|
5815
6016
|
|
|
5816
6017
|
[[package]]
|
|
5817
6018
|
name = "web-sys"
|
|
5818
|
-
version = "0.3.
|
|
6019
|
+
version = "0.3.103"
|
|
6020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6021
|
+
checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
|
|
6022
|
+
dependencies = [
|
|
6023
|
+
"js-sys",
|
|
6024
|
+
"wasm-bindgen",
|
|
6025
|
+
]
|
|
6026
|
+
|
|
6027
|
+
[[package]]
|
|
6028
|
+
name = "web-time"
|
|
6029
|
+
version = "1.1.0"
|
|
5819
6030
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5820
|
-
checksum = "
|
|
6031
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
5821
6032
|
dependencies = [
|
|
5822
6033
|
"js-sys",
|
|
5823
6034
|
"wasm-bindgen",
|
|
@@ -5825,9 +6036,9 @@ dependencies = [
|
|
|
5825
6036
|
|
|
5826
6037
|
[[package]]
|
|
5827
6038
|
name = "webpki-root-certs"
|
|
5828
|
-
version = "1.0.
|
|
6039
|
+
version = "1.0.8"
|
|
5829
6040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5830
|
-
checksum = "
|
|
6041
|
+
checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267"
|
|
5831
6042
|
dependencies = [
|
|
5832
6043
|
"rustls-pki-types",
|
|
5833
6044
|
]
|
|
@@ -6067,6 +6278,23 @@ version = "0.57.1"
|
|
|
6067
6278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6068
6279
|
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
6069
6280
|
|
|
6281
|
+
[[package]]
|
|
6282
|
+
name = "wnaf"
|
|
6283
|
+
version = "0.14.0"
|
|
6284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6285
|
+
checksum = "ab12e7090f27e2ffd9322651492942d50c2926094af30601e1964337db39daf1"
|
|
6286
|
+
dependencies = [
|
|
6287
|
+
"ff",
|
|
6288
|
+
"group",
|
|
6289
|
+
"hybrid-array",
|
|
6290
|
+
]
|
|
6291
|
+
|
|
6292
|
+
[[package]]
|
|
6293
|
+
name = "write16"
|
|
6294
|
+
version = "1.0.0"
|
|
6295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6296
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
6297
|
+
|
|
6070
6298
|
[[package]]
|
|
6071
6299
|
name = "writeable"
|
|
6072
6300
|
version = "0.6.3"
|
|
@@ -6130,18 +6358,18 @@ dependencies = [
|
|
|
6130
6358
|
|
|
6131
6359
|
[[package]]
|
|
6132
6360
|
name = "zerocopy"
|
|
6133
|
-
version = "0.8.
|
|
6361
|
+
version = "0.8.54"
|
|
6134
6362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6135
|
-
checksum = "
|
|
6363
|
+
checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
|
|
6136
6364
|
dependencies = [
|
|
6137
6365
|
"zerocopy-derive",
|
|
6138
6366
|
]
|
|
6139
6367
|
|
|
6140
6368
|
[[package]]
|
|
6141
6369
|
name = "zerocopy-derive"
|
|
6142
|
-
version = "0.8.
|
|
6370
|
+
version = "0.8.54"
|
|
6143
6371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6144
|
-
checksum = "
|
|
6372
|
+
checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
|
|
6145
6373
|
dependencies = [
|
|
6146
6374
|
"proc-macro2",
|
|
6147
6375
|
"quote",
|
|
@@ -6184,6 +6412,7 @@ dependencies = [
|
|
|
6184
6412
|
"displaydoc",
|
|
6185
6413
|
"yoke",
|
|
6186
6414
|
"zerofrom",
|
|
6415
|
+
"zerovec",
|
|
6187
6416
|
]
|
|
6188
6417
|
|
|
6189
6418
|
[[package]]
|
|
@@ -6192,6 +6421,7 @@ version = "0.11.6"
|
|
|
6192
6421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6193
6422
|
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
6194
6423
|
dependencies = [
|
|
6424
|
+
"serde",
|
|
6195
6425
|
"yoke",
|
|
6196
6426
|
"zerofrom",
|
|
6197
6427
|
"zerovec-derive",
|