bashkit 0.5.0__tar.gz → 0.7.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bashkit-0.5.0 → bashkit-0.7.0}/Cargo.lock +177 -178
- {bashkit-0.5.0 → bashkit-0.7.0}/Cargo.toml +14 -7
- {bashkit-0.5.0 → bashkit-0.7.0}/PKG-INFO +16 -3
- {bashkit-0.5.0/crates/bashkit-python → bashkit-0.7.0}/README.md +15 -2
- {bashkit-0.5.0 → bashkit-0.7.0}/bashkit/_bashkit.pyi +18 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/bashkit/langchain.py +32 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/Cargo.toml +12 -1
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/README.md +74 -10
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/docs/compatibility.md +6 -12
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/docs/custom_builtins.md +53 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/docs/live_mounts.md +9 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/docs/threat-model.md +68 -60
- bashkit-0.7.0/crates/bashkit/src/builtins/clap_env.rs +255 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/date.rs +91 -12
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/export.rs +15 -6
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/fileops.rs +145 -52
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/generated/cat_args.rs +15 -2
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/extendedbigdecimal.rs +239 -0
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/format/argument.rs +202 -0
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/format/escape.rs +151 -0
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/format/human.rs +37 -0
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/format/mod.rs +347 -0
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/format/num_format.rs +544 -0
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/format/spec.rs +527 -0
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/format_support.rs +126 -0
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/ls_args.rs +971 -0
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/mktemp_args.rs +161 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/generated/mod.rs +14 -0
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/num_parser.rs +441 -0
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/od_args.rs +307 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/generated/readlink_args.rs +13 -2
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/realpath_args.rs +206 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/generated/shuf_args.rs +15 -2
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/stat_args.rs +107 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/generated/tac_args.rs +15 -2
- bashkit-0.7.0/crates/bashkit/src/builtins/generated/tee_args.rs +139 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/generated/truncate_args.rs +15 -2
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/hextools.rs +97 -48
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/http.rs +46 -16
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/inspect.rs +62 -35
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/jq/args.rs +38 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/jq/mod.rs +57 -2
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/jq/regex_compat.rs +41 -1
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/jq/tests.rs +67 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/ls.rs +264 -45
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/mod.rs +177 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/path.rs +88 -22
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/pipeline.rs +55 -28
- bashkit-0.7.0/crates/bashkit/src/builtins/printf.rs +609 -0
- bashkit-0.7.0/crates/bashkit/src/builtins/rg/mod.rs +12530 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/search_common.rs +0 -57
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/shuf.rs +232 -44
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/sqlite/dot_commands.rs +41 -16
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/sqlite/engine.rs +12 -1
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/sqlite/mod.rs +41 -14
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/sqlite/tests.rs +75 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/ssh/cmd.rs +34 -1
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/ssh/russh_handler.rs +46 -10
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/truncate.rs +75 -8
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/credential.rs +65 -20
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/fs/limits.rs +147 -3
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/fs/memory.rs +26 -16
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/fs/mod.rs +3 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/fs/mountable.rs +9 -1
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/fs/overlay.rs +2 -3
- bashkit-0.7.0/crates/bashkit/src/fs/readonly.rs +116 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/fs/realfs.rs +268 -9
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/fs/traits.rs +8 -4
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/interop/fs.rs +106 -14
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/interpreter/mod.rs +163 -34
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/lib.rs +150 -25
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/network/allowlist.rs +89 -10
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/network/client.rs +267 -36
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/network/mod.rs +1 -1
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/scripted_tool/execute.rs +10 -9
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/scripted_tool/extension.rs +41 -8
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/scripted_tool/mod.rs +112 -5
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/scripted_tool/toolset.rs +6 -6
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/snapshot.rs +7 -2
- bashkit-0.7.0/crates/bashkit/src/testing.rs +412 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/tool.rs +66 -7
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/tool_def.rs +64 -12
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/blackbox_security_tests.rs +258 -0
- bashkit-0.7.0/crates/bashkit/tests/builtin_registry_tests.rs +183 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/live_mount_tests.rs +14 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/realfs_tests.rs +176 -23
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/security_audit_pocs.rs +125 -0
- bashkit-0.7.0/crates/bashkit/tests/shuf_resource_tests.rs +30 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/skills_tests.rs +0 -22
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/snapshot_tests.rs +66 -6
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +12 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +64 -0
- bashkit-0.7.0/crates/bashkit/tests/spec_cases/bash/mktemp.test.sh +49 -0
- bashkit-0.7.0/crates/bashkit/tests/spec_cases/bash/od.test.sh +43 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/path.test.sh +2 -1
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +24 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +16 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/sqlite_differential_tests.rs +1 -1
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/sqlite_integration_tests.rs +44 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/sqlite_security_tests.rs +4 -7
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/threat_model_tests.rs +175 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/unicode_security_tests.rs +63 -66
- bashkit-0.7.0/crates/bashkit/tests/workflow_security_tests.rs +85 -0
- {bashkit-0.5.0 → bashkit-0.7.0/crates/bashkit-python}/README.md +15 -2
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/src/lib.rs +251 -50
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_ai_adapters.py +92 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_network_credentials.py +21 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_registered_tools.py +77 -0
- bashkit-0.5.0/crates/bashkit/src/builtins/printf.rs +0 -766
- bashkit-0.5.0/crates/bashkit/src/builtins/rg.rs +0 -597
- bashkit-0.5.0/crates/bashkit/src/testing.rs +0 -155
- {bashkit-0.5.0 → bashkit-0.7.0}/bashkit/__init__.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/bashkit/deepagents.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/bashkit/py.typed +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/bashkit/pydantic_ai.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/benches/parallel_execution.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/benches/sqlite.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/docs/clap-builtins.md +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/docs/credential-injection.md +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/docs/hooks.md +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/docs/jq.md +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/docs/logging.md +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/docs/python.md +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/docs/sqlite.md +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/docs/ssh.md +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/docs/typescript.md +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/agent_tool.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/basic.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/clap_builtin.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/clap_builtin_subcommands.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/custom_backend.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/custom_builtins.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/custom_fs.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/git_workflow.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/live_mounts.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/python_external_functions.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/python_scripts.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/realfs_readonly.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/resource_limits.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/scripted_tool.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/show_tool_output.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/sqlite_basic.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/sqlite_workflow.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/ssh_supabase.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/streaming_output.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/text_files.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/text_processing.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/typescript_scripts.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/examples/virtual_identity.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/alias.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/archive.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/assert.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/awk.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/base64.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/bc.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/caller.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/cat.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/checksum.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/clear.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/column.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/comm.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/compgen.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/csv.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/curl.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/cuttr.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/diff.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/dirstack.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/disk.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/dotenv.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/echo.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/environ.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/envsubst.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/expand.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/expr.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/fc.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/flow.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/fold.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/git/client.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/git/cmd.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/git/config.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/git/mod.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/grep.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/headtail.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/help.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/iconv.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/introspect.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/join.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/jq/compat.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/jq/convert.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/jq/errors.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/jq/format.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/json.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/log.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/mapfile.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/navigation.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/nl.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/numfmt.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/parallel.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/paste.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/patch.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/python.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/read.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/retry.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/sed.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/semver.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/seq.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/sleep.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/sortuniq.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/source.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/split.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/sqlite/formatter.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/sqlite/parser.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/sqlite/vfs_io.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/ssh/allowlist.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/ssh/client.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/ssh/config.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/ssh/handler.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/ssh/mod.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/strings.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/system.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/template.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/textrev.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/timeout.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/tomlq.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/trap.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/tree.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/typescript.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/vars.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/verify.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/wait.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/wc.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/yaml.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/yes.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/builtins/zip_cmd.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/error.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/fs/backend.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/fs/posix.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/fs/search.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/hooks.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/interop/mod.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/interpreter/glob.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/interpreter/jobs.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/interpreter/state.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/limits.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/logging_impl.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/network/bot_auth.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/parser/ast.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/parser/budget.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/parser/lexer.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/parser/mod.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/parser/span.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/parser/tokens.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/src/trace.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/allexport_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/awk_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/awk_newline_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/awk_pattern_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/awk_printf_expr_test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/awk_range_pattern_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/background_exec_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/bash_source_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/builtin_error_security_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/byte_range_panic_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/cancellation_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/cmdsub_quote_test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/coproc_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/coreutils_differential_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/credential_injection_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/custom_builtins_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/custom_fs_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/dev_null_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/final_env_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/find_multi_path_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/git_advanced_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/git_inspection_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/git_integration_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/git_remote_security_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/git_security_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/harness_example_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/history_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/issue_1175_test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/issue_274_test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/issue_275_279_282_test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/issue_276_test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/issue_277_test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/issue_289_test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/issue_290_test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/issue_291_test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/issue_853_test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/issue_872_test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/issue_873_test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/issue_875_test.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/jq_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/logging_security_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/mkfifo_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/nested_subscript_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/network_security_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/output_truncation_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/overlay_path_validation_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/proptest_differential.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/proptest_security.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/python_integration_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/python_security_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/regex_limit_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/release_profile_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/script_execution_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/set_e_and_or_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/source_function_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/cat.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/readlink.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/shuf.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/truncate.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_runner.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/spec_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/sqlite_compat_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/sqlite_fuzz_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/stack_overflow_regression_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/subst_depth_limit_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/symlink_overlay_security_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/tty_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/typescript_integration_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/typescript_security_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/unset_function_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit/tests/urandom_tests.rs +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/Cargo.toml +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/examples/bash_basics.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/examples/data_pipeline.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/examples/llm_tool.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/_bashkit_categories.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/_security_advanced.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/_security_core.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_basic.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_builtins.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_control_flow.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_error_handling.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_fastapi_integration.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_integration.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_network_config.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_python_security.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_scripts.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_security.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_sqlite.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/crates/bashkit-python/tests/test_vfs.py +0 -0
- {bashkit-0.5.0 → bashkit-0.7.0}/pyproject.toml +0 -0
|
@@ -304,9 +304,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
|
304
304
|
|
|
305
305
|
[[package]]
|
|
306
306
|
name = "aws-lc-rs"
|
|
307
|
-
version = "1.
|
|
307
|
+
version = "1.17.0"
|
|
308
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
-
checksum = "
|
|
309
|
+
checksum = "5ec2f1fc3ec205783a5da9a7e6c1509cc69dedf09a1949e412c1e18469326d00"
|
|
310
310
|
dependencies = [
|
|
311
311
|
"aws-lc-sys",
|
|
312
312
|
"untrusted 0.7.1",
|
|
@@ -315,9 +315,9 @@ dependencies = [
|
|
|
315
315
|
|
|
316
316
|
[[package]]
|
|
317
317
|
name = "aws-lc-sys"
|
|
318
|
-
version = "0.
|
|
318
|
+
version = "0.41.0"
|
|
319
319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
-
checksum = "
|
|
320
|
+
checksum = "1a2f9779ce85b93ab6170dd940ad0169b5766ff848247aff13bb788b832fe3f4"
|
|
321
321
|
dependencies = [
|
|
322
322
|
"cc",
|
|
323
323
|
"cmake",
|
|
@@ -345,11 +345,12 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
345
345
|
|
|
346
346
|
[[package]]
|
|
347
347
|
name = "bashkit"
|
|
348
|
-
version = "0.
|
|
348
|
+
version = "0.7.0"
|
|
349
349
|
dependencies = [
|
|
350
350
|
"anyhow",
|
|
351
351
|
"async-trait",
|
|
352
352
|
"base64",
|
|
353
|
+
"bigdecimal",
|
|
353
354
|
"chrono",
|
|
354
355
|
"clap",
|
|
355
356
|
"criterion",
|
|
@@ -359,6 +360,7 @@ dependencies = [
|
|
|
359
360
|
"flate2",
|
|
360
361
|
"futures-core",
|
|
361
362
|
"futures-util",
|
|
363
|
+
"getrandom 0.4.2",
|
|
362
364
|
"hmac 0.13.0",
|
|
363
365
|
"insta",
|
|
364
366
|
"jaq-core",
|
|
@@ -366,6 +368,8 @@ dependencies = [
|
|
|
366
368
|
"jaq-std",
|
|
367
369
|
"md-5",
|
|
368
370
|
"monty",
|
|
371
|
+
"num-traits",
|
|
372
|
+
"os_display",
|
|
369
373
|
"pretty_assertions",
|
|
370
374
|
"proptest",
|
|
371
375
|
"rand 0.10.1",
|
|
@@ -373,7 +377,6 @@ dependencies = [
|
|
|
373
377
|
"reqwest",
|
|
374
378
|
"russh",
|
|
375
379
|
"rustls",
|
|
376
|
-
"schemars",
|
|
377
380
|
"serde",
|
|
378
381
|
"serde_json",
|
|
379
382
|
"serial_test",
|
|
@@ -386,6 +389,7 @@ dependencies = [
|
|
|
386
389
|
"tower",
|
|
387
390
|
"tracing",
|
|
388
391
|
"turso_core",
|
|
392
|
+
"unit-prefix",
|
|
389
393
|
"url",
|
|
390
394
|
"zapcode-core",
|
|
391
395
|
"zeroize",
|
|
@@ -393,7 +397,7 @@ dependencies = [
|
|
|
393
397
|
|
|
394
398
|
[[package]]
|
|
395
399
|
name = "bashkit-bench"
|
|
396
|
-
version = "0.
|
|
400
|
+
version = "0.7.0"
|
|
397
401
|
dependencies = [
|
|
398
402
|
"anyhow",
|
|
399
403
|
"bashkit",
|
|
@@ -407,14 +411,12 @@ dependencies = [
|
|
|
407
411
|
|
|
408
412
|
[[package]]
|
|
409
413
|
name = "bashkit-cli"
|
|
410
|
-
version = "0.
|
|
414
|
+
version = "0.7.0"
|
|
411
415
|
dependencies = [
|
|
412
416
|
"anyhow",
|
|
413
417
|
"bashkit",
|
|
414
418
|
"clap",
|
|
415
419
|
"rustyline",
|
|
416
|
-
"serde",
|
|
417
|
-
"serde_json",
|
|
418
420
|
"signal-hook",
|
|
419
421
|
"tempfile",
|
|
420
422
|
"terminal_size",
|
|
@@ -423,18 +425,21 @@ dependencies = [
|
|
|
423
425
|
|
|
424
426
|
[[package]]
|
|
425
427
|
name = "bashkit-coreutils-port"
|
|
426
|
-
version = "0.
|
|
428
|
+
version = "0.7.0"
|
|
427
429
|
dependencies = [
|
|
428
430
|
"anyhow",
|
|
429
431
|
"prettyplease",
|
|
430
432
|
"proc-macro2",
|
|
431
433
|
"quote",
|
|
434
|
+
"serde",
|
|
432
435
|
"syn",
|
|
436
|
+
"tempfile",
|
|
437
|
+
"toml",
|
|
433
438
|
]
|
|
434
439
|
|
|
435
440
|
[[package]]
|
|
436
441
|
name = "bashkit-eval"
|
|
437
|
-
version = "0.
|
|
442
|
+
version = "0.7.0"
|
|
438
443
|
dependencies = [
|
|
439
444
|
"anyhow",
|
|
440
445
|
"async-trait",
|
|
@@ -451,20 +456,19 @@ dependencies = [
|
|
|
451
456
|
|
|
452
457
|
[[package]]
|
|
453
458
|
name = "bashkit-js"
|
|
454
|
-
version = "0.
|
|
459
|
+
version = "0.7.0"
|
|
455
460
|
dependencies = [
|
|
456
461
|
"bashkit",
|
|
457
462
|
"napi",
|
|
458
463
|
"napi-build",
|
|
459
464
|
"napi-derive",
|
|
460
|
-
"serde",
|
|
461
465
|
"serde_json",
|
|
462
466
|
"tokio",
|
|
463
467
|
]
|
|
464
468
|
|
|
465
469
|
[[package]]
|
|
466
470
|
name = "bashkit-python"
|
|
467
|
-
version = "0.
|
|
471
|
+
version = "0.7.0"
|
|
468
472
|
dependencies = [
|
|
469
473
|
"bashkit",
|
|
470
474
|
"num-bigint",
|
|
@@ -606,15 +610,6 @@ dependencies = [
|
|
|
606
610
|
"serde",
|
|
607
611
|
]
|
|
608
612
|
|
|
609
|
-
[[package]]
|
|
610
|
-
name = "built"
|
|
611
|
-
version = "0.7.5"
|
|
612
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
-
checksum = "c360505aed52b7ec96a3636c3f039d99103c37d1d9b4f7a8c743d3ea9ffcd03b"
|
|
614
|
-
dependencies = [
|
|
615
|
-
"chrono",
|
|
616
|
-
]
|
|
617
|
-
|
|
618
613
|
[[package]]
|
|
619
614
|
name = "bumpalo"
|
|
620
615
|
version = "3.20.2"
|
|
@@ -694,9 +689,9 @@ dependencies = [
|
|
|
694
689
|
|
|
695
690
|
[[package]]
|
|
696
691
|
name = "cc"
|
|
697
|
-
version = "1.2.
|
|
692
|
+
version = "1.2.62"
|
|
698
693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
-
checksum = "
|
|
694
|
+
checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
|
|
700
695
|
dependencies = [
|
|
701
696
|
"find-msvc-tools",
|
|
702
697
|
"jobserver",
|
|
@@ -1164,9 +1159,9 @@ dependencies = [
|
|
|
1164
1159
|
|
|
1165
1160
|
[[package]]
|
|
1166
1161
|
name = "ctor"
|
|
1167
|
-
version = "0.
|
|
1162
|
+
version = "1.0.6"
|
|
1168
1163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
-
checksum = "
|
|
1164
|
+
checksum = "6d765eb1c0bda10d31e0ea185f5ee15da532d60b0912d2bd1441783439e749c5"
|
|
1170
1165
|
|
|
1171
1166
|
[[package]]
|
|
1172
1167
|
name = "ctr"
|
|
@@ -1221,7 +1216,7 @@ dependencies = [
|
|
|
1221
1216
|
"cfg-if",
|
|
1222
1217
|
"cpufeatures 0.2.17",
|
|
1223
1218
|
"curve25519-dalek-derive",
|
|
1224
|
-
"digest 0.11.
|
|
1219
|
+
"digest 0.11.3",
|
|
1225
1220
|
"fiat-crypto 0.3.0",
|
|
1226
1221
|
"rustc_version",
|
|
1227
1222
|
"subtle",
|
|
@@ -1308,9 +1303,9 @@ dependencies = [
|
|
|
1308
1303
|
|
|
1309
1304
|
[[package]]
|
|
1310
1305
|
name = "digest"
|
|
1311
|
-
version = "0.11.
|
|
1306
|
+
version = "0.11.3"
|
|
1312
1307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
-
checksum = "
|
|
1308
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
1314
1309
|
dependencies = [
|
|
1315
1310
|
"block-buffer 0.12.0",
|
|
1316
1311
|
"const-oid 0.10.2",
|
|
@@ -1354,10 +1349,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1354
1349
|
checksum = "91bbdd377139884fafcad8dc43a760a3e1e681aa26db910257fa6535b70e1829"
|
|
1355
1350
|
dependencies = [
|
|
1356
1351
|
"der 0.8.0",
|
|
1357
|
-
"digest 0.11.
|
|
1352
|
+
"digest 0.11.3",
|
|
1358
1353
|
"elliptic-curve",
|
|
1359
1354
|
"rfc6979",
|
|
1360
|
-
"signature 3.0.0
|
|
1355
|
+
"signature 3.0.0",
|
|
1361
1356
|
"spki 0.8.0-rc.4",
|
|
1362
1357
|
"zeroize",
|
|
1363
1358
|
]
|
|
@@ -1379,7 +1374,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1379
1374
|
checksum = "c6e914c7c52decb085cea910552e24c63ac019e3ab8bf001ff736da9a9d9d890"
|
|
1380
1375
|
dependencies = [
|
|
1381
1376
|
"pkcs8 0.11.0-rc.11",
|
|
1382
|
-
"signature 3.0.0
|
|
1377
|
+
"signature 3.0.0",
|
|
1383
1378
|
]
|
|
1384
1379
|
|
|
1385
1380
|
[[package]]
|
|
@@ -1408,7 +1403,7 @@ dependencies = [
|
|
|
1408
1403
|
"rand_core 0.10.1",
|
|
1409
1404
|
"serde",
|
|
1410
1405
|
"sha2 0.11.0",
|
|
1411
|
-
"signature 3.0.0
|
|
1406
|
+
"signature 3.0.0",
|
|
1412
1407
|
"subtle",
|
|
1413
1408
|
"zeroize",
|
|
1414
1409
|
]
|
|
@@ -1428,7 +1423,7 @@ dependencies = [
|
|
|
1428
1423
|
"base16ct",
|
|
1429
1424
|
"crypto-bigint",
|
|
1430
1425
|
"crypto-common 0.2.1",
|
|
1431
|
-
"digest 0.11.
|
|
1426
|
+
"digest 0.11.3",
|
|
1432
1427
|
"hkdf",
|
|
1433
1428
|
"hybrid-array",
|
|
1434
1429
|
"once_cell",
|
|
@@ -1547,7 +1542,6 @@ checksum = "4e7f34442dbe69c60fe8eaf58a8cafff81a1f278816d8ab4db255b3bef4ac3c4"
|
|
|
1547
1542
|
dependencies = [
|
|
1548
1543
|
"getrandom 0.3.4",
|
|
1549
1544
|
"libm",
|
|
1550
|
-
"rand 0.9.4",
|
|
1551
1545
|
"siphasher",
|
|
1552
1546
|
]
|
|
1553
1547
|
|
|
@@ -1813,11 +1807,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1813
1807
|
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
1814
1808
|
dependencies = [
|
|
1815
1809
|
"cfg-if",
|
|
1810
|
+
"js-sys",
|
|
1816
1811
|
"libc",
|
|
1817
1812
|
"r-efi 6.0.0",
|
|
1818
1813
|
"rand_core 0.10.1",
|
|
1819
1814
|
"wasip2",
|
|
1820
1815
|
"wasip3",
|
|
1816
|
+
"wasm-bindgen",
|
|
1821
1817
|
]
|
|
1822
1818
|
|
|
1823
1819
|
[[package]]
|
|
@@ -1881,9 +1877,9 @@ dependencies = [
|
|
|
1881
1877
|
|
|
1882
1878
|
[[package]]
|
|
1883
1879
|
name = "hashbrown"
|
|
1884
|
-
version = "0.17.
|
|
1880
|
+
version = "0.17.1"
|
|
1885
1881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
|
-
checksum = "
|
|
1882
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1887
1883
|
|
|
1888
1884
|
[[package]]
|
|
1889
1885
|
name = "heapless"
|
|
@@ -1953,7 +1949,7 @@ version = "0.13.0"
|
|
|
1953
1949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1954
1950
|
checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
|
|
1955
1951
|
dependencies = [
|
|
1956
|
-
"digest 0.11.
|
|
1952
|
+
"digest 0.11.3",
|
|
1957
1953
|
]
|
|
1958
1954
|
|
|
1959
1955
|
[[package]]
|
|
@@ -2006,9 +2002,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
|
2006
2002
|
|
|
2007
2003
|
[[package]]
|
|
2008
2004
|
name = "hybrid-array"
|
|
2009
|
-
version = "0.4.
|
|
2005
|
+
version = "0.4.12"
|
|
2010
2006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
-
checksum = "
|
|
2007
|
+
checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
|
|
2012
2008
|
dependencies = [
|
|
2013
2009
|
"ctutils",
|
|
2014
2010
|
"subtle",
|
|
@@ -2214,7 +2210,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2214
2210
|
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
2215
2211
|
dependencies = [
|
|
2216
2212
|
"equivalent",
|
|
2217
|
-
"hashbrown 0.17.
|
|
2213
|
+
"hashbrown 0.17.1",
|
|
2218
2214
|
"serde",
|
|
2219
2215
|
"serde_core",
|
|
2220
2216
|
]
|
|
@@ -2273,7 +2269,7 @@ dependencies = [
|
|
|
2273
2269
|
"sec1",
|
|
2274
2270
|
"sha1 0.11.0",
|
|
2275
2271
|
"sha2 0.11.0",
|
|
2276
|
-
"signature 3.0.0
|
|
2272
|
+
"signature 3.0.0",
|
|
2277
2273
|
"ssh-cipher",
|
|
2278
2274
|
"ssh-encoding",
|
|
2279
2275
|
"subtle",
|
|
@@ -2313,16 +2309,6 @@ version = "2.12.0"
|
|
|
2313
2309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2314
2310
|
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
2315
2311
|
|
|
2316
|
-
[[package]]
|
|
2317
|
-
name = "iri-string"
|
|
2318
|
-
version = "0.7.12"
|
|
2319
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2320
|
-
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
2321
|
-
dependencies = [
|
|
2322
|
-
"memchr",
|
|
2323
|
-
"serde",
|
|
2324
|
-
]
|
|
2325
|
-
|
|
2326
2312
|
[[package]]
|
|
2327
2313
|
name = "is-macro"
|
|
2328
2314
|
version = "0.3.7"
|
|
@@ -2529,9 +2515,9 @@ dependencies = [
|
|
|
2529
2515
|
|
|
2530
2516
|
[[package]]
|
|
2531
2517
|
name = "js-sys"
|
|
2532
|
-
version = "0.3.
|
|
2518
|
+
version = "0.3.98"
|
|
2533
2519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2534
|
-
checksum = "
|
|
2520
|
+
checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
|
|
2535
2521
|
dependencies = [
|
|
2536
2522
|
"cfg-if",
|
|
2537
2523
|
"futures-util",
|
|
@@ -2730,7 +2716,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2730
2716
|
checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
|
|
2731
2717
|
dependencies = [
|
|
2732
2718
|
"cfg-if",
|
|
2733
|
-
"digest 0.11.
|
|
2719
|
+
"digest 0.11.3",
|
|
2734
2720
|
]
|
|
2735
2721
|
|
|
2736
2722
|
[[package]]
|
|
@@ -2812,9 +2798,9 @@ dependencies = [
|
|
|
2812
2798
|
|
|
2813
2799
|
[[package]]
|
|
2814
2800
|
name = "module-lattice"
|
|
2815
|
-
version = "0.2.
|
|
2801
|
+
version = "0.2.3"
|
|
2816
2802
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2817
|
-
checksum = "
|
|
2803
|
+
checksum = "0c61b87c9683ab7cb1c6871d261ad5479b6b10ceb52c4352aaca3b5d35a8febe"
|
|
2818
2804
|
dependencies = [
|
|
2819
2805
|
"ctutils",
|
|
2820
2806
|
"hybrid-array",
|
|
@@ -2852,9 +2838,9 @@ dependencies = [
|
|
|
2852
2838
|
|
|
2853
2839
|
[[package]]
|
|
2854
2840
|
name = "napi"
|
|
2855
|
-
version = "3.
|
|
2841
|
+
version = "3.9.0"
|
|
2856
2842
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2857
|
-
checksum = "
|
|
2843
|
+
checksum = "f1d395473824516f38dd1071a1a37bc57daa7be65b293ebba4ead5f7abb017a2"
|
|
2858
2844
|
dependencies = [
|
|
2859
2845
|
"bitflags",
|
|
2860
2846
|
"ctor",
|
|
@@ -2868,15 +2854,15 @@ dependencies = [
|
|
|
2868
2854
|
|
|
2869
2855
|
[[package]]
|
|
2870
2856
|
name = "napi-build"
|
|
2871
|
-
version = "2.3.
|
|
2857
|
+
version = "2.3.2"
|
|
2872
2858
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2873
|
-
checksum = "
|
|
2859
|
+
checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
|
|
2874
2860
|
|
|
2875
2861
|
[[package]]
|
|
2876
2862
|
name = "napi-derive"
|
|
2877
|
-
version = "3.5.
|
|
2863
|
+
version = "3.5.6"
|
|
2878
2864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2879
|
-
checksum = "
|
|
2865
|
+
checksum = "89b3f766e04667e6da0e181e2da4f85475d5a6513b7cf6a80bea184e224a5b42"
|
|
2880
2866
|
dependencies = [
|
|
2881
2867
|
"convert_case",
|
|
2882
2868
|
"ctor",
|
|
@@ -2919,9 +2905,9 @@ dependencies = [
|
|
|
2919
2905
|
|
|
2920
2906
|
[[package]]
|
|
2921
2907
|
name = "nix"
|
|
2922
|
-
version = "0.31.
|
|
2908
|
+
version = "0.31.3"
|
|
2923
2909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2924
|
-
checksum = "
|
|
2910
|
+
checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
|
|
2925
2911
|
dependencies = [
|
|
2926
2912
|
"bitflags",
|
|
2927
2913
|
"cfg-if",
|
|
@@ -3045,6 +3031,15 @@ dependencies = [
|
|
|
3045
3031
|
"indexmap",
|
|
3046
3032
|
]
|
|
3047
3033
|
|
|
3034
|
+
[[package]]
|
|
3035
|
+
name = "os_display"
|
|
3036
|
+
version = "0.1.4"
|
|
3037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3038
|
+
checksum = "ad5fd71b79026fb918650dde6d125000a233764f1c2f1659a1c71118e33ea08f"
|
|
3039
|
+
dependencies = [
|
|
3040
|
+
"unicode-width 0.2.2",
|
|
3041
|
+
]
|
|
3042
|
+
|
|
3048
3043
|
[[package]]
|
|
3049
3044
|
name = "owo-colors"
|
|
3050
3045
|
version = "3.5.0"
|
|
@@ -3300,9 +3295,9 @@ dependencies = [
|
|
|
3300
3295
|
|
|
3301
3296
|
[[package]]
|
|
3302
3297
|
name = "pack1"
|
|
3303
|
-
version = "1.
|
|
3298
|
+
version = "1.1.0"
|
|
3304
3299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3305
|
-
checksum = "
|
|
3300
|
+
checksum = "e3b7bb0ecf2e447b1f20ee94ee79ef6eed1e9d4b3c36ce1903b9dea3bf205523"
|
|
3306
3301
|
dependencies = [
|
|
3307
3302
|
"bytemuck",
|
|
3308
3303
|
]
|
|
@@ -3382,10 +3377,10 @@ dependencies = [
|
|
|
3382
3377
|
]
|
|
3383
3378
|
|
|
3384
3379
|
[[package]]
|
|
3385
|
-
name = "
|
|
3386
|
-
version = "
|
|
3380
|
+
name = "pastey"
|
|
3381
|
+
version = "0.2.2"
|
|
3387
3382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3388
|
-
checksum = "
|
|
3383
|
+
checksum = "c5a797f0e07bdf071d15742978fc3128ec6c22891c31a3a931513263904c982a"
|
|
3389
3384
|
|
|
3390
3385
|
[[package]]
|
|
3391
3386
|
name = "pbkdf2"
|
|
@@ -3403,7 +3398,7 @@ version = "0.13.0"
|
|
|
3403
3398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3404
3399
|
checksum = "112d82ceb8c5bf524d9af484d4e4970c9fd5a0cc15ba14ad93dccd28873b0629"
|
|
3405
3400
|
dependencies = [
|
|
3406
|
-
"digest 0.11.
|
|
3401
|
+
"digest 0.11.3",
|
|
3407
3402
|
"hmac 0.13.0",
|
|
3408
3403
|
]
|
|
3409
3404
|
|
|
@@ -4074,26 +4069,6 @@ dependencies = [
|
|
|
4074
4069
|
"bitflags",
|
|
4075
4070
|
]
|
|
4076
4071
|
|
|
4077
|
-
[[package]]
|
|
4078
|
-
name = "ref-cast"
|
|
4079
|
-
version = "1.0.25"
|
|
4080
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4081
|
-
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
4082
|
-
dependencies = [
|
|
4083
|
-
"ref-cast-impl",
|
|
4084
|
-
]
|
|
4085
|
-
|
|
4086
|
-
[[package]]
|
|
4087
|
-
name = "ref-cast-impl"
|
|
4088
|
-
version = "1.0.25"
|
|
4089
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4090
|
-
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
4091
|
-
dependencies = [
|
|
4092
|
-
"proc-macro2",
|
|
4093
|
-
"quote",
|
|
4094
|
-
"syn",
|
|
4095
|
-
]
|
|
4096
|
-
|
|
4097
4072
|
[[package]]
|
|
4098
4073
|
name = "regex"
|
|
4099
4074
|
version = "1.12.3"
|
|
@@ -4170,9 +4145,9 @@ dependencies = [
|
|
|
4170
4145
|
|
|
4171
4146
|
[[package]]
|
|
4172
4147
|
name = "rfc6979"
|
|
4173
|
-
version = "0.5.0
|
|
4148
|
+
version = "0.5.0"
|
|
4174
4149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4175
|
-
checksum = "
|
|
4150
|
+
checksum = "5236ce872cac07e0fb3969b0cbf468c7d2f37d432f1b627dcb7b8d34563fb0c3"
|
|
4176
4151
|
dependencies = [
|
|
4177
4152
|
"hmac 0.13.0",
|
|
4178
4153
|
"subtle",
|
|
@@ -4211,12 +4186,12 @@ dependencies = [
|
|
|
4211
4186
|
"const-oid 0.10.2",
|
|
4212
4187
|
"crypto-bigint",
|
|
4213
4188
|
"crypto-primes",
|
|
4214
|
-
"digest 0.11.
|
|
4189
|
+
"digest 0.11.3",
|
|
4215
4190
|
"pkcs1",
|
|
4216
4191
|
"pkcs8 0.11.0-rc.11",
|
|
4217
4192
|
"rand_core 0.10.1",
|
|
4218
4193
|
"sha2 0.11.0",
|
|
4219
|
-
"signature 3.0.0
|
|
4194
|
+
"signature 3.0.0",
|
|
4220
4195
|
"spki 0.8.0-rc.4",
|
|
4221
4196
|
"zeroize",
|
|
4222
4197
|
]
|
|
@@ -4298,9 +4273,9 @@ dependencies = [
|
|
|
4298
4273
|
|
|
4299
4274
|
[[package]]
|
|
4300
4275
|
name = "russh"
|
|
4301
|
-
version = "0.60.
|
|
4276
|
+
version = "0.60.3"
|
|
4302
4277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4303
|
-
checksum = "
|
|
4278
|
+
checksum = "324b92f459d3e42da294e14e8eb150d2215fcfb7c966838bc1127cd68bc05a0d"
|
|
4304
4279
|
dependencies = [
|
|
4305
4280
|
"aead 0.6.0-rc.10",
|
|
4306
4281
|
"aes 0.8.4",
|
|
@@ -4367,7 +4342,7 @@ dependencies = [
|
|
|
4367
4342
|
"sha2 0.10.9",
|
|
4368
4343
|
"sha2 0.11.0",
|
|
4369
4344
|
"sha3",
|
|
4370
|
-
"signature 3.0.0
|
|
4345
|
+
"signature 3.0.0",
|
|
4371
4346
|
"spki 0.8.0-rc.4",
|
|
4372
4347
|
"ssh-encoding",
|
|
4373
4348
|
"subtle",
|
|
@@ -4380,9 +4355,9 @@ dependencies = [
|
|
|
4380
4355
|
|
|
4381
4356
|
[[package]]
|
|
4382
4357
|
name = "russh-cryptovec"
|
|
4383
|
-
version = "0.
|
|
4358
|
+
version = "0.60.3"
|
|
4384
4359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4385
|
-
checksum = "
|
|
4360
|
+
checksum = "37cb4d0360bdd8935392a306d8b5edb539cc455b30e8bf13dd213a0cf7879b40"
|
|
4386
4361
|
dependencies = [
|
|
4387
4362
|
"log",
|
|
4388
4363
|
"nix",
|
|
@@ -4617,31 +4592,6 @@ dependencies = [
|
|
|
4617
4592
|
"windows-sys 0.61.2",
|
|
4618
4593
|
]
|
|
4619
4594
|
|
|
4620
|
-
[[package]]
|
|
4621
|
-
name = "schemars"
|
|
4622
|
-
version = "1.2.1"
|
|
4623
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4624
|
-
checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
|
|
4625
|
-
dependencies = [
|
|
4626
|
-
"dyn-clone",
|
|
4627
|
-
"ref-cast",
|
|
4628
|
-
"schemars_derive",
|
|
4629
|
-
"serde",
|
|
4630
|
-
"serde_json",
|
|
4631
|
-
]
|
|
4632
|
-
|
|
4633
|
-
[[package]]
|
|
4634
|
-
name = "schemars_derive"
|
|
4635
|
-
version = "1.2.1"
|
|
4636
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4637
|
-
checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
|
|
4638
|
-
dependencies = [
|
|
4639
|
-
"proc-macro2",
|
|
4640
|
-
"quote",
|
|
4641
|
-
"serde_derive_internals",
|
|
4642
|
-
"syn",
|
|
4643
|
-
]
|
|
4644
|
-
|
|
4645
4595
|
[[package]]
|
|
4646
4596
|
name = "scoped-tls"
|
|
4647
4597
|
version = "1.0.1"
|
|
@@ -4757,17 +4707,6 @@ dependencies = [
|
|
|
4757
4707
|
"syn",
|
|
4758
4708
|
]
|
|
4759
4709
|
|
|
4760
|
-
[[package]]
|
|
4761
|
-
name = "serde_derive_internals"
|
|
4762
|
-
version = "0.29.1"
|
|
4763
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4764
|
-
checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
4765
|
-
dependencies = [
|
|
4766
|
-
"proc-macro2",
|
|
4767
|
-
"quote",
|
|
4768
|
-
"syn",
|
|
4769
|
-
]
|
|
4770
|
-
|
|
4771
4710
|
[[package]]
|
|
4772
4711
|
name = "serde_json"
|
|
4773
4712
|
version = "1.0.149"
|
|
@@ -4781,11 +4720,20 @@ dependencies = [
|
|
|
4781
4720
|
"zmij",
|
|
4782
4721
|
]
|
|
4783
4722
|
|
|
4723
|
+
[[package]]
|
|
4724
|
+
name = "serde_spanned"
|
|
4725
|
+
version = "1.1.1"
|
|
4726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4727
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
4728
|
+
dependencies = [
|
|
4729
|
+
"serde_core",
|
|
4730
|
+
]
|
|
4731
|
+
|
|
4784
4732
|
[[package]]
|
|
4785
4733
|
name = "serdect"
|
|
4786
|
-
version = "0.4.
|
|
4734
|
+
version = "0.4.3"
|
|
4787
4735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4788
|
-
checksum = "
|
|
4736
|
+
checksum = "66cf8fedced2fcf12406bcb34223dffb92eaf34908ede12fed414c82b7f00b3e"
|
|
4789
4737
|
dependencies = [
|
|
4790
4738
|
"base16ct",
|
|
4791
4739
|
"serde",
|
|
@@ -4836,7 +4784,7 @@ checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
|
|
|
4836
4784
|
dependencies = [
|
|
4837
4785
|
"cfg-if",
|
|
4838
4786
|
"cpufeatures 0.3.0",
|
|
4839
|
-
"digest 0.11.
|
|
4787
|
+
"digest 0.11.3",
|
|
4840
4788
|
]
|
|
4841
4789
|
|
|
4842
4790
|
[[package]]
|
|
@@ -4864,7 +4812,7 @@ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
|
4864
4812
|
dependencies = [
|
|
4865
4813
|
"cfg-if",
|
|
4866
4814
|
"cpufeatures 0.3.0",
|
|
4867
|
-
"digest 0.11.
|
|
4815
|
+
"digest 0.11.3",
|
|
4868
4816
|
]
|
|
4869
4817
|
|
|
4870
4818
|
[[package]]
|
|
@@ -4873,7 +4821,7 @@ version = "0.11.0"
|
|
|
4873
4821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4874
4822
|
checksum = "be176f1a57ce4e3d31c1a166222d9768de5954f811601fb7ca06fc8203905ce1"
|
|
4875
4823
|
dependencies = [
|
|
4876
|
-
"digest 0.11.
|
|
4824
|
+
"digest 0.11.3",
|
|
4877
4825
|
"keccak",
|
|
4878
4826
|
]
|
|
4879
4827
|
|
|
@@ -4943,11 +4891,11 @@ dependencies = [
|
|
|
4943
4891
|
|
|
4944
4892
|
[[package]]
|
|
4945
4893
|
name = "signature"
|
|
4946
|
-
version = "3.0.0
|
|
4894
|
+
version = "3.0.0"
|
|
4947
4895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4948
|
-
checksum = "
|
|
4896
|
+
checksum = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5"
|
|
4949
4897
|
dependencies = [
|
|
4950
|
-
"digest 0.11.
|
|
4898
|
+
"digest 0.11.3",
|
|
4951
4899
|
"rand_core 0.10.1",
|
|
4952
4900
|
]
|
|
4953
4901
|
|
|
@@ -4990,9 +4938,9 @@ dependencies = [
|
|
|
4990
4938
|
|
|
4991
4939
|
[[package]]
|
|
4992
4940
|
name = "siphasher"
|
|
4993
|
-
version = "1.0.
|
|
4941
|
+
version = "1.0.3"
|
|
4994
4942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4995
|
-
checksum = "
|
|
4943
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
4996
4944
|
|
|
4997
4945
|
[[package]]
|
|
4998
4946
|
name = "slab"
|
|
@@ -5363,9 +5311,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
5363
5311
|
|
|
5364
5312
|
[[package]]
|
|
5365
5313
|
name = "tokio"
|
|
5366
|
-
version = "1.52.
|
|
5314
|
+
version = "1.52.3"
|
|
5367
5315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5368
|
-
checksum = "
|
|
5316
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
5369
5317
|
dependencies = [
|
|
5370
5318
|
"bytes",
|
|
5371
5319
|
"libc",
|
|
@@ -5433,6 +5381,45 @@ dependencies = [
|
|
|
5433
5381
|
"tokio",
|
|
5434
5382
|
]
|
|
5435
5383
|
|
|
5384
|
+
[[package]]
|
|
5385
|
+
name = "toml"
|
|
5386
|
+
version = "1.1.2+spec-1.1.0"
|
|
5387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5388
|
+
checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
|
|
5389
|
+
dependencies = [
|
|
5390
|
+
"indexmap",
|
|
5391
|
+
"serde_core",
|
|
5392
|
+
"serde_spanned",
|
|
5393
|
+
"toml_datetime",
|
|
5394
|
+
"toml_parser",
|
|
5395
|
+
"toml_writer",
|
|
5396
|
+
"winnow",
|
|
5397
|
+
]
|
|
5398
|
+
|
|
5399
|
+
[[package]]
|
|
5400
|
+
name = "toml_datetime"
|
|
5401
|
+
version = "1.1.1+spec-1.1.0"
|
|
5402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5403
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
5404
|
+
dependencies = [
|
|
5405
|
+
"serde_core",
|
|
5406
|
+
]
|
|
5407
|
+
|
|
5408
|
+
[[package]]
|
|
5409
|
+
name = "toml_parser"
|
|
5410
|
+
version = "1.1.2+spec-1.1.0"
|
|
5411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5412
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
5413
|
+
dependencies = [
|
|
5414
|
+
"winnow",
|
|
5415
|
+
]
|
|
5416
|
+
|
|
5417
|
+
[[package]]
|
|
5418
|
+
name = "toml_writer"
|
|
5419
|
+
version = "1.1.1+spec-1.1.0"
|
|
5420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5421
|
+
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
|
5422
|
+
|
|
5436
5423
|
[[package]]
|
|
5437
5424
|
name = "tower"
|
|
5438
5425
|
version = "0.5.3"
|
|
@@ -5450,20 +5437,20 @@ dependencies = [
|
|
|
5450
5437
|
|
|
5451
5438
|
[[package]]
|
|
5452
5439
|
name = "tower-http"
|
|
5453
|
-
version = "0.6.
|
|
5440
|
+
version = "0.6.10"
|
|
5454
5441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5455
|
-
checksum = "
|
|
5442
|
+
checksum = "68d6fdd9f81c2819c9a8b0e0cd91660e7746a8e6ea2ba7c6b2b057985f6bcb51"
|
|
5456
5443
|
dependencies = [
|
|
5457
5444
|
"bitflags",
|
|
5458
5445
|
"bytes",
|
|
5459
5446
|
"futures-util",
|
|
5460
5447
|
"http",
|
|
5461
5448
|
"http-body",
|
|
5462
|
-
"iri-string",
|
|
5463
5449
|
"pin-project-lite",
|
|
5464
5450
|
"tower",
|
|
5465
5451
|
"tower-layer",
|
|
5466
5452
|
"tower-service",
|
|
5453
|
+
"url",
|
|
5467
5454
|
]
|
|
5468
5455
|
|
|
5469
5456
|
[[package]]
|
|
@@ -5547,9 +5534,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
5547
5534
|
|
|
5548
5535
|
[[package]]
|
|
5549
5536
|
name = "turso_core"
|
|
5550
|
-
version = "0.
|
|
5537
|
+
version = "0.6.0"
|
|
5551
5538
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5552
|
-
checksum = "
|
|
5539
|
+
checksum = "584dcc247f472c45d4f369daf590487a609c16a7f8848f2fb2902d3d3f055d31"
|
|
5553
5540
|
dependencies = [
|
|
5554
5541
|
"aegis",
|
|
5555
5542
|
"aes 0.8.4",
|
|
@@ -5559,9 +5546,9 @@ dependencies = [
|
|
|
5559
5546
|
"bigdecimal",
|
|
5560
5547
|
"bitflags",
|
|
5561
5548
|
"branches",
|
|
5562
|
-
"built",
|
|
5563
5549
|
"bumpalo",
|
|
5564
5550
|
"bytemuck",
|
|
5551
|
+
"cfg_aliases",
|
|
5565
5552
|
"cfg_block",
|
|
5566
5553
|
"chrono",
|
|
5567
5554
|
"crc32c",
|
|
@@ -5580,7 +5567,7 @@ dependencies = [
|
|
|
5580
5567
|
"num-traits",
|
|
5581
5568
|
"pack1",
|
|
5582
5569
|
"parking_lot",
|
|
5583
|
-
"
|
|
5570
|
+
"pastey",
|
|
5584
5571
|
"polling",
|
|
5585
5572
|
"rand 0.9.4",
|
|
5586
5573
|
"rapidhash",
|
|
@@ -5611,20 +5598,20 @@ dependencies = [
|
|
|
5611
5598
|
|
|
5612
5599
|
[[package]]
|
|
5613
5600
|
name = "turso_ext"
|
|
5614
|
-
version = "0.
|
|
5601
|
+
version = "0.6.0"
|
|
5615
5602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5616
|
-
checksum = "
|
|
5603
|
+
checksum = "870a80e0516ec000ee51aed89664d41e258e31c1b4a639f86e0ce7c2dd3bbc18"
|
|
5617
5604
|
dependencies = [
|
|
5618
5605
|
"chrono",
|
|
5619
|
-
"getrandom 0.
|
|
5606
|
+
"getrandom 0.4.2",
|
|
5620
5607
|
"turso_macros",
|
|
5621
5608
|
]
|
|
5622
5609
|
|
|
5623
5610
|
[[package]]
|
|
5624
5611
|
name = "turso_macros"
|
|
5625
|
-
version = "0.
|
|
5612
|
+
version = "0.6.0"
|
|
5626
5613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5627
|
-
checksum = "
|
|
5614
|
+
checksum = "97578dbe06dd73634457b38b3546b868b4886aebefa57570b11a899679355761"
|
|
5628
5615
|
dependencies = [
|
|
5629
5616
|
"proc-macro2",
|
|
5630
5617
|
"quote",
|
|
@@ -5633,9 +5620,9 @@ dependencies = [
|
|
|
5633
5620
|
|
|
5634
5621
|
[[package]]
|
|
5635
5622
|
name = "turso_parser"
|
|
5636
|
-
version = "0.
|
|
5623
|
+
version = "0.6.0"
|
|
5637
5624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5638
|
-
checksum = "
|
|
5625
|
+
checksum = "aa8dd793f7e9c467568275b0acddfd527ec19b7d1057bed41364b4c77b1111b3"
|
|
5639
5626
|
dependencies = [
|
|
5640
5627
|
"bitflags",
|
|
5641
5628
|
"memchr",
|
|
@@ -5755,6 +5742,12 @@ dependencies = [
|
|
|
5755
5742
|
"rand 0.8.6",
|
|
5756
5743
|
]
|
|
5757
5744
|
|
|
5745
|
+
[[package]]
|
|
5746
|
+
name = "unit-prefix"
|
|
5747
|
+
version = "0.5.2"
|
|
5748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5749
|
+
checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
|
|
5750
|
+
|
|
5758
5751
|
[[package]]
|
|
5759
5752
|
name = "universal-hash"
|
|
5760
5753
|
version = "0.5.1"
|
|
@@ -5895,9 +5888,9 @@ dependencies = [
|
|
|
5895
5888
|
|
|
5896
5889
|
[[package]]
|
|
5897
5890
|
name = "wasm-bindgen"
|
|
5898
|
-
version = "0.2.
|
|
5891
|
+
version = "0.2.121"
|
|
5899
5892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5900
|
-
checksum = "
|
|
5893
|
+
checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
|
|
5901
5894
|
dependencies = [
|
|
5902
5895
|
"cfg-if",
|
|
5903
5896
|
"once_cell",
|
|
@@ -5908,9 +5901,9 @@ dependencies = [
|
|
|
5908
5901
|
|
|
5909
5902
|
[[package]]
|
|
5910
5903
|
name = "wasm-bindgen-futures"
|
|
5911
|
-
version = "0.4.
|
|
5904
|
+
version = "0.4.71"
|
|
5912
5905
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5913
|
-
checksum = "
|
|
5906
|
+
checksum = "96492d0d3ffba25305a7dc88720d250b1401d7edca02cc3bcd50633b424673b8"
|
|
5914
5907
|
dependencies = [
|
|
5915
5908
|
"js-sys",
|
|
5916
5909
|
"wasm-bindgen",
|
|
@@ -5918,9 +5911,9 @@ dependencies = [
|
|
|
5918
5911
|
|
|
5919
5912
|
[[package]]
|
|
5920
5913
|
name = "wasm-bindgen-macro"
|
|
5921
|
-
version = "0.2.
|
|
5914
|
+
version = "0.2.121"
|
|
5922
5915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5923
|
-
checksum = "
|
|
5916
|
+
checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
|
|
5924
5917
|
dependencies = [
|
|
5925
5918
|
"quote",
|
|
5926
5919
|
"wasm-bindgen-macro-support",
|
|
@@ -5928,9 +5921,9 @@ dependencies = [
|
|
|
5928
5921
|
|
|
5929
5922
|
[[package]]
|
|
5930
5923
|
name = "wasm-bindgen-macro-support"
|
|
5931
|
-
version = "0.2.
|
|
5924
|
+
version = "0.2.121"
|
|
5932
5925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5933
|
-
checksum = "
|
|
5926
|
+
checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
|
|
5934
5927
|
dependencies = [
|
|
5935
5928
|
"bumpalo",
|
|
5936
5929
|
"proc-macro2",
|
|
@@ -5941,9 +5934,9 @@ dependencies = [
|
|
|
5941
5934
|
|
|
5942
5935
|
[[package]]
|
|
5943
5936
|
name = "wasm-bindgen-shared"
|
|
5944
|
-
version = "0.2.
|
|
5937
|
+
version = "0.2.121"
|
|
5945
5938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5946
|
-
checksum = "
|
|
5939
|
+
checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
|
|
5947
5940
|
dependencies = [
|
|
5948
5941
|
"unicode-ident",
|
|
5949
5942
|
]
|
|
@@ -5997,9 +5990,9 @@ dependencies = [
|
|
|
5997
5990
|
|
|
5998
5991
|
[[package]]
|
|
5999
5992
|
name = "web-sys"
|
|
6000
|
-
version = "0.3.
|
|
5993
|
+
version = "0.3.98"
|
|
6001
5994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6002
|
-
checksum = "
|
|
5995
|
+
checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
|
|
6003
5996
|
dependencies = [
|
|
6004
5997
|
"js-sys",
|
|
6005
5998
|
"wasm-bindgen",
|
|
@@ -6237,6 +6230,12 @@ version = "0.52.6"
|
|
|
6237
6230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6238
6231
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
6239
6232
|
|
|
6233
|
+
[[package]]
|
|
6234
|
+
name = "winnow"
|
|
6235
|
+
version = "1.0.3"
|
|
6236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6237
|
+
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
6238
|
+
|
|
6240
6239
|
[[package]]
|
|
6241
6240
|
name = "wit-bindgen"
|
|
6242
6241
|
version = "0.51.0"
|
|
@@ -6414,9 +6413,9 @@ dependencies = [
|
|
|
6414
6413
|
|
|
6415
6414
|
[[package]]
|
|
6416
6415
|
name = "zerofrom"
|
|
6417
|
-
version = "0.1.
|
|
6416
|
+
version = "0.1.8"
|
|
6418
6417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6419
|
-
checksum = "
|
|
6418
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
6420
6419
|
dependencies = [
|
|
6421
6420
|
"zerofrom-derive",
|
|
6422
6421
|
]
|