bashkit 0.14.0__tar.gz → 0.14.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bashkit-0.14.0 → bashkit-0.14.4}/Cargo.lock +266 -181
- {bashkit-0.14.0 → bashkit-0.14.4}/Cargo.toml +15 -7
- {bashkit-0.14.0 → bashkit-0.14.4}/PKG-INFO +18 -16
- {bashkit-0.14.0/crates/bashkit-python → bashkit-0.14.4}/README.md +17 -15
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/Cargo.toml +13 -9
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/README.md +23 -3
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/benches/sqlite.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/docs/compatibility.md +4 -4
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/docs/credential-injection.md +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/docs/live_mounts.md +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/docs/namespace_filesystems.md +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/docs/python.md +4 -6
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/docs/sqlite.md +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/docs/ssh.md +2 -2
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/docs/threat-model.md +7 -7
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/docs/typescript.md +2 -2
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/dump_builtins.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/awk/interpreter.rs +66 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/column.rs +21 -3
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/comm.rs +22 -3
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/cuttr.rs +32 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/date.rs +13 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/diff.rs +22 -4
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/envsubst.rs +13 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/expand.rs +39 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/fileops.rs +231 -28
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/fold.rs +11 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/git/cmd.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/git/config.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/git/mod.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/grep.rs +19 -6
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/headtail.rs +48 -6
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/helpers.rs +42 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/hextools.rs +37 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/join.rs +15 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/mod.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/nl.rs +24 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/paste.rs +24 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/patch.rs +21 -3
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/path.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/pipeline.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/python.rs +36 -32
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/runtime_limits.rs +10 -21
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/sed.rs +18 -5
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/sleep.rs +6 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/sortuniq.rs +28 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/split.rs +12 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/sqlite/engine.rs +9 -5
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/sqlite/mod.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/sqlite/tests.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/ssh/mod.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/strings.rs +12 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/system.rs +60 -6
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/textrev.rs +53 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/typescript.rs +15 -7
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/wc.rs +23 -7
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/zip_cmd.rs +52 -11
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/credential.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/fs/limits.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/fs/memory.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/fs/mod.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/fs/namespace.rs +3 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/fs/realfs.rs +98 -39
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/interpreter/jobs.rs +19 -31
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/interpreter/mod.rs +277 -67
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/lib.rs +7 -6
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/limits.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/network/allowlist.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/network/client.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/network/transport.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/scripted_tool/execute.rs +17 -2
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/testing.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/tool.rs +49 -7
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/coreutils_differential_tests.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/credential_injection_tests.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/git_remote_security_tests.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/git_security_tests.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/limitations_doc_tests.rs +4 -3
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/limitations_evidence_tests.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/main.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/namespace_fs_tests.rs +15 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/network_security_tests.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/parallel_sessions_tests.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/python_integration_tests.rs +2 -4
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/python_security_tests.rs +58 -20
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/sqlite_compat_tests.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/sqlite_integration_tests.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/sqlite_security_tests.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/threat_model_doc_tests.rs +8 -8
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/threat_model_tests.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/unicode_security_tests.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/logging_security_tests.rs +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/realfs_tests.rs +125 -3
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +23 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/Cargo.toml +3 -3
- {bashkit-0.14.0 → bashkit-0.14.4/crates/bashkit-python}/README.md +17 -15
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/src/lib.rs +36 -26
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/_security_core.py +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_security.py +1 -1
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_teardown_determinism.py +33 -2
- {bashkit-0.14.0 → bashkit-0.14.4}/bashkit/__init__.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/bashkit/_bashkit.pyi +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/bashkit/deepagents.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/bashkit/langchain.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/bashkit/py.typed +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/bashkit/pydantic_ai.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/benches/file_ops.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/benches/hotpath.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/benches/parallel_execution.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/benches/results/README.md +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/benches/results/criterion-file_ops-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/benches/results/criterion-hotpath-attrs+shopt-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/benches/results/criterion-hotpath-perf-linux-x86_64-1779744742.md +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/benches/results/criterion-parallel-(none)-linux-x86_64-1773469129.md +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782162173.md +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782168239.md +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1777865268.md +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/docs/clap-builtins.md +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/docs/custom_builtins.md +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/docs/hooks.md +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/docs/jq.md +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/docs/logging.md +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/agent_tool.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/basic.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/clap_builtin.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/clap_builtin_subcommands.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/custom_backend.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/custom_builtins.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/custom_fs.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/git_workflow.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/live_mounts.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/namespace_rebase.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/namespace_sandbox.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/python_external_functions.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/python_scripts.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/realfs_readonly.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/resource_limits.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/scripted_tool.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/show_tool_output.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/sqlite_basic.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/sqlite_workflow.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/ssh_supabase.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/streaming_output.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/text_files.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/text_processing.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/typescript_scripts.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/examples/virtual_identity.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/out file.txt +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/alias.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/archive.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/assert.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/awk/mod.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/awk/parser.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/awk/tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/base64.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/bc.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/caller.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/cat.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/checksum.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/clap_env.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/clear.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/compgen.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/csv.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/curl.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/dirstack.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/disk.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/dotenv.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/echo.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/environ.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/export.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/expr.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/fc.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/flow.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/cat_args.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/extendedbigdecimal.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/format/argument.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/format/escape.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/format/human.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/format/mod.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/format/num_format.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/format/spec.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/format_support.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/ls_args.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/mktemp_args.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/mod.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/num_parser.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/od_args.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/readlink_args.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/realpath_args.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/shuf_args.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/stat_args.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/tac_args.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/tee_args.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/generated/truncate_args.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/git/client.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/help.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/http.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/iconv.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/inspect.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/introspect.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/jq/args.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/jq/compat.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/jq/convert.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/jq/errors.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/jq/format.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/jq/mod.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/jq/regex_compat.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/jq/tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/json.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/limits.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/log.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/ls/find.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/ls/glob.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/ls/list.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/ls/mod.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/ls/rmdir.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/ls/tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/mapfile.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/navigation.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/numfmt.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/parallel.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/printf.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/read.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/retry.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/rg/mod.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/search_common.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/semver.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/seq.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/shuf.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/source.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/sqlite/dot_commands.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/sqlite/formatter.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/sqlite/parser.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/sqlite/vfs_io.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/ssh/allowlist.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/ssh/client.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/ssh/cmd.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/ssh/config.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/ssh/handler.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/ssh/russh_handler.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/template.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/timeout.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/tomlq.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/trap.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/tree.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/truncate.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/vars.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/verify.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/wait.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/yaml.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/builtins/yes.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/error.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/fs/backend.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/fs/mountable.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/fs/overlay.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/fs/posix.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/fs/readonly.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/fs/search.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/fs/traits.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/hooks.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/interop/fs.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/interop/mod.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/interpreter/arithmetic.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/interpreter/brace_expansion.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/interpreter/expansion.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/interpreter/glob.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/interpreter/redirection.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/interpreter/state.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/logging_impl.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/network/bot_auth.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/network/mod.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/parser/ast.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/parser/budget.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/parser/lexer.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/parser/mod.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/parser/span.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/parser/tokens.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/scripted_tool/extension.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/scripted_tool/mod.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/snapshot.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/time_compat.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/tool_def.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/src/trace.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/agent_skills_publication_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/allexport_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/awk_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/awk_newline_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/awk_pattern_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/awk_printf_expr_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/awk_range_pattern_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/background_exec_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/base64_binary_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/bash_source_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/blackbox_security_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/builtin_error_security_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/builtin_registry_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/byte_range_panic_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/cancellation_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/cmdsub_quote_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/compgen_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/coproc_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/custom_builtins_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/custom_fs_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/dev_null_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/exec_options_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/final_env_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/find_multi_path_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/for_in_reserved_word_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/git_advanced_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/git_inspection_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/git_integration_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/harness_example_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/history_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/issue_1175_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/issue_1776_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/issue_1777_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/issue_274_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/issue_275_279_282_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/issue_276_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/issue_277_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/issue_289_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/issue_290_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/issue_291_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/issue_853_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/issue_872_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/issue_873_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/issue_875_test.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/jq_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/live_mount_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/mkfifo_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/nested_subscript_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/output_truncation_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/proptest_differential.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/regex_limit_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/release_profile_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/script_execution_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/security_audit_pocs.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/set_e_and_or_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/shuf_resource_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/skills_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/snapshot_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/source_function_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/spec_runner.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/spec_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/sqlite_differential_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/sqlite_fuzz_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/stack_overflow_regression_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/subst_depth_limit_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/symlink_overlay_security_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/time_compat_scan_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/tty_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/typescript_integration_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/typescript_security_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/unset_function_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/urandom_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/integration/workflow_security_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/proptest_security.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/cat.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/mktemp.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/od.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/readlink.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/shuf.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/truncate.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/examples/bash_basics.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/examples/data_pipeline.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/examples/llm_tool.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/_bashkit_categories.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/_security_advanced.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_basic.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_builtins.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_control_flow.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_custom_builtin_fs.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_error_handling.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_fastapi_integration.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_integration.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_network_config.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_network_credentials.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_python_security.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_scripts.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_sqlite.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/crates/bashkit-python/tests/test_vfs.py +0 -0
- {bashkit-0.14.0 → bashkit-0.14.4}/pyproject.toml +0 -0
|
@@ -217,9 +217,9 @@ dependencies = [
|
|
|
217
217
|
|
|
218
218
|
[[package]]
|
|
219
219
|
name = "anyhow"
|
|
220
|
-
version = "1.0.
|
|
220
|
+
version = "1.0.104"
|
|
221
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
-
checksum = "
|
|
222
|
+
checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
|
|
223
223
|
|
|
224
224
|
[[package]]
|
|
225
225
|
name = "arc-swap"
|
|
@@ -259,9 +259,15 @@ checksum = "d64a66d21a80182b35b1741997a6d2456911f54b7eb1918aa4e2382fc205268d"
|
|
|
259
259
|
dependencies = [
|
|
260
260
|
"proc-macro2",
|
|
261
261
|
"quote",
|
|
262
|
-
"syn",
|
|
262
|
+
"syn 2.0.119",
|
|
263
263
|
]
|
|
264
264
|
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "arrayvec"
|
|
267
|
+
version = "0.7.8"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
|
|
270
|
+
|
|
265
271
|
[[package]]
|
|
266
272
|
name = "assoc"
|
|
267
273
|
version = "0.1.3"
|
|
@@ -270,13 +276,13 @@ checksum = "bfdc70193dadb9d7287fa4b633f15f90c876915b31f6af17da307fc59c9859a8"
|
|
|
270
276
|
|
|
271
277
|
[[package]]
|
|
272
278
|
name = "async-trait"
|
|
273
|
-
version = "0.1.
|
|
279
|
+
version = "0.1.91"
|
|
274
280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
-
checksum = "
|
|
281
|
+
checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
|
|
276
282
|
dependencies = [
|
|
277
283
|
"proc-macro2",
|
|
278
284
|
"quote",
|
|
279
|
-
"syn",
|
|
285
|
+
"syn 3.0.3",
|
|
280
286
|
]
|
|
281
287
|
|
|
282
288
|
[[package]]
|
|
@@ -305,7 +311,7 @@ dependencies = [
|
|
|
305
311
|
"manyhow",
|
|
306
312
|
"proc-macro2",
|
|
307
313
|
"quote",
|
|
308
|
-
"syn",
|
|
314
|
+
"syn 2.0.119",
|
|
309
315
|
]
|
|
310
316
|
|
|
311
317
|
[[package]]
|
|
@@ -321,7 +327,7 @@ dependencies = [
|
|
|
321
327
|
"proc-macro2",
|
|
322
328
|
"quote",
|
|
323
329
|
"quote-use",
|
|
324
|
-
"syn",
|
|
330
|
+
"syn 2.0.119",
|
|
325
331
|
]
|
|
326
332
|
|
|
327
333
|
[[package]]
|
|
@@ -366,6 +372,12 @@ version = "0.22.1"
|
|
|
366
372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
373
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
368
374
|
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "base64"
|
|
377
|
+
version = "0.23.0"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "b25655df2c3cdd83c5e5b293b88acd880332b2ddadd7c30ac43144fdc0033da9"
|
|
380
|
+
|
|
369
381
|
[[package]]
|
|
370
382
|
name = "base64ct"
|
|
371
383
|
version = "1.8.3"
|
|
@@ -374,13 +386,13 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
374
386
|
|
|
375
387
|
[[package]]
|
|
376
388
|
name = "bashkit"
|
|
377
|
-
version = "0.14.
|
|
389
|
+
version = "0.14.4"
|
|
378
390
|
dependencies = [
|
|
379
391
|
"anyhow",
|
|
380
392
|
"async-trait",
|
|
381
|
-
"base64",
|
|
393
|
+
"base64 0.23.0",
|
|
382
394
|
"bigdecimal",
|
|
383
|
-
"bitflags 2.13.
|
|
395
|
+
"bitflags 2.13.1",
|
|
384
396
|
"chrono",
|
|
385
397
|
"clap",
|
|
386
398
|
"criterion",
|
|
@@ -398,6 +410,7 @@ dependencies = [
|
|
|
398
410
|
"jaq-std",
|
|
399
411
|
"md-5",
|
|
400
412
|
"monty",
|
|
413
|
+
"monty-types",
|
|
401
414
|
"num-traits",
|
|
402
415
|
"os_display",
|
|
403
416
|
"pretty_assertions",
|
|
@@ -428,7 +441,7 @@ dependencies = [
|
|
|
428
441
|
|
|
429
442
|
[[package]]
|
|
430
443
|
name = "bashkit-bench"
|
|
431
|
-
version = "0.14.
|
|
444
|
+
version = "0.14.4"
|
|
432
445
|
dependencies = [
|
|
433
446
|
"anyhow",
|
|
434
447
|
"bashkit",
|
|
@@ -443,7 +456,7 @@ dependencies = [
|
|
|
443
456
|
|
|
444
457
|
[[package]]
|
|
445
458
|
name = "bashkit-cli"
|
|
446
|
-
version = "0.14.
|
|
459
|
+
version = "0.14.4"
|
|
447
460
|
dependencies = [
|
|
448
461
|
"anyhow",
|
|
449
462
|
"bashkit",
|
|
@@ -457,21 +470,21 @@ dependencies = [
|
|
|
457
470
|
|
|
458
471
|
[[package]]
|
|
459
472
|
name = "bashkit-coreutils-port"
|
|
460
|
-
version = "0.14.
|
|
473
|
+
version = "0.14.4"
|
|
461
474
|
dependencies = [
|
|
462
475
|
"anyhow",
|
|
463
476
|
"prettyplease",
|
|
464
477
|
"proc-macro2",
|
|
465
478
|
"quote",
|
|
466
479
|
"serde",
|
|
467
|
-
"syn",
|
|
480
|
+
"syn 3.0.3",
|
|
468
481
|
"tempfile",
|
|
469
482
|
"toml",
|
|
470
483
|
]
|
|
471
484
|
|
|
472
485
|
[[package]]
|
|
473
486
|
name = "bashkit-eval"
|
|
474
|
-
version = "0.14.
|
|
487
|
+
version = "0.14.4"
|
|
475
488
|
dependencies = [
|
|
476
489
|
"anyhow",
|
|
477
490
|
"async-trait",
|
|
@@ -488,7 +501,7 @@ dependencies = [
|
|
|
488
501
|
|
|
489
502
|
[[package]]
|
|
490
503
|
name = "bashkit-js"
|
|
491
|
-
version = "0.14.
|
|
504
|
+
version = "0.14.4"
|
|
492
505
|
dependencies = [
|
|
493
506
|
"bashkit",
|
|
494
507
|
"napi",
|
|
@@ -500,7 +513,7 @@ dependencies = [
|
|
|
500
513
|
|
|
501
514
|
[[package]]
|
|
502
515
|
name = "bashkit-python"
|
|
503
|
-
version = "0.14.
|
|
516
|
+
version = "0.14.4"
|
|
504
517
|
dependencies = [
|
|
505
518
|
"bashkit",
|
|
506
519
|
"num-bigint",
|
|
@@ -512,7 +525,7 @@ dependencies = [
|
|
|
512
525
|
|
|
513
526
|
[[package]]
|
|
514
527
|
name = "bashkit-wasm"
|
|
515
|
-
version = "0.14.
|
|
528
|
+
version = "0.14.4"
|
|
516
529
|
dependencies = [
|
|
517
530
|
"bashkit",
|
|
518
531
|
"console_error_panic_hook",
|
|
@@ -574,9 +587,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
574
587
|
|
|
575
588
|
[[package]]
|
|
576
589
|
name = "bitflags"
|
|
577
|
-
version = "2.13.
|
|
590
|
+
version = "2.13.1"
|
|
578
591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
-
checksum = "
|
|
592
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
580
593
|
|
|
581
594
|
[[package]]
|
|
582
595
|
name = "bitvec"
|
|
@@ -686,7 +699,7 @@ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
|
|
|
686
699
|
dependencies = [
|
|
687
700
|
"proc-macro2",
|
|
688
701
|
"quote",
|
|
689
|
-
"syn",
|
|
702
|
+
"syn 2.0.119",
|
|
690
703
|
]
|
|
691
704
|
|
|
692
705
|
[[package]]
|
|
@@ -833,9 +846,9 @@ dependencies = [
|
|
|
833
846
|
|
|
834
847
|
[[package]]
|
|
835
848
|
name = "clap"
|
|
836
|
-
version = "4.6.
|
|
849
|
+
version = "4.6.4"
|
|
837
850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
-
checksum = "
|
|
851
|
+
checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
|
|
839
852
|
dependencies = [
|
|
840
853
|
"clap_builder",
|
|
841
854
|
"clap_derive",
|
|
@@ -843,9 +856,9 @@ dependencies = [
|
|
|
843
856
|
|
|
844
857
|
[[package]]
|
|
845
858
|
name = "clap_builder"
|
|
846
|
-
version = "4.6.
|
|
859
|
+
version = "4.6.2"
|
|
847
860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
-
checksum = "
|
|
861
|
+
checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
|
|
849
862
|
dependencies = [
|
|
850
863
|
"anstream",
|
|
851
864
|
"anstyle",
|
|
@@ -855,14 +868,14 @@ dependencies = [
|
|
|
855
868
|
|
|
856
869
|
[[package]]
|
|
857
870
|
name = "clap_derive"
|
|
858
|
-
version = "4.6.
|
|
871
|
+
version = "4.6.4"
|
|
859
872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
-
checksum = "
|
|
873
|
+
checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
|
|
861
874
|
dependencies = [
|
|
862
875
|
"heck",
|
|
863
876
|
"proc-macro2",
|
|
864
877
|
"quote",
|
|
865
|
-
"syn",
|
|
878
|
+
"syn 3.0.3",
|
|
866
879
|
]
|
|
867
880
|
|
|
868
881
|
[[package]]
|
|
@@ -937,9 +950,9 @@ dependencies = [
|
|
|
937
950
|
|
|
938
951
|
[[package]]
|
|
939
952
|
name = "compact_str"
|
|
940
|
-
version = "0.9.
|
|
953
|
+
version = "0.9.0"
|
|
941
954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
-
checksum = "
|
|
955
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
943
956
|
dependencies = [
|
|
944
957
|
"castaway",
|
|
945
958
|
"cfg-if",
|
|
@@ -1238,15 +1251,16 @@ dependencies = [
|
|
|
1238
1251
|
|
|
1239
1252
|
[[package]]
|
|
1240
1253
|
name = "curve25519-dalek"
|
|
1241
|
-
version = "5.0.0
|
|
1254
|
+
version = "5.0.0"
|
|
1242
1255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
-
checksum = "
|
|
1256
|
+
checksum = "b5eed333089e2e1c1ac8c6c0398e5e2497b4c9926ca6d0365ed1e099afa5bc23"
|
|
1244
1257
|
dependencies = [
|
|
1245
1258
|
"cfg-if",
|
|
1246
1259
|
"cpufeatures 0.3.0",
|
|
1247
1260
|
"curve25519-dalek-derive",
|
|
1248
1261
|
"digest 0.11.3",
|
|
1249
1262
|
"fiat-crypto 0.3.0",
|
|
1263
|
+
"rand_core 0.10.1",
|
|
1250
1264
|
"rustc_version",
|
|
1251
1265
|
"subtle",
|
|
1252
1266
|
"zeroize",
|
|
@@ -1260,7 +1274,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
|
1260
1274
|
dependencies = [
|
|
1261
1275
|
"proc-macro2",
|
|
1262
1276
|
"quote",
|
|
1263
|
-
"syn",
|
|
1277
|
+
"syn 2.0.119",
|
|
1264
1278
|
]
|
|
1265
1279
|
|
|
1266
1280
|
[[package]]
|
|
@@ -1288,7 +1302,7 @@ dependencies = [
|
|
|
1288
1302
|
"defmt-parser",
|
|
1289
1303
|
"proc-macro2",
|
|
1290
1304
|
"quote",
|
|
1291
|
-
"syn",
|
|
1305
|
+
"syn 2.0.119",
|
|
1292
1306
|
]
|
|
1293
1307
|
|
|
1294
1308
|
[[package]]
|
|
@@ -1308,7 +1322,7 @@ checksum = "780eb241654bf097afb00fc5f054a09b687dad862e485fdcf8399bb056565370"
|
|
|
1308
1322
|
dependencies = [
|
|
1309
1323
|
"proc-macro2",
|
|
1310
1324
|
"quote",
|
|
1311
|
-
"syn",
|
|
1325
|
+
"syn 2.0.119",
|
|
1312
1326
|
]
|
|
1313
1327
|
|
|
1314
1328
|
[[package]]
|
|
@@ -1340,7 +1354,7 @@ checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
|
|
|
1340
1354
|
dependencies = [
|
|
1341
1355
|
"proc-macro2",
|
|
1342
1356
|
"quote",
|
|
1343
|
-
"syn",
|
|
1357
|
+
"syn 2.0.119",
|
|
1344
1358
|
]
|
|
1345
1359
|
|
|
1346
1360
|
[[package]]
|
|
@@ -1388,7 +1402,7 @@ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
|
1388
1402
|
dependencies = [
|
|
1389
1403
|
"proc-macro2",
|
|
1390
1404
|
"quote",
|
|
1391
|
-
"syn",
|
|
1405
|
+
"syn 2.0.119",
|
|
1392
1406
|
]
|
|
1393
1407
|
|
|
1394
1408
|
[[package]]
|
|
@@ -1461,11 +1475,11 @@ dependencies = [
|
|
|
1461
1475
|
|
|
1462
1476
|
[[package]]
|
|
1463
1477
|
name = "ed25519-dalek"
|
|
1464
|
-
version = "3.0.0
|
|
1478
|
+
version = "3.0.0"
|
|
1465
1479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
-
checksum = "
|
|
1480
|
+
checksum = "6ebaa1a2bf1290ab3bfe5a7b771d050ebffab2711c19a81691c683a5144a25de"
|
|
1467
1481
|
dependencies = [
|
|
1468
|
-
"curve25519-dalek 5.0.0
|
|
1482
|
+
"curve25519-dalek 5.0.0",
|
|
1469
1483
|
"ed25519 3.0.0",
|
|
1470
1484
|
"rand_core 0.10.1",
|
|
1471
1485
|
"serde",
|
|
@@ -1536,7 +1550,7 @@ dependencies = [
|
|
|
1536
1550
|
"once_cell",
|
|
1537
1551
|
"proc-macro2",
|
|
1538
1552
|
"quote",
|
|
1539
|
-
"syn",
|
|
1553
|
+
"syn 2.0.119",
|
|
1540
1554
|
]
|
|
1541
1555
|
|
|
1542
1556
|
[[package]]
|
|
@@ -1721,9 +1735,9 @@ dependencies = [
|
|
|
1721
1735
|
|
|
1722
1736
|
[[package]]
|
|
1723
1737
|
name = "futures-core"
|
|
1724
|
-
version = "0.3.
|
|
1738
|
+
version = "0.3.33"
|
|
1725
1739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
-
checksum = "
|
|
1740
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
1727
1741
|
|
|
1728
1742
|
[[package]]
|
|
1729
1743
|
name = "futures-executor"
|
|
@@ -1750,7 +1764,7 @@ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
|
1750
1764
|
dependencies = [
|
|
1751
1765
|
"proc-macro2",
|
|
1752
1766
|
"quote",
|
|
1753
|
-
"syn",
|
|
1767
|
+
"syn 2.0.119",
|
|
1754
1768
|
]
|
|
1755
1769
|
|
|
1756
1770
|
[[package]]
|
|
@@ -1820,20 +1834,20 @@ dependencies = [
|
|
|
1820
1834
|
|
|
1821
1835
|
[[package]]
|
|
1822
1836
|
name = "get-size-derive2"
|
|
1823
|
-
version = "0.
|
|
1837
|
+
version = "0.10.3"
|
|
1824
1838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1825
|
-
checksum = "
|
|
1839
|
+
checksum = "c736d226c32e496b8377813b52269e11ad3a48d8373b68862d0364f04fd1229d"
|
|
1826
1840
|
dependencies = [
|
|
1827
1841
|
"attribute-derive",
|
|
1828
1842
|
"quote",
|
|
1829
|
-
"syn",
|
|
1843
|
+
"syn 2.0.119",
|
|
1830
1844
|
]
|
|
1831
1845
|
|
|
1832
1846
|
[[package]]
|
|
1833
1847
|
name = "get-size2"
|
|
1834
|
-
version = "0.
|
|
1848
|
+
version = "0.10.1"
|
|
1835
1849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
-
checksum = "
|
|
1850
|
+
checksum = "823645bc6404ae2915707777061a47d3a031a9ee0bff51b34ec973df3d8d2990"
|
|
1837
1851
|
dependencies = [
|
|
1838
1852
|
"compact_str",
|
|
1839
1853
|
"get-size-derive2",
|
|
@@ -2119,7 +2133,7 @@ version = "0.1.20"
|
|
|
2119
2133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2120
2134
|
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
2121
2135
|
dependencies = [
|
|
2122
|
-
"base64",
|
|
2136
|
+
"base64 0.22.1",
|
|
2123
2137
|
"bytes",
|
|
2124
2138
|
"futures-channel",
|
|
2125
2139
|
"futures-util",
|
|
@@ -2409,7 +2423,7 @@ dependencies = [
|
|
|
2409
2423
|
"heck",
|
|
2410
2424
|
"proc-macro2",
|
|
2411
2425
|
"quote",
|
|
2412
|
-
"syn",
|
|
2426
|
+
"syn 2.0.119",
|
|
2413
2427
|
]
|
|
2414
2428
|
|
|
2415
2429
|
[[package]]
|
|
@@ -2436,6 +2450,15 @@ dependencies = [
|
|
|
2436
2450
|
"either",
|
|
2437
2451
|
]
|
|
2438
2452
|
|
|
2453
|
+
[[package]]
|
|
2454
|
+
name = "itertools"
|
|
2455
|
+
version = "0.15.0"
|
|
2456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2457
|
+
checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
|
|
2458
|
+
dependencies = [
|
|
2459
|
+
"either",
|
|
2460
|
+
]
|
|
2461
|
+
|
|
2439
2462
|
[[package]]
|
|
2440
2463
|
name = "itoa"
|
|
2441
2464
|
version = "1.0.18"
|
|
@@ -2479,7 +2502,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2479
2502
|
checksum = "8bdc5a74b0feeb5e6a1dc2dd08c34280a61e37668d10a6a3b27ad69d0fb9ce2e"
|
|
2480
2503
|
dependencies = [
|
|
2481
2504
|
"aho-corasick",
|
|
2482
|
-
"base64",
|
|
2505
|
+
"base64 0.22.1",
|
|
2483
2506
|
"bstr",
|
|
2484
2507
|
"jaq-core",
|
|
2485
2508
|
"jiff",
|
|
@@ -2513,7 +2536,7 @@ checksum = "d0879bd39df99c4c5e2c6615ccc026391a423dde10532c573e6086eb94a802cc"
|
|
|
2513
2536
|
dependencies = [
|
|
2514
2537
|
"proc-macro2",
|
|
2515
2538
|
"quote",
|
|
2516
|
-
"syn",
|
|
2539
|
+
"syn 2.0.119",
|
|
2517
2540
|
]
|
|
2518
2541
|
|
|
2519
2542
|
[[package]]
|
|
@@ -2572,7 +2595,7 @@ dependencies = [
|
|
|
2572
2595
|
"quote",
|
|
2573
2596
|
"rustc_version",
|
|
2574
2597
|
"simd_cesu8",
|
|
2575
|
-
"syn",
|
|
2598
|
+
"syn 2.0.119",
|
|
2576
2599
|
]
|
|
2577
2600
|
|
|
2578
2601
|
[[package]]
|
|
@@ -2591,7 +2614,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2591
2614
|
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
2592
2615
|
dependencies = [
|
|
2593
2616
|
"quote",
|
|
2594
|
-
"syn",
|
|
2617
|
+
"syn 2.0.119",
|
|
2595
2618
|
]
|
|
2596
2619
|
|
|
2597
2620
|
[[package]]
|
|
@@ -2715,7 +2738,7 @@ checksum = "32d59e20403c7d08fe62b4376edfe5c7fb2ef1e6b1465379686d0f21c8df444b"
|
|
|
2715
2738
|
dependencies = [
|
|
2716
2739
|
"proc-macro2",
|
|
2717
2740
|
"quote",
|
|
2718
|
-
"syn",
|
|
2741
|
+
"syn 2.0.119",
|
|
2719
2742
|
]
|
|
2720
2743
|
|
|
2721
2744
|
[[package]]
|
|
@@ -2767,7 +2790,7 @@ dependencies = [
|
|
|
2767
2790
|
"manyhow-macros",
|
|
2768
2791
|
"proc-macro2",
|
|
2769
2792
|
"quote",
|
|
2770
|
-
"syn",
|
|
2793
|
+
"syn 2.0.119",
|
|
2771
2794
|
]
|
|
2772
2795
|
|
|
2773
2796
|
[[package]]
|
|
@@ -2840,7 +2863,7 @@ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
|
|
|
2840
2863
|
dependencies = [
|
|
2841
2864
|
"proc-macro2",
|
|
2842
2865
|
"quote",
|
|
2843
|
-
"syn",
|
|
2866
|
+
"syn 2.0.119",
|
|
2844
2867
|
]
|
|
2845
2868
|
|
|
2846
2869
|
[[package]]
|
|
@@ -2888,7 +2911,7 @@ checksum = "0a770347f4ce22c743dbf02c1a55af1dd88ee9bc35decc392e69e8df911fd38b"
|
|
|
2888
2911
|
dependencies = [
|
|
2889
2912
|
"proc-macro2",
|
|
2890
2913
|
"quote",
|
|
2891
|
-
"syn",
|
|
2914
|
+
"syn 2.0.119",
|
|
2892
2915
|
]
|
|
2893
2916
|
|
|
2894
2917
|
[[package]]
|
|
@@ -2902,7 +2925,7 @@ dependencies = [
|
|
|
2902
2925
|
"module-lattice",
|
|
2903
2926
|
"pkcs8 0.11.0",
|
|
2904
2927
|
"rand_core 0.10.1",
|
|
2905
|
-
"sha3",
|
|
2928
|
+
"sha3 0.11.0",
|
|
2906
2929
|
]
|
|
2907
2930
|
|
|
2908
2931
|
[[package]]
|
|
@@ -2918,18 +2941,20 @@ dependencies = [
|
|
|
2918
2941
|
|
|
2919
2942
|
[[package]]
|
|
2920
2943
|
name = "monty"
|
|
2921
|
-
version = "0.0.
|
|
2922
|
-
source = "
|
|
2944
|
+
version = "0.0.19"
|
|
2945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
+
checksum = "58b15149448f6034f1bd581638fdf821753b0182a4c5eaf13e4cfd92f95d966b"
|
|
2923
2947
|
dependencies = [
|
|
2924
2948
|
"ahash",
|
|
2925
2949
|
"chrono",
|
|
2926
2950
|
"fancy-regex 0.17.0",
|
|
2927
2951
|
"hashbrown 0.16.1",
|
|
2928
|
-
"indexmap",
|
|
2929
2952
|
"itertools 0.14.0",
|
|
2953
|
+
"itoa",
|
|
2930
2954
|
"jiter",
|
|
2931
2955
|
"libm",
|
|
2932
2956
|
"monty-macros",
|
|
2957
|
+
"monty-types",
|
|
2933
2958
|
"num-bigint",
|
|
2934
2959
|
"num-integer",
|
|
2935
2960
|
"num-traits",
|
|
@@ -2939,29 +2964,48 @@ dependencies = [
|
|
|
2939
2964
|
"ruff_python_stdlib",
|
|
2940
2965
|
"ruff_text_size",
|
|
2941
2966
|
"serde",
|
|
2942
|
-
"serde_json",
|
|
2943
2967
|
"smallvec",
|
|
2944
2968
|
"speedate",
|
|
2945
2969
|
"strum 0.27.2",
|
|
2970
|
+
"unicode-general-category",
|
|
2971
|
+
"unicode-normalization",
|
|
2972
|
+
"unicode_names2",
|
|
2946
2973
|
]
|
|
2947
2974
|
|
|
2948
2975
|
[[package]]
|
|
2949
2976
|
name = "monty-macros"
|
|
2950
|
-
version = "0.0.
|
|
2951
|
-
source = "
|
|
2977
|
+
version = "0.0.19"
|
|
2978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2979
|
+
checksum = "72b6c93dbe4b43469c6d2ece3732053f3fc7af278cf71045ed59c7b6da381530"
|
|
2952
2980
|
dependencies = [
|
|
2953
2981
|
"proc-macro2",
|
|
2954
2982
|
"quote",
|
|
2955
|
-
"syn",
|
|
2983
|
+
"syn 2.0.119",
|
|
2984
|
+
]
|
|
2985
|
+
|
|
2986
|
+
[[package]]
|
|
2987
|
+
name = "monty-types"
|
|
2988
|
+
version = "0.0.19"
|
|
2989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2990
|
+
checksum = "3a8988fa8d9902432d5e685a7bb97c84844022dd9560e796c00b119a4c27519b"
|
|
2991
|
+
dependencies = [
|
|
2992
|
+
"chrono",
|
|
2993
|
+
"monty-macros",
|
|
2994
|
+
"num-bigint",
|
|
2995
|
+
"num-traits",
|
|
2996
|
+
"serde",
|
|
2997
|
+
"strum 0.27.2",
|
|
2998
|
+
"unicode-general-category",
|
|
2999
|
+
"web-time",
|
|
2956
3000
|
]
|
|
2957
3001
|
|
|
2958
3002
|
[[package]]
|
|
2959
3003
|
name = "napi"
|
|
2960
|
-
version = "3.
|
|
3004
|
+
version = "3.11.0"
|
|
2961
3005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
-
checksum = "
|
|
3006
|
+
checksum = "de33522036981030a75c231829566bc63414e08101a6f5ff4ac6cef19c8e0941"
|
|
2963
3007
|
dependencies = [
|
|
2964
|
-
"bitflags 2.13.
|
|
3008
|
+
"bitflags 2.13.1",
|
|
2965
3009
|
"ctor",
|
|
2966
3010
|
"futures",
|
|
2967
3011
|
"napi-build",
|
|
@@ -2979,36 +3023,36 @@ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
|
|
|
2979
3023
|
|
|
2980
3024
|
[[package]]
|
|
2981
3025
|
name = "napi-derive"
|
|
2982
|
-
version = "3.
|
|
3026
|
+
version = "3.6.0"
|
|
2983
3027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
-
checksum = "
|
|
3028
|
+
checksum = "a49c513341a61a16a10af6efcce46b30d0822ba2d4fb197d24d33dfc199c78d5"
|
|
2985
3029
|
dependencies = [
|
|
2986
3030
|
"convert_case",
|
|
2987
3031
|
"ctor",
|
|
2988
3032
|
"napi-derive-backend",
|
|
2989
3033
|
"proc-macro2",
|
|
2990
3034
|
"quote",
|
|
2991
|
-
"syn",
|
|
3035
|
+
"syn 2.0.119",
|
|
2992
3036
|
]
|
|
2993
3037
|
|
|
2994
3038
|
[[package]]
|
|
2995
3039
|
name = "napi-derive-backend"
|
|
2996
|
-
version = "
|
|
3040
|
+
version = "6.0.0"
|
|
2997
3041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2998
|
-
checksum = "
|
|
3042
|
+
checksum = "4747005fa3e2c9989ac45a723a514c5db2411238b72981a3cda4c701a9dfea17"
|
|
2999
3043
|
dependencies = [
|
|
3000
3044
|
"convert_case",
|
|
3001
3045
|
"proc-macro2",
|
|
3002
3046
|
"quote",
|
|
3003
3047
|
"semver",
|
|
3004
|
-
"syn",
|
|
3048
|
+
"syn 2.0.119",
|
|
3005
3049
|
]
|
|
3006
3050
|
|
|
3007
3051
|
[[package]]
|
|
3008
3052
|
name = "napi-sys"
|
|
3009
|
-
version = "3.
|
|
3053
|
+
version = "3.3.0"
|
|
3010
3054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3011
|
-
checksum = "
|
|
3055
|
+
checksum = "85fbf1fa9f1babfe396d74bbbf52b3643770243e8f5b0b46715d4caf7f0dfc9a"
|
|
3012
3056
|
dependencies = [
|
|
3013
3057
|
"libloading 0.9.0",
|
|
3014
3058
|
]
|
|
@@ -3028,7 +3072,7 @@ version = "0.31.3"
|
|
|
3028
3072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3029
3073
|
checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
|
|
3030
3074
|
dependencies = [
|
|
3031
|
-
"bitflags 2.13.
|
|
3075
|
+
"bitflags 2.13.1",
|
|
3032
3076
|
"cfg-if",
|
|
3033
3077
|
"cfg_aliases",
|
|
3034
3078
|
"libc",
|
|
@@ -3167,7 +3211,7 @@ checksum = "b237422b014f8f8fff75bb9379e697d13f8d57551a22c88bebb39f073c1bf696"
|
|
|
3167
3211
|
dependencies = [
|
|
3168
3212
|
"proc-macro2",
|
|
3169
3213
|
"quote",
|
|
3170
|
-
"syn",
|
|
3214
|
+
"syn 2.0.119",
|
|
3171
3215
|
]
|
|
3172
3216
|
|
|
3173
3217
|
[[package]]
|
|
@@ -3188,7 +3232,7 @@ version = "0.117.0"
|
|
|
3188
3232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3189
3233
|
checksum = "e4222e4e7a1ab01b2a20420a5a65798377a748ea37ee7ece4d7a6b733f86eb61"
|
|
3190
3234
|
dependencies = [
|
|
3191
|
-
"bitflags 2.13.
|
|
3235
|
+
"bitflags 2.13.1",
|
|
3192
3236
|
"oxc_allocator",
|
|
3193
3237
|
"oxc_ast_macros",
|
|
3194
3238
|
"oxc_data_structures",
|
|
@@ -3208,7 +3252,7 @@ dependencies = [
|
|
|
3208
3252
|
"phf 0.13.1",
|
|
3209
3253
|
"proc-macro2",
|
|
3210
3254
|
"quote",
|
|
3211
|
-
"syn",
|
|
3255
|
+
"syn 2.0.119",
|
|
3212
3256
|
]
|
|
3213
3257
|
|
|
3214
3258
|
[[package]]
|
|
@@ -3266,7 +3310,7 @@ version = "0.117.0"
|
|
|
3266
3310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3267
3311
|
checksum = "3278d4f34d01cdaf85a2391d7b12daba1d95c20c1ff2ac9316d3c28f36353e4e"
|
|
3268
3312
|
dependencies = [
|
|
3269
|
-
"bitflags 2.13.
|
|
3313
|
+
"bitflags 2.13.1",
|
|
3270
3314
|
"cow-utils",
|
|
3271
3315
|
"memchr",
|
|
3272
3316
|
"num-bigint",
|
|
@@ -3289,7 +3333,7 @@ version = "0.117.0"
|
|
|
3289
3333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3290
3334
|
checksum = "f3d680252672b22c24abbaf6e401eace0be9f53072a03411936204625ff349d0"
|
|
3291
3335
|
dependencies = [
|
|
3292
|
-
"bitflags 2.13.
|
|
3336
|
+
"bitflags 2.13.1",
|
|
3293
3337
|
"oxc_allocator",
|
|
3294
3338
|
"oxc_ast_macros",
|
|
3295
3339
|
"oxc_diagnostics",
|
|
@@ -3331,7 +3375,7 @@ version = "0.117.0"
|
|
|
3331
3375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3332
3376
|
checksum = "e0f1617f0aa890517fb61ffa1d2d73a8497aca52e84ef6f027fad1e93250eccc"
|
|
3333
3377
|
dependencies = [
|
|
3334
|
-
"bitflags 2.13.
|
|
3378
|
+
"bitflags 2.13.1",
|
|
3335
3379
|
"cow-utils",
|
|
3336
3380
|
"dragonbox_ecma",
|
|
3337
3381
|
"nonmax",
|
|
@@ -3346,9 +3390,9 @@ dependencies = [
|
|
|
3346
3390
|
|
|
3347
3391
|
[[package]]
|
|
3348
3392
|
name = "p256"
|
|
3349
|
-
version = "0.14.0
|
|
3393
|
+
version = "0.14.0"
|
|
3350
3394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3351
|
-
checksum = "
|
|
3395
|
+
checksum = "d2c9239b2dbc807adbbe147e8cf72ea7450c3a0aabe62cb8e75ff4ec22e1f72a"
|
|
3352
3396
|
dependencies = [
|
|
3353
3397
|
"ecdsa",
|
|
3354
3398
|
"elliptic-curve",
|
|
@@ -3359,9 +3403,9 @@ dependencies = [
|
|
|
3359
3403
|
|
|
3360
3404
|
[[package]]
|
|
3361
3405
|
name = "p384"
|
|
3362
|
-
version = "0.14.0
|
|
3406
|
+
version = "0.14.0"
|
|
3363
3407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3364
|
-
checksum = "
|
|
3408
|
+
checksum = "d17b851e6b3e378ab4ecb07fa2ed23f4d15f075735f8fec9fa1e7bdce5f8301f"
|
|
3365
3409
|
dependencies = [
|
|
3366
3410
|
"ecdsa",
|
|
3367
3411
|
"elliptic-curve",
|
|
@@ -3373,9 +3417,9 @@ dependencies = [
|
|
|
3373
3417
|
|
|
3374
3418
|
[[package]]
|
|
3375
3419
|
name = "p521"
|
|
3376
|
-
version = "0.14.0
|
|
3420
|
+
version = "0.14.0"
|
|
3377
3421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3378
|
-
checksum = "
|
|
3422
|
+
checksum = "4ad64cc32c2dc466317c12ee5853e61f159f9eab1fe7efade0395dc2e7b43449"
|
|
3379
3423
|
dependencies = [
|
|
3380
3424
|
"base16ct",
|
|
3381
3425
|
"ecdsa",
|
|
@@ -3568,7 +3612,7 @@ dependencies = [
|
|
|
3568
3612
|
"phf_shared 0.13.1",
|
|
3569
3613
|
"proc-macro2",
|
|
3570
3614
|
"quote",
|
|
3571
|
-
"syn",
|
|
3615
|
+
"syn 2.0.119",
|
|
3572
3616
|
]
|
|
3573
3617
|
|
|
3574
3618
|
[[package]]
|
|
@@ -3786,12 +3830,12 @@ dependencies = [
|
|
|
3786
3830
|
|
|
3787
3831
|
[[package]]
|
|
3788
3832
|
name = "prettyplease"
|
|
3789
|
-
version = "0.
|
|
3833
|
+
version = "0.3.0"
|
|
3790
3834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3791
|
-
checksum = "
|
|
3835
|
+
checksum = "2bfe0f4c752e450fc2faf62654f1c134747922825d5b04ca717b8874f41a40c0"
|
|
3792
3836
|
dependencies = [
|
|
3793
3837
|
"proc-macro2",
|
|
3794
|
-
"syn",
|
|
3838
|
+
"syn 3.0.3",
|
|
3795
3839
|
]
|
|
3796
3840
|
|
|
3797
3841
|
[[package]]
|
|
@@ -3840,7 +3884,7 @@ dependencies = [
|
|
|
3840
3884
|
"proc-macro-error-attr2",
|
|
3841
3885
|
"proc-macro2",
|
|
3842
3886
|
"quote",
|
|
3843
|
-
"syn",
|
|
3887
|
+
"syn 2.0.119",
|
|
3844
3888
|
]
|
|
3845
3889
|
|
|
3846
3890
|
[[package]]
|
|
@@ -3856,9 +3900,9 @@ dependencies = [
|
|
|
3856
3900
|
|
|
3857
3901
|
[[package]]
|
|
3858
3902
|
name = "proc-macro2"
|
|
3859
|
-
version = "1.0.
|
|
3903
|
+
version = "1.0.107"
|
|
3860
3904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3861
|
-
checksum = "
|
|
3905
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
3862
3906
|
dependencies = [
|
|
3863
3907
|
"unicode-ident",
|
|
3864
3908
|
]
|
|
@@ -3871,7 +3915,7 @@ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
|
3871
3915
|
dependencies = [
|
|
3872
3916
|
"bit-set",
|
|
3873
3917
|
"bit-vec",
|
|
3874
|
-
"bitflags 2.13.
|
|
3918
|
+
"bitflags 2.13.1",
|
|
3875
3919
|
"num-traits",
|
|
3876
3920
|
"rand 0.9.4",
|
|
3877
3921
|
"rand_chacha 0.9.0",
|
|
@@ -3940,7 +3984,7 @@ dependencies = [
|
|
|
3940
3984
|
"proc-macro2",
|
|
3941
3985
|
"pyo3-macros-backend",
|
|
3942
3986
|
"quote",
|
|
3943
|
-
"syn",
|
|
3987
|
+
"syn 2.0.119",
|
|
3944
3988
|
]
|
|
3945
3989
|
|
|
3946
3990
|
[[package]]
|
|
@@ -3952,7 +3996,7 @@ dependencies = [
|
|
|
3952
3996
|
"heck",
|
|
3953
3997
|
"proc-macro2",
|
|
3954
3998
|
"quote",
|
|
3955
|
-
"syn",
|
|
3999
|
+
"syn 2.0.119",
|
|
3956
4000
|
]
|
|
3957
4001
|
|
|
3958
4002
|
[[package]]
|
|
@@ -3963,9 +4007,9 @@ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
|
3963
4007
|
|
|
3964
4008
|
[[package]]
|
|
3965
4009
|
name = "quote"
|
|
3966
|
-
version = "1.0.
|
|
4010
|
+
version = "1.0.47"
|
|
3967
4011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3968
|
-
checksum = "
|
|
4012
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
3969
4013
|
dependencies = [
|
|
3970
4014
|
"proc-macro2",
|
|
3971
4015
|
]
|
|
@@ -3989,7 +4033,7 @@ dependencies = [
|
|
|
3989
4033
|
"proc-macro-utils",
|
|
3990
4034
|
"proc-macro2",
|
|
3991
4035
|
"quote",
|
|
3992
|
-
"syn",
|
|
4036
|
+
"syn 2.0.119",
|
|
3993
4037
|
]
|
|
3994
4038
|
|
|
3995
4039
|
[[package]]
|
|
@@ -4149,7 +4193,7 @@ version = "0.5.18"
|
|
|
4149
4193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4150
4194
|
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
4151
4195
|
dependencies = [
|
|
4152
|
-
"bitflags 2.13.
|
|
4196
|
+
"bitflags 2.13.1",
|
|
4153
4197
|
]
|
|
4154
4198
|
|
|
4155
4199
|
[[package]]
|
|
@@ -4193,7 +4237,7 @@ version = "0.13.4"
|
|
|
4193
4237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4194
4238
|
checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
|
|
4195
4239
|
dependencies = [
|
|
4196
|
-
"base64",
|
|
4240
|
+
"base64 0.22.1",
|
|
4197
4241
|
"bytes",
|
|
4198
4242
|
"futures-core",
|
|
4199
4243
|
"futures-util",
|
|
@@ -4281,11 +4325,13 @@ dependencies = [
|
|
|
4281
4325
|
|
|
4282
4326
|
[[package]]
|
|
4283
4327
|
name = "ruff_python_ast"
|
|
4284
|
-
version = "0.0.
|
|
4285
|
-
source = "
|
|
4328
|
+
version = "0.0.3"
|
|
4329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4330
|
+
checksum = "a10ab966362319801f5e85ce5c6aeac69f0cf50936a31e888f5d004e9279f337"
|
|
4286
4331
|
dependencies = [
|
|
4287
4332
|
"aho-corasick",
|
|
4288
|
-
"
|
|
4333
|
+
"arrayvec",
|
|
4334
|
+
"bitflags 2.13.1",
|
|
4289
4335
|
"compact_str",
|
|
4290
4336
|
"get-size2",
|
|
4291
4337
|
"is-macro",
|
|
@@ -4300,10 +4346,11 @@ dependencies = [
|
|
|
4300
4346
|
|
|
4301
4347
|
[[package]]
|
|
4302
4348
|
name = "ruff_python_parser"
|
|
4303
|
-
version = "0.0.
|
|
4304
|
-
source = "
|
|
4349
|
+
version = "0.0.3"
|
|
4350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4351
|
+
checksum = "4e3b8436fb010636ea79ce545acc3e391296ef4e804f7cef336dd5f9c8a4aa3a"
|
|
4305
4352
|
dependencies = [
|
|
4306
|
-
"bitflags 2.13.
|
|
4353
|
+
"bitflags 2.13.1",
|
|
4307
4354
|
"bstr",
|
|
4308
4355
|
"compact_str",
|
|
4309
4356
|
"get-size2",
|
|
@@ -4321,19 +4368,21 @@ dependencies = [
|
|
|
4321
4368
|
|
|
4322
4369
|
[[package]]
|
|
4323
4370
|
name = "ruff_python_stdlib"
|
|
4324
|
-
version = "0.0.
|
|
4325
|
-
source = "
|
|
4371
|
+
version = "0.0.3"
|
|
4372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4373
|
+
checksum = "8c8860927bf42efdabb31ccb2ac9b8f98ee43897b45536f8023e217b158e49a4"
|
|
4326
4374
|
dependencies = [
|
|
4327
|
-
"bitflags 2.13.
|
|
4375
|
+
"bitflags 2.13.1",
|
|
4328
4376
|
"unicode-ident",
|
|
4329
4377
|
]
|
|
4330
4378
|
|
|
4331
4379
|
[[package]]
|
|
4332
4380
|
name = "ruff_python_trivia"
|
|
4333
|
-
version = "0.0.
|
|
4334
|
-
source = "
|
|
4381
|
+
version = "0.0.3"
|
|
4382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4383
|
+
checksum = "969e4a14b2550818efea99b9e2361c714c72e4f1fb94799251d55aed20345189"
|
|
4335
4384
|
dependencies = [
|
|
4336
|
-
"itertools 0.
|
|
4385
|
+
"itertools 0.15.0",
|
|
4337
4386
|
"ruff_source_file",
|
|
4338
4387
|
"ruff_text_size",
|
|
4339
4388
|
"unicode-ident",
|
|
@@ -4341,8 +4390,9 @@ dependencies = [
|
|
|
4341
4390
|
|
|
4342
4391
|
[[package]]
|
|
4343
4392
|
name = "ruff_source_file"
|
|
4344
|
-
version = "0.0.
|
|
4345
|
-
source = "
|
|
4393
|
+
version = "0.0.3"
|
|
4394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4395
|
+
checksum = "c194e02d121e4a1744464ce3a982c4c196eb039bbf67532d18c8ce09f8da6381"
|
|
4346
4396
|
dependencies = [
|
|
4347
4397
|
"memchr",
|
|
4348
4398
|
"ruff_text_size",
|
|
@@ -4350,21 +4400,22 @@ dependencies = [
|
|
|
4350
4400
|
|
|
4351
4401
|
[[package]]
|
|
4352
4402
|
name = "ruff_text_size"
|
|
4353
|
-
version = "0.0.
|
|
4354
|
-
source = "
|
|
4403
|
+
version = "0.0.3"
|
|
4404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4405
|
+
checksum = "c91652ad39be604bc4d5299a5d19feccdd89e255609d89a031e7bb8e0d0aef9f"
|
|
4355
4406
|
dependencies = [
|
|
4356
4407
|
"get-size2",
|
|
4357
4408
|
]
|
|
4358
4409
|
|
|
4359
4410
|
[[package]]
|
|
4360
4411
|
name = "russh"
|
|
4361
|
-
version = "0.62.
|
|
4412
|
+
version = "0.62.4"
|
|
4362
4413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4363
|
-
checksum = "
|
|
4414
|
+
checksum = "b8b67b5a0d8068c89dcbe9d95df986af7a851d1f3c604525274c37468e60464f"
|
|
4364
4415
|
dependencies = [
|
|
4365
4416
|
"aes 0.9.1",
|
|
4366
4417
|
"aws-lc-rs",
|
|
4367
|
-
"bitflags 2.13.
|
|
4418
|
+
"bitflags 2.13.1",
|
|
4368
4419
|
"block-padding",
|
|
4369
4420
|
"byteorder",
|
|
4370
4421
|
"bytes",
|
|
@@ -4372,13 +4423,13 @@ dependencies = [
|
|
|
4372
4423
|
"cipher 0.5.2",
|
|
4373
4424
|
"crypto-bigint",
|
|
4374
4425
|
"ctr 0.10.1",
|
|
4375
|
-
"curve25519-dalek 5.0.0
|
|
4426
|
+
"curve25519-dalek 5.0.0",
|
|
4376
4427
|
"data-encoding",
|
|
4377
4428
|
"delegate",
|
|
4378
4429
|
"der 0.8.0",
|
|
4379
4430
|
"digest 0.11.3",
|
|
4380
4431
|
"ecdsa",
|
|
4381
|
-
"ed25519-dalek 3.0.0
|
|
4432
|
+
"ed25519-dalek 3.0.0",
|
|
4382
4433
|
"elliptic-curve",
|
|
4383
4434
|
"enum_dispatch",
|
|
4384
4435
|
"flate2",
|
|
@@ -4415,7 +4466,7 @@ dependencies = [
|
|
|
4415
4466
|
"sec1",
|
|
4416
4467
|
"sha1",
|
|
4417
4468
|
"sha2 0.11.0",
|
|
4418
|
-
"sha3",
|
|
4469
|
+
"sha3 0.12.0",
|
|
4419
4470
|
"signature 3.0.0",
|
|
4420
4471
|
"spki 0.8.0",
|
|
4421
4472
|
"ssh-encoding",
|
|
@@ -4483,7 +4534,7 @@ version = "1.1.4"
|
|
|
4483
4534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4484
4535
|
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
4485
4536
|
dependencies = [
|
|
4486
|
-
"bitflags 2.13.
|
|
4537
|
+
"bitflags 2.13.1",
|
|
4487
4538
|
"errno",
|
|
4488
4539
|
"libc",
|
|
4489
4540
|
"linux-raw-sys",
|
|
@@ -4588,7 +4639,7 @@ version = "18.0.1"
|
|
|
4588
4639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4589
4640
|
checksum = "53f6a737db68eb1a8ccff86b584b2fc13eca6a7bb6f78ebc7c529547e3ab9684"
|
|
4590
4641
|
dependencies = [
|
|
4591
|
-
"bitflags 2.13.
|
|
4642
|
+
"bitflags 2.13.1",
|
|
4592
4643
|
"cfg-if",
|
|
4593
4644
|
"clipboard-win",
|
|
4594
4645
|
"home",
|
|
@@ -4681,7 +4732,7 @@ version = "3.7.0"
|
|
|
4681
4732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4682
4733
|
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
4683
4734
|
dependencies = [
|
|
4684
|
-
"bitflags 2.13.
|
|
4735
|
+
"bitflags 2.13.1",
|
|
4685
4736
|
"core-foundation",
|
|
4686
4737
|
"core-foundation-sys",
|
|
4687
4738
|
"libc",
|
|
@@ -4727,9 +4778,9 @@ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
|
4727
4778
|
|
|
4728
4779
|
[[package]]
|
|
4729
4780
|
name = "serde"
|
|
4730
|
-
version = "1.0.
|
|
4781
|
+
version = "1.0.229"
|
|
4731
4782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4732
|
-
checksum = "
|
|
4783
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
4733
4784
|
dependencies = [
|
|
4734
4785
|
"serde_core",
|
|
4735
4786
|
"serde_derive",
|
|
@@ -4748,29 +4799,29 @@ dependencies = [
|
|
|
4748
4799
|
|
|
4749
4800
|
[[package]]
|
|
4750
4801
|
name = "serde_core"
|
|
4751
|
-
version = "1.0.
|
|
4802
|
+
version = "1.0.229"
|
|
4752
4803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4753
|
-
checksum = "
|
|
4804
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
4754
4805
|
dependencies = [
|
|
4755
4806
|
"serde_derive",
|
|
4756
4807
|
]
|
|
4757
4808
|
|
|
4758
4809
|
[[package]]
|
|
4759
4810
|
name = "serde_derive"
|
|
4760
|
-
version = "1.0.
|
|
4811
|
+
version = "1.0.229"
|
|
4761
4812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4762
|
-
checksum = "
|
|
4813
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
4763
4814
|
dependencies = [
|
|
4764
4815
|
"proc-macro2",
|
|
4765
4816
|
"quote",
|
|
4766
|
-
"syn",
|
|
4817
|
+
"syn 3.0.3",
|
|
4767
4818
|
]
|
|
4768
4819
|
|
|
4769
4820
|
[[package]]
|
|
4770
4821
|
name = "serde_json"
|
|
4771
|
-
version = "1.0.
|
|
4822
|
+
version = "1.0.151"
|
|
4772
4823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4773
|
-
checksum = "
|
|
4824
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
4774
4825
|
dependencies = [
|
|
4775
4826
|
"itoa",
|
|
4776
4827
|
"memchr",
|
|
@@ -4820,7 +4871,7 @@ checksum = "94e153fc76e1c6a068703d6d29c508a0b15c061c4b7e43da59cc097bc342673c"
|
|
|
4820
4871
|
dependencies = [
|
|
4821
4872
|
"proc-macro2",
|
|
4822
4873
|
"quote",
|
|
4823
|
-
"syn",
|
|
4874
|
+
"syn 2.0.119",
|
|
4824
4875
|
]
|
|
4825
4876
|
|
|
4826
4877
|
[[package]]
|
|
@@ -4872,6 +4923,17 @@ dependencies = [
|
|
|
4872
4923
|
"keccak",
|
|
4873
4924
|
]
|
|
4874
4925
|
|
|
4926
|
+
[[package]]
|
|
4927
|
+
name = "sha3"
|
|
4928
|
+
version = "0.12.0"
|
|
4929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4930
|
+
checksum = "bc9bad02c26382724b2d2692c6f179285e4b54eeecd7968f52a50059c3c11759"
|
|
4931
|
+
dependencies = [
|
|
4932
|
+
"digest 0.11.3",
|
|
4933
|
+
"keccak",
|
|
4934
|
+
"sponge-cursor",
|
|
4935
|
+
]
|
|
4936
|
+
|
|
4875
4937
|
[[package]]
|
|
4876
4938
|
name = "sharded-slab"
|
|
4877
4939
|
version = "0.1.7"
|
|
@@ -5066,6 +5128,12 @@ dependencies = [
|
|
|
5066
5128
|
"der 0.8.0",
|
|
5067
5129
|
]
|
|
5068
5130
|
|
|
5131
|
+
[[package]]
|
|
5132
|
+
name = "sponge-cursor"
|
|
5133
|
+
version = "0.1.0"
|
|
5134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5135
|
+
checksum = "3a0219bd7d979d58245a4f41f695e1ac9f8befdffadd7f61f1bae9e39abc6620"
|
|
5136
|
+
|
|
5069
5137
|
[[package]]
|
|
5070
5138
|
name = "ssh-cipher"
|
|
5071
5139
|
version = "0.3.0"
|
|
@@ -5108,7 +5176,7 @@ dependencies = [
|
|
|
5108
5176
|
"argon2",
|
|
5109
5177
|
"bcrypt-pbkdf",
|
|
5110
5178
|
"ctutils",
|
|
5111
|
-
"ed25519-dalek 3.0.0
|
|
5179
|
+
"ed25519-dalek 3.0.0",
|
|
5112
5180
|
"hex",
|
|
5113
5181
|
"hmac",
|
|
5114
5182
|
"p256",
|
|
@@ -5171,7 +5239,7 @@ dependencies = [
|
|
|
5171
5239
|
"proc-macro2",
|
|
5172
5240
|
"quote",
|
|
5173
5241
|
"rustversion",
|
|
5174
|
-
"syn",
|
|
5242
|
+
"syn 2.0.119",
|
|
5175
5243
|
]
|
|
5176
5244
|
|
|
5177
5245
|
[[package]]
|
|
@@ -5183,7 +5251,7 @@ dependencies = [
|
|
|
5183
5251
|
"heck",
|
|
5184
5252
|
"proc-macro2",
|
|
5185
5253
|
"quote",
|
|
5186
|
-
"syn",
|
|
5254
|
+
"syn 2.0.119",
|
|
5187
5255
|
]
|
|
5188
5256
|
|
|
5189
5257
|
[[package]]
|
|
@@ -5194,9 +5262,20 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
5194
5262
|
|
|
5195
5263
|
[[package]]
|
|
5196
5264
|
name = "syn"
|
|
5197
|
-
version = "2.0.
|
|
5265
|
+
version = "2.0.119"
|
|
5266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5267
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
5268
|
+
dependencies = [
|
|
5269
|
+
"proc-macro2",
|
|
5270
|
+
"quote",
|
|
5271
|
+
"unicode-ident",
|
|
5272
|
+
]
|
|
5273
|
+
|
|
5274
|
+
[[package]]
|
|
5275
|
+
name = "syn"
|
|
5276
|
+
version = "3.0.3"
|
|
5198
5277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5199
|
-
checksum = "
|
|
5278
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
5200
5279
|
dependencies = [
|
|
5201
5280
|
"proc-macro2",
|
|
5202
5281
|
"quote",
|
|
@@ -5220,7 +5299,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
5220
5299
|
dependencies = [
|
|
5221
5300
|
"proc-macro2",
|
|
5222
5301
|
"quote",
|
|
5223
|
-
"syn",
|
|
5302
|
+
"syn 2.0.119",
|
|
5224
5303
|
]
|
|
5225
5304
|
|
|
5226
5305
|
[[package]]
|
|
@@ -5244,7 +5323,7 @@ dependencies = [
|
|
|
5244
5323
|
"proc-macro-error2",
|
|
5245
5324
|
"proc-macro2",
|
|
5246
5325
|
"quote",
|
|
5247
|
-
"syn",
|
|
5326
|
+
"syn 2.0.119",
|
|
5248
5327
|
]
|
|
5249
5328
|
|
|
5250
5329
|
[[package]]
|
|
@@ -5310,22 +5389,22 @@ checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
|
|
|
5310
5389
|
|
|
5311
5390
|
[[package]]
|
|
5312
5391
|
name = "thiserror"
|
|
5313
|
-
version = "2.0.
|
|
5392
|
+
version = "2.0.19"
|
|
5314
5393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5315
|
-
checksum = "
|
|
5394
|
+
checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
5316
5395
|
dependencies = [
|
|
5317
5396
|
"thiserror-impl",
|
|
5318
5397
|
]
|
|
5319
5398
|
|
|
5320
5399
|
[[package]]
|
|
5321
5400
|
name = "thiserror-impl"
|
|
5322
|
-
version = "2.0.
|
|
5401
|
+
version = "2.0.19"
|
|
5323
5402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5324
|
-
checksum = "
|
|
5403
|
+
checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
5325
5404
|
dependencies = [
|
|
5326
5405
|
"proc-macro2",
|
|
5327
5406
|
"quote",
|
|
5328
|
-
"syn",
|
|
5407
|
+
"syn 3.0.3",
|
|
5329
5408
|
]
|
|
5330
5409
|
|
|
5331
5410
|
[[package]]
|
|
@@ -5375,9 +5454,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
5375
5454
|
|
|
5376
5455
|
[[package]]
|
|
5377
5456
|
name = "tokio"
|
|
5378
|
-
version = "1.
|
|
5457
|
+
version = "1.53.1"
|
|
5379
5458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5380
|
-
checksum = "
|
|
5459
|
+
checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
|
|
5381
5460
|
dependencies = [
|
|
5382
5461
|
"bytes",
|
|
5383
5462
|
"libc",
|
|
@@ -5397,7 +5476,7 @@ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
|
5397
5476
|
dependencies = [
|
|
5398
5477
|
"proc-macro2",
|
|
5399
5478
|
"quote",
|
|
5400
|
-
"syn",
|
|
5479
|
+
"syn 2.0.119",
|
|
5401
5480
|
]
|
|
5402
5481
|
|
|
5403
5482
|
[[package]]
|
|
@@ -5447,9 +5526,9 @@ dependencies = [
|
|
|
5447
5526
|
|
|
5448
5527
|
[[package]]
|
|
5449
5528
|
name = "toml"
|
|
5450
|
-
version = "1.1.
|
|
5529
|
+
version = "1.1.3+spec-1.1.0"
|
|
5451
5530
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5452
|
-
checksum = "
|
|
5531
|
+
checksum = "53c96ecdfa941c8fc4fcaed14f99ada8ebed502eef533015095a07e3301d4c3c"
|
|
5453
5532
|
dependencies = [
|
|
5454
5533
|
"indexmap",
|
|
5455
5534
|
"serde_core",
|
|
@@ -5480,9 +5559,9 @@ dependencies = [
|
|
|
5480
5559
|
|
|
5481
5560
|
[[package]]
|
|
5482
5561
|
name = "toml_writer"
|
|
5483
|
-
version = "1.1.
|
|
5562
|
+
version = "1.1.2+spec-1.1.0"
|
|
5484
5563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5485
|
-
checksum = "
|
|
5564
|
+
checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
|
|
5486
5565
|
|
|
5487
5566
|
[[package]]
|
|
5488
5567
|
name = "tower"
|
|
@@ -5505,7 +5584,7 @@ version = "0.6.11"
|
|
|
5505
5584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5506
5585
|
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
5507
5586
|
dependencies = [
|
|
5508
|
-
"bitflags 2.13.
|
|
5587
|
+
"bitflags 2.13.1",
|
|
5509
5588
|
"bytes",
|
|
5510
5589
|
"futures-util",
|
|
5511
5590
|
"http",
|
|
@@ -5548,7 +5627,7 @@ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
|
5548
5627
|
dependencies = [
|
|
5549
5628
|
"proc-macro2",
|
|
5550
5629
|
"quote",
|
|
5551
|
-
"syn",
|
|
5630
|
+
"syn 2.0.119",
|
|
5552
5631
|
]
|
|
5553
5632
|
|
|
5554
5633
|
[[package]]
|
|
@@ -5598,9 +5677,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
5598
5677
|
|
|
5599
5678
|
[[package]]
|
|
5600
5679
|
name = "turso_core"
|
|
5601
|
-
version = "0.
|
|
5680
|
+
version = "0.8.0-pre.1"
|
|
5602
5681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5603
|
-
checksum = "
|
|
5682
|
+
checksum = "2a29ab6d5a49ba2c756279891a7fa160e3460af167983f283b9a55e3747be03a"
|
|
5604
5683
|
dependencies = [
|
|
5605
5684
|
"aegis",
|
|
5606
5685
|
"aes 0.8.4",
|
|
@@ -5610,7 +5689,7 @@ dependencies = [
|
|
|
5610
5689
|
"arc-swap",
|
|
5611
5690
|
"aristo",
|
|
5612
5691
|
"bigdecimal",
|
|
5613
|
-
"bitflags 2.13.
|
|
5692
|
+
"bitflags 2.13.1",
|
|
5614
5693
|
"branches",
|
|
5615
5694
|
"bumpalo",
|
|
5616
5695
|
"bytemuck",
|
|
@@ -5667,9 +5746,9 @@ dependencies = [
|
|
|
5667
5746
|
|
|
5668
5747
|
[[package]]
|
|
5669
5748
|
name = "turso_ext"
|
|
5670
|
-
version = "0.
|
|
5749
|
+
version = "0.8.0-pre.1"
|
|
5671
5750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5672
|
-
checksum = "
|
|
5751
|
+
checksum = "ed8f1265e0b6ee172063cdc93099f7f1a0f1a7af140bd16c47aa563c65d36e2e"
|
|
5673
5752
|
dependencies = [
|
|
5674
5753
|
"chrono",
|
|
5675
5754
|
"getrandom 0.4.3",
|
|
@@ -5678,22 +5757,22 @@ dependencies = [
|
|
|
5678
5757
|
|
|
5679
5758
|
[[package]]
|
|
5680
5759
|
name = "turso_macros"
|
|
5681
|
-
version = "0.
|
|
5760
|
+
version = "0.8.0-pre.1"
|
|
5682
5761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5683
|
-
checksum = "
|
|
5762
|
+
checksum = "86ed2bab22e6d8ff94f1e966525fb14f192737977475ae57bcd0fc4c021b3589"
|
|
5684
5763
|
dependencies = [
|
|
5685
5764
|
"proc-macro2",
|
|
5686
5765
|
"quote",
|
|
5687
|
-
"syn",
|
|
5766
|
+
"syn 2.0.119",
|
|
5688
5767
|
]
|
|
5689
5768
|
|
|
5690
5769
|
[[package]]
|
|
5691
5770
|
name = "turso_parser"
|
|
5692
|
-
version = "0.
|
|
5771
|
+
version = "0.8.0-pre.1"
|
|
5693
5772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5694
|
-
checksum = "
|
|
5773
|
+
checksum = "2bdac2a5acfeb180bf7e86369fdfd40ae08a893c8e1c642d85e72a85c9dbf4df"
|
|
5695
5774
|
dependencies = [
|
|
5696
|
-
"bitflags 2.13.
|
|
5775
|
+
"bitflags 2.13.1",
|
|
5697
5776
|
"memchr",
|
|
5698
5777
|
"miette",
|
|
5699
5778
|
"strum 0.26.3",
|
|
@@ -5738,6 +5817,12 @@ dependencies = [
|
|
|
5738
5817
|
"version_check",
|
|
5739
5818
|
]
|
|
5740
5819
|
|
|
5820
|
+
[[package]]
|
|
5821
|
+
name = "unicode-general-category"
|
|
5822
|
+
version = "1.1.0"
|
|
5823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5824
|
+
checksum = "0b993bddc193ae5bd0d623b49ec06ac3e9312875fdae725a975c51db1cc1677f"
|
|
5825
|
+
|
|
5741
5826
|
[[package]]
|
|
5742
5827
|
name = "unicode-id-start"
|
|
5743
5828
|
version = "1.4.0"
|
|
@@ -5988,7 +6073,7 @@ dependencies = [
|
|
|
5988
6073
|
"bumpalo",
|
|
5989
6074
|
"proc-macro2",
|
|
5990
6075
|
"quote",
|
|
5991
|
-
"syn",
|
|
6076
|
+
"syn 2.0.119",
|
|
5992
6077
|
"wasm-bindgen-shared",
|
|
5993
6078
|
]
|
|
5994
6079
|
|
|
@@ -6127,7 +6212,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
|
6127
6212
|
dependencies = [
|
|
6128
6213
|
"proc-macro2",
|
|
6129
6214
|
"quote",
|
|
6130
|
-
"syn",
|
|
6215
|
+
"syn 2.0.119",
|
|
6131
6216
|
]
|
|
6132
6217
|
|
|
6133
6218
|
[[package]]
|
|
@@ -6138,7 +6223,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
|
6138
6223
|
dependencies = [
|
|
6139
6224
|
"proc-macro2",
|
|
6140
6225
|
"quote",
|
|
6141
|
-
"syn",
|
|
6226
|
+
"syn 2.0.119",
|
|
6142
6227
|
]
|
|
6143
6228
|
|
|
6144
6229
|
[[package]]
|
|
@@ -6335,7 +6420,7 @@ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
|
6335
6420
|
dependencies = [
|
|
6336
6421
|
"proc-macro2",
|
|
6337
6422
|
"quote",
|
|
6338
|
-
"syn",
|
|
6423
|
+
"syn 2.0.119",
|
|
6339
6424
|
"synstructure",
|
|
6340
6425
|
]
|
|
6341
6426
|
|
|
@@ -6373,7 +6458,7 @@ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
|
|
|
6373
6458
|
dependencies = [
|
|
6374
6459
|
"proc-macro2",
|
|
6375
6460
|
"quote",
|
|
6376
|
-
"syn",
|
|
6461
|
+
"syn 2.0.119",
|
|
6377
6462
|
]
|
|
6378
6463
|
|
|
6379
6464
|
[[package]]
|
|
@@ -6393,7 +6478,7 @@ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
|
6393
6478
|
dependencies = [
|
|
6394
6479
|
"proc-macro2",
|
|
6395
6480
|
"quote",
|
|
6396
|
-
"syn",
|
|
6481
|
+
"syn 2.0.119",
|
|
6397
6482
|
"synstructure",
|
|
6398
6483
|
]
|
|
6399
6484
|
|
|
@@ -6435,7 +6520,7 @@ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
|
6435
6520
|
dependencies = [
|
|
6436
6521
|
"proc-macro2",
|
|
6437
6522
|
"quote",
|
|
6438
|
-
"syn",
|
|
6523
|
+
"syn 2.0.119",
|
|
6439
6524
|
]
|
|
6440
6525
|
|
|
6441
6526
|
[[package]]
|