bashkit 0.14.1__tar.gz → 0.14.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bashkit-0.14.1 → bashkit-0.14.5}/Cargo.lock +337 -374
- {bashkit-0.14.1 → bashkit-0.14.5}/Cargo.toml +17 -9
- {bashkit-0.14.1 → bashkit-0.14.5}/PKG-INFO +81 -16
- {bashkit-0.14.1/crates/bashkit-python → bashkit-0.14.5}/README.md +80 -15
- {bashkit-0.14.1 → bashkit-0.14.5}/bashkit/__init__.py +6 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/bashkit/_bashkit.pyi +118 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/bashkit/langchain.py +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/bashkit/pydantic_ai.py +2 -2
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/Cargo.toml +13 -9
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/README.md +50 -3
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/benches/sqlite.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/docs/compatibility.md +4 -4
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/docs/credential-injection.md +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/docs/live_mounts.md +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/docs/namespace_filesystems.md +2 -2
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/docs/python.md +4 -6
- bashkit-0.14.5/crates/bashkit/docs/script-analysis.md +345 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/docs/sqlite.md +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/docs/ssh.md +2 -2
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/docs/threat-model.md +12 -7
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/docs/typescript.md +2 -2
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/agent_tool.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/dump_builtins.rs +1 -1
- bashkit-0.14.5/crates/bashkit/src/analysis.rs +786 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/awk/interpreter.rs +66 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/column.rs +21 -3
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/comm.rs +22 -3
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/cuttr.rs +32 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/date.rs +13 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/diff.rs +22 -4
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/envsubst.rs +13 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/expand.rs +39 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/fileops.rs +231 -28
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/fold.rs +11 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/git/cmd.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/git/config.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/git/mod.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/grep.rs +19 -6
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/headtail.rs +48 -6
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/helpers.rs +42 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/hextools.rs +37 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/join.rs +15 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/mod.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/nl.rs +24 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/paste.rs +24 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/patch.rs +21 -3
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/path.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/pipeline.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/python.rs +36 -32
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/runtime_limits.rs +10 -21
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/sed.rs +18 -5
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/sleep.rs +6 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/sortuniq.rs +28 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/split.rs +12 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/sqlite/engine.rs +9 -5
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/sqlite/mod.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/sqlite/tests.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/ssh/mod.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/strings.rs +12 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/system.rs +60 -6
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/textrev.rs +53 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/typescript.rs +15 -7
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/wc.rs +23 -7
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/zip_cmd.rs +52 -11
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/credential.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/fs/limits.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/fs/memory.rs +44 -8
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/fs/mod.rs +2 -2
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/fs/mountable.rs +6 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/fs/namespace.rs +3 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/fs/overlay.rs +4 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/fs/readonly.rs +4 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/fs/realfs.rs +98 -39
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/fs/traits.rs +19 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/interpreter/jobs.rs +19 -31
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/interpreter/mod.rs +277 -67
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/lib.rs +63 -6
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/limits.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/network/allowlist.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/network/client.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/network/transport.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/scripted_tool/execute.rs +17 -2
- bashkit-0.14.5/crates/bashkit/src/snapshot/capabilities.rs +386 -0
- bashkit-0.14.5/crates/bashkit/src/snapshot/chunker.rs +167 -0
- bashkit-0.14.5/crates/bashkit/src/snapshot/container.rs +547 -0
- bashkit-0.14.5/crates/bashkit/src/snapshot/graph.rs +849 -0
- bashkit-0.14.1/crates/bashkit/src/snapshot.rs → bashkit-0.14.5/crates/bashkit/src/snapshot/mod.rs +183 -68
- bashkit-0.14.5/crates/bashkit/src/snapshot/objects.rs +874 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/testing.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/tool.rs +49 -7
- bashkit-0.14.5/crates/bashkit/tests/fixtures/snapshots/v1.snapshot +2 -0
- bashkit-0.14.5/crates/bashkit/tests/fixtures/snapshots/v2.snapshot +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/coreutils_differential_tests.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/credential_injection_tests.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/git_remote_security_tests.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/git_security_tests.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/limitations_doc_tests.rs +4 -3
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/limitations_evidence_tests.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/main.rs +3 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/namespace_fs_tests.rs +15 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/network_security_tests.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/parallel_sessions_tests.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/python_integration_tests.rs +2 -4
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/python_security_tests.rs +58 -20
- bashkit-0.14.5/crates/bashkit/tests/integration/script_analysis.rs +274 -0
- bashkit-0.14.5/crates/bashkit/tests/integration/snapshot_fixture_tests.rs +132 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/sqlite_compat_tests.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/sqlite_integration_tests.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/sqlite_security_tests.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/threat_model_doc_tests.rs +8 -8
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/threat_model_tests.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/unicode_security_tests.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/logging_security_tests.rs +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/proptest_security.rs +214 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/realfs_tests.rs +125 -3
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +23 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +10 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/Cargo.toml +3 -3
- {bashkit-0.14.1 → bashkit-0.14.5/crates/bashkit-python}/README.md +80 -15
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/examples/k8s_orchestrator.py +3 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/src/lib.rs +296 -26
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/_security_core.py +1 -1
- bashkit-0.14.5/crates/bashkit-python/tests/test_analyze.py +214 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_security.py +1 -1
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_teardown_determinism.py +33 -2
- {bashkit-0.14.1 → bashkit-0.14.5}/bashkit/deepagents.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/bashkit/py.typed +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/benches/file_ops.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/benches/hotpath.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/benches/parallel_execution.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/benches/results/README.md +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/benches/results/criterion-file_ops-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/benches/results/criterion-hotpath-attrs+shopt-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/benches/results/criterion-hotpath-perf-linux-x86_64-1779744742.md +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/benches/results/criterion-parallel-(none)-linux-x86_64-1773469129.md +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782162173.md +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/benches/results/criterion-parallel-vm-linux-x86_64-1782168239.md +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1777865268.md +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/docs/clap-builtins.md +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/docs/custom_builtins.md +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/docs/hooks.md +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/docs/jq.md +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/docs/logging.md +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/basic.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/clap_builtin.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/clap_builtin_subcommands.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/custom_backend.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/custom_builtins.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/custom_fs.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/git_workflow.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/live_mounts.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/namespace_rebase.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/namespace_sandbox.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/python_external_functions.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/python_scripts.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/realfs_readonly.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/resource_limits.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/scripted_tool.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/show_tool_output.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/sqlite_basic.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/sqlite_workflow.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/ssh_supabase.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/streaming_output.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/text_files.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/text_processing.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/typescript_scripts.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/examples/virtual_identity.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/out file.txt +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/alias.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/archive.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/assert.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/awk/mod.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/awk/parser.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/awk/tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/base64.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/bc.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/caller.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/cat.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/checksum.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/clap_env.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/clear.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/compgen.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/csv.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/curl.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/dirstack.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/disk.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/dotenv.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/echo.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/environ.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/export.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/expr.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/fc.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/flow.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/cat_args.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/extendedbigdecimal.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/format/argument.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/format/escape.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/format/human.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/format/mod.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/format/num_format.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/format/spec.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/format_support.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/ls_args.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/mktemp_args.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/mod.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/num_parser.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/od_args.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/readlink_args.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/realpath_args.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/shuf_args.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/stat_args.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/tac_args.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/tee_args.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/generated/truncate_args.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/git/client.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/help.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/http.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/iconv.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/inspect.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/introspect.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/args.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/compat.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/convert.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/errors.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/format.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/mod.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/regex_compat.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/jq/tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/json.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/limits.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/log.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/ls/find.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/ls/glob.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/ls/list.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/ls/mod.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/ls/rmdir.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/ls/tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/mapfile.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/navigation.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/numfmt.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/parallel.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/printf.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/read.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/retry.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/rg/mod.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/search_common.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/semver.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/seq.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/shuf.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/source.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/sqlite/dot_commands.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/sqlite/formatter.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/sqlite/parser.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/sqlite/vfs_io.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/ssh/allowlist.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/ssh/client.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/ssh/cmd.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/ssh/config.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/ssh/handler.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/ssh/russh_handler.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/template.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/timeout.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/tomlq.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/trap.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/tree.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/truncate.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/vars.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/verify.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/wait.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/yaml.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/builtins/yes.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/error.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/fs/backend.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/fs/posix.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/fs/search.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/hooks.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/interop/fs.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/interop/mod.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/interpreter/arithmetic.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/interpreter/brace_expansion.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/interpreter/expansion.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/interpreter/glob.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/interpreter/redirection.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/interpreter/state.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/logging_impl.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/network/bot_auth.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/network/mod.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/parser/ast.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/parser/budget.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/parser/lexer.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/parser/mod.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/parser/span.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/parser/tokens.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/scripted_tool/extension.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/scripted_tool/mod.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/time_compat.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/tool_def.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/src/trace.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/agent_skills_publication_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/allexport_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/awk_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/awk_newline_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/awk_pattern_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/awk_printf_expr_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/awk_range_pattern_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/background_exec_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/base64_binary_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/bash_source_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/blackbox_security_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/builtin_error_security_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/builtin_registry_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/byte_range_panic_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/cancellation_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/cmdsub_quote_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/compgen_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/coproc_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/custom_builtins_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/custom_fs_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/dev_null_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/exec_options_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/final_env_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/find_multi_path_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/for_in_reserved_word_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/git_advanced_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/git_inspection_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/git_integration_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/harness_example_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/history_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_1175_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_1776_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_1777_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_274_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_275_279_282_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_276_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_277_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_289_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_290_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_291_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_853_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_872_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_873_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/issue_875_test.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/jq_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/live_mount_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/mkfifo_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/nested_subscript_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/output_truncation_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/proptest_differential.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/regex_limit_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/release_profile_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/script_execution_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/security_audit_pocs.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/set_e_and_or_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/shuf_resource_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/skills_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/snapshot_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/source_function_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/spec_runner.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/spec_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/sqlite_differential_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/sqlite_fuzz_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/stack_overflow_regression_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/subst_depth_limit_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/symlink_overlay_security_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/time_compat_scan_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/tty_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/typescript_integration_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/typescript_security_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/unset_function_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/urandom_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/integration/workflow_security_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/cat.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/mktemp.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/od.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/readlink.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/shuf.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/truncate.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/examples/bash_basics.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/examples/data_pipeline.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/examples/llm_tool.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/_bashkit_categories.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/_security_advanced.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_basic.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_builtins.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_control_flow.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_custom_builtin_fs.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_error_handling.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_fastapi_integration.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_integration.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_network_config.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_network_credentials.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_python_security.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_scripts.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_sqlite.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/crates/bashkit-python/tests/test_vfs.py +0 -0
- {bashkit-0.14.1 → bashkit-0.14.5}/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,17 +386,17 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
374
386
|
|
|
375
387
|
[[package]]
|
|
376
388
|
name = "bashkit"
|
|
377
|
-
version = "0.14.
|
|
389
|
+
version = "0.14.5"
|
|
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",
|
|
387
|
-
"ed25519-dalek
|
|
399
|
+
"ed25519-dalek",
|
|
388
400
|
"fail",
|
|
389
401
|
"fancy-regex 0.18.0",
|
|
390
402
|
"flate2",
|
|
@@ -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",
|
|
@@ -411,7 +424,7 @@ dependencies = [
|
|
|
411
424
|
"serde_json",
|
|
412
425
|
"serial_test",
|
|
413
426
|
"sha1",
|
|
414
|
-
"sha2
|
|
427
|
+
"sha2",
|
|
415
428
|
"tempfile",
|
|
416
429
|
"thiserror",
|
|
417
430
|
"tokio",
|
|
@@ -428,7 +441,7 @@ dependencies = [
|
|
|
428
441
|
|
|
429
442
|
[[package]]
|
|
430
443
|
name = "bashkit-bench"
|
|
431
|
-
version = "0.14.
|
|
444
|
+
version = "0.14.5"
|
|
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.5"
|
|
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.5"
|
|
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.5"
|
|
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.5"
|
|
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.5"
|
|
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.5"
|
|
516
529
|
dependencies = [
|
|
517
530
|
"bashkit",
|
|
518
531
|
"console_error_panic_hook",
|
|
@@ -535,7 +548,7 @@ checksum = "144e573728da132683b9488acd528274c790e07fc06ff81ee29f9d8f8b1041e0"
|
|
|
535
548
|
dependencies = [
|
|
536
549
|
"blowfish",
|
|
537
550
|
"pbkdf2",
|
|
538
|
-
"sha2
|
|
551
|
+
"sha2",
|
|
539
552
|
]
|
|
540
553
|
|
|
541
554
|
[[package]]
|
|
@@ -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"
|
|
@@ -596,16 +609,7 @@ version = "0.11.0-rc.6"
|
|
|
596
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
610
|
checksum = "061f1a09225e328e1ffbb378d2d49923c0ca5fee19fb5ac1cc9c1e9d52b93690"
|
|
598
611
|
dependencies = [
|
|
599
|
-
"digest
|
|
600
|
-
]
|
|
601
|
-
|
|
602
|
-
[[package]]
|
|
603
|
-
name = "block-buffer"
|
|
604
|
-
version = "0.10.4"
|
|
605
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
-
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
607
|
-
dependencies = [
|
|
608
|
-
"generic-array 0.14.7",
|
|
612
|
+
"digest",
|
|
609
613
|
]
|
|
610
614
|
|
|
611
615
|
[[package]]
|
|
@@ -686,7 +690,7 @@ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
|
|
|
686
690
|
dependencies = [
|
|
687
691
|
"proc-macro2",
|
|
688
692
|
"quote",
|
|
689
|
-
"syn",
|
|
693
|
+
"syn 2.0.119",
|
|
690
694
|
]
|
|
691
695
|
|
|
692
696
|
[[package]]
|
|
@@ -825,7 +829,7 @@ version = "0.5.2"
|
|
|
825
829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
830
|
checksum = "e8cf2a2c93cd704877c0858356ed03480ff301ee950b43f1cbe4573b088bfa6c"
|
|
827
831
|
dependencies = [
|
|
828
|
-
"block-buffer
|
|
832
|
+
"block-buffer",
|
|
829
833
|
"crypto-common 0.2.2",
|
|
830
834
|
"inout 0.2.2",
|
|
831
835
|
"zeroize",
|
|
@@ -833,9 +837,9 @@ dependencies = [
|
|
|
833
837
|
|
|
834
838
|
[[package]]
|
|
835
839
|
name = "clap"
|
|
836
|
-
version = "4.6.
|
|
840
|
+
version = "4.6.4"
|
|
837
841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
-
checksum = "
|
|
842
|
+
checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
|
|
839
843
|
dependencies = [
|
|
840
844
|
"clap_builder",
|
|
841
845
|
"clap_derive",
|
|
@@ -843,9 +847,9 @@ dependencies = [
|
|
|
843
847
|
|
|
844
848
|
[[package]]
|
|
845
849
|
name = "clap_builder"
|
|
846
|
-
version = "4.6.
|
|
850
|
+
version = "4.6.2"
|
|
847
851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
-
checksum = "
|
|
852
|
+
checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
|
|
849
853
|
dependencies = [
|
|
850
854
|
"anstream",
|
|
851
855
|
"anstyle",
|
|
@@ -855,14 +859,14 @@ dependencies = [
|
|
|
855
859
|
|
|
856
860
|
[[package]]
|
|
857
861
|
name = "clap_derive"
|
|
858
|
-
version = "4.6.
|
|
862
|
+
version = "4.6.4"
|
|
859
863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
-
checksum = "
|
|
864
|
+
checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
|
|
861
865
|
dependencies = [
|
|
862
866
|
"heck",
|
|
863
867
|
"proc-macro2",
|
|
864
868
|
"quote",
|
|
865
|
-
"syn",
|
|
869
|
+
"syn 3.0.3",
|
|
866
870
|
]
|
|
867
871
|
|
|
868
872
|
[[package]]
|
|
@@ -922,7 +926,7 @@ version = "3.1.1"
|
|
|
922
926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
927
|
checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
|
|
924
928
|
dependencies = [
|
|
925
|
-
"windows-sys 0.
|
|
929
|
+
"windows-sys 0.52.0",
|
|
926
930
|
]
|
|
927
931
|
|
|
928
932
|
[[package]]
|
|
@@ -937,9 +941,9 @@ dependencies = [
|
|
|
937
941
|
|
|
938
942
|
[[package]]
|
|
939
943
|
name = "compact_str"
|
|
940
|
-
version = "0.9.
|
|
944
|
+
version = "0.9.0"
|
|
941
945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
-
checksum = "
|
|
946
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
943
947
|
dependencies = [
|
|
944
948
|
"castaway",
|
|
945
949
|
"cfg-if",
|
|
@@ -979,12 +983,6 @@ dependencies = [
|
|
|
979
983
|
"wasm-bindgen",
|
|
980
984
|
]
|
|
981
985
|
|
|
982
|
-
[[package]]
|
|
983
|
-
name = "const-oid"
|
|
984
|
-
version = "0.9.6"
|
|
985
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
-
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
987
|
-
|
|
988
986
|
[[package]]
|
|
989
987
|
name = "const-oid"
|
|
990
988
|
version = "0.10.2"
|
|
@@ -1222,31 +1220,16 @@ dependencies = [
|
|
|
1222
1220
|
|
|
1223
1221
|
[[package]]
|
|
1224
1222
|
name = "curve25519-dalek"
|
|
1225
|
-
version = "
|
|
1223
|
+
version = "5.0.0"
|
|
1226
1224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1227
|
-
checksum = "
|
|
1228
|
-
dependencies = [
|
|
1229
|
-
"cfg-if",
|
|
1230
|
-
"cpufeatures 0.2.17",
|
|
1231
|
-
"curve25519-dalek-derive",
|
|
1232
|
-
"digest 0.10.7",
|
|
1233
|
-
"fiat-crypto 0.2.9",
|
|
1234
|
-
"rustc_version",
|
|
1235
|
-
"subtle",
|
|
1236
|
-
"zeroize",
|
|
1237
|
-
]
|
|
1238
|
-
|
|
1239
|
-
[[package]]
|
|
1240
|
-
name = "curve25519-dalek"
|
|
1241
|
-
version = "5.0.0-rc.1"
|
|
1242
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1243
|
-
checksum = "c906a87e53a36ff795d72e06e8162a83c5436e3ea89e942a9cb9fc083f0a384f"
|
|
1225
|
+
checksum = "b5eed333089e2e1c1ac8c6c0398e5e2497b4c9926ca6d0365ed1e099afa5bc23"
|
|
1244
1226
|
dependencies = [
|
|
1245
1227
|
"cfg-if",
|
|
1246
1228
|
"cpufeatures 0.3.0",
|
|
1247
1229
|
"curve25519-dalek-derive",
|
|
1248
|
-
"digest
|
|
1249
|
-
"fiat-crypto
|
|
1230
|
+
"digest",
|
|
1231
|
+
"fiat-crypto",
|
|
1232
|
+
"rand_core 0.10.1",
|
|
1250
1233
|
"rustc_version",
|
|
1251
1234
|
"subtle",
|
|
1252
1235
|
"zeroize",
|
|
@@ -1260,7 +1243,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
|
1260
1243
|
dependencies = [
|
|
1261
1244
|
"proc-macro2",
|
|
1262
1245
|
"quote",
|
|
1263
|
-
"syn",
|
|
1246
|
+
"syn 2.0.119",
|
|
1264
1247
|
]
|
|
1265
1248
|
|
|
1266
1249
|
[[package]]
|
|
@@ -1288,7 +1271,7 @@ dependencies = [
|
|
|
1288
1271
|
"defmt-parser",
|
|
1289
1272
|
"proc-macro2",
|
|
1290
1273
|
"quote",
|
|
1291
|
-
"syn",
|
|
1274
|
+
"syn 2.0.119",
|
|
1292
1275
|
]
|
|
1293
1276
|
|
|
1294
1277
|
[[package]]
|
|
@@ -1308,17 +1291,7 @@ checksum = "780eb241654bf097afb00fc5f054a09b687dad862e485fdcf8399bb056565370"
|
|
|
1308
1291
|
dependencies = [
|
|
1309
1292
|
"proc-macro2",
|
|
1310
1293
|
"quote",
|
|
1311
|
-
"syn",
|
|
1312
|
-
]
|
|
1313
|
-
|
|
1314
|
-
[[package]]
|
|
1315
|
-
name = "der"
|
|
1316
|
-
version = "0.7.10"
|
|
1317
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
-
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
1319
|
-
dependencies = [
|
|
1320
|
-
"const-oid 0.9.6",
|
|
1321
|
-
"zeroize",
|
|
1294
|
+
"syn 2.0.119",
|
|
1322
1295
|
]
|
|
1323
1296
|
|
|
1324
1297
|
[[package]]
|
|
@@ -1327,7 +1300,7 @@ version = "0.8.0"
|
|
|
1327
1300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
1301
|
checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
|
|
1329
1302
|
dependencies = [
|
|
1330
|
-
"const-oid
|
|
1303
|
+
"const-oid",
|
|
1331
1304
|
"pem-rfc7468",
|
|
1332
1305
|
"zeroize",
|
|
1333
1306
|
]
|
|
@@ -1340,7 +1313,7 @@ checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
|
|
|
1340
1313
|
dependencies = [
|
|
1341
1314
|
"proc-macro2",
|
|
1342
1315
|
"quote",
|
|
1343
|
-
"syn",
|
|
1316
|
+
"syn 2.0.119",
|
|
1344
1317
|
]
|
|
1345
1318
|
|
|
1346
1319
|
[[package]]
|
|
@@ -1358,24 +1331,14 @@ version = "0.1.13"
|
|
|
1358
1331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
1332
|
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
1360
1333
|
|
|
1361
|
-
[[package]]
|
|
1362
|
-
name = "digest"
|
|
1363
|
-
version = "0.10.7"
|
|
1364
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1365
|
-
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1366
|
-
dependencies = [
|
|
1367
|
-
"block-buffer 0.10.4",
|
|
1368
|
-
"crypto-common 0.1.7",
|
|
1369
|
-
]
|
|
1370
|
-
|
|
1371
1334
|
[[package]]
|
|
1372
1335
|
name = "digest"
|
|
1373
1336
|
version = "0.11.3"
|
|
1374
1337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1375
1338
|
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
1376
1339
|
dependencies = [
|
|
1377
|
-
"block-buffer
|
|
1378
|
-
"const-oid
|
|
1340
|
+
"block-buffer",
|
|
1341
|
+
"const-oid",
|
|
1379
1342
|
"crypto-common 0.2.2",
|
|
1380
1343
|
"ctutils",
|
|
1381
1344
|
]
|
|
@@ -1388,7 +1351,7 @@ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
|
1388
1351
|
dependencies = [
|
|
1389
1352
|
"proc-macro2",
|
|
1390
1353
|
"quote",
|
|
1391
|
-
"syn",
|
|
1354
|
+
"syn 2.0.119",
|
|
1392
1355
|
]
|
|
1393
1356
|
|
|
1394
1357
|
[[package]]
|
|
@@ -1415,62 +1378,37 @@ version = "0.17.0"
|
|
|
1415
1378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1416
1379
|
checksum = "c0681a4fc24c767085329728d8dfba959af91228aa4610cca4f8ce317ba46ae0"
|
|
1417
1380
|
dependencies = [
|
|
1418
|
-
"der
|
|
1419
|
-
"digest
|
|
1381
|
+
"der",
|
|
1382
|
+
"digest",
|
|
1420
1383
|
"elliptic-curve",
|
|
1421
1384
|
"rfc6979",
|
|
1422
|
-
"signature
|
|
1423
|
-
"spki
|
|
1385
|
+
"signature",
|
|
1386
|
+
"spki",
|
|
1424
1387
|
"zeroize",
|
|
1425
1388
|
]
|
|
1426
1389
|
|
|
1427
|
-
[[package]]
|
|
1428
|
-
name = "ed25519"
|
|
1429
|
-
version = "2.2.3"
|
|
1430
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
-
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
|
1432
|
-
dependencies = [
|
|
1433
|
-
"pkcs8 0.10.2",
|
|
1434
|
-
"signature 2.2.0",
|
|
1435
|
-
]
|
|
1436
|
-
|
|
1437
1390
|
[[package]]
|
|
1438
1391
|
name = "ed25519"
|
|
1439
1392
|
version = "3.0.0"
|
|
1440
1393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
1394
|
checksum = "29fcf32e6c73d1079f83ab4d782de2d81620346a5f38c6237a86a22f8368980a"
|
|
1442
1395
|
dependencies = [
|
|
1443
|
-
"pkcs8
|
|
1444
|
-
"signature
|
|
1396
|
+
"pkcs8",
|
|
1397
|
+
"signature",
|
|
1445
1398
|
]
|
|
1446
1399
|
|
|
1447
1400
|
[[package]]
|
|
1448
1401
|
name = "ed25519-dalek"
|
|
1449
|
-
version = "
|
|
1450
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
-
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
|
1452
|
-
dependencies = [
|
|
1453
|
-
"curve25519-dalek 4.1.3",
|
|
1454
|
-
"ed25519 2.2.3",
|
|
1455
|
-
"rand_core 0.6.4",
|
|
1456
|
-
"serde",
|
|
1457
|
-
"sha2 0.10.9",
|
|
1458
|
-
"subtle",
|
|
1459
|
-
"zeroize",
|
|
1460
|
-
]
|
|
1461
|
-
|
|
1462
|
-
[[package]]
|
|
1463
|
-
name = "ed25519-dalek"
|
|
1464
|
-
version = "3.0.0-rc.1"
|
|
1402
|
+
version = "3.0.0"
|
|
1465
1403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
-
checksum = "
|
|
1404
|
+
checksum = "6ebaa1a2bf1290ab3bfe5a7b771d050ebffab2711c19a81691c683a5144a25de"
|
|
1467
1405
|
dependencies = [
|
|
1468
|
-
"curve25519-dalek
|
|
1469
|
-
"ed25519
|
|
1406
|
+
"curve25519-dalek",
|
|
1407
|
+
"ed25519",
|
|
1470
1408
|
"rand_core 0.10.1",
|
|
1471
1409
|
"serde",
|
|
1472
|
-
"sha2
|
|
1473
|
-
"signature
|
|
1410
|
+
"sha2",
|
|
1411
|
+
"signature",
|
|
1474
1412
|
"subtle",
|
|
1475
1413
|
"zeroize",
|
|
1476
1414
|
]
|
|
@@ -1490,13 +1428,13 @@ dependencies = [
|
|
|
1490
1428
|
"base16ct",
|
|
1491
1429
|
"crypto-bigint",
|
|
1492
1430
|
"crypto-common 0.2.2",
|
|
1493
|
-
"digest
|
|
1431
|
+
"digest",
|
|
1494
1432
|
"ff",
|
|
1495
1433
|
"group",
|
|
1496
1434
|
"hkdf",
|
|
1497
1435
|
"hybrid-array",
|
|
1498
1436
|
"pem-rfc7468",
|
|
1499
|
-
"pkcs8
|
|
1437
|
+
"pkcs8",
|
|
1500
1438
|
"rand_core 0.10.1",
|
|
1501
1439
|
"sec1",
|
|
1502
1440
|
"subtle",
|
|
@@ -1536,7 +1474,7 @@ dependencies = [
|
|
|
1536
1474
|
"once_cell",
|
|
1537
1475
|
"proc-macro2",
|
|
1538
1476
|
"quote",
|
|
1539
|
-
"syn",
|
|
1477
|
+
"syn 2.0.119",
|
|
1540
1478
|
]
|
|
1541
1479
|
|
|
1542
1480
|
[[package]]
|
|
@@ -1552,7 +1490,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1552
1490
|
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1553
1491
|
dependencies = [
|
|
1554
1492
|
"libc",
|
|
1555
|
-
"windows-sys 0.
|
|
1493
|
+
"windows-sys 0.52.0",
|
|
1556
1494
|
]
|
|
1557
1495
|
|
|
1558
1496
|
[[package]]
|
|
@@ -1627,12 +1565,6 @@ dependencies = [
|
|
|
1627
1565
|
"subtle",
|
|
1628
1566
|
]
|
|
1629
1567
|
|
|
1630
|
-
[[package]]
|
|
1631
|
-
name = "fiat-crypto"
|
|
1632
|
-
version = "0.2.9"
|
|
1633
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1634
|
-
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
1635
|
-
|
|
1636
1568
|
[[package]]
|
|
1637
1569
|
name = "fiat-crypto"
|
|
1638
1570
|
version = "0.3.0"
|
|
@@ -1721,9 +1653,9 @@ dependencies = [
|
|
|
1721
1653
|
|
|
1722
1654
|
[[package]]
|
|
1723
1655
|
name = "futures-core"
|
|
1724
|
-
version = "0.3.
|
|
1656
|
+
version = "0.3.33"
|
|
1725
1657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
-
checksum = "
|
|
1658
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
1727
1659
|
|
|
1728
1660
|
[[package]]
|
|
1729
1661
|
name = "futures-executor"
|
|
@@ -1750,7 +1682,7 @@ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
|
1750
1682
|
dependencies = [
|
|
1751
1683
|
"proc-macro2",
|
|
1752
1684
|
"quote",
|
|
1753
|
-
"syn",
|
|
1685
|
+
"syn 2.0.119",
|
|
1754
1686
|
]
|
|
1755
1687
|
|
|
1756
1688
|
[[package]]
|
|
@@ -1820,20 +1752,20 @@ dependencies = [
|
|
|
1820
1752
|
|
|
1821
1753
|
[[package]]
|
|
1822
1754
|
name = "get-size-derive2"
|
|
1823
|
-
version = "0.
|
|
1755
|
+
version = "0.10.3"
|
|
1824
1756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1825
|
-
checksum = "
|
|
1757
|
+
checksum = "c736d226c32e496b8377813b52269e11ad3a48d8373b68862d0364f04fd1229d"
|
|
1826
1758
|
dependencies = [
|
|
1827
1759
|
"attribute-derive",
|
|
1828
1760
|
"quote",
|
|
1829
|
-
"syn",
|
|
1761
|
+
"syn 2.0.119",
|
|
1830
1762
|
]
|
|
1831
1763
|
|
|
1832
1764
|
[[package]]
|
|
1833
1765
|
name = "get-size2"
|
|
1834
|
-
version = "0.
|
|
1766
|
+
version = "0.10.1"
|
|
1835
1767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
-
checksum = "
|
|
1768
|
+
checksum = "823645bc6404ae2915707777061a47d3a031a9ee0bff51b34ec973df3d8d2990"
|
|
1837
1769
|
dependencies = [
|
|
1838
1770
|
"compact_str",
|
|
1839
1771
|
"get-size-derive2",
|
|
@@ -2015,7 +1947,7 @@ version = "0.13.0"
|
|
|
2015
1947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
1948
|
checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
|
|
2017
1949
|
dependencies = [
|
|
2018
|
-
"digest
|
|
1950
|
+
"digest",
|
|
2019
1951
|
]
|
|
2020
1952
|
|
|
2021
1953
|
[[package]]
|
|
@@ -2119,7 +2051,7 @@ version = "0.1.20"
|
|
|
2119
2051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2120
2052
|
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
2121
2053
|
dependencies = [
|
|
2122
|
-
"base64",
|
|
2054
|
+
"base64 0.22.1",
|
|
2123
2055
|
"bytes",
|
|
2124
2056
|
"futures-channel",
|
|
2125
2057
|
"futures-util",
|
|
@@ -2409,7 +2341,7 @@ dependencies = [
|
|
|
2409
2341
|
"heck",
|
|
2410
2342
|
"proc-macro2",
|
|
2411
2343
|
"quote",
|
|
2412
|
-
"syn",
|
|
2344
|
+
"syn 2.0.119",
|
|
2413
2345
|
]
|
|
2414
2346
|
|
|
2415
2347
|
[[package]]
|
|
@@ -2436,6 +2368,15 @@ dependencies = [
|
|
|
2436
2368
|
"either",
|
|
2437
2369
|
]
|
|
2438
2370
|
|
|
2371
|
+
[[package]]
|
|
2372
|
+
name = "itertools"
|
|
2373
|
+
version = "0.15.0"
|
|
2374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2375
|
+
checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
|
|
2376
|
+
dependencies = [
|
|
2377
|
+
"either",
|
|
2378
|
+
]
|
|
2379
|
+
|
|
2439
2380
|
[[package]]
|
|
2440
2381
|
name = "itoa"
|
|
2441
2382
|
version = "1.0.18"
|
|
@@ -2479,7 +2420,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2479
2420
|
checksum = "8bdc5a74b0feeb5e6a1dc2dd08c34280a61e37668d10a6a3b27ad69d0fb9ce2e"
|
|
2480
2421
|
dependencies = [
|
|
2481
2422
|
"aho-corasick",
|
|
2482
|
-
"base64",
|
|
2423
|
+
"base64 0.22.1",
|
|
2483
2424
|
"bstr",
|
|
2484
2425
|
"jaq-core",
|
|
2485
2426
|
"jiff",
|
|
@@ -2513,7 +2454,7 @@ checksum = "d0879bd39df99c4c5e2c6615ccc026391a423dde10532c573e6086eb94a802cc"
|
|
|
2513
2454
|
dependencies = [
|
|
2514
2455
|
"proc-macro2",
|
|
2515
2456
|
"quote",
|
|
2516
|
-
"syn",
|
|
2457
|
+
"syn 2.0.119",
|
|
2517
2458
|
]
|
|
2518
2459
|
|
|
2519
2460
|
[[package]]
|
|
@@ -2572,7 +2513,7 @@ dependencies = [
|
|
|
2572
2513
|
"quote",
|
|
2573
2514
|
"rustc_version",
|
|
2574
2515
|
"simd_cesu8",
|
|
2575
|
-
"syn",
|
|
2516
|
+
"syn 2.0.119",
|
|
2576
2517
|
]
|
|
2577
2518
|
|
|
2578
2519
|
[[package]]
|
|
@@ -2591,7 +2532,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2591
2532
|
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
2592
2533
|
dependencies = [
|
|
2593
2534
|
"quote",
|
|
2594
|
-
"syn",
|
|
2535
|
+
"syn 2.0.119",
|
|
2595
2536
|
]
|
|
2596
2537
|
|
|
2597
2538
|
[[package]]
|
|
@@ -2715,7 +2656,7 @@ checksum = "32d59e20403c7d08fe62b4376edfe5c7fb2ef1e6b1465379686d0f21c8df444b"
|
|
|
2715
2656
|
dependencies = [
|
|
2716
2657
|
"proc-macro2",
|
|
2717
2658
|
"quote",
|
|
2718
|
-
"syn",
|
|
2659
|
+
"syn 2.0.119",
|
|
2719
2660
|
]
|
|
2720
2661
|
|
|
2721
2662
|
[[package]]
|
|
@@ -2767,7 +2708,7 @@ dependencies = [
|
|
|
2767
2708
|
"manyhow-macros",
|
|
2768
2709
|
"proc-macro2",
|
|
2769
2710
|
"quote",
|
|
2770
|
-
"syn",
|
|
2711
|
+
"syn 2.0.119",
|
|
2771
2712
|
]
|
|
2772
2713
|
|
|
2773
2714
|
[[package]]
|
|
@@ -2797,7 +2738,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2797
2738
|
checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
|
|
2798
2739
|
dependencies = [
|
|
2799
2740
|
"cfg-if",
|
|
2800
|
-
"digest
|
|
2741
|
+
"digest",
|
|
2801
2742
|
]
|
|
2802
2743
|
|
|
2803
2744
|
[[package]]
|
|
@@ -2840,7 +2781,7 @@ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
|
|
|
2840
2781
|
dependencies = [
|
|
2841
2782
|
"proc-macro2",
|
|
2842
2783
|
"quote",
|
|
2843
|
-
"syn",
|
|
2784
|
+
"syn 2.0.119",
|
|
2844
2785
|
]
|
|
2845
2786
|
|
|
2846
2787
|
[[package]]
|
|
@@ -2866,9 +2807,9 @@ dependencies = [
|
|
|
2866
2807
|
|
|
2867
2808
|
[[package]]
|
|
2868
2809
|
name = "mira-eval"
|
|
2869
|
-
version = "0.
|
|
2810
|
+
version = "0.5.0"
|
|
2870
2811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2871
|
-
checksum = "
|
|
2812
|
+
checksum = "75db8c713ee4b8ed2fd8eb1797dd3129b0e545a039e9cef45ac19458447cc16c"
|
|
2872
2813
|
dependencies = [
|
|
2873
2814
|
"async-trait",
|
|
2874
2815
|
"inventory",
|
|
@@ -2882,13 +2823,13 @@ dependencies = [
|
|
|
2882
2823
|
|
|
2883
2824
|
[[package]]
|
|
2884
2825
|
name = "mira-macros"
|
|
2885
|
-
version = "0.
|
|
2826
|
+
version = "0.5.0"
|
|
2886
2827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2887
|
-
checksum = "
|
|
2828
|
+
checksum = "2bfd4d98e649e99b006acace5360e65ca6fd0bc6593e6502514592316ab38530"
|
|
2888
2829
|
dependencies = [
|
|
2889
2830
|
"proc-macro2",
|
|
2890
2831
|
"quote",
|
|
2891
|
-
"syn",
|
|
2832
|
+
"syn 2.0.119",
|
|
2892
2833
|
]
|
|
2893
2834
|
|
|
2894
2835
|
[[package]]
|
|
@@ -2900,9 +2841,9 @@ dependencies = [
|
|
|
2900
2841
|
"hybrid-array",
|
|
2901
2842
|
"kem",
|
|
2902
2843
|
"module-lattice",
|
|
2903
|
-
"pkcs8
|
|
2844
|
+
"pkcs8",
|
|
2904
2845
|
"rand_core 0.10.1",
|
|
2905
|
-
"sha3",
|
|
2846
|
+
"sha3 0.11.0",
|
|
2906
2847
|
]
|
|
2907
2848
|
|
|
2908
2849
|
[[package]]
|
|
@@ -2918,18 +2859,20 @@ dependencies = [
|
|
|
2918
2859
|
|
|
2919
2860
|
[[package]]
|
|
2920
2861
|
name = "monty"
|
|
2921
|
-
version = "0.0.
|
|
2922
|
-
source = "
|
|
2862
|
+
version = "0.0.19"
|
|
2863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2864
|
+
checksum = "58b15149448f6034f1bd581638fdf821753b0182a4c5eaf13e4cfd92f95d966b"
|
|
2923
2865
|
dependencies = [
|
|
2924
2866
|
"ahash",
|
|
2925
2867
|
"chrono",
|
|
2926
2868
|
"fancy-regex 0.17.0",
|
|
2927
2869
|
"hashbrown 0.16.1",
|
|
2928
|
-
"indexmap",
|
|
2929
2870
|
"itertools 0.14.0",
|
|
2871
|
+
"itoa",
|
|
2930
2872
|
"jiter",
|
|
2931
2873
|
"libm",
|
|
2932
2874
|
"monty-macros",
|
|
2875
|
+
"monty-types",
|
|
2933
2876
|
"num-bigint",
|
|
2934
2877
|
"num-integer",
|
|
2935
2878
|
"num-traits",
|
|
@@ -2939,29 +2882,48 @@ dependencies = [
|
|
|
2939
2882
|
"ruff_python_stdlib",
|
|
2940
2883
|
"ruff_text_size",
|
|
2941
2884
|
"serde",
|
|
2942
|
-
"serde_json",
|
|
2943
2885
|
"smallvec",
|
|
2944
2886
|
"speedate",
|
|
2945
2887
|
"strum 0.27.2",
|
|
2888
|
+
"unicode-general-category",
|
|
2889
|
+
"unicode-normalization",
|
|
2890
|
+
"unicode_names2",
|
|
2946
2891
|
]
|
|
2947
2892
|
|
|
2948
2893
|
[[package]]
|
|
2949
2894
|
name = "monty-macros"
|
|
2950
|
-
version = "0.0.
|
|
2951
|
-
source = "
|
|
2895
|
+
version = "0.0.19"
|
|
2896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2897
|
+
checksum = "72b6c93dbe4b43469c6d2ece3732053f3fc7af278cf71045ed59c7b6da381530"
|
|
2952
2898
|
dependencies = [
|
|
2953
2899
|
"proc-macro2",
|
|
2954
2900
|
"quote",
|
|
2955
|
-
"syn",
|
|
2901
|
+
"syn 2.0.119",
|
|
2902
|
+
]
|
|
2903
|
+
|
|
2904
|
+
[[package]]
|
|
2905
|
+
name = "monty-types"
|
|
2906
|
+
version = "0.0.19"
|
|
2907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2908
|
+
checksum = "3a8988fa8d9902432d5e685a7bb97c84844022dd9560e796c00b119a4c27519b"
|
|
2909
|
+
dependencies = [
|
|
2910
|
+
"chrono",
|
|
2911
|
+
"monty-macros",
|
|
2912
|
+
"num-bigint",
|
|
2913
|
+
"num-traits",
|
|
2914
|
+
"serde",
|
|
2915
|
+
"strum 0.27.2",
|
|
2916
|
+
"unicode-general-category",
|
|
2917
|
+
"web-time",
|
|
2956
2918
|
]
|
|
2957
2919
|
|
|
2958
2920
|
[[package]]
|
|
2959
2921
|
name = "napi"
|
|
2960
|
-
version = "3.
|
|
2922
|
+
version = "3.11.0"
|
|
2961
2923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
-
checksum = "
|
|
2924
|
+
checksum = "de33522036981030a75c231829566bc63414e08101a6f5ff4ac6cef19c8e0941"
|
|
2963
2925
|
dependencies = [
|
|
2964
|
-
"bitflags 2.13.
|
|
2926
|
+
"bitflags 2.13.1",
|
|
2965
2927
|
"ctor",
|
|
2966
2928
|
"futures",
|
|
2967
2929
|
"napi-build",
|
|
@@ -2979,36 +2941,36 @@ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
|
|
|
2979
2941
|
|
|
2980
2942
|
[[package]]
|
|
2981
2943
|
name = "napi-derive"
|
|
2982
|
-
version = "3.
|
|
2944
|
+
version = "3.6.0"
|
|
2983
2945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
-
checksum = "
|
|
2946
|
+
checksum = "a49c513341a61a16a10af6efcce46b30d0822ba2d4fb197d24d33dfc199c78d5"
|
|
2985
2947
|
dependencies = [
|
|
2986
2948
|
"convert_case",
|
|
2987
2949
|
"ctor",
|
|
2988
2950
|
"napi-derive-backend",
|
|
2989
2951
|
"proc-macro2",
|
|
2990
2952
|
"quote",
|
|
2991
|
-
"syn",
|
|
2953
|
+
"syn 2.0.119",
|
|
2992
2954
|
]
|
|
2993
2955
|
|
|
2994
2956
|
[[package]]
|
|
2995
2957
|
name = "napi-derive-backend"
|
|
2996
|
-
version = "
|
|
2958
|
+
version = "6.0.0"
|
|
2997
2959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2998
|
-
checksum = "
|
|
2960
|
+
checksum = "4747005fa3e2c9989ac45a723a514c5db2411238b72981a3cda4c701a9dfea17"
|
|
2999
2961
|
dependencies = [
|
|
3000
2962
|
"convert_case",
|
|
3001
2963
|
"proc-macro2",
|
|
3002
2964
|
"quote",
|
|
3003
2965
|
"semver",
|
|
3004
|
-
"syn",
|
|
2966
|
+
"syn 2.0.119",
|
|
3005
2967
|
]
|
|
3006
2968
|
|
|
3007
2969
|
[[package]]
|
|
3008
2970
|
name = "napi-sys"
|
|
3009
|
-
version = "3.
|
|
2971
|
+
version = "3.3.0"
|
|
3010
2972
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3011
|
-
checksum = "
|
|
2973
|
+
checksum = "85fbf1fa9f1babfe396d74bbbf52b3643770243e8f5b0b46715d4caf7f0dfc9a"
|
|
3012
2974
|
dependencies = [
|
|
3013
2975
|
"libloading 0.9.0",
|
|
3014
2976
|
]
|
|
@@ -3028,7 +2990,7 @@ version = "0.31.3"
|
|
|
3028
2990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3029
2991
|
checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
|
|
3030
2992
|
dependencies = [
|
|
3031
|
-
"bitflags 2.13.
|
|
2993
|
+
"bitflags 2.13.1",
|
|
3032
2994
|
"cfg-if",
|
|
3033
2995
|
"cfg_aliases",
|
|
3034
2996
|
"libc",
|
|
@@ -3167,7 +3129,7 @@ checksum = "b237422b014f8f8fff75bb9379e697d13f8d57551a22c88bebb39f073c1bf696"
|
|
|
3167
3129
|
dependencies = [
|
|
3168
3130
|
"proc-macro2",
|
|
3169
3131
|
"quote",
|
|
3170
|
-
"syn",
|
|
3132
|
+
"syn 2.0.119",
|
|
3171
3133
|
]
|
|
3172
3134
|
|
|
3173
3135
|
[[package]]
|
|
@@ -3188,7 +3150,7 @@ version = "0.117.0"
|
|
|
3188
3150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3189
3151
|
checksum = "e4222e4e7a1ab01b2a20420a5a65798377a748ea37ee7ece4d7a6b733f86eb61"
|
|
3190
3152
|
dependencies = [
|
|
3191
|
-
"bitflags 2.13.
|
|
3153
|
+
"bitflags 2.13.1",
|
|
3192
3154
|
"oxc_allocator",
|
|
3193
3155
|
"oxc_ast_macros",
|
|
3194
3156
|
"oxc_data_structures",
|
|
@@ -3208,7 +3170,7 @@ dependencies = [
|
|
|
3208
3170
|
"phf 0.13.1",
|
|
3209
3171
|
"proc-macro2",
|
|
3210
3172
|
"quote",
|
|
3211
|
-
"syn",
|
|
3173
|
+
"syn 2.0.119",
|
|
3212
3174
|
]
|
|
3213
3175
|
|
|
3214
3176
|
[[package]]
|
|
@@ -3266,7 +3228,7 @@ version = "0.117.0"
|
|
|
3266
3228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3267
3229
|
checksum = "3278d4f34d01cdaf85a2391d7b12daba1d95c20c1ff2ac9316d3c28f36353e4e"
|
|
3268
3230
|
dependencies = [
|
|
3269
|
-
"bitflags 2.13.
|
|
3231
|
+
"bitflags 2.13.1",
|
|
3270
3232
|
"cow-utils",
|
|
3271
3233
|
"memchr",
|
|
3272
3234
|
"num-bigint",
|
|
@@ -3289,7 +3251,7 @@ version = "0.117.0"
|
|
|
3289
3251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3290
3252
|
checksum = "f3d680252672b22c24abbaf6e401eace0be9f53072a03411936204625ff349d0"
|
|
3291
3253
|
dependencies = [
|
|
3292
|
-
"bitflags 2.13.
|
|
3254
|
+
"bitflags 2.13.1",
|
|
3293
3255
|
"oxc_allocator",
|
|
3294
3256
|
"oxc_ast_macros",
|
|
3295
3257
|
"oxc_diagnostics",
|
|
@@ -3331,7 +3293,7 @@ version = "0.117.0"
|
|
|
3331
3293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3332
3294
|
checksum = "e0f1617f0aa890517fb61ffa1d2d73a8497aca52e84ef6f027fad1e93250eccc"
|
|
3333
3295
|
dependencies = [
|
|
3334
|
-
"bitflags 2.13.
|
|
3296
|
+
"bitflags 2.13.1",
|
|
3335
3297
|
"cow-utils",
|
|
3336
3298
|
"dragonbox_ecma",
|
|
3337
3299
|
"nonmax",
|
|
@@ -3346,43 +3308,43 @@ dependencies = [
|
|
|
3346
3308
|
|
|
3347
3309
|
[[package]]
|
|
3348
3310
|
name = "p256"
|
|
3349
|
-
version = "0.14.0
|
|
3311
|
+
version = "0.14.0"
|
|
3350
3312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3351
|
-
checksum = "
|
|
3313
|
+
checksum = "d2c9239b2dbc807adbbe147e8cf72ea7450c3a0aabe62cb8e75ff4ec22e1f72a"
|
|
3352
3314
|
dependencies = [
|
|
3353
3315
|
"ecdsa",
|
|
3354
3316
|
"elliptic-curve",
|
|
3355
3317
|
"primefield",
|
|
3356
3318
|
"primeorder",
|
|
3357
|
-
"sha2
|
|
3319
|
+
"sha2",
|
|
3358
3320
|
]
|
|
3359
3321
|
|
|
3360
3322
|
[[package]]
|
|
3361
3323
|
name = "p384"
|
|
3362
|
-
version = "0.14.0
|
|
3324
|
+
version = "0.14.0"
|
|
3363
3325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3364
|
-
checksum = "
|
|
3326
|
+
checksum = "d17b851e6b3e378ab4ecb07fa2ed23f4d15f075735f8fec9fa1e7bdce5f8301f"
|
|
3365
3327
|
dependencies = [
|
|
3366
3328
|
"ecdsa",
|
|
3367
3329
|
"elliptic-curve",
|
|
3368
|
-
"fiat-crypto
|
|
3330
|
+
"fiat-crypto",
|
|
3369
3331
|
"primefield",
|
|
3370
3332
|
"primeorder",
|
|
3371
|
-
"sha2
|
|
3333
|
+
"sha2",
|
|
3372
3334
|
]
|
|
3373
3335
|
|
|
3374
3336
|
[[package]]
|
|
3375
3337
|
name = "p521"
|
|
3376
|
-
version = "0.14.0
|
|
3338
|
+
version = "0.14.0"
|
|
3377
3339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3378
|
-
checksum = "
|
|
3340
|
+
checksum = "4ad64cc32c2dc466317c12ee5853e61f159f9eab1fe7efade0395dc2e7b43449"
|
|
3379
3341
|
dependencies = [
|
|
3380
3342
|
"base16ct",
|
|
3381
3343
|
"ecdsa",
|
|
3382
3344
|
"elliptic-curve",
|
|
3383
3345
|
"primefield",
|
|
3384
3346
|
"primeorder",
|
|
3385
|
-
"sha2
|
|
3347
|
+
"sha2",
|
|
3386
3348
|
]
|
|
3387
3349
|
|
|
3388
3350
|
[[package]]
|
|
@@ -3417,7 +3379,7 @@ dependencies = [
|
|
|
3417
3379
|
"futures",
|
|
3418
3380
|
"log",
|
|
3419
3381
|
"rand 0.10.2",
|
|
3420
|
-
"sha2
|
|
3382
|
+
"sha2",
|
|
3421
3383
|
"thiserror",
|
|
3422
3384
|
"tokio",
|
|
3423
3385
|
"windows",
|
|
@@ -3479,7 +3441,7 @@ version = "0.13.0"
|
|
|
3479
3441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3480
3442
|
checksum = "112d82ceb8c5bf524d9af484d4e4970c9fd5a0cc15ba14ad93dccd28873b0629"
|
|
3481
3443
|
dependencies = [
|
|
3482
|
-
"digest
|
|
3444
|
+
"digest",
|
|
3483
3445
|
"hmac",
|
|
3484
3446
|
]
|
|
3485
3447
|
|
|
@@ -3568,7 +3530,7 @@ dependencies = [
|
|
|
3568
3530
|
"phf_shared 0.13.1",
|
|
3569
3531
|
"proc-macro2",
|
|
3570
3532
|
"quote",
|
|
3571
|
-
"syn",
|
|
3533
|
+
"syn 2.0.119",
|
|
3572
3534
|
]
|
|
3573
3535
|
|
|
3574
3536
|
[[package]]
|
|
@@ -3601,8 +3563,8 @@ version = "0.8.0-rc.4"
|
|
|
3601
3563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3602
3564
|
checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e"
|
|
3603
3565
|
dependencies = [
|
|
3604
|
-
"der
|
|
3605
|
-
"spki
|
|
3566
|
+
"der",
|
|
3567
|
+
"spki",
|
|
3606
3568
|
]
|
|
3607
3569
|
|
|
3608
3570
|
[[package]]
|
|
@@ -3614,22 +3576,12 @@ dependencies = [
|
|
|
3614
3576
|
"aes 0.9.1",
|
|
3615
3577
|
"aes-gcm 0.11.0",
|
|
3616
3578
|
"cbc",
|
|
3617
|
-
"der
|
|
3579
|
+
"der",
|
|
3618
3580
|
"pbkdf2",
|
|
3619
3581
|
"rand_core 0.10.1",
|
|
3620
3582
|
"scrypt",
|
|
3621
|
-
"sha2
|
|
3622
|
-
"spki
|
|
3623
|
-
]
|
|
3624
|
-
|
|
3625
|
-
[[package]]
|
|
3626
|
-
name = "pkcs8"
|
|
3627
|
-
version = "0.10.2"
|
|
3628
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3629
|
-
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
3630
|
-
dependencies = [
|
|
3631
|
-
"der 0.7.10",
|
|
3632
|
-
"spki 0.7.3",
|
|
3583
|
+
"sha2",
|
|
3584
|
+
"spki",
|
|
3633
3585
|
]
|
|
3634
3586
|
|
|
3635
3587
|
[[package]]
|
|
@@ -3638,10 +3590,10 @@ version = "0.11.0"
|
|
|
3638
3590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3639
3591
|
checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7"
|
|
3640
3592
|
dependencies = [
|
|
3641
|
-
"der
|
|
3593
|
+
"der",
|
|
3642
3594
|
"pkcs5",
|
|
3643
3595
|
"rand_core 0.10.1",
|
|
3644
|
-
"spki
|
|
3596
|
+
"spki",
|
|
3645
3597
|
]
|
|
3646
3598
|
|
|
3647
3599
|
[[package]]
|
|
@@ -3786,12 +3738,12 @@ dependencies = [
|
|
|
3786
3738
|
|
|
3787
3739
|
[[package]]
|
|
3788
3740
|
name = "prettyplease"
|
|
3789
|
-
version = "0.
|
|
3741
|
+
version = "0.3.0"
|
|
3790
3742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3791
|
-
checksum = "
|
|
3743
|
+
checksum = "2bfe0f4c752e450fc2faf62654f1c134747922825d5b04ca717b8874f41a40c0"
|
|
3792
3744
|
dependencies = [
|
|
3793
3745
|
"proc-macro2",
|
|
3794
|
-
"syn",
|
|
3746
|
+
"syn 3.0.3",
|
|
3795
3747
|
]
|
|
3796
3748
|
|
|
3797
3749
|
[[package]]
|
|
@@ -3840,7 +3792,7 @@ dependencies = [
|
|
|
3840
3792
|
"proc-macro-error-attr2",
|
|
3841
3793
|
"proc-macro2",
|
|
3842
3794
|
"quote",
|
|
3843
|
-
"syn",
|
|
3795
|
+
"syn 2.0.119",
|
|
3844
3796
|
]
|
|
3845
3797
|
|
|
3846
3798
|
[[package]]
|
|
@@ -3856,9 +3808,9 @@ dependencies = [
|
|
|
3856
3808
|
|
|
3857
3809
|
[[package]]
|
|
3858
3810
|
name = "proc-macro2"
|
|
3859
|
-
version = "1.0.
|
|
3811
|
+
version = "1.0.107"
|
|
3860
3812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3861
|
-
checksum = "
|
|
3813
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
3862
3814
|
dependencies = [
|
|
3863
3815
|
"unicode-ident",
|
|
3864
3816
|
]
|
|
@@ -3871,7 +3823,7 @@ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
|
3871
3823
|
dependencies = [
|
|
3872
3824
|
"bit-set",
|
|
3873
3825
|
"bit-vec",
|
|
3874
|
-
"bitflags 2.13.
|
|
3826
|
+
"bitflags 2.13.1",
|
|
3875
3827
|
"num-traits",
|
|
3876
3828
|
"rand 0.9.4",
|
|
3877
3829
|
"rand_chacha 0.9.0",
|
|
@@ -3940,7 +3892,7 @@ dependencies = [
|
|
|
3940
3892
|
"proc-macro2",
|
|
3941
3893
|
"pyo3-macros-backend",
|
|
3942
3894
|
"quote",
|
|
3943
|
-
"syn",
|
|
3895
|
+
"syn 2.0.119",
|
|
3944
3896
|
]
|
|
3945
3897
|
|
|
3946
3898
|
[[package]]
|
|
@@ -3952,7 +3904,7 @@ dependencies = [
|
|
|
3952
3904
|
"heck",
|
|
3953
3905
|
"proc-macro2",
|
|
3954
3906
|
"quote",
|
|
3955
|
-
"syn",
|
|
3907
|
+
"syn 2.0.119",
|
|
3956
3908
|
]
|
|
3957
3909
|
|
|
3958
3910
|
[[package]]
|
|
@@ -3963,9 +3915,9 @@ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
|
3963
3915
|
|
|
3964
3916
|
[[package]]
|
|
3965
3917
|
name = "quote"
|
|
3966
|
-
version = "1.0.
|
|
3918
|
+
version = "1.0.47"
|
|
3967
3919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3968
|
-
checksum = "
|
|
3920
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
3969
3921
|
dependencies = [
|
|
3970
3922
|
"proc-macro2",
|
|
3971
3923
|
]
|
|
@@ -3989,7 +3941,7 @@ dependencies = [
|
|
|
3989
3941
|
"proc-macro-utils",
|
|
3990
3942
|
"proc-macro2",
|
|
3991
3943
|
"quote",
|
|
3992
|
-
"syn",
|
|
3944
|
+
"syn 2.0.119",
|
|
3993
3945
|
]
|
|
3994
3946
|
|
|
3995
3947
|
[[package]]
|
|
@@ -4149,7 +4101,7 @@ version = "0.5.18"
|
|
|
4149
4101
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4150
4102
|
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
4151
4103
|
dependencies = [
|
|
4152
|
-
"bitflags 2.13.
|
|
4104
|
+
"bitflags 2.13.1",
|
|
4153
4105
|
]
|
|
4154
4106
|
|
|
4155
4107
|
[[package]]
|
|
@@ -4193,7 +4145,7 @@ version = "0.13.4"
|
|
|
4193
4145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4194
4146
|
checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
|
|
4195
4147
|
dependencies = [
|
|
4196
|
-
"base64",
|
|
4148
|
+
"base64 0.22.1",
|
|
4197
4149
|
"bytes",
|
|
4198
4150
|
"futures-core",
|
|
4199
4151
|
"futures-util",
|
|
@@ -4266,26 +4218,28 @@ version = "0.10.0-rc.18"
|
|
|
4266
4218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4267
4219
|
checksum = "30b2aa4ba0d89f73d1e332df05be0eeab8840351c36ca5654341dfdb57bb3caf"
|
|
4268
4220
|
dependencies = [
|
|
4269
|
-
"const-oid
|
|
4221
|
+
"const-oid",
|
|
4270
4222
|
"crypto-bigint",
|
|
4271
4223
|
"crypto-primes",
|
|
4272
|
-
"digest
|
|
4224
|
+
"digest",
|
|
4273
4225
|
"pkcs1",
|
|
4274
|
-
"pkcs8
|
|
4226
|
+
"pkcs8",
|
|
4275
4227
|
"rand_core 0.10.1",
|
|
4276
|
-
"sha2
|
|
4277
|
-
"signature
|
|
4278
|
-
"spki
|
|
4228
|
+
"sha2",
|
|
4229
|
+
"signature",
|
|
4230
|
+
"spki",
|
|
4279
4231
|
"zeroize",
|
|
4280
4232
|
]
|
|
4281
4233
|
|
|
4282
4234
|
[[package]]
|
|
4283
4235
|
name = "ruff_python_ast"
|
|
4284
|
-
version = "0.0.
|
|
4285
|
-
source = "
|
|
4236
|
+
version = "0.0.3"
|
|
4237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4238
|
+
checksum = "a10ab966362319801f5e85ce5c6aeac69f0cf50936a31e888f5d004e9279f337"
|
|
4286
4239
|
dependencies = [
|
|
4287
4240
|
"aho-corasick",
|
|
4288
|
-
"
|
|
4241
|
+
"arrayvec",
|
|
4242
|
+
"bitflags 2.13.1",
|
|
4289
4243
|
"compact_str",
|
|
4290
4244
|
"get-size2",
|
|
4291
4245
|
"is-macro",
|
|
@@ -4300,10 +4254,11 @@ dependencies = [
|
|
|
4300
4254
|
|
|
4301
4255
|
[[package]]
|
|
4302
4256
|
name = "ruff_python_parser"
|
|
4303
|
-
version = "0.0.
|
|
4304
|
-
source = "
|
|
4257
|
+
version = "0.0.3"
|
|
4258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4259
|
+
checksum = "4e3b8436fb010636ea79ce545acc3e391296ef4e804f7cef336dd5f9c8a4aa3a"
|
|
4305
4260
|
dependencies = [
|
|
4306
|
-
"bitflags 2.13.
|
|
4261
|
+
"bitflags 2.13.1",
|
|
4307
4262
|
"bstr",
|
|
4308
4263
|
"compact_str",
|
|
4309
4264
|
"get-size2",
|
|
@@ -4321,19 +4276,21 @@ dependencies = [
|
|
|
4321
4276
|
|
|
4322
4277
|
[[package]]
|
|
4323
4278
|
name = "ruff_python_stdlib"
|
|
4324
|
-
version = "0.0.
|
|
4325
|
-
source = "
|
|
4279
|
+
version = "0.0.3"
|
|
4280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4281
|
+
checksum = "8c8860927bf42efdabb31ccb2ac9b8f98ee43897b45536f8023e217b158e49a4"
|
|
4326
4282
|
dependencies = [
|
|
4327
|
-
"bitflags 2.13.
|
|
4283
|
+
"bitflags 2.13.1",
|
|
4328
4284
|
"unicode-ident",
|
|
4329
4285
|
]
|
|
4330
4286
|
|
|
4331
4287
|
[[package]]
|
|
4332
4288
|
name = "ruff_python_trivia"
|
|
4333
|
-
version = "0.0.
|
|
4334
|
-
source = "
|
|
4289
|
+
version = "0.0.3"
|
|
4290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4291
|
+
checksum = "969e4a14b2550818efea99b9e2361c714c72e4f1fb94799251d55aed20345189"
|
|
4335
4292
|
dependencies = [
|
|
4336
|
-
"itertools 0.
|
|
4293
|
+
"itertools 0.15.0",
|
|
4337
4294
|
"ruff_source_file",
|
|
4338
4295
|
"ruff_text_size",
|
|
4339
4296
|
"unicode-ident",
|
|
@@ -4341,8 +4298,9 @@ dependencies = [
|
|
|
4341
4298
|
|
|
4342
4299
|
[[package]]
|
|
4343
4300
|
name = "ruff_source_file"
|
|
4344
|
-
version = "0.0.
|
|
4345
|
-
source = "
|
|
4301
|
+
version = "0.0.3"
|
|
4302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4303
|
+
checksum = "c194e02d121e4a1744464ce3a982c4c196eb039bbf67532d18c8ce09f8da6381"
|
|
4346
4304
|
dependencies = [
|
|
4347
4305
|
"memchr",
|
|
4348
4306
|
"ruff_text_size",
|
|
@@ -4350,21 +4308,22 @@ dependencies = [
|
|
|
4350
4308
|
|
|
4351
4309
|
[[package]]
|
|
4352
4310
|
name = "ruff_text_size"
|
|
4353
|
-
version = "0.0.
|
|
4354
|
-
source = "
|
|
4311
|
+
version = "0.0.3"
|
|
4312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4313
|
+
checksum = "c91652ad39be604bc4d5299a5d19feccdd89e255609d89a031e7bb8e0d0aef9f"
|
|
4355
4314
|
dependencies = [
|
|
4356
4315
|
"get-size2",
|
|
4357
4316
|
]
|
|
4358
4317
|
|
|
4359
4318
|
[[package]]
|
|
4360
4319
|
name = "russh"
|
|
4361
|
-
version = "0.62.
|
|
4320
|
+
version = "0.62.4"
|
|
4362
4321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4363
|
-
checksum = "
|
|
4322
|
+
checksum = "b8b67b5a0d8068c89dcbe9d95df986af7a851d1f3c604525274c37468e60464f"
|
|
4364
4323
|
dependencies = [
|
|
4365
4324
|
"aes 0.9.1",
|
|
4366
4325
|
"aws-lc-rs",
|
|
4367
|
-
"bitflags 2.13.
|
|
4326
|
+
"bitflags 2.13.1",
|
|
4368
4327
|
"block-padding",
|
|
4369
4328
|
"byteorder",
|
|
4370
4329
|
"bytes",
|
|
@@ -4372,13 +4331,13 @@ dependencies = [
|
|
|
4372
4331
|
"cipher 0.5.2",
|
|
4373
4332
|
"crypto-bigint",
|
|
4374
4333
|
"ctr 0.10.1",
|
|
4375
|
-
"curve25519-dalek
|
|
4334
|
+
"curve25519-dalek",
|
|
4376
4335
|
"data-encoding",
|
|
4377
4336
|
"delegate",
|
|
4378
|
-
"der
|
|
4379
|
-
"digest
|
|
4337
|
+
"der",
|
|
4338
|
+
"digest",
|
|
4380
4339
|
"ecdsa",
|
|
4381
|
-
"ed25519-dalek
|
|
4340
|
+
"ed25519-dalek",
|
|
4382
4341
|
"elliptic-curve",
|
|
4383
4342
|
"enum_dispatch",
|
|
4384
4343
|
"flate2",
|
|
@@ -4403,7 +4362,7 @@ dependencies = [
|
|
|
4403
4362
|
"pbkdf2",
|
|
4404
4363
|
"pkcs1",
|
|
4405
4364
|
"pkcs5",
|
|
4406
|
-
"pkcs8
|
|
4365
|
+
"pkcs8",
|
|
4407
4366
|
"polyval 0.7.1",
|
|
4408
4367
|
"rand 0.10.2",
|
|
4409
4368
|
"rand_core 0.10.1",
|
|
@@ -4414,10 +4373,10 @@ dependencies = [
|
|
|
4414
4373
|
"scrypt",
|
|
4415
4374
|
"sec1",
|
|
4416
4375
|
"sha1",
|
|
4417
|
-
"sha2
|
|
4418
|
-
"sha3",
|
|
4419
|
-
"signature
|
|
4420
|
-
"spki
|
|
4376
|
+
"sha2",
|
|
4377
|
+
"sha3 0.12.0",
|
|
4378
|
+
"signature",
|
|
4379
|
+
"spki",
|
|
4421
4380
|
"ssh-encoding",
|
|
4422
4381
|
"ssh-key",
|
|
4423
4382
|
"subtle",
|
|
@@ -4483,11 +4442,11 @@ version = "1.1.4"
|
|
|
4483
4442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4484
4443
|
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
4485
4444
|
dependencies = [
|
|
4486
|
-
"bitflags 2.13.
|
|
4445
|
+
"bitflags 2.13.1",
|
|
4487
4446
|
"errno",
|
|
4488
4447
|
"libc",
|
|
4489
4448
|
"linux-raw-sys",
|
|
4490
|
-
"windows-sys 0.
|
|
4449
|
+
"windows-sys 0.52.0",
|
|
4491
4450
|
]
|
|
4492
4451
|
|
|
4493
4452
|
[[package]]
|
|
@@ -4544,7 +4503,7 @@ dependencies = [
|
|
|
4544
4503
|
"security-framework",
|
|
4545
4504
|
"security-framework-sys",
|
|
4546
4505
|
"webpki-root-certs",
|
|
4547
|
-
"windows-sys 0.
|
|
4506
|
+
"windows-sys 0.52.0",
|
|
4548
4507
|
]
|
|
4549
4508
|
|
|
4550
4509
|
[[package]]
|
|
@@ -4588,7 +4547,7 @@ version = "18.0.1"
|
|
|
4588
4547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4589
4548
|
checksum = "53f6a737db68eb1a8ccff86b584b2fc13eca6a7bb6f78ebc7c529547e3ab9684"
|
|
4590
4549
|
dependencies = [
|
|
4591
|
-
"bitflags 2.13.
|
|
4550
|
+
"bitflags 2.13.1",
|
|
4592
4551
|
"cfg-if",
|
|
4593
4552
|
"clipboard-win",
|
|
4594
4553
|
"home",
|
|
@@ -4658,7 +4617,7 @@ dependencies = [
|
|
|
4658
4617
|
"cfg-if",
|
|
4659
4618
|
"pbkdf2",
|
|
4660
4619
|
"salsa20",
|
|
4661
|
-
"sha2
|
|
4620
|
+
"sha2",
|
|
4662
4621
|
]
|
|
4663
4622
|
|
|
4664
4623
|
[[package]]
|
|
@@ -4669,7 +4628,7 @@ checksum = "d56d437c2f19203ce5f7122e507831de96f3d2d4d3be5af44a0b0a09d8a80e4d"
|
|
|
4669
4628
|
dependencies = [
|
|
4670
4629
|
"base16ct",
|
|
4671
4630
|
"ctutils",
|
|
4672
|
-
"der
|
|
4631
|
+
"der",
|
|
4673
4632
|
"hybrid-array",
|
|
4674
4633
|
"subtle",
|
|
4675
4634
|
"zeroize",
|
|
@@ -4681,7 +4640,7 @@ version = "3.7.0"
|
|
|
4681
4640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4682
4641
|
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
4683
4642
|
dependencies = [
|
|
4684
|
-
"bitflags 2.13.
|
|
4643
|
+
"bitflags 2.13.1",
|
|
4685
4644
|
"core-foundation",
|
|
4686
4645
|
"core-foundation-sys",
|
|
4687
4646
|
"libc",
|
|
@@ -4727,9 +4686,9 @@ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
|
4727
4686
|
|
|
4728
4687
|
[[package]]
|
|
4729
4688
|
name = "serde"
|
|
4730
|
-
version = "1.0.
|
|
4689
|
+
version = "1.0.229"
|
|
4731
4690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4732
|
-
checksum = "
|
|
4691
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
4733
4692
|
dependencies = [
|
|
4734
4693
|
"serde_core",
|
|
4735
4694
|
"serde_derive",
|
|
@@ -4748,29 +4707,29 @@ dependencies = [
|
|
|
4748
4707
|
|
|
4749
4708
|
[[package]]
|
|
4750
4709
|
name = "serde_core"
|
|
4751
|
-
version = "1.0.
|
|
4710
|
+
version = "1.0.229"
|
|
4752
4711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4753
|
-
checksum = "
|
|
4712
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
4754
4713
|
dependencies = [
|
|
4755
4714
|
"serde_derive",
|
|
4756
4715
|
]
|
|
4757
4716
|
|
|
4758
4717
|
[[package]]
|
|
4759
4718
|
name = "serde_derive"
|
|
4760
|
-
version = "1.0.
|
|
4719
|
+
version = "1.0.229"
|
|
4761
4720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4762
|
-
checksum = "
|
|
4721
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
4763
4722
|
dependencies = [
|
|
4764
4723
|
"proc-macro2",
|
|
4765
4724
|
"quote",
|
|
4766
|
-
"syn",
|
|
4725
|
+
"syn 3.0.3",
|
|
4767
4726
|
]
|
|
4768
4727
|
|
|
4769
4728
|
[[package]]
|
|
4770
4729
|
name = "serde_json"
|
|
4771
|
-
version = "1.0.
|
|
4730
|
+
version = "1.0.151"
|
|
4772
4731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4773
|
-
checksum = "
|
|
4732
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
4774
4733
|
dependencies = [
|
|
4775
4734
|
"itoa",
|
|
4776
4735
|
"memchr",
|
|
@@ -4800,9 +4759,9 @@ dependencies = [
|
|
|
4800
4759
|
|
|
4801
4760
|
[[package]]
|
|
4802
4761
|
name = "serial_test"
|
|
4803
|
-
version = "
|
|
4762
|
+
version = "4.0.1"
|
|
4804
4763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4805
|
-
checksum = "
|
|
4764
|
+
checksum = "a6df5ed973ad8d834e09f824f9e9f449af6b9a3745f78dec7cc752770bd3bf11"
|
|
4806
4765
|
dependencies = [
|
|
4807
4766
|
"futures-executor",
|
|
4808
4767
|
"futures-util",
|
|
@@ -4814,13 +4773,13 @@ dependencies = [
|
|
|
4814
4773
|
|
|
4815
4774
|
[[package]]
|
|
4816
4775
|
name = "serial_test_derive"
|
|
4817
|
-
version = "
|
|
4776
|
+
version = "4.0.1"
|
|
4818
4777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4819
|
-
checksum = "
|
|
4778
|
+
checksum = "a22144e767da4ddd8416dbf383700542ffd8a5dc493dfecedfe1fe3ad03c98ae"
|
|
4820
4779
|
dependencies = [
|
|
4821
4780
|
"proc-macro2",
|
|
4822
4781
|
"quote",
|
|
4823
|
-
"syn",
|
|
4782
|
+
"syn 3.0.3",
|
|
4824
4783
|
]
|
|
4825
4784
|
|
|
4826
4785
|
[[package]]
|
|
@@ -4831,7 +4790,7 @@ checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
|
|
|
4831
4790
|
dependencies = [
|
|
4832
4791
|
"cfg-if",
|
|
4833
4792
|
"cpufeatures 0.3.0",
|
|
4834
|
-
"digest
|
|
4793
|
+
"digest",
|
|
4835
4794
|
]
|
|
4836
4795
|
|
|
4837
4796
|
[[package]]
|
|
@@ -4842,34 +4801,34 @@ checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
|
|
|
4842
4801
|
|
|
4843
4802
|
[[package]]
|
|
4844
4803
|
name = "sha2"
|
|
4845
|
-
version = "0.
|
|
4804
|
+
version = "0.11.0"
|
|
4846
4805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4847
|
-
checksum = "
|
|
4806
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
4848
4807
|
dependencies = [
|
|
4849
4808
|
"cfg-if",
|
|
4850
|
-
"cpufeatures 0.
|
|
4851
|
-
"digest
|
|
4809
|
+
"cpufeatures 0.3.0",
|
|
4810
|
+
"digest",
|
|
4852
4811
|
]
|
|
4853
4812
|
|
|
4854
4813
|
[[package]]
|
|
4855
|
-
name = "
|
|
4814
|
+
name = "sha3"
|
|
4856
4815
|
version = "0.11.0"
|
|
4857
4816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4858
|
-
checksum = "
|
|
4817
|
+
checksum = "be176f1a57ce4e3d31c1a166222d9768de5954f811601fb7ca06fc8203905ce1"
|
|
4859
4818
|
dependencies = [
|
|
4860
|
-
"
|
|
4861
|
-
"
|
|
4862
|
-
"digest 0.11.3",
|
|
4819
|
+
"digest",
|
|
4820
|
+
"keccak",
|
|
4863
4821
|
]
|
|
4864
4822
|
|
|
4865
4823
|
[[package]]
|
|
4866
4824
|
name = "sha3"
|
|
4867
|
-
version = "0.
|
|
4825
|
+
version = "0.12.0"
|
|
4868
4826
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4869
|
-
checksum = "
|
|
4827
|
+
checksum = "bc9bad02c26382724b2d2692c6f179285e4b54eeecd7968f52a50059c3c11759"
|
|
4870
4828
|
dependencies = [
|
|
4871
|
-
"digest
|
|
4829
|
+
"digest",
|
|
4872
4830
|
"keccak",
|
|
4831
|
+
"sponge-cursor",
|
|
4873
4832
|
]
|
|
4874
4833
|
|
|
4875
4834
|
[[package]]
|
|
@@ -4927,22 +4886,13 @@ dependencies = [
|
|
|
4927
4886
|
"libc",
|
|
4928
4887
|
]
|
|
4929
4888
|
|
|
4930
|
-
[[package]]
|
|
4931
|
-
name = "signature"
|
|
4932
|
-
version = "2.2.0"
|
|
4933
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4934
|
-
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
4935
|
-
dependencies = [
|
|
4936
|
-
"rand_core 0.6.4",
|
|
4937
|
-
]
|
|
4938
|
-
|
|
4939
4889
|
[[package]]
|
|
4940
4890
|
name = "signature"
|
|
4941
4891
|
version = "3.0.0"
|
|
4942
4892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4943
4893
|
checksum = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5"
|
|
4944
4894
|
dependencies = [
|
|
4945
|
-
"digest
|
|
4895
|
+
"digest",
|
|
4946
4896
|
"rand_core 0.10.1",
|
|
4947
4897
|
]
|
|
4948
4898
|
|
|
@@ -5048,23 +4998,19 @@ dependencies = [
|
|
|
5048
4998
|
|
|
5049
4999
|
[[package]]
|
|
5050
5000
|
name = "spki"
|
|
5051
|
-
version = "0.
|
|
5001
|
+
version = "0.8.0"
|
|
5052
5002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5053
|
-
checksum = "
|
|
5003
|
+
checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
|
|
5054
5004
|
dependencies = [
|
|
5055
5005
|
"base64ct",
|
|
5056
|
-
"der
|
|
5006
|
+
"der",
|
|
5057
5007
|
]
|
|
5058
5008
|
|
|
5059
5009
|
[[package]]
|
|
5060
|
-
name = "
|
|
5061
|
-
version = "0.
|
|
5010
|
+
name = "sponge-cursor"
|
|
5011
|
+
version = "0.1.0"
|
|
5062
5012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5063
|
-
checksum = "
|
|
5064
|
-
dependencies = [
|
|
5065
|
-
"base64ct",
|
|
5066
|
-
"der 0.8.0",
|
|
5067
|
-
]
|
|
5013
|
+
checksum = "3a0219bd7d979d58245a4f41f695e1ac9f8befdffadd7f61f1bae9e39abc6620"
|
|
5068
5014
|
|
|
5069
5015
|
[[package]]
|
|
5070
5016
|
name = "ssh-cipher"
|
|
@@ -5094,7 +5040,7 @@ dependencies = [
|
|
|
5094
5040
|
"bytes",
|
|
5095
5041
|
"crypto-bigint",
|
|
5096
5042
|
"ctutils",
|
|
5097
|
-
"digest
|
|
5043
|
+
"digest",
|
|
5098
5044
|
"pem-rfc7468",
|
|
5099
5045
|
"zeroize",
|
|
5100
5046
|
]
|
|
@@ -5108,7 +5054,7 @@ dependencies = [
|
|
|
5108
5054
|
"argon2",
|
|
5109
5055
|
"bcrypt-pbkdf",
|
|
5110
5056
|
"ctutils",
|
|
5111
|
-
"ed25519-dalek
|
|
5057
|
+
"ed25519-dalek",
|
|
5112
5058
|
"hex",
|
|
5113
5059
|
"hmac",
|
|
5114
5060
|
"p256",
|
|
@@ -5118,8 +5064,8 @@ dependencies = [
|
|
|
5118
5064
|
"rsa",
|
|
5119
5065
|
"sec1",
|
|
5120
5066
|
"sha1",
|
|
5121
|
-
"sha2
|
|
5122
|
-
"signature
|
|
5067
|
+
"sha2",
|
|
5068
|
+
"signature",
|
|
5123
5069
|
"ssh-cipher",
|
|
5124
5070
|
"ssh-encoding",
|
|
5125
5071
|
"zeroize",
|
|
@@ -5171,7 +5117,7 @@ dependencies = [
|
|
|
5171
5117
|
"proc-macro2",
|
|
5172
5118
|
"quote",
|
|
5173
5119
|
"rustversion",
|
|
5174
|
-
"syn",
|
|
5120
|
+
"syn 2.0.119",
|
|
5175
5121
|
]
|
|
5176
5122
|
|
|
5177
5123
|
[[package]]
|
|
@@ -5183,7 +5129,7 @@ dependencies = [
|
|
|
5183
5129
|
"heck",
|
|
5184
5130
|
"proc-macro2",
|
|
5185
5131
|
"quote",
|
|
5186
|
-
"syn",
|
|
5132
|
+
"syn 2.0.119",
|
|
5187
5133
|
]
|
|
5188
5134
|
|
|
5189
5135
|
[[package]]
|
|
@@ -5194,9 +5140,20 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
5194
5140
|
|
|
5195
5141
|
[[package]]
|
|
5196
5142
|
name = "syn"
|
|
5197
|
-
version = "2.0.
|
|
5143
|
+
version = "2.0.119"
|
|
5198
5144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5199
|
-
checksum = "
|
|
5145
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
5146
|
+
dependencies = [
|
|
5147
|
+
"proc-macro2",
|
|
5148
|
+
"quote",
|
|
5149
|
+
"unicode-ident",
|
|
5150
|
+
]
|
|
5151
|
+
|
|
5152
|
+
[[package]]
|
|
5153
|
+
name = "syn"
|
|
5154
|
+
version = "3.0.3"
|
|
5155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5156
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
5200
5157
|
dependencies = [
|
|
5201
5158
|
"proc-macro2",
|
|
5202
5159
|
"quote",
|
|
@@ -5220,7 +5177,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
5220
5177
|
dependencies = [
|
|
5221
5178
|
"proc-macro2",
|
|
5222
5179
|
"quote",
|
|
5223
|
-
"syn",
|
|
5180
|
+
"syn 2.0.119",
|
|
5224
5181
|
]
|
|
5225
5182
|
|
|
5226
5183
|
[[package]]
|
|
@@ -5244,7 +5201,7 @@ dependencies = [
|
|
|
5244
5201
|
"proc-macro-error2",
|
|
5245
5202
|
"proc-macro2",
|
|
5246
5203
|
"quote",
|
|
5247
|
-
"syn",
|
|
5204
|
+
"syn 2.0.119",
|
|
5248
5205
|
]
|
|
5249
5206
|
|
|
5250
5207
|
[[package]]
|
|
@@ -5269,7 +5226,7 @@ dependencies = [
|
|
|
5269
5226
|
"getrandom 0.4.3",
|
|
5270
5227
|
"once_cell",
|
|
5271
5228
|
"rustix",
|
|
5272
|
-
"windows-sys 0.
|
|
5229
|
+
"windows-sys 0.52.0",
|
|
5273
5230
|
]
|
|
5274
5231
|
|
|
5275
5232
|
[[package]]
|
|
@@ -5310,22 +5267,22 @@ checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
|
|
|
5310
5267
|
|
|
5311
5268
|
[[package]]
|
|
5312
5269
|
name = "thiserror"
|
|
5313
|
-
version = "2.0.
|
|
5270
|
+
version = "2.0.19"
|
|
5314
5271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5315
|
-
checksum = "
|
|
5272
|
+
checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
5316
5273
|
dependencies = [
|
|
5317
5274
|
"thiserror-impl",
|
|
5318
5275
|
]
|
|
5319
5276
|
|
|
5320
5277
|
[[package]]
|
|
5321
5278
|
name = "thiserror-impl"
|
|
5322
|
-
version = "2.0.
|
|
5279
|
+
version = "2.0.19"
|
|
5323
5280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5324
|
-
checksum = "
|
|
5281
|
+
checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
5325
5282
|
dependencies = [
|
|
5326
5283
|
"proc-macro2",
|
|
5327
5284
|
"quote",
|
|
5328
|
-
"syn",
|
|
5285
|
+
"syn 3.0.3",
|
|
5329
5286
|
]
|
|
5330
5287
|
|
|
5331
5288
|
[[package]]
|
|
@@ -5375,9 +5332,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
5375
5332
|
|
|
5376
5333
|
[[package]]
|
|
5377
5334
|
name = "tokio"
|
|
5378
|
-
version = "1.
|
|
5335
|
+
version = "1.53.1"
|
|
5379
5336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5380
|
-
checksum = "
|
|
5337
|
+
checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
|
|
5381
5338
|
dependencies = [
|
|
5382
5339
|
"bytes",
|
|
5383
5340
|
"libc",
|
|
@@ -5397,7 +5354,7 @@ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
|
5397
5354
|
dependencies = [
|
|
5398
5355
|
"proc-macro2",
|
|
5399
5356
|
"quote",
|
|
5400
|
-
"syn",
|
|
5357
|
+
"syn 2.0.119",
|
|
5401
5358
|
]
|
|
5402
5359
|
|
|
5403
5360
|
[[package]]
|
|
@@ -5447,9 +5404,9 @@ dependencies = [
|
|
|
5447
5404
|
|
|
5448
5405
|
[[package]]
|
|
5449
5406
|
name = "toml"
|
|
5450
|
-
version = "1.1.
|
|
5407
|
+
version = "1.1.3+spec-1.1.0"
|
|
5451
5408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5452
|
-
checksum = "
|
|
5409
|
+
checksum = "53c96ecdfa941c8fc4fcaed14f99ada8ebed502eef533015095a07e3301d4c3c"
|
|
5453
5410
|
dependencies = [
|
|
5454
5411
|
"indexmap",
|
|
5455
5412
|
"serde_core",
|
|
@@ -5480,9 +5437,9 @@ dependencies = [
|
|
|
5480
5437
|
|
|
5481
5438
|
[[package]]
|
|
5482
5439
|
name = "toml_writer"
|
|
5483
|
-
version = "1.1.
|
|
5440
|
+
version = "1.1.2+spec-1.1.0"
|
|
5484
5441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5485
|
-
checksum = "
|
|
5442
|
+
checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
|
|
5486
5443
|
|
|
5487
5444
|
[[package]]
|
|
5488
5445
|
name = "tower"
|
|
@@ -5505,7 +5462,7 @@ version = "0.6.11"
|
|
|
5505
5462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5506
5463
|
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
5507
5464
|
dependencies = [
|
|
5508
|
-
"bitflags 2.13.
|
|
5465
|
+
"bitflags 2.13.1",
|
|
5509
5466
|
"bytes",
|
|
5510
5467
|
"futures-util",
|
|
5511
5468
|
"http",
|
|
@@ -5548,7 +5505,7 @@ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
|
5548
5505
|
dependencies = [
|
|
5549
5506
|
"proc-macro2",
|
|
5550
5507
|
"quote",
|
|
5551
|
-
"syn",
|
|
5508
|
+
"syn 2.0.119",
|
|
5552
5509
|
]
|
|
5553
5510
|
|
|
5554
5511
|
[[package]]
|
|
@@ -5598,9 +5555,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
5598
5555
|
|
|
5599
5556
|
[[package]]
|
|
5600
5557
|
name = "turso_core"
|
|
5601
|
-
version = "0.
|
|
5558
|
+
version = "0.8.0-pre.2"
|
|
5602
5559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5603
|
-
checksum = "
|
|
5560
|
+
checksum = "126a369027e3f8d5736f871267e9a79fe18e081cf4023b520d3a45097bc9e841"
|
|
5604
5561
|
dependencies = [
|
|
5605
5562
|
"aegis",
|
|
5606
5563
|
"aes 0.8.4",
|
|
@@ -5610,7 +5567,7 @@ dependencies = [
|
|
|
5610
5567
|
"arc-swap",
|
|
5611
5568
|
"aristo",
|
|
5612
5569
|
"bigdecimal",
|
|
5613
|
-
"bitflags 2.13.
|
|
5570
|
+
"bitflags 2.13.1",
|
|
5614
5571
|
"branches",
|
|
5615
5572
|
"bumpalo",
|
|
5616
5573
|
"bytemuck",
|
|
@@ -5667,9 +5624,9 @@ dependencies = [
|
|
|
5667
5624
|
|
|
5668
5625
|
[[package]]
|
|
5669
5626
|
name = "turso_ext"
|
|
5670
|
-
version = "0.
|
|
5627
|
+
version = "0.8.0-pre.2"
|
|
5671
5628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5672
|
-
checksum = "
|
|
5629
|
+
checksum = "2cca983d5255440f8074a017c1bebe4bb387f079a43fedc179f3de1e6f3e3def"
|
|
5673
5630
|
dependencies = [
|
|
5674
5631
|
"chrono",
|
|
5675
5632
|
"getrandom 0.4.3",
|
|
@@ -5678,22 +5635,22 @@ dependencies = [
|
|
|
5678
5635
|
|
|
5679
5636
|
[[package]]
|
|
5680
5637
|
name = "turso_macros"
|
|
5681
|
-
version = "0.
|
|
5638
|
+
version = "0.8.0-pre.2"
|
|
5682
5639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5683
|
-
checksum = "
|
|
5640
|
+
checksum = "0cd0d06b919b0c6a517451c05a855368fecf101eeb87b4eaf299a3daa97ad2e2"
|
|
5684
5641
|
dependencies = [
|
|
5685
5642
|
"proc-macro2",
|
|
5686
5643
|
"quote",
|
|
5687
|
-
"syn",
|
|
5644
|
+
"syn 2.0.119",
|
|
5688
5645
|
]
|
|
5689
5646
|
|
|
5690
5647
|
[[package]]
|
|
5691
5648
|
name = "turso_parser"
|
|
5692
|
-
version = "0.
|
|
5649
|
+
version = "0.8.0-pre.2"
|
|
5693
5650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5694
|
-
checksum = "
|
|
5651
|
+
checksum = "d6c143277cc1387ba02aed82856a20c43108f8aaa4caf55201f73b229db08fcf"
|
|
5695
5652
|
dependencies = [
|
|
5696
|
-
"bitflags 2.13.
|
|
5653
|
+
"bitflags 2.13.1",
|
|
5697
5654
|
"memchr",
|
|
5698
5655
|
"miette",
|
|
5699
5656
|
"strum 0.26.3",
|
|
@@ -5738,6 +5695,12 @@ dependencies = [
|
|
|
5738
5695
|
"version_check",
|
|
5739
5696
|
]
|
|
5740
5697
|
|
|
5698
|
+
[[package]]
|
|
5699
|
+
name = "unicode-general-category"
|
|
5700
|
+
version = "1.1.0"
|
|
5701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5702
|
+
checksum = "0b993bddc193ae5bd0d623b49ec06ac3e9312875fdae725a975c51db1cc1677f"
|
|
5703
|
+
|
|
5741
5704
|
[[package]]
|
|
5742
5705
|
name = "unicode-id-start"
|
|
5743
5706
|
version = "1.4.0"
|
|
@@ -5988,7 +5951,7 @@ dependencies = [
|
|
|
5988
5951
|
"bumpalo",
|
|
5989
5952
|
"proc-macro2",
|
|
5990
5953
|
"quote",
|
|
5991
|
-
"syn",
|
|
5954
|
+
"syn 2.0.119",
|
|
5992
5955
|
"wasm-bindgen-shared",
|
|
5993
5956
|
]
|
|
5994
5957
|
|
|
@@ -6065,7 +6028,7 @@ version = "0.1.11"
|
|
|
6065
6028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6066
6029
|
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
6067
6030
|
dependencies = [
|
|
6068
|
-
"windows-sys 0.
|
|
6031
|
+
"windows-sys 0.52.0",
|
|
6069
6032
|
]
|
|
6070
6033
|
|
|
6071
6034
|
[[package]]
|
|
@@ -6127,7 +6090,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
|
6127
6090
|
dependencies = [
|
|
6128
6091
|
"proc-macro2",
|
|
6129
6092
|
"quote",
|
|
6130
|
-
"syn",
|
|
6093
|
+
"syn 2.0.119",
|
|
6131
6094
|
]
|
|
6132
6095
|
|
|
6133
6096
|
[[package]]
|
|
@@ -6138,7 +6101,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
|
6138
6101
|
dependencies = [
|
|
6139
6102
|
"proc-macro2",
|
|
6140
6103
|
"quote",
|
|
6141
|
-
"syn",
|
|
6104
|
+
"syn 2.0.119",
|
|
6142
6105
|
]
|
|
6143
6106
|
|
|
6144
6107
|
[[package]]
|
|
@@ -6335,7 +6298,7 @@ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
|
6335
6298
|
dependencies = [
|
|
6336
6299
|
"proc-macro2",
|
|
6337
6300
|
"quote",
|
|
6338
|
-
"syn",
|
|
6301
|
+
"syn 2.0.119",
|
|
6339
6302
|
"synstructure",
|
|
6340
6303
|
]
|
|
6341
6304
|
|
|
@@ -6373,7 +6336,7 @@ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
|
|
|
6373
6336
|
dependencies = [
|
|
6374
6337
|
"proc-macro2",
|
|
6375
6338
|
"quote",
|
|
6376
|
-
"syn",
|
|
6339
|
+
"syn 2.0.119",
|
|
6377
6340
|
]
|
|
6378
6341
|
|
|
6379
6342
|
[[package]]
|
|
@@ -6393,7 +6356,7 @@ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
|
6393
6356
|
dependencies = [
|
|
6394
6357
|
"proc-macro2",
|
|
6395
6358
|
"quote",
|
|
6396
|
-
"syn",
|
|
6359
|
+
"syn 2.0.119",
|
|
6397
6360
|
"synstructure",
|
|
6398
6361
|
]
|
|
6399
6362
|
|
|
@@ -6435,7 +6398,7 @@ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
|
6435
6398
|
dependencies = [
|
|
6436
6399
|
"proc-macro2",
|
|
6437
6400
|
"quote",
|
|
6438
|
-
"syn",
|
|
6401
|
+
"syn 2.0.119",
|
|
6439
6402
|
]
|
|
6440
6403
|
|
|
6441
6404
|
[[package]]
|