bashkit 0.8.0__tar.gz → 0.10.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.8.0 → bashkit-0.10.0}/Cargo.lock +376 -488
- {bashkit-0.8.0 → bashkit-0.10.0}/Cargo.toml +2 -2
- {bashkit-0.8.0 → bashkit-0.10.0}/PKG-INFO +13 -3
- {bashkit-0.8.0/crates/bashkit-python → bashkit-0.10.0}/README.md +12 -2
- {bashkit-0.8.0 → bashkit-0.10.0}/bashkit/_bashkit.pyi +92 -9
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/Cargo.toml +1 -1
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/README.md +10 -10
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/archive.rs +69 -2
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/awk/interpreter.rs +207 -42
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/awk/mod.rs +2 -20
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/awk/parser.rs +35 -27
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/awk/tests.rs +201 -1
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/base64.rs +62 -17
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/bc.rs +15 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/checksum.rs +69 -6
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/compgen.rs +13 -1
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/curl.rs +425 -77
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/cuttr.rs +106 -52
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/date.rs +42 -16
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/environ.rs +67 -39
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/expand.rs +85 -17
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/expr.rs +28 -2
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/git/client.rs +102 -14
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/grep.rs +820 -86
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/headtail.rs +82 -9
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/help.rs +7 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/iconv.rs +17 -5
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/join.rs +40 -2
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/jq/compat.rs +10 -7
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/jq/mod.rs +28 -1
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/jq/tests.rs +45 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/limits.rs +17 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/ls/find.rs +209 -111
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/ls/tests.rs +88 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/mod.rs +63 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/path.rs +225 -27
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/python.rs +56 -55
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/read.rs +117 -23
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/rg/mod.rs +1355 -241
- bashkit-0.10.0/crates/bashkit/src/builtins/search_common.rs +163 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/sortuniq.rs +29 -22
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/sqlite/dot_commands.rs +169 -33
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/sqlite/engine.rs +54 -16
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/sqlite/mod.rs +99 -12
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/sqlite/parser.rs +22 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/sqlite/tests.rs +116 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/sqlite/vfs_io.rs +26 -6
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/strings.rs +15 -7
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/tree.rs +145 -31
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/typescript.rs +12 -2
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/vars.rs +38 -4
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/credential.rs +46 -1
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/fs/limits.rs +11 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/fs/memory.rs +245 -58
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/fs/mountable.rs +50 -5
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/fs/overlay.rs +132 -3
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/fs/realfs.rs +38 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/interpreter/glob.rs +91 -10
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/interpreter/mod.rs +2120 -582
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/interpreter/state.rs +14 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/lib.rs +325 -43
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/limits.rs +200 -114
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/network/client.rs +6 -1
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/parser/ast.rs +34 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/parser/budget.rs +11 -2
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/parser/lexer.rs +207 -19
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/parser/mod.rs +379 -88
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/scripted_tool/execute.rs +108 -29
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/scripted_tool/extension.rs +52 -12
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/scripted_tool/mod.rs +29 -15
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/snapshot.rs +10 -1
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/tool.rs +24 -1
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/tool_def.rs +201 -12
- bashkit-0.10.0/crates/bashkit/tests/integration/base64_binary_tests.rs +41 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/bash_source_tests.rs +52 -1
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/blackbox_security_tests.rs +60 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/byte_range_panic_tests.rs +46 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/find_multi_path_tests.rs +70 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/git_inspection_tests.rs +133 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/harness_example_tests.rs +58 -1
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/history_tests.rs +168 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/issue_873_test.rs +57 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/live_mount_tests.rs +16 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/main.rs +1 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/output_truncation_tests.rs +15 -2
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/python_integration_tests.rs +134 -2
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/python_security_tests.rs +30 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/set_e_and_or_tests.rs +168 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/snapshot_tests.rs +99 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/spec_runner.rs +48 -2
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/spec_tests.rs +1 -1
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/sqlite_integration_tests.rs +39 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/threat_model_tests.rs +406 -4
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/tty_tests.rs +19 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/typescript_security_tests.rs +23 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/urandom_tests.rs +36 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +13 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +42 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +21 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +14 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +21 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/find.test.sh +19 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/mktemp.test.sh +1 -1
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +5 -4
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +7 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +15 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +27 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +7 -6
- bashkit-0.10.0/crates/bashkit-python/Cargo.toml +50 -0
- {bashkit-0.8.0 → bashkit-0.10.0/crates/bashkit-python}/README.md +12 -2
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/src/lib.rs +1232 -213
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/_bashkit_categories.py +76 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_async_callbacks.py +133 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_basic.py +2 -0
- bashkit-0.10.0/crates/bashkit-python/tests/test_custom_builtin_fs.py +284 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_fastapi_integration.py +32 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_jupyter_compat.py +111 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_streaming_output.py +22 -0
- bashkit-0.10.0/crates/bashkit-python/tests/test_teardown_determinism.py +187 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_vfs.py +3 -0
- bashkit-0.8.0/crates/bashkit/src/builtins/search_common.rs +0 -73
- bashkit-0.8.0/crates/bashkit-python/Cargo.toml +0 -35
- {bashkit-0.8.0 → bashkit-0.10.0}/bashkit/__init__.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/bashkit/deepagents.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/bashkit/langchain.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/bashkit/py.typed +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/bashkit/pydantic_ai.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/benches/file_ops.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/benches/hotpath.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/benches/parallel_execution.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/benches/results/README.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/benches/results/criterion-file_ops-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/benches/results/criterion-hotpath-attrs+shopt-linux-x86_64-1779759850.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/benches/results/criterion-hotpath-perf-linux-x86_64-1779744742.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/benches/results/criterion-parallel-(none)-linux-x86_64-1773469129.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/benches/results/criterion-sqlite-vm-linux-x86_64-1777865268.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/benches/sqlite.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/docs/clap-builtins.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/docs/compatibility.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/docs/credential-injection.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/docs/custom_builtins.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/docs/hooks.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/docs/jq.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/docs/live_mounts.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/docs/logging.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/docs/python.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/docs/sqlite.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/docs/ssh.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/docs/threat-model.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/docs/typescript.md +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/agent_tool.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/basic.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/clap_builtin.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/clap_builtin_subcommands.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/custom_backend.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/custom_builtins.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/custom_fs.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/git_workflow.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/live_mounts.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/python_external_functions.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/python_scripts.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/realfs_readonly.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/resource_limits.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/scripted_tool.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/show_tool_output.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/sqlite_basic.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/sqlite_workflow.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/ssh_supabase.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/streaming_output.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/text_files.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/text_processing.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/typescript_scripts.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/examples/virtual_identity.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/out file.txt +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/alias.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/assert.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/caller.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/cat.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/clap_env.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/clear.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/column.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/comm.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/csv.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/diff.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/dirstack.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/disk.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/dotenv.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/echo.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/envsubst.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/export.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/fc.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/fileops.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/flow.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/fold.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/cat_args.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/extendedbigdecimal.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/format/argument.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/format/escape.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/format/human.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/format/mod.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/format/num_format.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/format/spec.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/format_support.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/ls_args.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/mktemp_args.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/mod.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/num_parser.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/od_args.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/readlink_args.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/realpath_args.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/shuf_args.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/stat_args.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/tac_args.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/tee_args.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/generated/truncate_args.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/git/cmd.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/git/config.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/git/mod.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/helpers.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/hextools.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/http.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/inspect.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/introspect.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/jq/args.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/jq/convert.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/jq/errors.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/jq/format.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/jq/regex_compat.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/json.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/log.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/ls/glob.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/ls/list.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/ls/mod.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/ls/rmdir.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/mapfile.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/navigation.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/nl.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/numfmt.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/parallel.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/paste.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/patch.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/pipeline.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/printf.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/retry.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/sed.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/semver.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/seq.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/shuf.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/sleep.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/source.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/split.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/sqlite/formatter.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/ssh/allowlist.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/ssh/client.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/ssh/cmd.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/ssh/config.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/ssh/handler.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/ssh/mod.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/ssh/russh_handler.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/system.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/template.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/textrev.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/timeout.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/tomlq.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/trap.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/truncate.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/verify.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/wait.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/wc.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/yaml.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/yes.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/builtins/zip_cmd.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/error.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/fs/backend.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/fs/mod.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/fs/posix.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/fs/readonly.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/fs/search.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/fs/traits.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/hooks.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/interop/fs.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/interop/mod.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/interpreter/jobs.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/logging_impl.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/network/allowlist.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/network/bot_auth.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/network/mod.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/parser/span.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/parser/tokens.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/testing.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/src/trace.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/agent_skills_publication_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/allexport_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/awk_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/awk_newline_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/awk_pattern_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/awk_printf_expr_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/awk_range_pattern_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/background_exec_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/builtin_error_security_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/builtin_registry_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/cancellation_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/cmdsub_quote_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/coproc_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/coreutils_differential_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/credential_injection_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/custom_builtins_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/custom_fs_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/dev_null_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/final_env_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/git_advanced_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/git_integration_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/git_remote_security_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/git_security_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/issue_1175_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/issue_1776_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/issue_1777_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/issue_274_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/issue_275_279_282_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/issue_276_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/issue_277_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/issue_289_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/issue_290_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/issue_291_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/issue_853_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/issue_872_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/issue_875_test.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/jq_fuzz_scaffold_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/mkfifo_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/nested_subscript_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/network_security_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/proptest_differential.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/regex_limit_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/release_profile_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/script_execution_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/security_audit_pocs.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/shuf_resource_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/skills_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/source_function_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/sqlite_compat_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/sqlite_differential_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/sqlite_fuzz_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/sqlite_security_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/stack_overflow_regression_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/subst_depth_limit_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/symlink_overlay_security_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/typescript_integration_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/unicode_security_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/unset_function_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/integration/workflow_security_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/logging_security_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/proptest_security.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/realfs_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/cat.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/od.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/readlink.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/shuf.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/truncate.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/examples/bash_basics.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/examples/data_pipeline.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/examples/llm_tool.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/_security_advanced.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/_security_core.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_builtins.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_control_flow.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_error_handling.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_integration.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_network_config.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_network_credentials.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_python_security.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_scripts.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_security.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_sqlite.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
- {bashkit-0.8.0 → bashkit-0.10.0}/pyproject.toml +0 -0
|
@@ -20,19 +20,19 @@ dependencies = [
|
|
|
20
20
|
|
|
21
21
|
[[package]]
|
|
22
22
|
name = "aead"
|
|
23
|
-
version = "0.6.0
|
|
23
|
+
version = "0.6.0"
|
|
24
24
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
-
checksum = "
|
|
25
|
+
checksum = "ef60ac202874e574ce7a7158cc8bca7313dd344322482e4fadee288bf4a306b8"
|
|
26
26
|
dependencies = [
|
|
27
|
-
"crypto-common 0.2.
|
|
27
|
+
"crypto-common 0.2.2",
|
|
28
28
|
"inout 0.2.2",
|
|
29
29
|
]
|
|
30
30
|
|
|
31
31
|
[[package]]
|
|
32
32
|
name = "aegis"
|
|
33
|
-
version = "0.9.
|
|
33
|
+
version = "0.9.12"
|
|
34
34
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
-
checksum = "
|
|
35
|
+
checksum = "e07d39d15384924b35b70d7b8fa1f9a2934101dd3fa4722ede163cc4f9b7b960"
|
|
36
36
|
dependencies = [
|
|
37
37
|
"cc",
|
|
38
38
|
"softaes",
|
|
@@ -51,13 +51,14 @@ dependencies = [
|
|
|
51
51
|
|
|
52
52
|
[[package]]
|
|
53
53
|
name = "aes"
|
|
54
|
-
version = "0.9.
|
|
54
|
+
version = "0.9.1"
|
|
55
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
-
checksum = "
|
|
56
|
+
checksum = "f1fc76eaeac4c9164506c466d4ffdd8ec9d0c5bf57ee97177c4d8eceb3a0e138"
|
|
57
57
|
dependencies = [
|
|
58
|
-
"cipher 0.5.
|
|
58
|
+
"cipher 0.5.2",
|
|
59
59
|
"cpubits",
|
|
60
60
|
"cpufeatures 0.3.0",
|
|
61
|
+
"zeroize",
|
|
61
62
|
]
|
|
62
63
|
|
|
63
64
|
[[package]]
|
|
@@ -76,16 +77,17 @@ dependencies = [
|
|
|
76
77
|
|
|
77
78
|
[[package]]
|
|
78
79
|
name = "aes-gcm"
|
|
79
|
-
version = "0.11.0-rc.
|
|
80
|
+
version = "0.11.0-rc.4"
|
|
80
81
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
-
checksum = "
|
|
82
|
+
checksum = "da8c919c118108f144adecad74b425b804ad075580d605d9b33c2d6d1c62a2f8"
|
|
82
83
|
dependencies = [
|
|
83
|
-
"aead 0.6.0
|
|
84
|
-
"aes 0.9.
|
|
85
|
-
"cipher 0.5.
|
|
86
|
-
"ctr 0.10.
|
|
84
|
+
"aead 0.6.0",
|
|
85
|
+
"aes 0.9.1",
|
|
86
|
+
"cipher 0.5.2",
|
|
87
|
+
"ctr 0.10.1",
|
|
87
88
|
"ghash 0.6.0",
|
|
88
89
|
"subtle",
|
|
90
|
+
"zeroize",
|
|
89
91
|
]
|
|
90
92
|
|
|
91
93
|
[[package]]
|
|
@@ -224,13 +226,13 @@ dependencies = [
|
|
|
224
226
|
|
|
225
227
|
[[package]]
|
|
226
228
|
name = "argon2"
|
|
227
|
-
version = "0.
|
|
229
|
+
version = "0.6.0-rc.8"
|
|
228
230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
-
checksum = "
|
|
231
|
+
checksum = "7af50940b73bf4e16c15c448a2b121c63f2d68e3e54b6a8731673cb4aa0cdff5"
|
|
230
232
|
dependencies = [
|
|
231
233
|
"base64ct",
|
|
232
234
|
"blake2",
|
|
233
|
-
"cpufeatures 0.
|
|
235
|
+
"cpufeatures 0.3.0",
|
|
234
236
|
"password-hash",
|
|
235
237
|
]
|
|
236
238
|
|
|
@@ -298,9 +300,9 @@ dependencies = [
|
|
|
298
300
|
|
|
299
301
|
[[package]]
|
|
300
302
|
name = "autocfg"
|
|
301
|
-
version = "1.5.
|
|
303
|
+
version = "1.5.1"
|
|
302
304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
-
checksum = "
|
|
305
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
304
306
|
|
|
305
307
|
[[package]]
|
|
306
308
|
name = "aws-lc-rs"
|
|
@@ -345,7 +347,7 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
345
347
|
|
|
346
348
|
[[package]]
|
|
347
349
|
name = "bashkit"
|
|
348
|
-
version = "0.
|
|
350
|
+
version = "0.10.0"
|
|
349
351
|
dependencies = [
|
|
350
352
|
"anyhow",
|
|
351
353
|
"async-trait",
|
|
@@ -362,7 +364,7 @@ dependencies = [
|
|
|
362
364
|
"futures-core",
|
|
363
365
|
"futures-util",
|
|
364
366
|
"getrandom 0.4.2",
|
|
365
|
-
"hmac
|
|
367
|
+
"hmac",
|
|
366
368
|
"insta",
|
|
367
369
|
"jaq-core",
|
|
368
370
|
"jaq-json",
|
|
@@ -381,10 +383,10 @@ dependencies = [
|
|
|
381
383
|
"serde",
|
|
382
384
|
"serde_json",
|
|
383
385
|
"serial_test",
|
|
384
|
-
"sha1
|
|
386
|
+
"sha1",
|
|
385
387
|
"sha2 0.11.0",
|
|
386
388
|
"tempfile",
|
|
387
|
-
"thiserror
|
|
389
|
+
"thiserror",
|
|
388
390
|
"tokio",
|
|
389
391
|
"tokio-test",
|
|
390
392
|
"tower",
|
|
@@ -398,7 +400,7 @@ dependencies = [
|
|
|
398
400
|
|
|
399
401
|
[[package]]
|
|
400
402
|
name = "bashkit-bench"
|
|
401
|
-
version = "0.
|
|
403
|
+
version = "0.10.0"
|
|
402
404
|
dependencies = [
|
|
403
405
|
"anyhow",
|
|
404
406
|
"bashkit",
|
|
@@ -407,12 +409,13 @@ dependencies = [
|
|
|
407
409
|
"serde",
|
|
408
410
|
"serde_json",
|
|
409
411
|
"tabled",
|
|
412
|
+
"tempfile",
|
|
410
413
|
"tokio",
|
|
411
414
|
]
|
|
412
415
|
|
|
413
416
|
[[package]]
|
|
414
417
|
name = "bashkit-cli"
|
|
415
|
-
version = "0.
|
|
418
|
+
version = "0.10.0"
|
|
416
419
|
dependencies = [
|
|
417
420
|
"anyhow",
|
|
418
421
|
"bashkit",
|
|
@@ -426,7 +429,7 @@ dependencies = [
|
|
|
426
429
|
|
|
427
430
|
[[package]]
|
|
428
431
|
name = "bashkit-coreutils-port"
|
|
429
|
-
version = "0.
|
|
432
|
+
version = "0.10.0"
|
|
430
433
|
dependencies = [
|
|
431
434
|
"anyhow",
|
|
432
435
|
"prettyplease",
|
|
@@ -440,7 +443,7 @@ dependencies = [
|
|
|
440
443
|
|
|
441
444
|
[[package]]
|
|
442
445
|
name = "bashkit-eval"
|
|
443
|
-
version = "0.
|
|
446
|
+
version = "0.10.0"
|
|
444
447
|
dependencies = [
|
|
445
448
|
"anyhow",
|
|
446
449
|
"async-trait",
|
|
@@ -457,7 +460,7 @@ dependencies = [
|
|
|
457
460
|
|
|
458
461
|
[[package]]
|
|
459
462
|
name = "bashkit-js"
|
|
460
|
-
version = "0.
|
|
463
|
+
version = "0.10.0"
|
|
461
464
|
dependencies = [
|
|
462
465
|
"bashkit",
|
|
463
466
|
"napi",
|
|
@@ -469,7 +472,7 @@ dependencies = [
|
|
|
469
472
|
|
|
470
473
|
[[package]]
|
|
471
474
|
name = "bashkit-python"
|
|
472
|
-
version = "0.
|
|
475
|
+
version = "0.10.0"
|
|
473
476
|
dependencies = [
|
|
474
477
|
"bashkit",
|
|
475
478
|
"num-bigint",
|
|
@@ -481,13 +484,13 @@ dependencies = [
|
|
|
481
484
|
|
|
482
485
|
[[package]]
|
|
483
486
|
name = "bcrypt-pbkdf"
|
|
484
|
-
version = "0.
|
|
487
|
+
version = "0.11.0"
|
|
485
488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
-
checksum = "
|
|
489
|
+
checksum = "144e573728da132683b9488acd528274c790e07fc06ff81ee29f9d8f8b1041e0"
|
|
487
490
|
dependencies = [
|
|
488
491
|
"blowfish",
|
|
489
|
-
"pbkdf2
|
|
490
|
-
"sha2 0.
|
|
492
|
+
"pbkdf2",
|
|
493
|
+
"sha2 0.11.0",
|
|
491
494
|
]
|
|
492
495
|
|
|
493
496
|
[[package]]
|
|
@@ -520,9 +523,9 @@ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
|
520
523
|
|
|
521
524
|
[[package]]
|
|
522
525
|
name = "bitflags"
|
|
523
|
-
version = "2.
|
|
526
|
+
version = "2.13.0"
|
|
524
527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
-
checksum = "
|
|
528
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
526
529
|
|
|
527
530
|
[[package]]
|
|
528
531
|
name = "bitvec"
|
|
@@ -538,11 +541,11 @@ dependencies = [
|
|
|
538
541
|
|
|
539
542
|
[[package]]
|
|
540
543
|
name = "blake2"
|
|
541
|
-
version = "0.
|
|
544
|
+
version = "0.11.0-rc.6"
|
|
542
545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
-
checksum = "
|
|
546
|
+
checksum = "061f1a09225e328e1ffbb378d2d49923c0ca5fee19fb5ac1cc9c1e9d52b93690"
|
|
544
547
|
dependencies = [
|
|
545
|
-
"digest 0.
|
|
548
|
+
"digest 0.11.3",
|
|
546
549
|
]
|
|
547
550
|
|
|
548
551
|
[[package]]
|
|
@@ -556,20 +559,12 @@ dependencies = [
|
|
|
556
559
|
|
|
557
560
|
[[package]]
|
|
558
561
|
name = "block-buffer"
|
|
559
|
-
version = "0.12.
|
|
562
|
+
version = "0.12.1"
|
|
560
563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
-
checksum = "
|
|
564
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
562
565
|
dependencies = [
|
|
563
566
|
"hybrid-array",
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
[[package]]
|
|
567
|
-
name = "block-padding"
|
|
568
|
-
version = "0.3.3"
|
|
569
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
-
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
|
|
571
|
-
dependencies = [
|
|
572
|
-
"generic-array 0.14.7",
|
|
567
|
+
"zeroize",
|
|
573
568
|
]
|
|
574
569
|
|
|
575
570
|
[[package]]
|
|
@@ -583,12 +578,12 @@ dependencies = [
|
|
|
583
578
|
|
|
584
579
|
[[package]]
|
|
585
580
|
name = "blowfish"
|
|
586
|
-
version = "0.
|
|
581
|
+
version = "0.10.0"
|
|
587
582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
-
checksum = "
|
|
583
|
+
checksum = "62ce3946557b35e71d1bbe07ec385073ce9eda05043f95de134eb578fcf1a298"
|
|
589
584
|
dependencies = [
|
|
590
585
|
"byteorder",
|
|
591
|
-
"cipher 0.
|
|
586
|
+
"cipher 0.5.2",
|
|
592
587
|
]
|
|
593
588
|
|
|
594
589
|
[[package]]
|
|
@@ -613,9 +608,9 @@ dependencies = [
|
|
|
613
608
|
|
|
614
609
|
[[package]]
|
|
615
610
|
name = "bumpalo"
|
|
616
|
-
version = "3.20.
|
|
611
|
+
version = "3.20.3"
|
|
617
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
-
checksum = "
|
|
613
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
619
614
|
|
|
620
615
|
[[package]]
|
|
621
616
|
name = "bytecount"
|
|
@@ -672,27 +667,18 @@ dependencies = [
|
|
|
672
667
|
|
|
673
668
|
[[package]]
|
|
674
669
|
name = "cbc"
|
|
675
|
-
version = "0.1
|
|
676
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
-
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
|
|
678
|
-
dependencies = [
|
|
679
|
-
"cipher 0.4.4",
|
|
680
|
-
]
|
|
681
|
-
|
|
682
|
-
[[package]]
|
|
683
|
-
name = "cbc"
|
|
684
|
-
version = "0.2.0"
|
|
670
|
+
version = "0.2.1"
|
|
685
671
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
-
checksum = "
|
|
672
|
+
checksum = "ce2dc9ee5f88d11e0beb842c88b33c8a5cf0d1329c4b19494af42b07dbfe8896"
|
|
687
673
|
dependencies = [
|
|
688
|
-
"cipher 0.5.
|
|
674
|
+
"cipher 0.5.2",
|
|
689
675
|
]
|
|
690
676
|
|
|
691
677
|
[[package]]
|
|
692
678
|
name = "cc"
|
|
693
|
-
version = "1.2.
|
|
679
|
+
version = "1.2.63"
|
|
694
680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
-
checksum = "
|
|
681
|
+
checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
|
|
696
682
|
dependencies = [
|
|
697
683
|
"find-msvc-tools",
|
|
698
684
|
"jobserver",
|
|
@@ -718,17 +704,6 @@ version = "0.1.1"
|
|
|
718
704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
705
|
checksum = "18758054972164c3264f7c8386f5fc6da6114cb46b619fd365d4e3b2dc3ae487"
|
|
720
706
|
|
|
721
|
-
[[package]]
|
|
722
|
-
name = "chacha20"
|
|
723
|
-
version = "0.9.1"
|
|
724
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
-
checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
|
|
726
|
-
dependencies = [
|
|
727
|
-
"cfg-if",
|
|
728
|
-
"cipher 0.4.4",
|
|
729
|
-
"cpufeatures 0.2.17",
|
|
730
|
-
]
|
|
731
|
-
|
|
732
707
|
[[package]]
|
|
733
708
|
name = "chacha20"
|
|
734
709
|
version = "0.10.0"
|
|
@@ -736,15 +711,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
736
711
|
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
737
712
|
dependencies = [
|
|
738
713
|
"cfg-if",
|
|
714
|
+
"cipher 0.5.2",
|
|
739
715
|
"cpufeatures 0.3.0",
|
|
740
716
|
"rand_core 0.10.1",
|
|
717
|
+
"zeroize",
|
|
741
718
|
]
|
|
742
719
|
|
|
743
720
|
[[package]]
|
|
744
721
|
name = "chrono"
|
|
745
|
-
version = "0.4.
|
|
722
|
+
version = "0.4.45"
|
|
746
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
-
checksum = "
|
|
724
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
748
725
|
dependencies = [
|
|
749
726
|
"iana-time-zone",
|
|
750
727
|
"js-sys",
|
|
@@ -793,13 +770,14 @@ dependencies = [
|
|
|
793
770
|
|
|
794
771
|
[[package]]
|
|
795
772
|
name = "cipher"
|
|
796
|
-
version = "0.5.
|
|
773
|
+
version = "0.5.2"
|
|
797
774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
-
checksum = "
|
|
775
|
+
checksum = "e8cf2a2c93cd704877c0858356ed03480ff301ee950b43f1cbe4573b088bfa6c"
|
|
799
776
|
dependencies = [
|
|
800
|
-
"block-buffer 0.12.
|
|
801
|
-
"crypto-common 0.2.
|
|
777
|
+
"block-buffer 0.12.1",
|
|
778
|
+
"crypto-common 0.2.2",
|
|
802
779
|
"inout 0.2.2",
|
|
780
|
+
"zeroize",
|
|
803
781
|
]
|
|
804
782
|
|
|
805
783
|
[[package]]
|
|
@@ -862,9 +840,9 @@ dependencies = [
|
|
|
862
840
|
|
|
863
841
|
[[package]]
|
|
864
842
|
name = "cmov"
|
|
865
|
-
version = "0.5.
|
|
843
|
+
version = "0.5.4"
|
|
866
844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
-
checksum = "
|
|
845
|
+
checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
|
|
868
846
|
|
|
869
847
|
[[package]]
|
|
870
848
|
name = "cobs"
|
|
@@ -872,7 +850,7 @@ version = "0.3.0"
|
|
|
872
850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
851
|
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
874
852
|
dependencies = [
|
|
875
|
-
"thiserror
|
|
853
|
+
"thiserror",
|
|
876
854
|
]
|
|
877
855
|
|
|
878
856
|
[[package]]
|
|
@@ -893,7 +871,7 @@ version = "3.1.1"
|
|
|
893
871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
872
|
checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
|
|
895
873
|
dependencies = [
|
|
896
|
-
"windows-sys 0.
|
|
874
|
+
"windows-sys 0.61.2",
|
|
897
875
|
]
|
|
898
876
|
|
|
899
877
|
[[package]]
|
|
@@ -908,9 +886,9 @@ dependencies = [
|
|
|
908
886
|
|
|
909
887
|
[[package]]
|
|
910
888
|
name = "compact_str"
|
|
911
|
-
version = "0.9.
|
|
889
|
+
version = "0.9.1"
|
|
912
890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
-
checksum = "
|
|
891
|
+
checksum = "9dfdd1c2274d9aa354115b09dc9a901d6c5576818cdf70d14cae2bdb47df00ab"
|
|
914
892
|
dependencies = [
|
|
915
893
|
"castaway",
|
|
916
894
|
"cfg-if",
|
|
@@ -1110,9 +1088,9 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
|
1110
1088
|
|
|
1111
1089
|
[[package]]
|
|
1112
1090
|
name = "crypto-bigint"
|
|
1113
|
-
version = "0.7.
|
|
1091
|
+
version = "0.7.3"
|
|
1114
1092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
-
checksum = "
|
|
1093
|
+
checksum = "42a0d26b245348befa0c121944541476763dcc46ede886c88f9d12e1697d27c3"
|
|
1116
1094
|
dependencies = [
|
|
1117
1095
|
"cpubits",
|
|
1118
1096
|
"ctutils",
|
|
@@ -1138,9 +1116,9 @@ dependencies = [
|
|
|
1138
1116
|
|
|
1139
1117
|
[[package]]
|
|
1140
1118
|
name = "crypto-common"
|
|
1141
|
-
version = "0.2.
|
|
1119
|
+
version = "0.2.2"
|
|
1142
1120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
-
checksum = "
|
|
1121
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
1144
1122
|
dependencies = [
|
|
1145
1123
|
"getrandom 0.4.2",
|
|
1146
1124
|
"hybrid-array",
|
|
@@ -1149,20 +1127,19 @@ dependencies = [
|
|
|
1149
1127
|
|
|
1150
1128
|
[[package]]
|
|
1151
1129
|
name = "crypto-primes"
|
|
1152
|
-
version = "0.7.
|
|
1130
|
+
version = "0.7.2"
|
|
1153
1131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
-
checksum = "
|
|
1132
|
+
checksum = "3633a51a39c69ebbaa4feaa694bd83d241e4093901c84a0963b19d9bb3f0cf8f"
|
|
1155
1133
|
dependencies = [
|
|
1156
1134
|
"crypto-bigint",
|
|
1157
|
-
"libm",
|
|
1158
1135
|
"rand_core 0.10.1",
|
|
1159
1136
|
]
|
|
1160
1137
|
|
|
1161
1138
|
[[package]]
|
|
1162
1139
|
name = "ctor"
|
|
1163
|
-
version = "1.0.
|
|
1140
|
+
version = "1.0.7"
|
|
1164
1141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
-
checksum = "
|
|
1142
|
+
checksum = "01334b89b69ff726750c5ce5073fc8bd860e99aa9a8fc5ca11b04730e3aee97a"
|
|
1166
1143
|
|
|
1167
1144
|
[[package]]
|
|
1168
1145
|
name = "ctr"
|
|
@@ -1175,11 +1152,11 @@ dependencies = [
|
|
|
1175
1152
|
|
|
1176
1153
|
[[package]]
|
|
1177
1154
|
name = "ctr"
|
|
1178
|
-
version = "0.10.
|
|
1155
|
+
version = "0.10.1"
|
|
1179
1156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1180
|
-
checksum = "
|
|
1157
|
+
checksum = "baaca1c4b237092596f64d571e9db6ce4109c4ef9742e27590f1709594461f21"
|
|
1181
1158
|
dependencies = [
|
|
1182
|
-
"cipher 0.5.
|
|
1159
|
+
"cipher 0.5.2",
|
|
1183
1160
|
]
|
|
1184
1161
|
|
|
1185
1162
|
[[package]]
|
|
@@ -1210,12 +1187,12 @@ dependencies = [
|
|
|
1210
1187
|
|
|
1211
1188
|
[[package]]
|
|
1212
1189
|
name = "curve25519-dalek"
|
|
1213
|
-
version = "5.0.0-
|
|
1190
|
+
version = "5.0.0-rc.0"
|
|
1214
1191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
-
checksum = "
|
|
1192
|
+
checksum = "4f359e08ca85e7bd759e1fd933ff2bccd81864c60a8fba0e259c7f822b0924bf"
|
|
1216
1193
|
dependencies = [
|
|
1217
1194
|
"cfg-if",
|
|
1218
|
-
"cpufeatures 0.
|
|
1195
|
+
"cpufeatures 0.3.0",
|
|
1219
1196
|
"curve25519-dalek-derive",
|
|
1220
1197
|
"digest 0.11.3",
|
|
1221
1198
|
"fiat-crypto 0.3.0",
|
|
@@ -1269,7 +1246,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1269
1246
|
checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
|
|
1270
1247
|
dependencies = [
|
|
1271
1248
|
"const-oid 0.10.2",
|
|
1272
|
-
"pem-rfc7468
|
|
1249
|
+
"pem-rfc7468",
|
|
1273
1250
|
"zeroize",
|
|
1274
1251
|
]
|
|
1275
1252
|
|
|
@@ -1284,6 +1261,15 @@ dependencies = [
|
|
|
1284
1261
|
"syn",
|
|
1285
1262
|
]
|
|
1286
1263
|
|
|
1264
|
+
[[package]]
|
|
1265
|
+
name = "des"
|
|
1266
|
+
version = "0.9.0"
|
|
1267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
+
checksum = "916a94e407b54f9034d71dd748234cd1e516ced6284009906ae246f177eafe5a"
|
|
1269
|
+
dependencies = [
|
|
1270
|
+
"cipher 0.5.2",
|
|
1271
|
+
]
|
|
1272
|
+
|
|
1287
1273
|
[[package]]
|
|
1288
1274
|
name = "diff"
|
|
1289
1275
|
version = "0.1.13"
|
|
@@ -1297,9 +1283,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1297
1283
|
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1298
1284
|
dependencies = [
|
|
1299
1285
|
"block-buffer 0.10.4",
|
|
1300
|
-
"const-oid 0.9.6",
|
|
1301
1286
|
"crypto-common 0.1.7",
|
|
1302
|
-
"subtle",
|
|
1303
1287
|
]
|
|
1304
1288
|
|
|
1305
1289
|
[[package]]
|
|
@@ -1308,17 +1292,17 @@ version = "0.11.3"
|
|
|
1308
1292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
1293
|
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
1310
1294
|
dependencies = [
|
|
1311
|
-
"block-buffer 0.12.
|
|
1295
|
+
"block-buffer 0.12.1",
|
|
1312
1296
|
"const-oid 0.10.2",
|
|
1313
|
-
"crypto-common 0.2.
|
|
1297
|
+
"crypto-common 0.2.2",
|
|
1314
1298
|
"ctutils",
|
|
1315
1299
|
]
|
|
1316
1300
|
|
|
1317
1301
|
[[package]]
|
|
1318
1302
|
name = "displaydoc"
|
|
1319
|
-
version = "0.2.
|
|
1303
|
+
version = "0.2.6"
|
|
1320
1304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1321
|
-
checksum = "
|
|
1305
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
1322
1306
|
dependencies = [
|
|
1323
1307
|
"proc-macro2",
|
|
1324
1308
|
"quote",
|
|
@@ -1345,16 +1329,16 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
|
1345
1329
|
|
|
1346
1330
|
[[package]]
|
|
1347
1331
|
name = "ecdsa"
|
|
1348
|
-
version = "0.17.0-rc.
|
|
1332
|
+
version = "0.17.0-rc.18"
|
|
1349
1333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1350
|
-
checksum = "
|
|
1334
|
+
checksum = "54fb064faabbee66e1fc8e5c5a9458d4269dc2d8b638fe86a425adb2510d1a96"
|
|
1351
1335
|
dependencies = [
|
|
1352
1336
|
"der 0.8.0",
|
|
1353
1337
|
"digest 0.11.3",
|
|
1354
1338
|
"elliptic-curve",
|
|
1355
1339
|
"rfc6979",
|
|
1356
1340
|
"signature 3.0.0",
|
|
1357
|
-
"spki 0.8.0
|
|
1341
|
+
"spki 0.8.0",
|
|
1358
1342
|
"zeroize",
|
|
1359
1343
|
]
|
|
1360
1344
|
|
|
@@ -1370,11 +1354,11 @@ dependencies = [
|
|
|
1370
1354
|
|
|
1371
1355
|
[[package]]
|
|
1372
1356
|
name = "ed25519"
|
|
1373
|
-
version = "3.0.0
|
|
1357
|
+
version = "3.0.0"
|
|
1374
1358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1375
|
-
checksum = "
|
|
1359
|
+
checksum = "29fcf32e6c73d1079f83ab4d782de2d81620346a5f38c6237a86a22f8368980a"
|
|
1376
1360
|
dependencies = [
|
|
1377
|
-
"pkcs8 0.11.0
|
|
1361
|
+
"pkcs8 0.11.0",
|
|
1378
1362
|
"signature 3.0.0",
|
|
1379
1363
|
]
|
|
1380
1364
|
|
|
@@ -1395,12 +1379,12 @@ dependencies = [
|
|
|
1395
1379
|
|
|
1396
1380
|
[[package]]
|
|
1397
1381
|
name = "ed25519-dalek"
|
|
1398
|
-
version = "3.0.0-
|
|
1382
|
+
version = "3.0.0-rc.0"
|
|
1399
1383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1400
|
-
checksum = "
|
|
1384
|
+
checksum = "b011170fe4f04665565b4110afef66774fe9ffff278f3eb5b81cc73d26e27d60"
|
|
1401
1385
|
dependencies = [
|
|
1402
|
-
"curve25519-dalek 5.0.0-
|
|
1403
|
-
"ed25519 3.0.0
|
|
1386
|
+
"curve25519-dalek 5.0.0-rc.0",
|
|
1387
|
+
"ed25519 3.0.0",
|
|
1404
1388
|
"rand_core 0.10.1",
|
|
1405
1389
|
"serde",
|
|
1406
1390
|
"sha2 0.11.0",
|
|
@@ -1411,28 +1395,28 @@ dependencies = [
|
|
|
1411
1395
|
|
|
1412
1396
|
[[package]]
|
|
1413
1397
|
name = "either"
|
|
1414
|
-
version = "1.
|
|
1398
|
+
version = "1.16.0"
|
|
1415
1399
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1416
|
-
checksum = "
|
|
1400
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
1417
1401
|
|
|
1418
1402
|
[[package]]
|
|
1419
1403
|
name = "elliptic-curve"
|
|
1420
|
-
version = "0.14.0-rc.
|
|
1404
|
+
version = "0.14.0-rc.33"
|
|
1421
1405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
-
checksum = "
|
|
1406
|
+
checksum = "102d3643d30dd8b559613c5cced68317199597fffb278cdc88daa2ef7fafc935"
|
|
1423
1407
|
dependencies = [
|
|
1424
1408
|
"base16ct",
|
|
1425
1409
|
"crypto-bigint",
|
|
1426
|
-
"crypto-common 0.2.
|
|
1410
|
+
"crypto-common 0.2.2",
|
|
1427
1411
|
"digest 0.11.3",
|
|
1412
|
+
"ff",
|
|
1413
|
+
"group",
|
|
1428
1414
|
"hkdf",
|
|
1429
1415
|
"hybrid-array",
|
|
1430
1416
|
"once_cell",
|
|
1431
|
-
"pem-rfc7468
|
|
1432
|
-
"pkcs8 0.11.0
|
|
1417
|
+
"pem-rfc7468",
|
|
1418
|
+
"pkcs8 0.11.0",
|
|
1433
1419
|
"rand_core 0.10.1",
|
|
1434
|
-
"rustcrypto-ff",
|
|
1435
|
-
"rustcrypto-group",
|
|
1436
1420
|
"sec1",
|
|
1437
1421
|
"subtle",
|
|
1438
1422
|
"zeroize",
|
|
@@ -1487,7 +1471,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1487
1471
|
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1488
1472
|
dependencies = [
|
|
1489
1473
|
"libc",
|
|
1490
|
-
"windows-sys 0.
|
|
1474
|
+
"windows-sys 0.61.2",
|
|
1491
1475
|
]
|
|
1492
1476
|
|
|
1493
1477
|
[[package]]
|
|
@@ -1552,6 +1536,16 @@ version = "2.4.1"
|
|
|
1552
1536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
1537
|
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
1554
1538
|
|
|
1539
|
+
[[package]]
|
|
1540
|
+
name = "ff"
|
|
1541
|
+
version = "0.14.0"
|
|
1542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1543
|
+
checksum = "a1f686ab92a9fb0eaf188f6c6c87b89490baa6fdb0db4544ba4dc47f7942489f"
|
|
1544
|
+
dependencies = [
|
|
1545
|
+
"rand_core 0.10.1",
|
|
1546
|
+
"subtle",
|
|
1547
|
+
]
|
|
1548
|
+
|
|
1555
1549
|
[[package]]
|
|
1556
1550
|
name = "fiat-crypto"
|
|
1557
1551
|
version = "0.2.9"
|
|
@@ -1709,9 +1703,9 @@ dependencies = [
|
|
|
1709
1703
|
|
|
1710
1704
|
[[package]]
|
|
1711
1705
|
name = "generator"
|
|
1712
|
-
version = "0.8.
|
|
1706
|
+
version = "0.8.9"
|
|
1713
1707
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1714
|
-
checksum = "
|
|
1708
|
+
checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae"
|
|
1715
1709
|
dependencies = [
|
|
1716
1710
|
"cc",
|
|
1717
1711
|
"cfg-if",
|
|
@@ -1734,9 +1728,9 @@ dependencies = [
|
|
|
1734
1728
|
|
|
1735
1729
|
[[package]]
|
|
1736
1730
|
name = "generic-array"
|
|
1737
|
-
version = "1.4.
|
|
1731
|
+
version = "1.4.3"
|
|
1738
1732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
-
checksum = "
|
|
1733
|
+
checksum = "c2e55f16dcf0e9c00efbe2e655ffe45fc98e7066b52bc92f8a79e64060a79351"
|
|
1740
1734
|
dependencies = [
|
|
1741
1735
|
"generic-array 0.14.7",
|
|
1742
1736
|
"rustversion",
|
|
@@ -1784,10 +1778,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1784
1778
|
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
1785
1779
|
dependencies = [
|
|
1786
1780
|
"cfg-if",
|
|
1787
|
-
"js-sys",
|
|
1788
1781
|
"libc",
|
|
1789
1782
|
"wasi",
|
|
1790
|
-
"wasm-bindgen",
|
|
1791
1783
|
]
|
|
1792
1784
|
|
|
1793
1785
|
[[package]]
|
|
@@ -1837,6 +1829,17 @@ dependencies = [
|
|
|
1837
1829
|
"polyval 0.7.1",
|
|
1838
1830
|
]
|
|
1839
1831
|
|
|
1832
|
+
[[package]]
|
|
1833
|
+
name = "group"
|
|
1834
|
+
version = "0.14.0"
|
|
1835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
+
checksum = "7fd1a1c7a5206c5b7a3f5a0d7ccd3ff85d0c8f5133d62a02680255b0004af5f4"
|
|
1837
|
+
dependencies = [
|
|
1838
|
+
"ff",
|
|
1839
|
+
"rand_core 0.10.1",
|
|
1840
|
+
"subtle",
|
|
1841
|
+
]
|
|
1842
|
+
|
|
1840
1843
|
[[package]]
|
|
1841
1844
|
name = "half"
|
|
1842
1845
|
version = "2.7.1"
|
|
@@ -1933,16 +1936,7 @@ version = "0.13.0"
|
|
|
1933
1936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
1937
|
checksum = "4aaa26c720c68b866f2c96ef5c1264b3e6f473fe5d4ce61cd44bbe913e553018"
|
|
1935
1938
|
dependencies = [
|
|
1936
|
-
"hmac
|
|
1937
|
-
]
|
|
1938
|
-
|
|
1939
|
-
[[package]]
|
|
1940
|
-
name = "hmac"
|
|
1941
|
-
version = "0.12.1"
|
|
1942
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
-
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
1944
|
-
dependencies = [
|
|
1945
|
-
"digest 0.10.7",
|
|
1939
|
+
"hmac",
|
|
1946
1940
|
]
|
|
1947
1941
|
|
|
1948
1942
|
[[package]]
|
|
@@ -1965,9 +1959,9 @@ dependencies = [
|
|
|
1965
1959
|
|
|
1966
1960
|
[[package]]
|
|
1967
1961
|
name = "http"
|
|
1968
|
-
version = "1.4.
|
|
1962
|
+
version = "1.4.2"
|
|
1969
1963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1970
|
-
checksum = "
|
|
1964
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
1971
1965
|
dependencies = [
|
|
1972
1966
|
"bytes",
|
|
1973
1967
|
"itoa",
|
|
@@ -2016,9 +2010,9 @@ dependencies = [
|
|
|
2016
2010
|
|
|
2017
2011
|
[[package]]
|
|
2018
2012
|
name = "hyper"
|
|
2019
|
-
version = "1.
|
|
2013
|
+
version = "1.10.1"
|
|
2020
2014
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2021
|
-
checksum = "
|
|
2015
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
2022
2016
|
dependencies = [
|
|
2023
2017
|
"atomic-waker",
|
|
2024
2018
|
"bytes",
|
|
@@ -2223,7 +2217,6 @@ version = "0.1.4"
|
|
|
2223
2217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
2218
|
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
2225
2219
|
dependencies = [
|
|
2226
|
-
"block-padding 0.3.3",
|
|
2227
2220
|
"generic-array 0.14.7",
|
|
2228
2221
|
]
|
|
2229
2222
|
|
|
@@ -2233,15 +2226,15 @@ version = "0.2.2"
|
|
|
2233
2226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2234
2227
|
checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7"
|
|
2235
2228
|
dependencies = [
|
|
2236
|
-
"block-padding
|
|
2229
|
+
"block-padding",
|
|
2237
2230
|
"hybrid-array",
|
|
2238
2231
|
]
|
|
2239
2232
|
|
|
2240
2233
|
[[package]]
|
|
2241
2234
|
name = "insta"
|
|
2242
|
-
version = "1.
|
|
2235
|
+
version = "1.48.0"
|
|
2243
2236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2244
|
-
checksum = "
|
|
2237
|
+
checksum = "86f0f8fee8c926415c58d6ae43a08523a26faccb2323f5e6b644fe7dd4ef6b82"
|
|
2245
2238
|
dependencies = [
|
|
2246
2239
|
"console",
|
|
2247
2240
|
"once_cell",
|
|
@@ -2249,35 +2242,6 @@ dependencies = [
|
|
|
2249
2242
|
"tempfile",
|
|
2250
2243
|
]
|
|
2251
2244
|
|
|
2252
|
-
[[package]]
|
|
2253
|
-
name = "internal-russh-forked-ssh-key"
|
|
2254
|
-
version = "0.6.18+upstream-0.6.7"
|
|
2255
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
-
checksum = "25f8a978272e3cbdf4768f7363eb1c8e1e6ba63c52a3ed05e29e222da4aec7cb"
|
|
2257
|
-
dependencies = [
|
|
2258
|
-
"argon2",
|
|
2259
|
-
"bcrypt-pbkdf",
|
|
2260
|
-
"crypto-bigint",
|
|
2261
|
-
"ecdsa",
|
|
2262
|
-
"ed25519-dalek 3.0.0-pre.6",
|
|
2263
|
-
"hex",
|
|
2264
|
-
"hmac 0.13.0",
|
|
2265
|
-
"num-bigint-dig",
|
|
2266
|
-
"p256",
|
|
2267
|
-
"p384",
|
|
2268
|
-
"p521",
|
|
2269
|
-
"rand_core 0.10.1",
|
|
2270
|
-
"rsa",
|
|
2271
|
-
"sec1",
|
|
2272
|
-
"sha1 0.11.0",
|
|
2273
|
-
"sha2 0.11.0",
|
|
2274
|
-
"signature 3.0.0",
|
|
2275
|
-
"ssh-cipher",
|
|
2276
|
-
"ssh-encoding",
|
|
2277
|
-
"subtle",
|
|
2278
|
-
"zeroize",
|
|
2279
|
-
]
|
|
2280
|
-
|
|
2281
2245
|
[[package]]
|
|
2282
2246
|
name = "internal-russh-num-bigint"
|
|
2283
2247
|
version = "0.5.0"
|
|
@@ -2355,9 +2319,9 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
|
2355
2319
|
|
|
2356
2320
|
[[package]]
|
|
2357
2321
|
name = "jaq-core"
|
|
2358
|
-
version = "3.
|
|
2322
|
+
version = "3.1.0"
|
|
2359
2323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2360
|
-
checksum = "
|
|
2324
|
+
checksum = "7561783b20275a6c9cb576e39208b0c635f34ef14357f1f05a2927a774f3adec"
|
|
2361
2325
|
dependencies = [
|
|
2362
2326
|
"dyn-clone",
|
|
2363
2327
|
"once_cell",
|
|
@@ -2366,9 +2330,9 @@ dependencies = [
|
|
|
2366
2330
|
|
|
2367
2331
|
[[package]]
|
|
2368
2332
|
name = "jaq-json"
|
|
2369
|
-
version = "2.0.
|
|
2333
|
+
version = "2.0.1"
|
|
2370
2334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2371
|
-
checksum = "
|
|
2335
|
+
checksum = "d4ec9aaad7340e6990c6c1878ef3b46dbec624e535d7f786cc9ddcf94f773d33"
|
|
2372
2336
|
dependencies = [
|
|
2373
2337
|
"bstr",
|
|
2374
2338
|
"bytes",
|
|
@@ -2385,9 +2349,9 @@ dependencies = [
|
|
|
2385
2349
|
|
|
2386
2350
|
[[package]]
|
|
2387
2351
|
name = "jaq-std"
|
|
2388
|
-
version = "3.0.
|
|
2352
|
+
version = "3.0.1"
|
|
2389
2353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2390
|
-
checksum = "
|
|
2354
|
+
checksum = "8bdc5a74b0feeb5e6a1dc2dd08c34280a61e37668d10a6a3b27ad69d0fb9ce2e"
|
|
2391
2355
|
dependencies = [
|
|
2392
2356
|
"aho-corasick",
|
|
2393
2357
|
"base64",
|
|
@@ -2402,9 +2366,9 @@ dependencies = [
|
|
|
2402
2366
|
|
|
2403
2367
|
[[package]]
|
|
2404
2368
|
name = "jiff"
|
|
2405
|
-
version = "0.2.
|
|
2369
|
+
version = "0.2.28"
|
|
2406
2370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2407
|
-
checksum = "
|
|
2371
|
+
checksum = "4603d3033e49e2b0e31229fcab20a5d40089c607d975cd9c80551dc69eed9102"
|
|
2408
2372
|
dependencies = [
|
|
2409
2373
|
"jiff-static",
|
|
2410
2374
|
"jiff-tzdb-platform",
|
|
@@ -2412,14 +2376,14 @@ dependencies = [
|
|
|
2412
2376
|
"portable-atomic",
|
|
2413
2377
|
"portable-atomic-util",
|
|
2414
2378
|
"serde_core",
|
|
2415
|
-
"windows-
|
|
2379
|
+
"windows-link",
|
|
2416
2380
|
]
|
|
2417
2381
|
|
|
2418
2382
|
[[package]]
|
|
2419
2383
|
name = "jiff-static"
|
|
2420
|
-
version = "0.2.
|
|
2384
|
+
version = "0.2.28"
|
|
2421
2385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2422
|
-
checksum = "
|
|
2386
|
+
checksum = "782d32378dddf207193ac91cefb848ad41abb58195c95168e1291227a0832b47"
|
|
2423
2387
|
dependencies = [
|
|
2424
2388
|
"proc-macro2",
|
|
2425
2389
|
"quote",
|
|
@@ -2468,7 +2432,7 @@ dependencies = [
|
|
|
2468
2432
|
"jni-sys",
|
|
2469
2433
|
"log",
|
|
2470
2434
|
"simd_cesu8",
|
|
2471
|
-
"thiserror
|
|
2435
|
+
"thiserror",
|
|
2472
2436
|
"walkdir",
|
|
2473
2437
|
"windows-link",
|
|
2474
2438
|
]
|
|
@@ -2517,13 +2481,12 @@ dependencies = [
|
|
|
2517
2481
|
|
|
2518
2482
|
[[package]]
|
|
2519
2483
|
name = "js-sys"
|
|
2520
|
-
version = "0.3.
|
|
2484
|
+
version = "0.3.100"
|
|
2521
2485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2522
|
-
checksum = "
|
|
2486
|
+
checksum = "f2025f20d7a4fa7785846e7b63d10a76d3f1cee98ee5cb79ea59703f95e42162"
|
|
2523
2487
|
dependencies = [
|
|
2524
2488
|
"cfg-if",
|
|
2525
2489
|
"futures-util",
|
|
2526
|
-
"once_cell",
|
|
2527
2490
|
"wasm-bindgen",
|
|
2528
2491
|
]
|
|
2529
2492
|
|
|
@@ -2543,7 +2506,7 @@ version = "0.3.0"
|
|
|
2543
2506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2544
2507
|
checksum = "01737161ba802849cfd486b5bd209d38ba4943494c249a8126005170c7621edd"
|
|
2545
2508
|
dependencies = [
|
|
2546
|
-
"crypto-common 0.2.
|
|
2509
|
+
"crypto-common 0.2.2",
|
|
2547
2510
|
"rand_core 0.10.1",
|
|
2548
2511
|
]
|
|
2549
2512
|
|
|
@@ -2552,9 +2515,6 @@ name = "lazy_static"
|
|
|
2552
2515
|
version = "1.5.0"
|
|
2553
2516
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2554
2517
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
2555
|
-
dependencies = [
|
|
2556
|
-
"spin",
|
|
2557
|
-
]
|
|
2558
2518
|
|
|
2559
2519
|
[[package]]
|
|
2560
2520
|
name = "leb128fmt"
|
|
@@ -2662,9 +2622,9 @@ dependencies = [
|
|
|
2662
2622
|
|
|
2663
2623
|
[[package]]
|
|
2664
2624
|
name = "log"
|
|
2665
|
-
version = "0.4.
|
|
2625
|
+
version = "0.4.32"
|
|
2666
2626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2667
|
-
checksum = "
|
|
2627
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
2668
2628
|
|
|
2669
2629
|
[[package]]
|
|
2670
2630
|
name = "loom"
|
|
@@ -2723,15 +2683,15 @@ dependencies = [
|
|
|
2723
2683
|
|
|
2724
2684
|
[[package]]
|
|
2725
2685
|
name = "md5"
|
|
2726
|
-
version = "0.
|
|
2686
|
+
version = "0.8.0"
|
|
2727
2687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2728
|
-
checksum = "
|
|
2688
|
+
checksum = "ae960838283323069879657ca3de837e9f7bbb4c7bf6ea7f1b290d5e9476d2e0"
|
|
2729
2689
|
|
|
2730
2690
|
[[package]]
|
|
2731
2691
|
name = "memchr"
|
|
2732
|
-
version = "2.8.
|
|
2692
|
+
version = "2.8.1"
|
|
2733
2693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2734
|
-
checksum = "
|
|
2694
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
2735
2695
|
|
|
2736
2696
|
[[package]]
|
|
2737
2697
|
name = "memoffset"
|
|
@@ -2776,9 +2736,9 @@ dependencies = [
|
|
|
2776
2736
|
|
|
2777
2737
|
[[package]]
|
|
2778
2738
|
name = "mio"
|
|
2779
|
-
version = "1.2.
|
|
2739
|
+
version = "1.2.1"
|
|
2780
2740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2781
|
-
checksum = "
|
|
2741
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
2782
2742
|
dependencies = [
|
|
2783
2743
|
"libc",
|
|
2784
2744
|
"wasi",
|
|
@@ -2787,13 +2747,14 @@ dependencies = [
|
|
|
2787
2747
|
|
|
2788
2748
|
[[package]]
|
|
2789
2749
|
name = "ml-kem"
|
|
2790
|
-
version = "0.3.
|
|
2750
|
+
version = "0.3.2"
|
|
2791
2751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2792
|
-
checksum = "
|
|
2752
|
+
checksum = "5e15f3e5b957493873e396a66914e83e616b6afe335cdef7efe5c6e1216aba66"
|
|
2793
2753
|
dependencies = [
|
|
2794
2754
|
"hybrid-array",
|
|
2795
2755
|
"kem",
|
|
2796
2756
|
"module-lattice",
|
|
2757
|
+
"pkcs8 0.11.0",
|
|
2797
2758
|
"rand_core 0.10.1",
|
|
2798
2759
|
"sha3",
|
|
2799
2760
|
]
|
|
@@ -2811,8 +2772,8 @@ dependencies = [
|
|
|
2811
2772
|
|
|
2812
2773
|
[[package]]
|
|
2813
2774
|
name = "monty"
|
|
2814
|
-
version = "0.0.
|
|
2815
|
-
source = "git+https://github.com/pydantic/monty?
|
|
2775
|
+
version = "0.0.18"
|
|
2776
|
+
source = "git+https://github.com/pydantic/monty?tag=v0.0.18#45a3b2d57e6ce723fed4166fb032242ece74a663"
|
|
2816
2777
|
dependencies = [
|
|
2817
2778
|
"ahash",
|
|
2818
2779
|
"chrono",
|
|
@@ -2822,6 +2783,7 @@ dependencies = [
|
|
|
2822
2783
|
"itertools 0.14.0",
|
|
2823
2784
|
"jiter",
|
|
2824
2785
|
"libm",
|
|
2786
|
+
"monty-macros",
|
|
2825
2787
|
"num-bigint",
|
|
2826
2788
|
"num-integer",
|
|
2827
2789
|
"num-traits",
|
|
@@ -2837,11 +2799,21 @@ dependencies = [
|
|
|
2837
2799
|
"strum 0.27.2",
|
|
2838
2800
|
]
|
|
2839
2801
|
|
|
2802
|
+
[[package]]
|
|
2803
|
+
name = "monty-macros"
|
|
2804
|
+
version = "0.0.18"
|
|
2805
|
+
source = "git+https://github.com/pydantic/monty?tag=v0.0.18#45a3b2d57e6ce723fed4166fb032242ece74a663"
|
|
2806
|
+
dependencies = [
|
|
2807
|
+
"proc-macro2",
|
|
2808
|
+
"quote",
|
|
2809
|
+
"syn",
|
|
2810
|
+
]
|
|
2811
|
+
|
|
2840
2812
|
[[package]]
|
|
2841
2813
|
name = "napi"
|
|
2842
|
-
version = "3.9.
|
|
2814
|
+
version = "3.9.1"
|
|
2843
2815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2844
|
-
checksum = "
|
|
2816
|
+
checksum = "ad513ff22558f1830b595ea6eb4091da48145d09a222ce157e781896f78be0b9"
|
|
2845
2817
|
dependencies = [
|
|
2846
2818
|
"bitflags",
|
|
2847
2819
|
"ctor",
|
|
@@ -2888,9 +2860,9 @@ dependencies = [
|
|
|
2888
2860
|
|
|
2889
2861
|
[[package]]
|
|
2890
2862
|
name = "napi-sys"
|
|
2891
|
-
version = "3.2.
|
|
2863
|
+
version = "3.2.2"
|
|
2892
2864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2893
|
-
checksum = "
|
|
2865
|
+
checksum = "1f5bcdf71abd3a50d00b49c1c2c75251cb3c913777d6139cd37dabc093a5e400"
|
|
2894
2866
|
dependencies = [
|
|
2895
2867
|
"libloading 0.9.0",
|
|
2896
2868
|
]
|
|
@@ -2948,22 +2920,6 @@ dependencies = [
|
|
|
2948
2920
|
"serde",
|
|
2949
2921
|
]
|
|
2950
2922
|
|
|
2951
|
-
[[package]]
|
|
2952
|
-
name = "num-bigint-dig"
|
|
2953
|
-
version = "0.8.6"
|
|
2954
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2955
|
-
checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
|
|
2956
|
-
dependencies = [
|
|
2957
|
-
"lazy_static",
|
|
2958
|
-
"libm",
|
|
2959
|
-
"num-integer",
|
|
2960
|
-
"num-iter",
|
|
2961
|
-
"num-traits",
|
|
2962
|
-
"rand 0.8.6",
|
|
2963
|
-
"serde",
|
|
2964
|
-
"smallvec",
|
|
2965
|
-
]
|
|
2966
|
-
|
|
2967
2923
|
[[package]]
|
|
2968
2924
|
name = "num-integer"
|
|
2969
2925
|
version = "0.1.46"
|
|
@@ -2973,17 +2929,6 @@ dependencies = [
|
|
|
2973
2929
|
"num-traits",
|
|
2974
2930
|
]
|
|
2975
2931
|
|
|
2976
|
-
[[package]]
|
|
2977
|
-
name = "num-iter"
|
|
2978
|
-
version = "0.1.45"
|
|
2979
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2980
|
-
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
2981
|
-
dependencies = [
|
|
2982
|
-
"autocfg",
|
|
2983
|
-
"num-integer",
|
|
2984
|
-
"num-traits",
|
|
2985
|
-
]
|
|
2986
|
-
|
|
2987
2932
|
[[package]]
|
|
2988
2933
|
name = "num-traits"
|
|
2989
2934
|
version = "0.2.19"
|
|
@@ -3063,7 +3008,7 @@ dependencies = [
|
|
|
3063
3008
|
"owo-colors 4.3.0",
|
|
3064
3009
|
"oxc-miette-derive",
|
|
3065
3010
|
"textwrap",
|
|
3066
|
-
"thiserror
|
|
3011
|
+
"thiserror",
|
|
3067
3012
|
"unicode-segmentation",
|
|
3068
3013
|
"unicode-width 0.2.2",
|
|
3069
3014
|
]
|
|
@@ -3255,9 +3200,9 @@ dependencies = [
|
|
|
3255
3200
|
|
|
3256
3201
|
[[package]]
|
|
3257
3202
|
name = "p256"
|
|
3258
|
-
version = "0.14.0-rc.
|
|
3203
|
+
version = "0.14.0-rc.10"
|
|
3259
3204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3260
|
-
checksum = "
|
|
3205
|
+
checksum = "41adc63effe99d48837a8cc0e6d7a77e32ae6a07f6000df466178dbc2193093e"
|
|
3261
3206
|
dependencies = [
|
|
3262
3207
|
"ecdsa",
|
|
3263
3208
|
"elliptic-curve",
|
|
@@ -3268,9 +3213,9 @@ dependencies = [
|
|
|
3268
3213
|
|
|
3269
3214
|
[[package]]
|
|
3270
3215
|
name = "p384"
|
|
3271
|
-
version = "0.14.0-rc.
|
|
3216
|
+
version = "0.14.0-rc.10"
|
|
3272
3217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3273
|
-
checksum = "
|
|
3218
|
+
checksum = "9bd5333afa5ae0347f39e6a0f2c9c155da431583fd71fe5555bd0521b4ccaf02"
|
|
3274
3219
|
dependencies = [
|
|
3275
3220
|
"ecdsa",
|
|
3276
3221
|
"elliptic-curve",
|
|
@@ -3282,9 +3227,9 @@ dependencies = [
|
|
|
3282
3227
|
|
|
3283
3228
|
[[package]]
|
|
3284
3229
|
name = "p521"
|
|
3285
|
-
version = "0.14.0-rc.
|
|
3230
|
+
version = "0.14.0-rc.10"
|
|
3286
3231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3287
|
-
checksum = "
|
|
3232
|
+
checksum = "a3a5297f53dc16d35909060ba3032cff7867e8809f01e273ff325579d5f0ceae"
|
|
3288
3233
|
dependencies = [
|
|
3289
3234
|
"base16ct",
|
|
3290
3235
|
"ecdsa",
|
|
@@ -3315,18 +3260,19 @@ dependencies = [
|
|
|
3315
3260
|
|
|
3316
3261
|
[[package]]
|
|
3317
3262
|
name = "pageant"
|
|
3318
|
-
version = "0.2.
|
|
3263
|
+
version = "0.2.1"
|
|
3319
3264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3320
|
-
checksum = "
|
|
3265
|
+
checksum = "4f3a5ae18f65a85c67a77d18d42d3606c07948e3c17c1e5f74852b26589e88a5"
|
|
3321
3266
|
dependencies = [
|
|
3267
|
+
"base16ct",
|
|
3322
3268
|
"byteorder",
|
|
3323
3269
|
"bytes",
|
|
3324
3270
|
"delegate",
|
|
3325
3271
|
"futures",
|
|
3326
3272
|
"log",
|
|
3327
|
-
"rand 0.
|
|
3328
|
-
"sha2 0.
|
|
3329
|
-
"thiserror
|
|
3273
|
+
"rand 0.10.1",
|
|
3274
|
+
"sha2 0.11.0",
|
|
3275
|
+
"thiserror",
|
|
3330
3276
|
"tokio",
|
|
3331
3277
|
"windows",
|
|
3332
3278
|
"windows-strings",
|
|
@@ -3334,9 +3280,9 @@ dependencies = [
|
|
|
3334
3280
|
|
|
3335
3281
|
[[package]]
|
|
3336
3282
|
name = "papergrid"
|
|
3337
|
-
version = "0.
|
|
3283
|
+
version = "0.18.0"
|
|
3338
3284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3339
|
-
checksum = "
|
|
3285
|
+
checksum = "d0984e668274d34691bc2b262ef0d115de5fa9973bcdee7ae32213f93099153e"
|
|
3340
3286
|
dependencies = [
|
|
3341
3287
|
"bytecount",
|
|
3342
3288
|
"fnv",
|
|
@@ -3368,30 +3314,18 @@ dependencies = [
|
|
|
3368
3314
|
|
|
3369
3315
|
[[package]]
|
|
3370
3316
|
name = "password-hash"
|
|
3371
|
-
version = "0.
|
|
3317
|
+
version = "0.6.1"
|
|
3372
3318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3373
|
-
checksum = "
|
|
3319
|
+
checksum = "aab41826031698d6ffcd9cff78ef56ef998e39dc7e5067cdfebe373842d4723b"
|
|
3374
3320
|
dependencies = [
|
|
3375
|
-
"
|
|
3376
|
-
"rand_core 0.6.4",
|
|
3377
|
-
"subtle",
|
|
3321
|
+
"phc",
|
|
3378
3322
|
]
|
|
3379
3323
|
|
|
3380
3324
|
[[package]]
|
|
3381
3325
|
name = "pastey"
|
|
3382
|
-
version = "0.2.
|
|
3383
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3384
|
-
checksum = "c5a797f0e07bdf071d15742978fc3128ec6c22891c31a3a931513263904c982a"
|
|
3385
|
-
|
|
3386
|
-
[[package]]
|
|
3387
|
-
name = "pbkdf2"
|
|
3388
|
-
version = "0.12.2"
|
|
3326
|
+
version = "0.2.3"
|
|
3389
3327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3390
|
-
checksum = "
|
|
3391
|
-
dependencies = [
|
|
3392
|
-
"digest 0.10.7",
|
|
3393
|
-
"hmac 0.12.1",
|
|
3394
|
-
]
|
|
3328
|
+
checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
|
|
3395
3329
|
|
|
3396
3330
|
[[package]]
|
|
3397
3331
|
name = "pbkdf2"
|
|
@@ -3400,16 +3334,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3400
3334
|
checksum = "112d82ceb8c5bf524d9af484d4e4970c9fd5a0cc15ba14ad93dccd28873b0629"
|
|
3401
3335
|
dependencies = [
|
|
3402
3336
|
"digest 0.11.3",
|
|
3403
|
-
"hmac
|
|
3404
|
-
]
|
|
3405
|
-
|
|
3406
|
-
[[package]]
|
|
3407
|
-
name = "pem-rfc7468"
|
|
3408
|
-
version = "0.7.0"
|
|
3409
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3410
|
-
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
|
3411
|
-
dependencies = [
|
|
3412
|
-
"base64ct",
|
|
3337
|
+
"hmac",
|
|
3413
3338
|
]
|
|
3414
3339
|
|
|
3415
3340
|
[[package]]
|
|
@@ -3427,6 +3352,16 @@ version = "2.3.2"
|
|
|
3427
3352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3428
3353
|
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
3429
3354
|
|
|
3355
|
+
[[package]]
|
|
3356
|
+
name = "phc"
|
|
3357
|
+
version = "0.6.1"
|
|
3358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3359
|
+
checksum = "44dc769b75f93afdddd8c7fa12d685292ddeff1e66f7f0f3a234cf1818afe892"
|
|
3360
|
+
dependencies = [
|
|
3361
|
+
"base64ct",
|
|
3362
|
+
"ctutils",
|
|
3363
|
+
]
|
|
3364
|
+
|
|
3430
3365
|
[[package]]
|
|
3431
3366
|
name = "phf"
|
|
3432
3367
|
version = "0.11.3"
|
|
@@ -3521,24 +3456,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3521
3456
|
checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e"
|
|
3522
3457
|
dependencies = [
|
|
3523
3458
|
"der 0.8.0",
|
|
3524
|
-
"spki 0.8.0
|
|
3459
|
+
"spki 0.8.0",
|
|
3525
3460
|
]
|
|
3526
3461
|
|
|
3527
3462
|
[[package]]
|
|
3528
3463
|
name = "pkcs5"
|
|
3529
|
-
version = "0.8.0
|
|
3464
|
+
version = "0.8.0"
|
|
3530
3465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3531
|
-
checksum = "
|
|
3466
|
+
checksum = "279a91971a1d8eb1260a30938eae3be9cb67b472dffecb222fbbbe2fd2dc1453"
|
|
3532
3467
|
dependencies = [
|
|
3533
|
-
"aes 0.9.
|
|
3534
|
-
"
|
|
3535
|
-
"cbc 0.2.0",
|
|
3468
|
+
"aes 0.9.1",
|
|
3469
|
+
"cbc",
|
|
3536
3470
|
"der 0.8.0",
|
|
3537
|
-
"pbkdf2
|
|
3471
|
+
"pbkdf2",
|
|
3538
3472
|
"rand_core 0.10.1",
|
|
3539
3473
|
"scrypt",
|
|
3540
3474
|
"sha2 0.11.0",
|
|
3541
|
-
"spki 0.8.0
|
|
3475
|
+
"spki 0.8.0",
|
|
3542
3476
|
]
|
|
3543
3477
|
|
|
3544
3478
|
[[package]]
|
|
@@ -3553,14 +3487,14 @@ dependencies = [
|
|
|
3553
3487
|
|
|
3554
3488
|
[[package]]
|
|
3555
3489
|
name = "pkcs8"
|
|
3556
|
-
version = "0.11.0
|
|
3490
|
+
version = "0.11.0"
|
|
3557
3491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3558
|
-
checksum = "
|
|
3492
|
+
checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7"
|
|
3559
3493
|
dependencies = [
|
|
3560
3494
|
"der 0.8.0",
|
|
3561
3495
|
"pkcs5",
|
|
3562
3496
|
"rand_core 0.10.1",
|
|
3563
|
-
"spki 0.8.0
|
|
3497
|
+
"spki 0.8.0",
|
|
3564
3498
|
]
|
|
3565
3499
|
|
|
3566
3500
|
[[package]]
|
|
@@ -3607,13 +3541,13 @@ dependencies = [
|
|
|
3607
3541
|
|
|
3608
3542
|
[[package]]
|
|
3609
3543
|
name = "poly1305"
|
|
3610
|
-
version = "0.
|
|
3544
|
+
version = "0.9.0"
|
|
3611
3545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3612
|
-
checksum = "
|
|
3546
|
+
checksum = "a00baa632505d05512f48a963e16051c54fda9a95cc9acea1a4e3c90991c4a2e"
|
|
3613
3547
|
dependencies = [
|
|
3614
|
-
"cpufeatures 0.
|
|
3615
|
-
"
|
|
3616
|
-
"
|
|
3548
|
+
"cpufeatures 0.3.0",
|
|
3549
|
+
"universal-hash 0.6.1",
|
|
3550
|
+
"zeroize",
|
|
3617
3551
|
]
|
|
3618
3552
|
|
|
3619
3553
|
[[package]]
|
|
@@ -3707,23 +3641,23 @@ dependencies = [
|
|
|
3707
3641
|
|
|
3708
3642
|
[[package]]
|
|
3709
3643
|
name = "primefield"
|
|
3710
|
-
version = "0.14.0-rc.
|
|
3644
|
+
version = "0.14.0-rc.11"
|
|
3711
3645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3712
|
-
checksum = "
|
|
3646
|
+
checksum = "b1d7e42f46a29abc16fb621a3466ee453358ebaae48a9e515f287e0af052ed8f"
|
|
3713
3647
|
dependencies = [
|
|
3714
3648
|
"crypto-bigint",
|
|
3715
|
-
"crypto-common 0.2.
|
|
3649
|
+
"crypto-common 0.2.2",
|
|
3650
|
+
"ff",
|
|
3716
3651
|
"rand_core 0.10.1",
|
|
3717
|
-
"rustcrypto-ff",
|
|
3718
3652
|
"subtle",
|
|
3719
3653
|
"zeroize",
|
|
3720
3654
|
]
|
|
3721
3655
|
|
|
3722
3656
|
[[package]]
|
|
3723
3657
|
name = "primeorder"
|
|
3724
|
-
version = "0.14.0-rc.
|
|
3658
|
+
version = "0.14.0-rc.10"
|
|
3725
3659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3726
|
-
checksum = "
|
|
3660
|
+
checksum = "7d2793f22b9b6fd11ef3ac1d59bf003c2573593e4968702341605c2748fd90bf"
|
|
3727
3661
|
dependencies = [
|
|
3728
3662
|
"elliptic-curve",
|
|
3729
3663
|
]
|
|
@@ -3965,7 +3899,7 @@ version = "0.10.1"
|
|
|
3965
3899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3966
3900
|
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
3967
3901
|
dependencies = [
|
|
3968
|
-
"chacha20
|
|
3902
|
+
"chacha20",
|
|
3969
3903
|
"getrandom 0.4.2",
|
|
3970
3904
|
"rand_core 0.10.1",
|
|
3971
3905
|
]
|
|
@@ -4072,9 +4006,9 @@ dependencies = [
|
|
|
4072
4006
|
|
|
4073
4007
|
[[package]]
|
|
4074
4008
|
name = "regex"
|
|
4075
|
-
version = "1.12.
|
|
4009
|
+
version = "1.12.4"
|
|
4076
4010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4077
|
-
checksum = "
|
|
4011
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
4078
4012
|
dependencies = [
|
|
4079
4013
|
"aho-corasick",
|
|
4080
4014
|
"memchr",
|
|
@@ -4101,9 +4035,9 @@ checksum = "b6a15a2fa0bfda9361941c45550896ae87b15cc6c8c939ea350079670332e211"
|
|
|
4101
4035
|
|
|
4102
4036
|
[[package]]
|
|
4103
4037
|
name = "regex-syntax"
|
|
4104
|
-
version = "0.8.
|
|
4038
|
+
version = "0.8.11"
|
|
4105
4039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4106
|
-
checksum = "
|
|
4040
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
4107
4041
|
|
|
4108
4042
|
[[package]]
|
|
4109
4043
|
name = "reqwest"
|
|
@@ -4150,7 +4084,7 @@ version = "0.5.0"
|
|
|
4150
4084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4151
4085
|
checksum = "5236ce872cac07e0fb3969b0cbf468c7d2f37d432f1b627dcb7b8d34563fb0c3"
|
|
4152
4086
|
dependencies = [
|
|
4153
|
-
"hmac
|
|
4087
|
+
"hmac",
|
|
4154
4088
|
"subtle",
|
|
4155
4089
|
]
|
|
4156
4090
|
|
|
@@ -4180,20 +4114,20 @@ dependencies = [
|
|
|
4180
4114
|
|
|
4181
4115
|
[[package]]
|
|
4182
4116
|
name = "rsa"
|
|
4183
|
-
version = "0.10.0-rc.
|
|
4117
|
+
version = "0.10.0-rc.18"
|
|
4184
4118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4185
|
-
checksum = "
|
|
4119
|
+
checksum = "30b2aa4ba0d89f73d1e332df05be0eeab8840351c36ca5654341dfdb57bb3caf"
|
|
4186
4120
|
dependencies = [
|
|
4187
4121
|
"const-oid 0.10.2",
|
|
4188
4122
|
"crypto-bigint",
|
|
4189
4123
|
"crypto-primes",
|
|
4190
4124
|
"digest 0.11.3",
|
|
4191
4125
|
"pkcs1",
|
|
4192
|
-
"pkcs8 0.11.0
|
|
4126
|
+
"pkcs8 0.11.0",
|
|
4193
4127
|
"rand_core 0.10.1",
|
|
4194
4128
|
"sha2 0.11.0",
|
|
4195
4129
|
"signature 3.0.0",
|
|
4196
|
-
"spki 0.8.0
|
|
4130
|
+
"spki 0.8.0",
|
|
4197
4131
|
"zeroize",
|
|
4198
4132
|
]
|
|
4199
4133
|
|
|
@@ -4213,7 +4147,7 @@ dependencies = [
|
|
|
4213
4147
|
"ruff_text_size",
|
|
4214
4148
|
"rustc-hash",
|
|
4215
4149
|
"thin-vec",
|
|
4216
|
-
"thiserror
|
|
4150
|
+
"thiserror",
|
|
4217
4151
|
]
|
|
4218
4152
|
|
|
4219
4153
|
[[package]]
|
|
@@ -4276,45 +4210,37 @@ dependencies = [
|
|
|
4276
4210
|
|
|
4277
4211
|
[[package]]
|
|
4278
4212
|
name = "russh"
|
|
4279
|
-
version = "0.
|
|
4213
|
+
version = "0.61.2"
|
|
4280
4214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4281
|
-
checksum = "
|
|
4215
|
+
checksum = "bbf893f64684e58da8a68d56a5e84d1cf0440226274c515770fe267707a7d0b0"
|
|
4282
4216
|
dependencies = [
|
|
4283
|
-
"
|
|
4284
|
-
"aes 0.8.4",
|
|
4285
|
-
"aes 0.9.0",
|
|
4286
|
-
"aes-gcm 0.11.0-rc.3",
|
|
4217
|
+
"aes 0.9.1",
|
|
4287
4218
|
"aws-lc-rs",
|
|
4288
4219
|
"bitflags",
|
|
4289
|
-
"block-padding
|
|
4220
|
+
"block-padding",
|
|
4290
4221
|
"byteorder",
|
|
4291
4222
|
"bytes",
|
|
4292
|
-
"cbc
|
|
4293
|
-
"
|
|
4294
|
-
"cipher 0.5.1",
|
|
4223
|
+
"cbc",
|
|
4224
|
+
"cipher 0.5.2",
|
|
4295
4225
|
"crypto-bigint",
|
|
4296
|
-
"ctr 0.10.
|
|
4297
|
-
"
|
|
4298
|
-
"curve25519-dalek 5.0.0-pre.6",
|
|
4226
|
+
"ctr 0.10.1",
|
|
4227
|
+
"curve25519-dalek 5.0.0-rc.0",
|
|
4299
4228
|
"data-encoding",
|
|
4300
4229
|
"delegate",
|
|
4301
4230
|
"der 0.8.0",
|
|
4302
|
-
"digest 0.
|
|
4231
|
+
"digest 0.11.3",
|
|
4303
4232
|
"ecdsa",
|
|
4304
|
-
"ed25519-dalek 3.0.0-
|
|
4233
|
+
"ed25519-dalek 3.0.0-rc.0",
|
|
4305
4234
|
"elliptic-curve",
|
|
4306
4235
|
"enum_dispatch",
|
|
4307
4236
|
"flate2",
|
|
4308
4237
|
"futures",
|
|
4309
|
-
"generic-array 1.4.
|
|
4310
|
-
"getrandom 0.2
|
|
4238
|
+
"generic-array 1.4.3",
|
|
4239
|
+
"getrandom 0.4.2",
|
|
4311
4240
|
"ghash 0.6.0",
|
|
4312
4241
|
"hex-literal",
|
|
4313
|
-
"
|
|
4314
|
-
"
|
|
4315
|
-
"hmac 0.13.0",
|
|
4316
|
-
"inout 0.1.4",
|
|
4317
|
-
"internal-russh-forked-ssh-key",
|
|
4242
|
+
"hmac",
|
|
4243
|
+
"inout 0.2.2",
|
|
4318
4244
|
"internal-russh-num-bigint",
|
|
4319
4245
|
"keccak",
|
|
4320
4246
|
"log",
|
|
@@ -4326,11 +4252,10 @@ dependencies = [
|
|
|
4326
4252
|
"p384",
|
|
4327
4253
|
"p521",
|
|
4328
4254
|
"pageant",
|
|
4329
|
-
"pbkdf2
|
|
4330
|
-
"pbkdf2 0.13.0",
|
|
4255
|
+
"pbkdf2",
|
|
4331
4256
|
"pkcs1",
|
|
4332
4257
|
"pkcs5",
|
|
4333
|
-
"pkcs8 0.11.0
|
|
4258
|
+
"pkcs8 0.11.0",
|
|
4334
4259
|
"polyval 0.7.1",
|
|
4335
4260
|
"rand 0.10.1",
|
|
4336
4261
|
"rand_core 0.10.1",
|
|
@@ -4340,16 +4265,15 @@ dependencies = [
|
|
|
4340
4265
|
"salsa20",
|
|
4341
4266
|
"scrypt",
|
|
4342
4267
|
"sec1",
|
|
4343
|
-
"sha1
|
|
4344
|
-
"sha1 0.11.0",
|
|
4345
|
-
"sha2 0.10.9",
|
|
4268
|
+
"sha1",
|
|
4346
4269
|
"sha2 0.11.0",
|
|
4347
4270
|
"sha3",
|
|
4348
4271
|
"signature 3.0.0",
|
|
4349
|
-
"spki 0.8.0
|
|
4272
|
+
"spki 0.8.0",
|
|
4350
4273
|
"ssh-encoding",
|
|
4274
|
+
"ssh-key",
|
|
4351
4275
|
"subtle",
|
|
4352
|
-
"thiserror
|
|
4276
|
+
"thiserror",
|
|
4353
4277
|
"tokio",
|
|
4354
4278
|
"typenum",
|
|
4355
4279
|
"universal-hash 0.6.1",
|
|
@@ -4358,9 +4282,9 @@ dependencies = [
|
|
|
4358
4282
|
|
|
4359
4283
|
[[package]]
|
|
4360
4284
|
name = "russh-cryptovec"
|
|
4361
|
-
version = "0.
|
|
4285
|
+
version = "0.61.0"
|
|
4362
4286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4363
|
-
checksum = "
|
|
4287
|
+
checksum = "443f6bbcfacb34a1aab2b12b99bf08e0c63abdc5a0db261901365df9d57fff51"
|
|
4364
4288
|
dependencies = [
|
|
4365
4289
|
"log",
|
|
4366
4290
|
"nix",
|
|
@@ -4405,27 +4329,6 @@ dependencies = [
|
|
|
4405
4329
|
"semver",
|
|
4406
4330
|
]
|
|
4407
4331
|
|
|
4408
|
-
[[package]]
|
|
4409
|
-
name = "rustcrypto-ff"
|
|
4410
|
-
version = "0.14.0-rc.1"
|
|
4411
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4412
|
-
checksum = "fd2a8adb347447693cd2ba0d218c4b66c62da9b0a5672b17b981e4291ec65ff6"
|
|
4413
|
-
dependencies = [
|
|
4414
|
-
"rand_core 0.10.1",
|
|
4415
|
-
"subtle",
|
|
4416
|
-
]
|
|
4417
|
-
|
|
4418
|
-
[[package]]
|
|
4419
|
-
name = "rustcrypto-group"
|
|
4420
|
-
version = "0.14.0-rc.1"
|
|
4421
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4422
|
-
checksum = "369f9b61aa45933c062c9f6b5c3c50ab710687eca83dd3802653b140b43f85ed"
|
|
4423
|
-
dependencies = [
|
|
4424
|
-
"rand_core 0.10.1",
|
|
4425
|
-
"rustcrypto-ff",
|
|
4426
|
-
"subtle",
|
|
4427
|
-
]
|
|
4428
|
-
|
|
4429
4332
|
[[package]]
|
|
4430
4333
|
name = "rustix"
|
|
4431
4334
|
version = "1.1.4"
|
|
@@ -4436,7 +4339,7 @@ dependencies = [
|
|
|
4436
4339
|
"errno",
|
|
4437
4340
|
"libc",
|
|
4438
4341
|
"linux-raw-sys",
|
|
4439
|
-
"windows-sys 0.
|
|
4342
|
+
"windows-sys 0.61.2",
|
|
4440
4343
|
]
|
|
4441
4344
|
|
|
4442
4345
|
[[package]]
|
|
@@ -4456,9 +4359,9 @@ dependencies = [
|
|
|
4456
4359
|
|
|
4457
4360
|
[[package]]
|
|
4458
4361
|
name = "rustls-native-certs"
|
|
4459
|
-
version = "0.8.
|
|
4362
|
+
version = "0.8.4"
|
|
4460
4363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4461
|
-
checksum = "
|
|
4364
|
+
checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
|
|
4462
4365
|
dependencies = [
|
|
4463
4366
|
"openssl-probe",
|
|
4464
4367
|
"rustls-pki-types",
|
|
@@ -4493,7 +4396,7 @@ dependencies = [
|
|
|
4493
4396
|
"security-framework",
|
|
4494
4397
|
"security-framework-sys",
|
|
4495
4398
|
"webpki-root-certs",
|
|
4496
|
-
"windows-sys 0.
|
|
4399
|
+
"windows-sys 0.61.2",
|
|
4497
4400
|
]
|
|
4498
4401
|
|
|
4499
4402
|
[[package]]
|
|
@@ -4565,7 +4468,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4565
4468
|
checksum = "2f874456e72520ff1375a06c588eaf074b0f01f9e9e1aada45bd9b7954a6e42c"
|
|
4566
4469
|
dependencies = [
|
|
4567
4470
|
"cfg-if",
|
|
4568
|
-
"cipher 0.5.
|
|
4471
|
+
"cipher 0.5.2",
|
|
4569
4472
|
]
|
|
4570
4473
|
|
|
4571
4474
|
[[package]]
|
|
@@ -4577,15 +4480,6 @@ dependencies = [
|
|
|
4577
4480
|
"winapi-util",
|
|
4578
4481
|
]
|
|
4579
4482
|
|
|
4580
|
-
[[package]]
|
|
4581
|
-
name = "scc"
|
|
4582
|
-
version = "2.4.0"
|
|
4583
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4584
|
-
checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
|
|
4585
|
-
dependencies = [
|
|
4586
|
-
"sdd",
|
|
4587
|
-
]
|
|
4588
|
-
|
|
4589
4483
|
[[package]]
|
|
4590
4484
|
name = "schannel"
|
|
4591
4485
|
version = "0.1.29"
|
|
@@ -4614,17 +4508,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4614
4508
|
checksum = "d87af57419b594aa23fa95f09f0e06d80d84ba01c26148c43844cad6ff4485f0"
|
|
4615
4509
|
dependencies = [
|
|
4616
4510
|
"cfg-if",
|
|
4617
|
-
"pbkdf2
|
|
4511
|
+
"pbkdf2",
|
|
4618
4512
|
"salsa20",
|
|
4619
4513
|
"sha2 0.11.0",
|
|
4620
4514
|
]
|
|
4621
4515
|
|
|
4622
|
-
[[package]]
|
|
4623
|
-
name = "sdd"
|
|
4624
|
-
version = "3.0.10"
|
|
4625
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4626
|
-
checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
|
|
4627
|
-
|
|
4628
4516
|
[[package]]
|
|
4629
4517
|
name = "sec1"
|
|
4630
4518
|
version = "0.8.1"
|
|
@@ -4744,41 +4632,29 @@ dependencies = [
|
|
|
4744
4632
|
|
|
4745
4633
|
[[package]]
|
|
4746
4634
|
name = "serial_test"
|
|
4747
|
-
version = "3.
|
|
4635
|
+
version = "3.5.0"
|
|
4748
4636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4749
|
-
checksum = "
|
|
4637
|
+
checksum = "699f4197115b8a7e7ff19c9a315a4bd6fffec26cc4626ef45ecaea389e081c6d"
|
|
4750
4638
|
dependencies = [
|
|
4751
4639
|
"futures-executor",
|
|
4752
4640
|
"futures-util",
|
|
4753
4641
|
"log",
|
|
4754
4642
|
"once_cell",
|
|
4755
4643
|
"parking_lot",
|
|
4756
|
-
"scc",
|
|
4757
4644
|
"serial_test_derive",
|
|
4758
4645
|
]
|
|
4759
4646
|
|
|
4760
4647
|
[[package]]
|
|
4761
4648
|
name = "serial_test_derive"
|
|
4762
|
-
version = "3.
|
|
4649
|
+
version = "3.5.0"
|
|
4763
4650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4764
|
-
checksum = "
|
|
4651
|
+
checksum = "94e153fc76e1c6a068703d6d29c508a0b15c061c4b7e43da59cc097bc342673c"
|
|
4765
4652
|
dependencies = [
|
|
4766
4653
|
"proc-macro2",
|
|
4767
4654
|
"quote",
|
|
4768
4655
|
"syn",
|
|
4769
4656
|
]
|
|
4770
4657
|
|
|
4771
|
-
[[package]]
|
|
4772
|
-
name = "sha1"
|
|
4773
|
-
version = "0.10.6"
|
|
4774
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4775
|
-
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
4776
|
-
dependencies = [
|
|
4777
|
-
"cfg-if",
|
|
4778
|
-
"cpufeatures 0.2.17",
|
|
4779
|
-
"digest 0.10.7",
|
|
4780
|
-
]
|
|
4781
|
-
|
|
4782
4658
|
[[package]]
|
|
4783
4659
|
name = "sha1"
|
|
4784
4660
|
version = "0.11.0"
|
|
@@ -4839,9 +4715,9 @@ dependencies = [
|
|
|
4839
4715
|
|
|
4840
4716
|
[[package]]
|
|
4841
4717
|
name = "shlex"
|
|
4842
|
-
version = "
|
|
4718
|
+
version = "2.0.1"
|
|
4843
4719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4844
|
-
checksum = "
|
|
4720
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
4845
4721
|
|
|
4846
4722
|
[[package]]
|
|
4847
4723
|
name = "shuttle"
|
|
@@ -4968,9 +4844,9 @@ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
|
|
|
4968
4844
|
|
|
4969
4845
|
[[package]]
|
|
4970
4846
|
name = "socket2"
|
|
4971
|
-
version = "0.6.
|
|
4847
|
+
version = "0.6.4"
|
|
4972
4848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4973
|
-
checksum = "
|
|
4849
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
4974
4850
|
dependencies = [
|
|
4975
4851
|
"libc",
|
|
4976
4852
|
"windows-sys 0.61.2",
|
|
@@ -4978,9 +4854,9 @@ dependencies = [
|
|
|
4978
4854
|
|
|
4979
4855
|
[[package]]
|
|
4980
4856
|
name = "softaes"
|
|
4981
|
-
version = "0.1.
|
|
4857
|
+
version = "0.1.5"
|
|
4982
4858
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4983
|
-
checksum = "
|
|
4859
|
+
checksum = "45e14297decde697ddf377c25752aead0927d5cfc89c2684d2af96901a4ceeea"
|
|
4984
4860
|
|
|
4985
4861
|
[[package]]
|
|
4986
4862
|
name = "speedate"
|
|
@@ -5014,9 +4890,9 @@ dependencies = [
|
|
|
5014
4890
|
|
|
5015
4891
|
[[package]]
|
|
5016
4892
|
name = "spki"
|
|
5017
|
-
version = "0.8.0
|
|
4893
|
+
version = "0.8.0"
|
|
5018
4894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5019
|
-
checksum = "
|
|
4895
|
+
checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
|
|
5020
4896
|
dependencies = [
|
|
5021
4897
|
"base64ct",
|
|
5022
4898
|
"der 0.8.0",
|
|
@@ -5024,31 +4900,63 @@ dependencies = [
|
|
|
5024
4900
|
|
|
5025
4901
|
[[package]]
|
|
5026
4902
|
name = "ssh-cipher"
|
|
5027
|
-
version = "0.
|
|
4903
|
+
version = "0.3.0-rc.9"
|
|
5028
4904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5029
|
-
checksum = "
|
|
4905
|
+
checksum = "10db6f219196a8528f9ec904d9d45cdad692d65b0e57e72be4dedd1c5fddce36"
|
|
5030
4906
|
dependencies = [
|
|
5031
|
-
"
|
|
5032
|
-
"aes
|
|
5033
|
-
"
|
|
5034
|
-
"
|
|
5035
|
-
"
|
|
5036
|
-
"
|
|
4907
|
+
"aead 0.6.0",
|
|
4908
|
+
"aes 0.9.1",
|
|
4909
|
+
"aes-gcm 0.11.0-rc.4",
|
|
4910
|
+
"cbc",
|
|
4911
|
+
"chacha20",
|
|
4912
|
+
"cipher 0.5.2",
|
|
4913
|
+
"ctr 0.10.1",
|
|
4914
|
+
"ctutils",
|
|
4915
|
+
"des",
|
|
5037
4916
|
"poly1305",
|
|
5038
4917
|
"ssh-encoding",
|
|
5039
|
-
"
|
|
4918
|
+
"zeroize",
|
|
5040
4919
|
]
|
|
5041
4920
|
|
|
5042
4921
|
[[package]]
|
|
5043
4922
|
name = "ssh-encoding"
|
|
5044
|
-
version = "0.
|
|
4923
|
+
version = "0.3.0-rc.9"
|
|
5045
4924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5046
|
-
checksum = "
|
|
4925
|
+
checksum = "7abf34aa716da5d5b4c496936d042ea282ab392092cd68a72ef6a8863ff8c96a"
|
|
5047
4926
|
dependencies = [
|
|
5048
4927
|
"base64ct",
|
|
5049
4928
|
"bytes",
|
|
5050
|
-
"
|
|
5051
|
-
"
|
|
4929
|
+
"crypto-bigint",
|
|
4930
|
+
"ctutils",
|
|
4931
|
+
"digest 0.11.3",
|
|
4932
|
+
"pem-rfc7468",
|
|
4933
|
+
"zeroize",
|
|
4934
|
+
]
|
|
4935
|
+
|
|
4936
|
+
[[package]]
|
|
4937
|
+
name = "ssh-key"
|
|
4938
|
+
version = "0.7.0-rc.10"
|
|
4939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4940
|
+
checksum = "45735ce3dea95690e4a9e414c4cfde7f79835063c3dcd35881df85a84118e74b"
|
|
4941
|
+
dependencies = [
|
|
4942
|
+
"argon2",
|
|
4943
|
+
"bcrypt-pbkdf",
|
|
4944
|
+
"ctutils",
|
|
4945
|
+
"ed25519-dalek 3.0.0-rc.0",
|
|
4946
|
+
"hex",
|
|
4947
|
+
"hmac",
|
|
4948
|
+
"p256",
|
|
4949
|
+
"p384",
|
|
4950
|
+
"p521",
|
|
4951
|
+
"rand_core 0.10.1",
|
|
4952
|
+
"rsa",
|
|
4953
|
+
"sec1",
|
|
4954
|
+
"sha1",
|
|
4955
|
+
"sha2 0.11.0",
|
|
4956
|
+
"signature 3.0.0",
|
|
4957
|
+
"ssh-cipher",
|
|
4958
|
+
"ssh-encoding",
|
|
4959
|
+
"zeroize",
|
|
5052
4960
|
]
|
|
5053
4961
|
|
|
5054
4962
|
[[package]]
|
|
@@ -5151,9 +5059,9 @@ dependencies = [
|
|
|
5151
5059
|
|
|
5152
5060
|
[[package]]
|
|
5153
5061
|
name = "tabled"
|
|
5154
|
-
version = "0.
|
|
5062
|
+
version = "0.21.0"
|
|
5155
5063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5156
|
-
checksum = "
|
|
5064
|
+
checksum = "b5dc662e6da844ad6e428ad16b57967c9d33c82e16bb1c258326c0c078605dff"
|
|
5157
5065
|
dependencies = [
|
|
5158
5066
|
"papergrid",
|
|
5159
5067
|
"tabled_derive",
|
|
@@ -5195,7 +5103,7 @@ dependencies = [
|
|
|
5195
5103
|
"getrandom 0.4.2",
|
|
5196
5104
|
"once_cell",
|
|
5197
5105
|
"rustix",
|
|
5198
|
-
"windows-sys 0.
|
|
5106
|
+
"windows-sys 0.61.2",
|
|
5199
5107
|
]
|
|
5200
5108
|
|
|
5201
5109
|
[[package]]
|
|
@@ -5234,33 +5142,13 @@ version = "0.2.18"
|
|
|
5234
5142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5235
5143
|
checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
|
|
5236
5144
|
|
|
5237
|
-
[[package]]
|
|
5238
|
-
name = "thiserror"
|
|
5239
|
-
version = "1.0.69"
|
|
5240
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5241
|
-
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
5242
|
-
dependencies = [
|
|
5243
|
-
"thiserror-impl 1.0.69",
|
|
5244
|
-
]
|
|
5245
|
-
|
|
5246
5145
|
[[package]]
|
|
5247
5146
|
name = "thiserror"
|
|
5248
5147
|
version = "2.0.18"
|
|
5249
5148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5250
5149
|
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
5251
5150
|
dependencies = [
|
|
5252
|
-
"thiserror-impl
|
|
5253
|
-
]
|
|
5254
|
-
|
|
5255
|
-
[[package]]
|
|
5256
|
-
name = "thiserror-impl"
|
|
5257
|
-
version = "1.0.69"
|
|
5258
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5259
|
-
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
5260
|
-
dependencies = [
|
|
5261
|
-
"proc-macro2",
|
|
5262
|
-
"quote",
|
|
5263
|
-
"syn",
|
|
5151
|
+
"thiserror-impl",
|
|
5264
5152
|
]
|
|
5265
5153
|
|
|
5266
5154
|
[[package]]
|
|
@@ -5446,9 +5334,9 @@ dependencies = [
|
|
|
5446
5334
|
|
|
5447
5335
|
[[package]]
|
|
5448
5336
|
name = "tower-http"
|
|
5449
|
-
version = "0.6.
|
|
5337
|
+
version = "0.6.11"
|
|
5450
5338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5451
|
-
checksum = "
|
|
5339
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
5452
5340
|
dependencies = [
|
|
5453
5341
|
"bitflags",
|
|
5454
5342
|
"bytes",
|
|
@@ -5593,7 +5481,7 @@ dependencies = [
|
|
|
5593
5481
|
"strum 0.26.3",
|
|
5594
5482
|
"strum_macros 0.26.4",
|
|
5595
5483
|
"tempfile",
|
|
5596
|
-
"thiserror
|
|
5484
|
+
"thiserror",
|
|
5597
5485
|
"tracing",
|
|
5598
5486
|
"tracing-subscriber",
|
|
5599
5487
|
"turso_ext",
|
|
@@ -5638,7 +5526,7 @@ dependencies = [
|
|
|
5638
5526
|
"miette",
|
|
5639
5527
|
"strum 0.26.3",
|
|
5640
5528
|
"strum_macros 0.26.4",
|
|
5641
|
-
"thiserror
|
|
5529
|
+
"thiserror",
|
|
5642
5530
|
"turso_macros",
|
|
5643
5531
|
]
|
|
5644
5532
|
|
|
@@ -5659,9 +5547,9 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
|
5659
5547
|
|
|
5660
5548
|
[[package]]
|
|
5661
5549
|
name = "typenum"
|
|
5662
|
-
version = "1.20.
|
|
5550
|
+
version = "1.20.1"
|
|
5663
5551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5664
|
-
checksum = "
|
|
5552
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
5665
5553
|
|
|
5666
5554
|
[[package]]
|
|
5667
5555
|
name = "unarray"
|
|
@@ -5707,9 +5595,9 @@ dependencies = [
|
|
|
5707
5595
|
|
|
5708
5596
|
[[package]]
|
|
5709
5597
|
name = "unicode-segmentation"
|
|
5710
|
-
version = "1.13.
|
|
5598
|
+
version = "1.13.3"
|
|
5711
5599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5712
|
-
checksum = "
|
|
5600
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
5713
5601
|
|
|
5714
5602
|
[[package]]
|
|
5715
5603
|
name = "unicode-width"
|
|
@@ -5773,7 +5661,7 @@ version = "0.6.1"
|
|
|
5773
5661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5774
5662
|
checksum = "f4987bdc12753382e0bec4a65c50738ffaabc998b9cdd1f952fb5f39b0048a96"
|
|
5775
5663
|
dependencies = [
|
|
5776
|
-
"crypto-common 0.2.
|
|
5664
|
+
"crypto-common 0.2.2",
|
|
5777
5665
|
"ctutils",
|
|
5778
5666
|
]
|
|
5779
5667
|
|
|
@@ -5821,9 +5709,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
5821
5709
|
|
|
5822
5710
|
[[package]]
|
|
5823
5711
|
name = "uuid"
|
|
5824
|
-
version = "1.23.
|
|
5712
|
+
version = "1.23.3"
|
|
5825
5713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5826
|
-
checksum = "
|
|
5714
|
+
checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
|
|
5827
5715
|
dependencies = [
|
|
5828
5716
|
"getrandom 0.4.2",
|
|
5829
5717
|
"js-sys",
|
|
@@ -5897,9 +5785,9 @@ dependencies = [
|
|
|
5897
5785
|
|
|
5898
5786
|
[[package]]
|
|
5899
5787
|
name = "wasm-bindgen"
|
|
5900
|
-
version = "0.2.
|
|
5788
|
+
version = "0.2.123"
|
|
5901
5789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5902
|
-
checksum = "
|
|
5790
|
+
checksum = "a254a4b10c19a76f09a27640e7ffbf9bc30bf67e16a3bf28aaefa4920fe81563"
|
|
5903
5791
|
dependencies = [
|
|
5904
5792
|
"cfg-if",
|
|
5905
5793
|
"once_cell",
|
|
@@ -5910,9 +5798,9 @@ dependencies = [
|
|
|
5910
5798
|
|
|
5911
5799
|
[[package]]
|
|
5912
5800
|
name = "wasm-bindgen-futures"
|
|
5913
|
-
version = "0.4.
|
|
5801
|
+
version = "0.4.73"
|
|
5914
5802
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5915
|
-
checksum = "
|
|
5803
|
+
checksum = "54568702fabf5d4849ce2b90fadfa64168a097eaf4b351ce9df8b687a0086aaf"
|
|
5916
5804
|
dependencies = [
|
|
5917
5805
|
"js-sys",
|
|
5918
5806
|
"wasm-bindgen",
|
|
@@ -5920,9 +5808,9 @@ dependencies = [
|
|
|
5920
5808
|
|
|
5921
5809
|
[[package]]
|
|
5922
5810
|
name = "wasm-bindgen-macro"
|
|
5923
|
-
version = "0.2.
|
|
5811
|
+
version = "0.2.123"
|
|
5924
5812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5925
|
-
checksum = "
|
|
5813
|
+
checksum = "24a40fc75b0ec6f3746ceb10d36f53a93dcd68a93b11b6445983945d79eba0dc"
|
|
5926
5814
|
dependencies = [
|
|
5927
5815
|
"quote",
|
|
5928
5816
|
"wasm-bindgen-macro-support",
|
|
@@ -5930,9 +5818,9 @@ dependencies = [
|
|
|
5930
5818
|
|
|
5931
5819
|
[[package]]
|
|
5932
5820
|
name = "wasm-bindgen-macro-support"
|
|
5933
|
-
version = "0.2.
|
|
5821
|
+
version = "0.2.123"
|
|
5934
5822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5935
|
-
checksum = "
|
|
5823
|
+
checksum = "908f34bd9b9ce3d4caf07b72dfab63d61504d156856c6bd3cd87fa350cf3985b"
|
|
5936
5824
|
dependencies = [
|
|
5937
5825
|
"bumpalo",
|
|
5938
5826
|
"proc-macro2",
|
|
@@ -5943,9 +5831,9 @@ dependencies = [
|
|
|
5943
5831
|
|
|
5944
5832
|
[[package]]
|
|
5945
5833
|
name = "wasm-bindgen-shared"
|
|
5946
|
-
version = "0.2.
|
|
5834
|
+
version = "0.2.123"
|
|
5947
5835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5948
|
-
checksum = "
|
|
5836
|
+
checksum = "7acbf7616c27b194bbb550bf77ed0c2c3e5b7fd1260a93082b95fb7f47959b92"
|
|
5949
5837
|
dependencies = [
|
|
5950
5838
|
"unicode-ident",
|
|
5951
5839
|
]
|
|
@@ -5999,9 +5887,9 @@ dependencies = [
|
|
|
5999
5887
|
|
|
6000
5888
|
[[package]]
|
|
6001
5889
|
name = "web-sys"
|
|
6002
|
-
version = "0.3.
|
|
5890
|
+
version = "0.3.100"
|
|
6003
5891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6004
|
-
checksum = "
|
|
5892
|
+
checksum = "6e0871acf327f283dc6da28a1696cdc64fb355ba9f935d052021fa77f35cce69"
|
|
6005
5893
|
dependencies = [
|
|
6006
5894
|
"js-sys",
|
|
6007
5895
|
"wasm-bindgen",
|
|
@@ -6038,7 +5926,7 @@ version = "0.1.11"
|
|
|
6038
5926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6039
5927
|
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
6040
5928
|
dependencies = [
|
|
6041
|
-
"windows-sys 0.
|
|
5929
|
+
"windows-sys 0.61.2",
|
|
6042
5930
|
]
|
|
6043
5931
|
|
|
6044
5932
|
[[package]]
|
|
@@ -6362,9 +6250,9 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
6362
6250
|
|
|
6363
6251
|
[[package]]
|
|
6364
6252
|
name = "yoke"
|
|
6365
|
-
version = "0.8.
|
|
6253
|
+
version = "0.8.3"
|
|
6366
6254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6367
|
-
checksum = "
|
|
6255
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
6368
6256
|
dependencies = [
|
|
6369
6257
|
"stable_deref_trait",
|
|
6370
6258
|
"yoke-derive",
|
|
@@ -6397,23 +6285,23 @@ dependencies = [
|
|
|
6397
6285
|
"oxc_syntax",
|
|
6398
6286
|
"postcard",
|
|
6399
6287
|
"serde",
|
|
6400
|
-
"thiserror
|
|
6288
|
+
"thiserror",
|
|
6401
6289
|
]
|
|
6402
6290
|
|
|
6403
6291
|
[[package]]
|
|
6404
6292
|
name = "zerocopy"
|
|
6405
|
-
version = "0.8.
|
|
6293
|
+
version = "0.8.52"
|
|
6406
6294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6407
|
-
checksum = "
|
|
6295
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
6408
6296
|
dependencies = [
|
|
6409
6297
|
"zerocopy-derive",
|
|
6410
6298
|
]
|
|
6411
6299
|
|
|
6412
6300
|
[[package]]
|
|
6413
6301
|
name = "zerocopy-derive"
|
|
6414
|
-
version = "0.8.
|
|
6302
|
+
version = "0.8.52"
|
|
6415
6303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6416
|
-
checksum = "
|
|
6304
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
6417
6305
|
dependencies = [
|
|
6418
6306
|
"proc-macro2",
|
|
6419
6307
|
"quote",
|