bashkit 0.1.14__tar.gz → 0.1.16__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.1.14 → bashkit-0.1.16}/Cargo.lock +2265 -171
- {bashkit-0.1.14 → bashkit-0.1.16}/Cargo.toml +11 -3
- {bashkit-0.1.14 → bashkit-0.1.16}/PKG-INFO +48 -2
- {bashkit-0.1.14/crates/bashkit-python → bashkit-0.1.16}/README.md +43 -1
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/Cargo.toml +35 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/README.md +145 -30
- bashkit-0.1.16/crates/bashkit/docs/ssh.md +77 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/docs/threat-model.md +3 -0
- bashkit-0.1.16/crates/bashkit/docs/typescript.md +252 -0
- bashkit-0.1.16/crates/bashkit/examples/ssh_supabase.rs +29 -0
- bashkit-0.1.16/crates/bashkit/examples/typescript_external_functions.rs +61 -0
- bashkit-0.1.16/crates/bashkit/examples/typescript_scripts.rs +184 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/archive.rs +60 -25
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/arg_parser.rs +64 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/awk.rs +275 -19
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/base64.rs +21 -33
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/checksum.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/clear.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/column.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/comm.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/compgen.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/csv.rs +4 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/curl.rs +352 -20
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/cuttr.rs +15 -12
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/date.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/diff.rs +163 -18
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/dotenv.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/environ.rs +26 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/envsubst.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/expand.rs +4 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/fileops.rs +16 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/flow.rs +5 -3
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/fold.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/glob_cmd.rs +4 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/grep.rs +109 -6
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/headtail.rs +4 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/hextools.rs +8 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/http.rs +108 -15
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/iconv.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/inspect.rs +40 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/join.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/jq.rs +34 -3
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/json.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/ls.rs +295 -24
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/mod.rs +31 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/nl.rs +4 -0
- bashkit-0.1.16/crates/bashkit/src/builtins/numfmt.rs +586 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/parallel.rs +65 -5
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/paste.rs +65 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/patch.rs +92 -1
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/path.rs +6 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/pipeline.rs +36 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/printf.rs +28 -2
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/python.rs +10 -1
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/read.rs +150 -37
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/rg.rs +55 -26
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/search_common.rs +24 -3
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/sed.rs +56 -10
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/semver.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/sleep.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/sortuniq.rs +355 -129
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/split.rs +2 -0
- bashkit-0.1.16/crates/bashkit/src/builtins/ssh.rs +700 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/strings.rs +4 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/system.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/template.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/timeout.rs +4 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/tomlq.rs +4 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/tree.rs +64 -20
- bashkit-0.1.16/crates/bashkit/src/builtins/typescript.rs +1284 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/vars.rs +25 -1
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/verify.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/wc.rs +2 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/yaml.rs +4 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/zip_cmd.rs +10 -0
- bashkit-0.1.16/crates/bashkit/src/error.rs +195 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/fs/memory.rs +332 -8
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/fs/mod.rs +1 -1
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/fs/mountable.rs +31 -7
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/fs/overlay.rs +71 -14
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/fs/realfs.rs +164 -20
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/fs/traits.rs +17 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/interpreter/mod.rs +719 -131
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/interpreter/state.rs +6 -1
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/lib.rs +446 -14
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/limits.rs +93 -1
- bashkit-0.1.16/crates/bashkit/src/network/bot_auth.rs +327 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/network/client.rs +157 -4
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/network/mod.rs +8 -1
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/parser/ast.rs +37 -3
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/parser/lexer.rs +75 -7
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/parser/mod.rs +397 -12
- bashkit-0.1.16/crates/bashkit/src/snapshot.rs +241 -0
- bashkit-0.1.16/crates/bashkit/src/ssh/allowlist.rs +300 -0
- bashkit-0.1.16/crates/bashkit/src/ssh/client.rs +374 -0
- bashkit-0.1.16/crates/bashkit/src/ssh/config.rs +223 -0
- bashkit-0.1.16/crates/bashkit/src/ssh/handler.rs +128 -0
- bashkit-0.1.16/crates/bashkit/src/ssh/mod.rs +50 -0
- bashkit-0.1.16/crates/bashkit/src/ssh/russh_handler.rs +266 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/trace.rs +115 -4
- bashkit-0.1.16/crates/bashkit/tests/awk_fuzz_scaffold_tests.rs +62 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/bash_source_tests.rs +48 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/blackbox_security_tests.rs +45 -0
- bashkit-0.1.16/crates/bashkit/tests/byte_range_panic_tests.rs +55 -0
- bashkit-0.1.16/crates/bashkit/tests/jq_fuzz_scaffold_tests.rs +57 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/network_security_tests.rs +54 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/realfs_tests.rs +107 -0
- bashkit-0.1.16/crates/bashkit/tests/regex_limit_tests.rs +110 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/script_execution_tests.rs +12 -2
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/set_e_and_or_tests.rs +24 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/snapshot_tests.rs +206 -1
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +31 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +35 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +22 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +54 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +39 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +33 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +23 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +15 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +22 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +2 -3
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +30 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +26 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +30 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +35 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +32 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +16 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +10 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +37 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +18 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +95 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/find.test.sh +28 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +35 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +31 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/ls.test.sh +117 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +43 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +80 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +20 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +29 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +44 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +36 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +8 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +26 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +93 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +8 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/tree.test.sh +11 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +27 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +43 -1
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +25 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +21 -0
- bashkit-0.1.16/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +337 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_tests.rs +74 -0
- bashkit-0.1.16/crates/bashkit/tests/ssh_builtin_tests.rs +316 -0
- bashkit-0.1.16/crates/bashkit/tests/ssh_supabase_tests.rs +40 -0
- bashkit-0.1.16/crates/bashkit/tests/stack_overflow_regression_tests.rs +58 -0
- bashkit-0.1.16/crates/bashkit/tests/subst_depth_limit_tests.rs +102 -0
- bashkit-0.1.16/crates/bashkit/tests/symlink_overlay_security_tests.rs +228 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/threat_model_tests.rs +309 -3
- bashkit-0.1.16/crates/bashkit/tests/typescript_integration_tests.rs +277 -0
- bashkit-0.1.16/crates/bashkit/tests/typescript_security_tests.rs +752 -0
- {bashkit-0.1.14 → bashkit-0.1.16/crates/bashkit-python}/README.md +43 -1
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit-python/src/lib.rs +66 -12
- {bashkit-0.1.14 → bashkit-0.1.16}/pyproject.toml +6 -0
- bashkit-0.1.14/crates/bashkit/src/error.rs +0 -89
- bashkit-0.1.14/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -42
- {bashkit-0.1.14 → bashkit-0.1.16}/bashkit/__init__.py +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/bashkit/_bashkit.pyi +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/bashkit/deepagents.py +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/bashkit/langchain.py +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/bashkit/py.typed +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/bashkit/pydantic_ai.py +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/benches/parallel_execution.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/docs/compatibility.md +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/docs/custom_builtins.md +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/docs/live_mounts.md +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/docs/logging.md +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/docs/python.md +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/agent_tool.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/basic.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/custom_backend.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/custom_builtins.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/custom_fs.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/git_workflow.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/live_mounts.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/python_external_functions.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/python_scripts.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/realfs_readonly.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/resource_limits.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/scripted_tool.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/show_tool_output.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/streaming_output.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/text_files.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/text_processing.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/examples/virtual_identity.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/alias.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/assert.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/bc.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/caller.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/cat.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/dirstack.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/disk.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/echo.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/export.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/expr.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/fc.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/git.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/help.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/introspect.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/log.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/mapfile.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/navigation.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/retry.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/seq.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/source.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/test.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/textrev.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/trap.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/wait.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/builtins/yes.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/fs/backend.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/fs/limits.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/fs/posix.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/fs/search.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/git/client.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/git/config.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/git/mod.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/interpreter/glob.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/interpreter/jobs.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/logging_impl.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/network/allowlist.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/parser/budget.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/parser/span.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/parser/tokens.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/scripted_tool/execute.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/scripted_tool/mod.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/src/tool.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/allexport_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/awk_newline_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/awk_pattern_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/awk_printf_expr_test.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/background_exec_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/builtin_error_security_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/cancellation_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/cmdsub_quote_test.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/coproc_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/custom_builtins_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/custom_fs_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/dev_null_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/final_env_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/find_multi_path_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/git_advanced_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/git_inspection_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/git_integration_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/git_remote_security_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/git_security_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/history_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/issue_274_test.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/issue_275_279_282_test.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/issue_276_test.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/issue_277_test.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/issue_289_test.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/issue_290_test.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/issue_291_test.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/issue_853_test.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/issue_872_test.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/issue_873_test.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/issue_875_test.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/live_mount_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/logging_security_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/mkfifo_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/nested_subscript_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/output_truncation_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/overlay_path_validation_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/proptest_differential.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/proptest_security.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/python_integration_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/python_security_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/security_audit_pocs.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/skills_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/source_function_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/spec_runner.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/tty_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/unicode_security_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/unset_function_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit/tests/urandom_tests.rs +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit-python/Cargo.toml +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit-python/examples/bash_basics.py +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit-python/tests/test_bashkit.py +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit-python/tests/test_frameworks.py +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit-python/tests/test_integration.py +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit-python/tests/test_python_security.py +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit-python/tests/test_security.py +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit-python/tests/test_security_advanced.py +0 -0
- {bashkit-0.1.14 → bashkit-0.1.16}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
|
@@ -8,6 +8,76 @@ version = "2.0.1"
|
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
9
|
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
10
|
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aead"
|
|
13
|
+
version = "0.5.2"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"crypto-common 0.1.7",
|
|
18
|
+
"generic-array 0.14.7",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[[package]]
|
|
22
|
+
name = "aead"
|
|
23
|
+
version = "0.6.0-rc.10"
|
|
24
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
+
checksum = "6b657e772794c6b04730ea897b66a058ccd866c16d1967da05eeeecec39043fe"
|
|
26
|
+
dependencies = [
|
|
27
|
+
"crypto-common 0.2.1",
|
|
28
|
+
"inout 0.2.2",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "aes"
|
|
33
|
+
version = "0.8.4"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"cfg-if",
|
|
38
|
+
"cipher 0.4.4",
|
|
39
|
+
"cpufeatures 0.2.17",
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
[[package]]
|
|
43
|
+
name = "aes"
|
|
44
|
+
version = "0.9.0-rc.4"
|
|
45
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
+
checksum = "04097e08a47d9ad181c2e1f4a5fabc9ae06ce8839a333ba9a949bcb0d31fd2a3"
|
|
47
|
+
dependencies = [
|
|
48
|
+
"cipher 0.5.1",
|
|
49
|
+
"cpubits",
|
|
50
|
+
"cpufeatures 0.2.17",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "aes-gcm"
|
|
55
|
+
version = "0.10.3"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
|
|
58
|
+
dependencies = [
|
|
59
|
+
"aead 0.5.2",
|
|
60
|
+
"aes 0.8.4",
|
|
61
|
+
"cipher 0.4.4",
|
|
62
|
+
"ctr 0.9.2",
|
|
63
|
+
"ghash 0.5.1",
|
|
64
|
+
"subtle",
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "aes-gcm"
|
|
69
|
+
version = "0.11.0-rc.3"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "e22c0c90bbe8d4f77c3ca9ddabe41a1f8382d6fc1f7cea89459d0f320371f972"
|
|
72
|
+
dependencies = [
|
|
73
|
+
"aead 0.6.0-rc.10",
|
|
74
|
+
"aes 0.9.0-rc.4",
|
|
75
|
+
"cipher 0.5.1",
|
|
76
|
+
"ctr 0.10.0-rc.4",
|
|
77
|
+
"ghash 0.6.0",
|
|
78
|
+
"subtle",
|
|
79
|
+
]
|
|
80
|
+
|
|
11
81
|
[[package]]
|
|
12
82
|
name = "ahash"
|
|
13
83
|
version = "0.8.12"
|
|
@@ -126,6 +196,18 @@ dependencies = [
|
|
|
126
196
|
"num-traits",
|
|
127
197
|
]
|
|
128
198
|
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "argon2"
|
|
201
|
+
version = "0.5.3"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
|
|
204
|
+
dependencies = [
|
|
205
|
+
"base64ct",
|
|
206
|
+
"blake2",
|
|
207
|
+
"cpufeatures 0.2.17",
|
|
208
|
+
"password-hash",
|
|
209
|
+
]
|
|
210
|
+
|
|
129
211
|
[[package]]
|
|
130
212
|
name = "async-trait"
|
|
131
213
|
version = "0.1.89"
|
|
@@ -195,6 +277,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
195
277
|
checksum = "a054912289d18629dc78375ba2c3726a3afe3ff71b4edba9dedfca0e3446d1fc"
|
|
196
278
|
dependencies = [
|
|
197
279
|
"aws-lc-sys",
|
|
280
|
+
"untrusted 0.7.1",
|
|
198
281
|
"zeroize",
|
|
199
282
|
]
|
|
200
283
|
|
|
@@ -210,21 +293,40 @@ dependencies = [
|
|
|
210
293
|
"fs_extra",
|
|
211
294
|
]
|
|
212
295
|
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "base16ct"
|
|
298
|
+
version = "0.2.0"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "base16ct"
|
|
304
|
+
version = "1.0.0"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "fd307490d624467aa6f74b0eabb77633d1f758a7b25f12bceb0b22e08d9726f6"
|
|
307
|
+
|
|
213
308
|
[[package]]
|
|
214
309
|
name = "base64"
|
|
215
310
|
version = "0.22.1"
|
|
216
311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
312
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
218
313
|
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "base64ct"
|
|
316
|
+
version = "1.8.3"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
319
|
+
|
|
219
320
|
[[package]]
|
|
220
321
|
name = "bashkit"
|
|
221
|
-
version = "0.1.
|
|
322
|
+
version = "0.1.16"
|
|
222
323
|
dependencies = [
|
|
223
324
|
"anyhow",
|
|
224
325
|
"async-trait",
|
|
225
326
|
"base64",
|
|
226
327
|
"chrono",
|
|
227
328
|
"criterion",
|
|
329
|
+
"ed25519-dalek 2.2.0",
|
|
228
330
|
"fail",
|
|
229
331
|
"flate2",
|
|
230
332
|
"futures",
|
|
@@ -237,14 +339,17 @@ dependencies = [
|
|
|
237
339
|
"monty",
|
|
238
340
|
"pretty_assertions",
|
|
239
341
|
"proptest",
|
|
342
|
+
"rand 0.10.0",
|
|
240
343
|
"regex",
|
|
241
344
|
"reqwest",
|
|
345
|
+
"russh",
|
|
346
|
+
"russh-keys",
|
|
242
347
|
"schemars",
|
|
243
348
|
"serde",
|
|
244
349
|
"serde_json",
|
|
245
350
|
"serial_test",
|
|
246
|
-
"sha1",
|
|
247
|
-
"sha2",
|
|
351
|
+
"sha1 0.11.0",
|
|
352
|
+
"sha2 0.11.0",
|
|
248
353
|
"tempfile",
|
|
249
354
|
"thiserror 2.0.18",
|
|
250
355
|
"tokio",
|
|
@@ -252,11 +357,12 @@ dependencies = [
|
|
|
252
357
|
"tower",
|
|
253
358
|
"tracing",
|
|
254
359
|
"url",
|
|
360
|
+
"zapcode-core",
|
|
255
361
|
]
|
|
256
362
|
|
|
257
363
|
[[package]]
|
|
258
364
|
name = "bashkit-bench"
|
|
259
|
-
version = "0.1.
|
|
365
|
+
version = "0.1.16"
|
|
260
366
|
dependencies = [
|
|
261
367
|
"anyhow",
|
|
262
368
|
"bashkit",
|
|
@@ -272,7 +378,7 @@ dependencies = [
|
|
|
272
378
|
|
|
273
379
|
[[package]]
|
|
274
380
|
name = "bashkit-cli"
|
|
275
|
-
version = "0.1.
|
|
381
|
+
version = "0.1.16"
|
|
276
382
|
dependencies = [
|
|
277
383
|
"anyhow",
|
|
278
384
|
"bashkit",
|
|
@@ -285,7 +391,7 @@ dependencies = [
|
|
|
285
391
|
|
|
286
392
|
[[package]]
|
|
287
393
|
name = "bashkit-eval"
|
|
288
|
-
version = "0.1.
|
|
394
|
+
version = "0.1.16"
|
|
289
395
|
dependencies = [
|
|
290
396
|
"anyhow",
|
|
291
397
|
"async-trait",
|
|
@@ -301,7 +407,7 @@ dependencies = [
|
|
|
301
407
|
|
|
302
408
|
[[package]]
|
|
303
409
|
name = "bashkit-js"
|
|
304
|
-
version = "0.1.
|
|
410
|
+
version = "0.1.16"
|
|
305
411
|
dependencies = [
|
|
306
412
|
"bashkit",
|
|
307
413
|
"napi",
|
|
@@ -314,7 +420,7 @@ dependencies = [
|
|
|
314
420
|
|
|
315
421
|
[[package]]
|
|
316
422
|
name = "bashkit-python"
|
|
317
|
-
version = "0.1.
|
|
423
|
+
version = "0.1.16"
|
|
318
424
|
dependencies = [
|
|
319
425
|
"bashkit",
|
|
320
426
|
"num-bigint",
|
|
@@ -324,6 +430,17 @@ dependencies = [
|
|
|
324
430
|
"tokio",
|
|
325
431
|
]
|
|
326
432
|
|
|
433
|
+
[[package]]
|
|
434
|
+
name = "bcrypt-pbkdf"
|
|
435
|
+
version = "0.10.0"
|
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
+
checksum = "6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2"
|
|
438
|
+
dependencies = [
|
|
439
|
+
"blowfish",
|
|
440
|
+
"pbkdf2 0.12.2",
|
|
441
|
+
"sha2 0.10.9",
|
|
442
|
+
]
|
|
443
|
+
|
|
327
444
|
[[package]]
|
|
328
445
|
name = "bit-set"
|
|
329
446
|
version = "0.8.0"
|
|
@@ -345,6 +462,24 @@ version = "2.11.0"
|
|
|
345
462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
463
|
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
347
464
|
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "blake2"
|
|
467
|
+
version = "0.10.6"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"digest 0.10.7",
|
|
472
|
+
]
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "block-buffer"
|
|
476
|
+
version = "0.10.4"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
479
|
+
dependencies = [
|
|
480
|
+
"generic-array 0.14.7",
|
|
481
|
+
]
|
|
482
|
+
|
|
348
483
|
[[package]]
|
|
349
484
|
name = "block-buffer"
|
|
350
485
|
version = "0.12.0"
|
|
@@ -354,6 +489,34 @@ dependencies = [
|
|
|
354
489
|
"hybrid-array",
|
|
355
490
|
]
|
|
356
491
|
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "block-padding"
|
|
494
|
+
version = "0.3.3"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
|
|
497
|
+
dependencies = [
|
|
498
|
+
"generic-array 0.14.7",
|
|
499
|
+
]
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "block-padding"
|
|
503
|
+
version = "0.4.2"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "710f1dd022ef4e93f8a438b4ba958de7f64308434fa6a87104481645cc30068b"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"hybrid-array",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "blowfish"
|
|
512
|
+
version = "0.9.1"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"byteorder",
|
|
517
|
+
"cipher 0.4.4",
|
|
518
|
+
]
|
|
519
|
+
|
|
357
520
|
[[package]]
|
|
358
521
|
name = "bstr"
|
|
359
522
|
version = "1.12.1"
|
|
@@ -410,11 +573,29 @@ dependencies = [
|
|
|
410
573
|
"rustversion",
|
|
411
574
|
]
|
|
412
575
|
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "cbc"
|
|
578
|
+
version = "0.1.2"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
|
|
581
|
+
dependencies = [
|
|
582
|
+
"cipher 0.4.4",
|
|
583
|
+
]
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "cbc"
|
|
587
|
+
version = "0.2.0-rc.4"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "ab1412b9ae2463ede01f1e591412dfbcfeacecf40e8c4c3e0655814c19065c38"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"cipher 0.5.1",
|
|
592
|
+
]
|
|
593
|
+
|
|
413
594
|
[[package]]
|
|
414
595
|
name = "cc"
|
|
415
|
-
version = "1.2.
|
|
596
|
+
version = "1.2.59"
|
|
416
597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
-
checksum = "
|
|
598
|
+
checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
|
|
418
599
|
dependencies = [
|
|
419
600
|
"find-msvc-tools",
|
|
420
601
|
"jobserver",
|
|
@@ -440,6 +621,28 @@ version = "0.2.1"
|
|
|
440
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
622
|
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
442
623
|
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "chacha20"
|
|
626
|
+
version = "0.9.1"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"cfg-if",
|
|
631
|
+
"cipher 0.4.4",
|
|
632
|
+
"cpufeatures 0.2.17",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "chacha20"
|
|
637
|
+
version = "0.10.0"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"cfg-if",
|
|
642
|
+
"cpufeatures 0.3.0",
|
|
643
|
+
"rand_core 0.10.0",
|
|
644
|
+
]
|
|
645
|
+
|
|
443
646
|
[[package]]
|
|
444
647
|
name = "chrono"
|
|
445
648
|
version = "0.4.44"
|
|
@@ -480,6 +683,27 @@ dependencies = [
|
|
|
480
683
|
"half",
|
|
481
684
|
]
|
|
482
685
|
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "cipher"
|
|
688
|
+
version = "0.4.4"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
691
|
+
dependencies = [
|
|
692
|
+
"crypto-common 0.1.7",
|
|
693
|
+
"inout 0.1.4",
|
|
694
|
+
]
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "cipher"
|
|
698
|
+
version = "0.5.1"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "e34d8227fe1ba289043aeb13792056ff80fd6de1a9f49137a5f499de8e8c78ea"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"block-buffer 0.12.0",
|
|
703
|
+
"crypto-common 0.2.1",
|
|
704
|
+
"inout 0.2.2",
|
|
705
|
+
]
|
|
706
|
+
|
|
483
707
|
[[package]]
|
|
484
708
|
name = "clap"
|
|
485
709
|
version = "4.6.0"
|
|
@@ -529,6 +753,12 @@ dependencies = [
|
|
|
529
753
|
"cc",
|
|
530
754
|
]
|
|
531
755
|
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "cmov"
|
|
758
|
+
version = "0.5.3"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "3f88a43d011fc4a6876cb7344703e297c71dda42494fee094d5f7c76bf13f746"
|
|
761
|
+
|
|
532
762
|
[[package]]
|
|
533
763
|
name = "cobs"
|
|
534
764
|
version = "0.3.0"
|
|
@@ -594,6 +824,12 @@ dependencies = [
|
|
|
594
824
|
"windows-sys 0.61.2",
|
|
595
825
|
]
|
|
596
826
|
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "const-oid"
|
|
829
|
+
version = "0.9.6"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
832
|
+
|
|
597
833
|
[[package]]
|
|
598
834
|
name = "const-oid"
|
|
599
835
|
version = "0.10.2"
|
|
@@ -625,6 +861,27 @@ version = "0.8.7"
|
|
|
625
861
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
862
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
627
863
|
|
|
864
|
+
[[package]]
|
|
865
|
+
name = "cow-utils"
|
|
866
|
+
version = "0.1.3"
|
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
+
checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
|
|
869
|
+
|
|
870
|
+
[[package]]
|
|
871
|
+
name = "cpubits"
|
|
872
|
+
version = "0.1.0"
|
|
873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
+
checksum = "5ef0c543070d296ea414df2dd7625d1b24866ce206709d8a4a424f28377f5861"
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "cpufeatures"
|
|
878
|
+
version = "0.2.17"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
881
|
+
dependencies = [
|
|
882
|
+
"libc",
|
|
883
|
+
]
|
|
884
|
+
|
|
628
885
|
[[package]]
|
|
629
886
|
name = "cpufeatures"
|
|
630
887
|
version = "0.3.0"
|
|
@@ -716,20 +973,72 @@ version = "0.2.4"
|
|
|
716
973
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
974
|
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
718
975
|
|
|
976
|
+
[[package]]
|
|
977
|
+
name = "crypto-bigint"
|
|
978
|
+
version = "0.5.5"
|
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
+
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
|
981
|
+
dependencies = [
|
|
982
|
+
"generic-array 0.14.7",
|
|
983
|
+
"rand_core 0.6.4",
|
|
984
|
+
"subtle",
|
|
985
|
+
"zeroize",
|
|
986
|
+
]
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "crypto-bigint"
|
|
990
|
+
version = "0.7.3"
|
|
991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
992
|
+
checksum = "42a0d26b245348befa0c121944541476763dcc46ede886c88f9d12e1697d27c3"
|
|
993
|
+
dependencies = [
|
|
994
|
+
"cpubits",
|
|
995
|
+
"ctutils",
|
|
996
|
+
"getrandom 0.4.2",
|
|
997
|
+
"hybrid-array",
|
|
998
|
+
"num-traits",
|
|
999
|
+
"rand_core 0.10.0",
|
|
1000
|
+
"serdect",
|
|
1001
|
+
"subtle",
|
|
1002
|
+
"zeroize",
|
|
1003
|
+
]
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "crypto-common"
|
|
1007
|
+
version = "0.1.7"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
1010
|
+
dependencies = [
|
|
1011
|
+
"generic-array 0.14.7",
|
|
1012
|
+
"typenum",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
719
1015
|
[[package]]
|
|
720
1016
|
name = "crypto-common"
|
|
721
1017
|
version = "0.2.1"
|
|
722
1018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
1019
|
checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
|
|
724
1020
|
dependencies = [
|
|
1021
|
+
"getrandom 0.4.2",
|
|
725
1022
|
"hybrid-array",
|
|
1023
|
+
"rand_core 0.10.0",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "crypto-primes"
|
|
1028
|
+
version = "0.7.0"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "21f41f23de7d24cdbda7f0c4d9c0351f99a4ceb258ef30e5c1927af8987ffe5a"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"crypto-bigint 0.7.3",
|
|
1033
|
+
"libm",
|
|
1034
|
+
"rand_core 0.10.0",
|
|
726
1035
|
]
|
|
727
1036
|
|
|
728
1037
|
[[package]]
|
|
729
1038
|
name = "ctor"
|
|
730
|
-
version = "0.
|
|
1039
|
+
version = "0.8.0"
|
|
731
1040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
-
checksum = "
|
|
1041
|
+
checksum = "352d39c2f7bef1d6ad73db6f5160efcaed66d94ef8c6c573a8410c00bf909a98"
|
|
733
1042
|
dependencies = [
|
|
734
1043
|
"ctor-proc-macro",
|
|
735
1044
|
"dtor",
|
|
@@ -742,95 +1051,360 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
742
1051
|
checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
|
|
743
1052
|
|
|
744
1053
|
[[package]]
|
|
745
|
-
name = "
|
|
746
|
-
version = "
|
|
1054
|
+
name = "ctr"
|
|
1055
|
+
version = "0.9.2"
|
|
747
1056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
-
checksum = "
|
|
1057
|
+
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
|
|
749
1058
|
dependencies = [
|
|
750
|
-
"
|
|
751
|
-
"quote",
|
|
752
|
-
"syn",
|
|
1059
|
+
"cipher 0.4.4",
|
|
753
1060
|
]
|
|
754
1061
|
|
|
755
1062
|
[[package]]
|
|
756
|
-
name = "
|
|
757
|
-
version = "0.
|
|
1063
|
+
name = "ctr"
|
|
1064
|
+
version = "0.10.0-rc.4"
|
|
758
1065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
-
checksum = "
|
|
1066
|
+
checksum = "fee683dd898fbd052617b4514bc31f98bc32081a83b69ec46adef3b1ef4ae36f"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"cipher 0.5.1",
|
|
1069
|
+
]
|
|
760
1070
|
|
|
761
1071
|
[[package]]
|
|
762
|
-
name = "
|
|
763
|
-
version = "0.
|
|
1072
|
+
name = "ctutils"
|
|
1073
|
+
version = "0.4.2"
|
|
764
1074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
-
checksum = "
|
|
1075
|
+
checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
|
|
766
1076
|
dependencies = [
|
|
767
|
-
"
|
|
768
|
-
"
|
|
769
|
-
"crypto-common",
|
|
1077
|
+
"cmov",
|
|
1078
|
+
"subtle",
|
|
770
1079
|
]
|
|
771
1080
|
|
|
772
1081
|
[[package]]
|
|
773
|
-
name = "
|
|
774
|
-
version = "
|
|
1082
|
+
name = "curve25519-dalek"
|
|
1083
|
+
version = "4.1.3"
|
|
775
1084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
-
checksum = "
|
|
1085
|
+
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
|
777
1086
|
dependencies = [
|
|
778
|
-
"
|
|
779
|
-
"
|
|
780
|
-
"
|
|
1087
|
+
"cfg-if",
|
|
1088
|
+
"cpufeatures 0.2.17",
|
|
1089
|
+
"curve25519-dalek-derive",
|
|
1090
|
+
"digest 0.10.7",
|
|
1091
|
+
"fiat-crypto 0.2.9",
|
|
1092
|
+
"rustc_version",
|
|
1093
|
+
"subtle",
|
|
1094
|
+
"zeroize",
|
|
781
1095
|
]
|
|
782
1096
|
|
|
783
1097
|
[[package]]
|
|
784
|
-
name = "
|
|
785
|
-
version = "0.
|
|
1098
|
+
name = "curve25519-dalek"
|
|
1099
|
+
version = "5.0.0-pre.6"
|
|
786
1100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
-
checksum = "
|
|
1101
|
+
checksum = "335f1947f241137a14106b6f5acc5918a5ede29c9d71d3f2cb1678d5075d9fc3"
|
|
788
1102
|
dependencies = [
|
|
789
|
-
"
|
|
1103
|
+
"cfg-if",
|
|
1104
|
+
"cpufeatures 0.2.17",
|
|
1105
|
+
"curve25519-dalek-derive",
|
|
1106
|
+
"digest 0.11.2",
|
|
1107
|
+
"fiat-crypto 0.3.0",
|
|
1108
|
+
"rustc_version",
|
|
1109
|
+
"subtle",
|
|
1110
|
+
"zeroize",
|
|
790
1111
|
]
|
|
791
1112
|
|
|
792
1113
|
[[package]]
|
|
793
|
-
name = "
|
|
794
|
-
version = "0.
|
|
1114
|
+
name = "curve25519-dalek-derive"
|
|
1115
|
+
version = "0.1.1"
|
|
795
1116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
-
checksum = "
|
|
1117
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
1118
|
+
dependencies = [
|
|
1119
|
+
"proc-macro2",
|
|
1120
|
+
"quote",
|
|
1121
|
+
"syn",
|
|
1122
|
+
]
|
|
797
1123
|
|
|
798
1124
|
[[package]]
|
|
799
|
-
name = "
|
|
800
|
-
version = "
|
|
1125
|
+
name = "data-encoding"
|
|
1126
|
+
version = "2.10.0"
|
|
801
1127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
-
checksum = "
|
|
1128
|
+
checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
|
|
803
1129
|
|
|
804
1130
|
[[package]]
|
|
805
|
-
name = "
|
|
806
|
-
version = "
|
|
1131
|
+
name = "delegate"
|
|
1132
|
+
version = "0.13.5"
|
|
807
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
-
checksum = "
|
|
1134
|
+
checksum = "780eb241654bf097afb00fc5f054a09b687dad862e485fdcf8399bb056565370"
|
|
1135
|
+
dependencies = [
|
|
1136
|
+
"proc-macro2",
|
|
1137
|
+
"quote",
|
|
1138
|
+
"syn",
|
|
1139
|
+
]
|
|
809
1140
|
|
|
810
1141
|
[[package]]
|
|
811
|
-
name = "
|
|
812
|
-
version = "
|
|
1142
|
+
name = "der"
|
|
1143
|
+
version = "0.7.10"
|
|
813
1144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
-
checksum = "
|
|
1145
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
1146
|
+
dependencies = [
|
|
1147
|
+
"const-oid 0.9.6",
|
|
1148
|
+
"pem-rfc7468 0.7.0",
|
|
1149
|
+
"zeroize",
|
|
1150
|
+
]
|
|
815
1151
|
|
|
816
1152
|
[[package]]
|
|
817
|
-
name = "
|
|
818
|
-
version = "0.
|
|
1153
|
+
name = "der"
|
|
1154
|
+
version = "0.8.0"
|
|
819
1155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
-
checksum = "
|
|
1156
|
+
checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"const-oid 0.10.2",
|
|
1159
|
+
"pem-rfc7468 1.0.0",
|
|
1160
|
+
"zeroize",
|
|
1161
|
+
]
|
|
821
1162
|
|
|
822
1163
|
[[package]]
|
|
823
|
-
name = "
|
|
824
|
-
version = "
|
|
1164
|
+
name = "derive-where"
|
|
1165
|
+
version = "1.6.1"
|
|
825
1166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
-
checksum = "
|
|
827
|
-
|
|
1167
|
+
checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
|
|
1168
|
+
dependencies = [
|
|
1169
|
+
"proc-macro2",
|
|
1170
|
+
"quote",
|
|
1171
|
+
"syn",
|
|
1172
|
+
]
|
|
1173
|
+
|
|
1174
|
+
[[package]]
|
|
1175
|
+
name = "diff"
|
|
1176
|
+
version = "0.1.13"
|
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "digest"
|
|
1182
|
+
version = "0.10.7"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1185
|
+
dependencies = [
|
|
1186
|
+
"block-buffer 0.10.4",
|
|
1187
|
+
"const-oid 0.9.6",
|
|
1188
|
+
"crypto-common 0.1.7",
|
|
1189
|
+
"subtle",
|
|
1190
|
+
]
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "digest"
|
|
1194
|
+
version = "0.11.2"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "4850db49bf08e663084f7fb5c87d202ef91a3907271aff24a94eb97ff039153c"
|
|
1197
|
+
dependencies = [
|
|
1198
|
+
"block-buffer 0.12.0",
|
|
1199
|
+
"const-oid 0.10.2",
|
|
1200
|
+
"crypto-common 0.2.1",
|
|
1201
|
+
"ctutils",
|
|
1202
|
+
]
|
|
1203
|
+
|
|
1204
|
+
[[package]]
|
|
1205
|
+
name = "displaydoc"
|
|
1206
|
+
version = "0.2.5"
|
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
1209
|
+
dependencies = [
|
|
1210
|
+
"proc-macro2",
|
|
1211
|
+
"quote",
|
|
1212
|
+
"syn",
|
|
1213
|
+
]
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "dragonbox_ecma"
|
|
1217
|
+
version = "0.1.12"
|
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
+
checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "dtor"
|
|
1223
|
+
version = "0.3.0"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "f1057d6c64987086ff8ed0fd3fbf377a6b7d205cc7715868cd401705f715cbe4"
|
|
1226
|
+
dependencies = [
|
|
1227
|
+
"dtor-proc-macro",
|
|
1228
|
+
]
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "dtor-proc-macro"
|
|
1232
|
+
version = "0.0.6"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
|
|
1235
|
+
|
|
1236
|
+
[[package]]
|
|
1237
|
+
name = "dunce"
|
|
1238
|
+
version = "1.0.5"
|
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "dyn-clone"
|
|
1244
|
+
version = "1.0.20"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
1247
|
+
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "ecdsa"
|
|
1250
|
+
version = "0.16.9"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
|
|
1253
|
+
dependencies = [
|
|
1254
|
+
"der 0.7.10",
|
|
1255
|
+
"digest 0.10.7",
|
|
1256
|
+
"elliptic-curve 0.13.8",
|
|
1257
|
+
"rfc6979 0.4.0",
|
|
1258
|
+
"signature 2.2.0",
|
|
1259
|
+
"spki 0.7.3",
|
|
1260
|
+
]
|
|
1261
|
+
|
|
1262
|
+
[[package]]
|
|
1263
|
+
name = "ecdsa"
|
|
1264
|
+
version = "0.17.0-rc.16"
|
|
1265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1266
|
+
checksum = "91bbdd377139884fafcad8dc43a760a3e1e681aa26db910257fa6535b70e1829"
|
|
1267
|
+
dependencies = [
|
|
1268
|
+
"der 0.8.0",
|
|
1269
|
+
"digest 0.11.2",
|
|
1270
|
+
"elliptic-curve 0.14.0-rc.29",
|
|
1271
|
+
"rfc6979 0.5.0-rc.5",
|
|
1272
|
+
"signature 3.0.0-rc.10",
|
|
1273
|
+
"spki 0.8.0",
|
|
1274
|
+
"zeroize",
|
|
1275
|
+
]
|
|
1276
|
+
|
|
1277
|
+
[[package]]
|
|
1278
|
+
name = "ed25519"
|
|
1279
|
+
version = "2.2.3"
|
|
1280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1281
|
+
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
|
1282
|
+
dependencies = [
|
|
1283
|
+
"pkcs8 0.10.2",
|
|
1284
|
+
"signature 2.2.0",
|
|
1285
|
+
]
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "ed25519"
|
|
1289
|
+
version = "3.0.0-rc.4"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "c6e914c7c52decb085cea910552e24c63ac019e3ab8bf001ff736da9a9d9d890"
|
|
1292
|
+
dependencies = [
|
|
1293
|
+
"pkcs8 0.11.0-rc.11",
|
|
1294
|
+
"signature 3.0.0-rc.10",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "ed25519-dalek"
|
|
1299
|
+
version = "2.2.0"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
|
1302
|
+
dependencies = [
|
|
1303
|
+
"curve25519-dalek 4.1.3",
|
|
1304
|
+
"ed25519 2.2.3",
|
|
1305
|
+
"rand_core 0.6.4",
|
|
1306
|
+
"serde",
|
|
1307
|
+
"sha2 0.10.9",
|
|
1308
|
+
"subtle",
|
|
1309
|
+
"zeroize",
|
|
1310
|
+
]
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "ed25519-dalek"
|
|
1314
|
+
version = "3.0.0-pre.6"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "053618a4c3d3bc24f188aa660ae75a46eeab74ef07fb415c61431e5e7cd4749b"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"curve25519-dalek 5.0.0-pre.6",
|
|
1319
|
+
"ed25519 3.0.0-rc.4",
|
|
1320
|
+
"rand_core 0.10.0",
|
|
1321
|
+
"serde",
|
|
1322
|
+
"sha2 0.11.0",
|
|
1323
|
+
"signature 3.0.0-rc.10",
|
|
1324
|
+
"subtle",
|
|
1325
|
+
"zeroize",
|
|
1326
|
+
]
|
|
1327
|
+
|
|
1328
|
+
[[package]]
|
|
1329
|
+
name = "either"
|
|
1330
|
+
version = "1.15.0"
|
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
1333
|
+
|
|
1334
|
+
[[package]]
|
|
1335
|
+
name = "elliptic-curve"
|
|
1336
|
+
version = "0.13.8"
|
|
1337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
+
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
|
|
1339
|
+
dependencies = [
|
|
1340
|
+
"base16ct 0.2.0",
|
|
1341
|
+
"crypto-bigint 0.5.5",
|
|
1342
|
+
"digest 0.10.7",
|
|
1343
|
+
"ff",
|
|
1344
|
+
"generic-array 0.14.7",
|
|
1345
|
+
"group",
|
|
1346
|
+
"hkdf 0.12.4",
|
|
1347
|
+
"pem-rfc7468 0.7.0",
|
|
1348
|
+
"pkcs8 0.10.2",
|
|
1349
|
+
"rand_core 0.6.4",
|
|
1350
|
+
"sec1 0.7.3",
|
|
1351
|
+
"subtle",
|
|
1352
|
+
"zeroize",
|
|
1353
|
+
]
|
|
1354
|
+
|
|
1355
|
+
[[package]]
|
|
1356
|
+
name = "elliptic-curve"
|
|
1357
|
+
version = "0.14.0-rc.29"
|
|
1358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
|
+
checksum = "e84043d573efd4ac9d2d125817979a379204bf7e328b25a4a30487e8d100e618"
|
|
1360
|
+
dependencies = [
|
|
1361
|
+
"base16ct 1.0.0",
|
|
1362
|
+
"crypto-bigint 0.7.3",
|
|
1363
|
+
"crypto-common 0.2.1",
|
|
1364
|
+
"digest 0.11.2",
|
|
1365
|
+
"hkdf 0.13.0",
|
|
1366
|
+
"hybrid-array",
|
|
1367
|
+
"once_cell",
|
|
1368
|
+
"pem-rfc7468 1.0.0",
|
|
1369
|
+
"pkcs8 0.11.0-rc.11",
|
|
1370
|
+
"rand_core 0.10.0",
|
|
1371
|
+
"rustcrypto-ff",
|
|
1372
|
+
"rustcrypto-group",
|
|
1373
|
+
"sec1 0.8.1",
|
|
1374
|
+
"subtle",
|
|
1375
|
+
"zeroize",
|
|
1376
|
+
]
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "embedded-io"
|
|
1380
|
+
version = "0.4.0"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
|
1383
|
+
|
|
1384
|
+
[[package]]
|
|
1385
|
+
name = "embedded-io"
|
|
1386
|
+
version = "0.6.1"
|
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
+
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
1389
|
+
|
|
828
1390
|
[[package]]
|
|
829
1391
|
name = "encode_unicode"
|
|
830
1392
|
version = "1.0.0"
|
|
831
1393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
1394
|
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
833
1395
|
|
|
1396
|
+
[[package]]
|
|
1397
|
+
name = "enum_dispatch"
|
|
1398
|
+
version = "0.3.13"
|
|
1399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1400
|
+
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
|
1401
|
+
dependencies = [
|
|
1402
|
+
"once_cell",
|
|
1403
|
+
"proc-macro2",
|
|
1404
|
+
"quote",
|
|
1405
|
+
"syn",
|
|
1406
|
+
]
|
|
1407
|
+
|
|
834
1408
|
[[package]]
|
|
835
1409
|
name = "equivalent"
|
|
836
1410
|
version = "1.0.2"
|
|
@@ -871,9 +1445,31 @@ dependencies = [
|
|
|
871
1445
|
|
|
872
1446
|
[[package]]
|
|
873
1447
|
name = "fastrand"
|
|
874
|
-
version = "2.
|
|
1448
|
+
version = "2.4.0"
|
|
875
1449
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
-
checksum = "
|
|
1450
|
+
checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
|
|
1451
|
+
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "ff"
|
|
1454
|
+
version = "0.13.1"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
1457
|
+
dependencies = [
|
|
1458
|
+
"rand_core 0.6.4",
|
|
1459
|
+
"subtle",
|
|
1460
|
+
]
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "fiat-crypto"
|
|
1464
|
+
version = "0.2.9"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
1467
|
+
|
|
1468
|
+
[[package]]
|
|
1469
|
+
name = "fiat-crypto"
|
|
1470
|
+
version = "0.3.0"
|
|
1471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
+
checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24"
|
|
877
1473
|
|
|
878
1474
|
[[package]]
|
|
879
1475
|
name = "find-msvc-tools"
|
|
@@ -1012,6 +1608,28 @@ dependencies = [
|
|
|
1012
1608
|
"slab",
|
|
1013
1609
|
]
|
|
1014
1610
|
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "generic-array"
|
|
1613
|
+
version = "0.14.7"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1616
|
+
dependencies = [
|
|
1617
|
+
"typenum",
|
|
1618
|
+
"version_check",
|
|
1619
|
+
"zeroize",
|
|
1620
|
+
]
|
|
1621
|
+
|
|
1622
|
+
[[package]]
|
|
1623
|
+
name = "generic-array"
|
|
1624
|
+
version = "1.3.5"
|
|
1625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
+
checksum = "eaf57c49a95fd1fe24b90b3033bee6dc7e8f1288d51494cb44e627c295e38542"
|
|
1627
|
+
dependencies = [
|
|
1628
|
+
"generic-array 0.14.7",
|
|
1629
|
+
"rustversion",
|
|
1630
|
+
"typenum",
|
|
1631
|
+
]
|
|
1632
|
+
|
|
1015
1633
|
[[package]]
|
|
1016
1634
|
name = "get-size-derive2"
|
|
1017
1635
|
version = "0.7.4"
|
|
@@ -1081,10 +1699,30 @@ dependencies = [
|
|
|
1081
1699
|
"cfg-if",
|
|
1082
1700
|
"libc",
|
|
1083
1701
|
"r-efi 6.0.0",
|
|
1702
|
+
"rand_core 0.10.0",
|
|
1084
1703
|
"wasip2",
|
|
1085
1704
|
"wasip3",
|
|
1086
1705
|
]
|
|
1087
1706
|
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "ghash"
|
|
1709
|
+
version = "0.5.1"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
|
|
1712
|
+
dependencies = [
|
|
1713
|
+
"opaque-debug",
|
|
1714
|
+
"polyval 0.6.2",
|
|
1715
|
+
]
|
|
1716
|
+
|
|
1717
|
+
[[package]]
|
|
1718
|
+
name = "ghash"
|
|
1719
|
+
version = "0.6.0"
|
|
1720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1721
|
+
checksum = "2eecf2d5dc9b66b732b97707a0210906b1d30523eb773193ab777c0c84b3e8d5"
|
|
1722
|
+
dependencies = [
|
|
1723
|
+
"polyval 0.7.1",
|
|
1724
|
+
]
|
|
1725
|
+
|
|
1088
1726
|
[[package]]
|
|
1089
1727
|
name = "globset"
|
|
1090
1728
|
version = "0.4.18"
|
|
@@ -1098,6 +1736,17 @@ dependencies = [
|
|
|
1098
1736
|
"regex-syntax",
|
|
1099
1737
|
]
|
|
1100
1738
|
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "group"
|
|
1741
|
+
version = "0.13.0"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
|
|
1744
|
+
dependencies = [
|
|
1745
|
+
"ff",
|
|
1746
|
+
"rand_core 0.6.4",
|
|
1747
|
+
"subtle",
|
|
1748
|
+
]
|
|
1749
|
+
|
|
1101
1750
|
[[package]]
|
|
1102
1751
|
name = "half"
|
|
1103
1752
|
version = "2.7.1"
|
|
@@ -1158,12 +1807,69 @@ version = "0.5.0"
|
|
|
1158
1807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
1808
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1160
1809
|
|
|
1810
|
+
[[package]]
|
|
1811
|
+
name = "hex"
|
|
1812
|
+
version = "0.4.3"
|
|
1813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1815
|
+
|
|
1816
|
+
[[package]]
|
|
1817
|
+
name = "hex-literal"
|
|
1818
|
+
version = "1.1.0"
|
|
1819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1820
|
+
checksum = "e712f64ec3850b98572bffac52e2c6f282b29fe6c5fa6d42334b30be438d95c1"
|
|
1821
|
+
|
|
1161
1822
|
[[package]]
|
|
1162
1823
|
name = "hifijson"
|
|
1163
1824
|
version = "0.5.0"
|
|
1164
1825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
1826
|
checksum = "242402749acf71e6f32f5857598b7002c4058a4e3c3b22b4c7d51cab9aea754e"
|
|
1166
1827
|
|
|
1828
|
+
[[package]]
|
|
1829
|
+
name = "hkdf"
|
|
1830
|
+
version = "0.12.4"
|
|
1831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1832
|
+
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
|
1833
|
+
dependencies = [
|
|
1834
|
+
"hmac 0.12.1",
|
|
1835
|
+
]
|
|
1836
|
+
|
|
1837
|
+
[[package]]
|
|
1838
|
+
name = "hkdf"
|
|
1839
|
+
version = "0.13.0"
|
|
1840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
+
checksum = "4aaa26c720c68b866f2c96ef5c1264b3e6f473fe5d4ce61cd44bbe913e553018"
|
|
1842
|
+
dependencies = [
|
|
1843
|
+
"hmac 0.13.0",
|
|
1844
|
+
]
|
|
1845
|
+
|
|
1846
|
+
[[package]]
|
|
1847
|
+
name = "hmac"
|
|
1848
|
+
version = "0.12.1"
|
|
1849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
1851
|
+
dependencies = [
|
|
1852
|
+
"digest 0.10.7",
|
|
1853
|
+
]
|
|
1854
|
+
|
|
1855
|
+
[[package]]
|
|
1856
|
+
name = "hmac"
|
|
1857
|
+
version = "0.13.0"
|
|
1858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1859
|
+
checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
|
|
1860
|
+
dependencies = [
|
|
1861
|
+
"digest 0.11.2",
|
|
1862
|
+
]
|
|
1863
|
+
|
|
1864
|
+
[[package]]
|
|
1865
|
+
name = "home"
|
|
1866
|
+
version = "0.5.12"
|
|
1867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1868
|
+
checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
|
|
1869
|
+
dependencies = [
|
|
1870
|
+
"windows-sys 0.61.2",
|
|
1871
|
+
]
|
|
1872
|
+
|
|
1167
1873
|
[[package]]
|
|
1168
1874
|
name = "http"
|
|
1169
1875
|
version = "1.4.0"
|
|
@@ -1205,18 +1911,21 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
|
1205
1911
|
|
|
1206
1912
|
[[package]]
|
|
1207
1913
|
name = "hybrid-array"
|
|
1208
|
-
version = "0.4.
|
|
1914
|
+
version = "0.4.10"
|
|
1209
1915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
-
checksum = "
|
|
1916
|
+
checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
|
|
1211
1917
|
dependencies = [
|
|
1918
|
+
"ctutils",
|
|
1919
|
+
"subtle",
|
|
1212
1920
|
"typenum",
|
|
1921
|
+
"zeroize",
|
|
1213
1922
|
]
|
|
1214
1923
|
|
|
1215
1924
|
[[package]]
|
|
1216
1925
|
name = "hyper"
|
|
1217
|
-
version = "1.
|
|
1926
|
+
version = "1.9.0"
|
|
1218
1927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
-
checksum = "
|
|
1928
|
+
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
|
|
1220
1929
|
dependencies = [
|
|
1221
1930
|
"atomic-waker",
|
|
1222
1931
|
"bytes",
|
|
@@ -1227,7 +1936,6 @@ dependencies = [
|
|
|
1227
1936
|
"httparse",
|
|
1228
1937
|
"itoa",
|
|
1229
1938
|
"pin-project-lite",
|
|
1230
|
-
"pin-utils",
|
|
1231
1939
|
"smallvec",
|
|
1232
1940
|
"tokio",
|
|
1233
1941
|
"want",
|
|
@@ -1284,7 +1992,7 @@ dependencies = [
|
|
|
1284
1992
|
"js-sys",
|
|
1285
1993
|
"log",
|
|
1286
1994
|
"wasm-bindgen",
|
|
1287
|
-
"windows-core",
|
|
1995
|
+
"windows-core 0.62.2",
|
|
1288
1996
|
]
|
|
1289
1997
|
|
|
1290
1998
|
[[package]]
|
|
@@ -1298,12 +2006,13 @@ dependencies = [
|
|
|
1298
2006
|
|
|
1299
2007
|
[[package]]
|
|
1300
2008
|
name = "icu_collections"
|
|
1301
|
-
version = "2.
|
|
2009
|
+
version = "2.2.0"
|
|
1302
2010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
-
checksum = "
|
|
2011
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
1304
2012
|
dependencies = [
|
|
1305
2013
|
"displaydoc",
|
|
1306
2014
|
"potential_utf",
|
|
2015
|
+
"utf8_iter",
|
|
1307
2016
|
"yoke",
|
|
1308
2017
|
"zerofrom",
|
|
1309
2018
|
"zerovec",
|
|
@@ -1311,9 +2020,9 @@ dependencies = [
|
|
|
1311
2020
|
|
|
1312
2021
|
[[package]]
|
|
1313
2022
|
name = "icu_locale_core"
|
|
1314
|
-
version = "2.
|
|
2023
|
+
version = "2.2.0"
|
|
1315
2024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
-
checksum = "
|
|
2025
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
1317
2026
|
dependencies = [
|
|
1318
2027
|
"displaydoc",
|
|
1319
2028
|
"litemap",
|
|
@@ -1324,9 +2033,9 @@ dependencies = [
|
|
|
1324
2033
|
|
|
1325
2034
|
[[package]]
|
|
1326
2035
|
name = "icu_normalizer"
|
|
1327
|
-
version = "2.
|
|
2036
|
+
version = "2.2.0"
|
|
1328
2037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
-
checksum = "
|
|
2038
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1330
2039
|
dependencies = [
|
|
1331
2040
|
"icu_collections",
|
|
1332
2041
|
"icu_normalizer_data",
|
|
@@ -1338,15 +2047,15 @@ dependencies = [
|
|
|
1338
2047
|
|
|
1339
2048
|
[[package]]
|
|
1340
2049
|
name = "icu_normalizer_data"
|
|
1341
|
-
version = "2.
|
|
2050
|
+
version = "2.2.0"
|
|
1342
2051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1343
|
-
checksum = "
|
|
2052
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1344
2053
|
|
|
1345
2054
|
[[package]]
|
|
1346
2055
|
name = "icu_properties"
|
|
1347
|
-
version = "2.
|
|
2056
|
+
version = "2.2.0"
|
|
1348
2057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
-
checksum = "
|
|
2058
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1350
2059
|
dependencies = [
|
|
1351
2060
|
"icu_collections",
|
|
1352
2061
|
"icu_locale_core",
|
|
@@ -1358,15 +2067,15 @@ dependencies = [
|
|
|
1358
2067
|
|
|
1359
2068
|
[[package]]
|
|
1360
2069
|
name = "icu_properties_data"
|
|
1361
|
-
version = "2.
|
|
2070
|
+
version = "2.2.0"
|
|
1362
2071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
-
checksum = "
|
|
2072
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1364
2073
|
|
|
1365
2074
|
[[package]]
|
|
1366
2075
|
name = "icu_provider"
|
|
1367
|
-
version = "2.
|
|
2076
|
+
version = "2.2.0"
|
|
1368
2077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
-
checksum = "
|
|
2078
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1370
2079
|
dependencies = [
|
|
1371
2080
|
"displaydoc",
|
|
1372
2081
|
"icu_locale_core",
|
|
@@ -1406,9 +2115,9 @@ dependencies = [
|
|
|
1406
2115
|
|
|
1407
2116
|
[[package]]
|
|
1408
2117
|
name = "indexmap"
|
|
1409
|
-
version = "2.13.
|
|
2118
|
+
version = "2.13.1"
|
|
1410
2119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
-
checksum = "
|
|
2120
|
+
checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
|
|
1412
2121
|
dependencies = [
|
|
1413
2122
|
"equivalent",
|
|
1414
2123
|
"hashbrown 0.16.1",
|
|
@@ -1416,11 +2125,31 @@ dependencies = [
|
|
|
1416
2125
|
"serde_core",
|
|
1417
2126
|
]
|
|
1418
2127
|
|
|
2128
|
+
[[package]]
|
|
2129
|
+
name = "inout"
|
|
2130
|
+
version = "0.1.4"
|
|
2131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2132
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
2133
|
+
dependencies = [
|
|
2134
|
+
"block-padding 0.3.3",
|
|
2135
|
+
"generic-array 0.14.7",
|
|
2136
|
+
]
|
|
2137
|
+
|
|
2138
|
+
[[package]]
|
|
2139
|
+
name = "inout"
|
|
2140
|
+
version = "0.2.2"
|
|
2141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
+
checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7"
|
|
2143
|
+
dependencies = [
|
|
2144
|
+
"block-padding 0.4.2",
|
|
2145
|
+
"hybrid-array",
|
|
2146
|
+
]
|
|
2147
|
+
|
|
1419
2148
|
[[package]]
|
|
1420
2149
|
name = "insta"
|
|
1421
|
-
version = "1.47.
|
|
2150
|
+
version = "1.47.2"
|
|
1422
2151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
-
checksum = "
|
|
2152
|
+
checksum = "7b4a6248eb93a4401ed2f37dfe8ea592d3cf05b7cf4f8efa867b6895af7e094e"
|
|
1424
2153
|
dependencies = [
|
|
1425
2154
|
"console",
|
|
1426
2155
|
"once_cell",
|
|
@@ -1437,6 +2166,47 @@ dependencies = [
|
|
|
1437
2166
|
"cfg-if",
|
|
1438
2167
|
]
|
|
1439
2168
|
|
|
2169
|
+
[[package]]
|
|
2170
|
+
name = "internal-russh-forked-ssh-key"
|
|
2171
|
+
version = "0.6.18+upstream-0.6.7"
|
|
2172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
+
checksum = "25f8a978272e3cbdf4768f7363eb1c8e1e6ba63c52a3ed05e29e222da4aec7cb"
|
|
2174
|
+
dependencies = [
|
|
2175
|
+
"argon2",
|
|
2176
|
+
"bcrypt-pbkdf",
|
|
2177
|
+
"crypto-bigint 0.7.3",
|
|
2178
|
+
"ecdsa 0.17.0-rc.16",
|
|
2179
|
+
"ed25519-dalek 3.0.0-pre.6",
|
|
2180
|
+
"hex",
|
|
2181
|
+
"hmac 0.13.0",
|
|
2182
|
+
"num-bigint-dig",
|
|
2183
|
+
"p256 0.14.0-rc.8",
|
|
2184
|
+
"p384 0.14.0-rc.8",
|
|
2185
|
+
"p521 0.14.0-rc.8",
|
|
2186
|
+
"rand_core 0.10.0",
|
|
2187
|
+
"rsa 0.10.0-rc.17",
|
|
2188
|
+
"sec1 0.8.1",
|
|
2189
|
+
"sha1 0.11.0",
|
|
2190
|
+
"sha2 0.11.0",
|
|
2191
|
+
"signature 3.0.0-rc.10",
|
|
2192
|
+
"ssh-cipher",
|
|
2193
|
+
"ssh-encoding",
|
|
2194
|
+
"subtle",
|
|
2195
|
+
"zeroize",
|
|
2196
|
+
]
|
|
2197
|
+
|
|
2198
|
+
[[package]]
|
|
2199
|
+
name = "internal-russh-num-bigint"
|
|
2200
|
+
version = "0.5.0"
|
|
2201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2202
|
+
checksum = "ae8e22120c32fb4d19ec55fba35015f57095cd95a2e3b732e44457f5915b2ee8"
|
|
2203
|
+
dependencies = [
|
|
2204
|
+
"num-integer",
|
|
2205
|
+
"num-traits",
|
|
2206
|
+
"rand 0.10.0",
|
|
2207
|
+
"rand_core 0.10.0",
|
|
2208
|
+
]
|
|
2209
|
+
|
|
1440
2210
|
[[package]]
|
|
1441
2211
|
name = "interpolator"
|
|
1442
2212
|
version = "0.5.0"
|
|
@@ -1451,9 +2221,9 @@ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
|
1451
2221
|
|
|
1452
2222
|
[[package]]
|
|
1453
2223
|
name = "iri-string"
|
|
1454
|
-
version = "0.7.
|
|
2224
|
+
version = "0.7.12"
|
|
1455
2225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
-
checksum = "
|
|
2226
|
+
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
1457
2227
|
dependencies = [
|
|
1458
2228
|
"memchr",
|
|
1459
2229
|
"serde",
|
|
@@ -1645,9 +2415,9 @@ dependencies = [
|
|
|
1645
2415
|
|
|
1646
2416
|
[[package]]
|
|
1647
2417
|
name = "js-sys"
|
|
1648
|
-
version = "0.3.
|
|
2418
|
+
version = "0.3.94"
|
|
1649
2419
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1650
|
-
checksum = "
|
|
2420
|
+
checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
|
|
1651
2421
|
dependencies = [
|
|
1652
2422
|
"cfg-if",
|
|
1653
2423
|
"futures-util",
|
|
@@ -1655,6 +2425,35 @@ dependencies = [
|
|
|
1655
2425
|
"wasm-bindgen",
|
|
1656
2426
|
]
|
|
1657
2427
|
|
|
2428
|
+
[[package]]
|
|
2429
|
+
name = "keccak"
|
|
2430
|
+
version = "0.2.0"
|
|
2431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
+
checksum = "9e24a010dd405bd7ed803e5253182815b41bf2e6a80cc3bfc066658e03a198aa"
|
|
2433
|
+
dependencies = [
|
|
2434
|
+
"cfg-if",
|
|
2435
|
+
"cpufeatures 0.3.0",
|
|
2436
|
+
]
|
|
2437
|
+
|
|
2438
|
+
[[package]]
|
|
2439
|
+
name = "kem"
|
|
2440
|
+
version = "0.3.0"
|
|
2441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2442
|
+
checksum = "01737161ba802849cfd486b5bd209d38ba4943494c249a8126005170c7621edd"
|
|
2443
|
+
dependencies = [
|
|
2444
|
+
"crypto-common 0.2.1",
|
|
2445
|
+
"rand_core 0.10.0",
|
|
2446
|
+
]
|
|
2447
|
+
|
|
2448
|
+
[[package]]
|
|
2449
|
+
name = "lazy_static"
|
|
2450
|
+
version = "1.5.0"
|
|
2451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2452
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
2453
|
+
dependencies = [
|
|
2454
|
+
"spin",
|
|
2455
|
+
]
|
|
2456
|
+
|
|
1658
2457
|
[[package]]
|
|
1659
2458
|
name = "leb128fmt"
|
|
1660
2459
|
version = "0.1.0"
|
|
@@ -1663,9 +2462,9 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
|
1663
2462
|
|
|
1664
2463
|
[[package]]
|
|
1665
2464
|
name = "libc"
|
|
1666
|
-
version = "0.2.
|
|
2465
|
+
version = "0.2.184"
|
|
1667
2466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
-
checksum = "
|
|
2467
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
1669
2468
|
|
|
1670
2469
|
[[package]]
|
|
1671
2470
|
name = "libloading"
|
|
@@ -1691,9 +2490,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
|
1691
2490
|
|
|
1692
2491
|
[[package]]
|
|
1693
2492
|
name = "litemap"
|
|
1694
|
-
version = "0.8.
|
|
2493
|
+
version = "0.8.2"
|
|
1695
2494
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
-
checksum = "
|
|
2495
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1697
2496
|
|
|
1698
2497
|
[[package]]
|
|
1699
2498
|
name = "lock_api"
|
|
@@ -1756,9 +2555,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1756
2555
|
checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
|
|
1757
2556
|
dependencies = [
|
|
1758
2557
|
"cfg-if",
|
|
1759
|
-
"digest",
|
|
2558
|
+
"digest 0.11.2",
|
|
1760
2559
|
]
|
|
1761
2560
|
|
|
2561
|
+
[[package]]
|
|
2562
|
+
name = "md5"
|
|
2563
|
+
version = "0.7.0"
|
|
2564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2565
|
+
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
|
|
2566
|
+
|
|
1762
2567
|
[[package]]
|
|
1763
2568
|
name = "memchr"
|
|
1764
2569
|
version = "2.8.0"
|
|
@@ -1786,6 +2591,30 @@ dependencies = [
|
|
|
1786
2591
|
"windows-sys 0.61.2",
|
|
1787
2592
|
]
|
|
1788
2593
|
|
|
2594
|
+
[[package]]
|
|
2595
|
+
name = "ml-kem"
|
|
2596
|
+
version = "0.3.0-rc.2"
|
|
2597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2598
|
+
checksum = "04437cb1a66c0b78740927b76cc61f218344b9f6ef3dd430e283274a718ef0e9"
|
|
2599
|
+
dependencies = [
|
|
2600
|
+
"hybrid-array",
|
|
2601
|
+
"kem",
|
|
2602
|
+
"module-lattice",
|
|
2603
|
+
"rand_core 0.10.0",
|
|
2604
|
+
"sha3",
|
|
2605
|
+
]
|
|
2606
|
+
|
|
2607
|
+
[[package]]
|
|
2608
|
+
name = "module-lattice"
|
|
2609
|
+
version = "0.2.1"
|
|
2610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2611
|
+
checksum = "164eb3faeaecbd14b0b2a917c1b4d0c035097a9c559b0bed85c2cdd032bc8faa"
|
|
2612
|
+
dependencies = [
|
|
2613
|
+
"ctutils",
|
|
2614
|
+
"hybrid-array",
|
|
2615
|
+
"num-traits",
|
|
2616
|
+
]
|
|
2617
|
+
|
|
1789
2618
|
[[package]]
|
|
1790
2619
|
name = "monty"
|
|
1791
2620
|
version = "0.0.8"
|
|
@@ -1812,9 +2641,9 @@ dependencies = [
|
|
|
1812
2641
|
|
|
1813
2642
|
[[package]]
|
|
1814
2643
|
name = "nalgebra"
|
|
1815
|
-
version = "0.33.
|
|
2644
|
+
version = "0.33.3"
|
|
1816
2645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
-
checksum = "
|
|
2646
|
+
checksum = "9d43ddcacf343185dfd6de2ee786d9e8b1c2301622afab66b6c73baf9882abfd"
|
|
1818
2647
|
dependencies = [
|
|
1819
2648
|
"approx",
|
|
1820
2649
|
"matrixmultiply",
|
|
@@ -1829,9 +2658,9 @@ dependencies = [
|
|
|
1829
2658
|
|
|
1830
2659
|
[[package]]
|
|
1831
2660
|
name = "napi"
|
|
1832
|
-
version = "3.8.
|
|
2661
|
+
version = "3.8.4"
|
|
1833
2662
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1834
|
-
checksum = "
|
|
2663
|
+
checksum = "fb7848c221fb7bb789e02f01875287ebb1e078b92a6566a34de01ef8806e7c2b"
|
|
1835
2664
|
dependencies = [
|
|
1836
2665
|
"bitflags",
|
|
1837
2666
|
"ctor",
|
|
@@ -1851,9 +2680,9 @@ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
|
1851
2680
|
|
|
1852
2681
|
[[package]]
|
|
1853
2682
|
name = "napi-derive"
|
|
1854
|
-
version = "3.5.
|
|
2683
|
+
version = "3.5.3"
|
|
1855
2684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
-
checksum = "
|
|
2685
|
+
checksum = "60867ff9a6f76e82350e0c3420cb0736f5866091b61d7d8a024baa54b0ec17dd"
|
|
1857
2686
|
dependencies = [
|
|
1858
2687
|
"convert_case",
|
|
1859
2688
|
"ctor",
|
|
@@ -1885,12 +2714,30 @@ dependencies = [
|
|
|
1885
2714
|
"libloading",
|
|
1886
2715
|
]
|
|
1887
2716
|
|
|
2717
|
+
[[package]]
|
|
2718
|
+
name = "nix"
|
|
2719
|
+
version = "0.31.2"
|
|
2720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2721
|
+
checksum = "5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3"
|
|
2722
|
+
dependencies = [
|
|
2723
|
+
"bitflags",
|
|
2724
|
+
"cfg-if",
|
|
2725
|
+
"cfg_aliases",
|
|
2726
|
+
"libc",
|
|
2727
|
+
]
|
|
2728
|
+
|
|
1888
2729
|
[[package]]
|
|
1889
2730
|
name = "nohash-hasher"
|
|
1890
2731
|
version = "0.2.0"
|
|
1891
2732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1892
2733
|
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
1893
2734
|
|
|
2735
|
+
[[package]]
|
|
2736
|
+
name = "nonmax"
|
|
2737
|
+
version = "0.5.5"
|
|
2738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2739
|
+
checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
|
|
2740
|
+
|
|
1894
2741
|
[[package]]
|
|
1895
2742
|
name = "num-bigint"
|
|
1896
2743
|
version = "0.4.6"
|
|
@@ -1902,6 +2749,23 @@ dependencies = [
|
|
|
1902
2749
|
"serde",
|
|
1903
2750
|
]
|
|
1904
2751
|
|
|
2752
|
+
[[package]]
|
|
2753
|
+
name = "num-bigint-dig"
|
|
2754
|
+
version = "0.8.6"
|
|
2755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2756
|
+
checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
|
|
2757
|
+
dependencies = [
|
|
2758
|
+
"lazy_static",
|
|
2759
|
+
"libm",
|
|
2760
|
+
"num-integer",
|
|
2761
|
+
"num-iter",
|
|
2762
|
+
"num-traits",
|
|
2763
|
+
"rand 0.8.5",
|
|
2764
|
+
"serde",
|
|
2765
|
+
"smallvec",
|
|
2766
|
+
"zeroize",
|
|
2767
|
+
]
|
|
2768
|
+
|
|
1905
2769
|
[[package]]
|
|
1906
2770
|
name = "num-complex"
|
|
1907
2771
|
version = "0.4.6"
|
|
@@ -1920,6 +2784,17 @@ dependencies = [
|
|
|
1920
2784
|
"num-traits",
|
|
1921
2785
|
]
|
|
1922
2786
|
|
|
2787
|
+
[[package]]
|
|
2788
|
+
name = "num-iter"
|
|
2789
|
+
version = "0.1.45"
|
|
2790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2791
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
2792
|
+
dependencies = [
|
|
2793
|
+
"autocfg",
|
|
2794
|
+
"num-integer",
|
|
2795
|
+
"num-traits",
|
|
2796
|
+
]
|
|
2797
|
+
|
|
1923
2798
|
[[package]]
|
|
1924
2799
|
name = "num-rational"
|
|
1925
2800
|
version = "0.4.2"
|
|
@@ -1959,6 +2834,12 @@ version = "11.1.5"
|
|
|
1959
2834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1960
2835
|
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1961
2836
|
|
|
2837
|
+
[[package]]
|
|
2838
|
+
name = "opaque-debug"
|
|
2839
|
+
version = "0.3.1"
|
|
2840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2841
|
+
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
2842
|
+
|
|
1962
2843
|
[[package]]
|
|
1963
2844
|
name = "openssl-probe"
|
|
1964
2845
|
version = "0.2.1"
|
|
@@ -1974,6 +2855,291 @@ dependencies = [
|
|
|
1974
2855
|
"indexmap",
|
|
1975
2856
|
]
|
|
1976
2857
|
|
|
2858
|
+
[[package]]
|
|
2859
|
+
name = "owo-colors"
|
|
2860
|
+
version = "4.3.0"
|
|
2861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2862
|
+
checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
|
|
2863
|
+
|
|
2864
|
+
[[package]]
|
|
2865
|
+
name = "oxc-miette"
|
|
2866
|
+
version = "2.7.1"
|
|
2867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2868
|
+
checksum = "4356a61f2ed4c9b3610245215fbf48970eb277126919f87db9d0efa93a74245c"
|
|
2869
|
+
dependencies = [
|
|
2870
|
+
"cfg-if",
|
|
2871
|
+
"owo-colors",
|
|
2872
|
+
"oxc-miette-derive",
|
|
2873
|
+
"textwrap",
|
|
2874
|
+
"thiserror 2.0.18",
|
|
2875
|
+
"unicode-segmentation",
|
|
2876
|
+
"unicode-width",
|
|
2877
|
+
]
|
|
2878
|
+
|
|
2879
|
+
[[package]]
|
|
2880
|
+
name = "oxc-miette-derive"
|
|
2881
|
+
version = "2.7.1"
|
|
2882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2883
|
+
checksum = "b237422b014f8f8fff75bb9379e697d13f8d57551a22c88bebb39f073c1bf696"
|
|
2884
|
+
dependencies = [
|
|
2885
|
+
"proc-macro2",
|
|
2886
|
+
"quote",
|
|
2887
|
+
"syn",
|
|
2888
|
+
]
|
|
2889
|
+
|
|
2890
|
+
[[package]]
|
|
2891
|
+
name = "oxc_allocator"
|
|
2892
|
+
version = "0.117.0"
|
|
2893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2894
|
+
checksum = "97b44277218c002c09167474648a478d3d29a29095ef8950ec9f1fac016c62d7"
|
|
2895
|
+
dependencies = [
|
|
2896
|
+
"allocator-api2",
|
|
2897
|
+
"hashbrown 0.16.1",
|
|
2898
|
+
"oxc_data_structures",
|
|
2899
|
+
"rustc-hash",
|
|
2900
|
+
]
|
|
2901
|
+
|
|
2902
|
+
[[package]]
|
|
2903
|
+
name = "oxc_ast"
|
|
2904
|
+
version = "0.117.0"
|
|
2905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2906
|
+
checksum = "e4222e4e7a1ab01b2a20420a5a65798377a748ea37ee7ece4d7a6b733f86eb61"
|
|
2907
|
+
dependencies = [
|
|
2908
|
+
"bitflags",
|
|
2909
|
+
"oxc_allocator",
|
|
2910
|
+
"oxc_ast_macros",
|
|
2911
|
+
"oxc_data_structures",
|
|
2912
|
+
"oxc_diagnostics",
|
|
2913
|
+
"oxc_estree",
|
|
2914
|
+
"oxc_regular_expression",
|
|
2915
|
+
"oxc_span",
|
|
2916
|
+
"oxc_syntax",
|
|
2917
|
+
]
|
|
2918
|
+
|
|
2919
|
+
[[package]]
|
|
2920
|
+
name = "oxc_ast_macros"
|
|
2921
|
+
version = "0.117.0"
|
|
2922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2923
|
+
checksum = "8e65a38ae589e284dd45a85008024f04aa680e9ddf1321c163cf7f187c805e91"
|
|
2924
|
+
dependencies = [
|
|
2925
|
+
"phf 0.13.1",
|
|
2926
|
+
"proc-macro2",
|
|
2927
|
+
"quote",
|
|
2928
|
+
"syn",
|
|
2929
|
+
]
|
|
2930
|
+
|
|
2931
|
+
[[package]]
|
|
2932
|
+
name = "oxc_data_structures"
|
|
2933
|
+
version = "0.117.0"
|
|
2934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2935
|
+
checksum = "f53bed71cad192596aee8f87f6d6bc2a38a4f898255a69b1d41da1968b9b2c6f"
|
|
2936
|
+
|
|
2937
|
+
[[package]]
|
|
2938
|
+
name = "oxc_diagnostics"
|
|
2939
|
+
version = "0.117.0"
|
|
2940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2941
|
+
checksum = "1a2d2491c0a1ea29a83abe645424f85c64b5c825f60e5304a453e4314a8b6d88"
|
|
2942
|
+
dependencies = [
|
|
2943
|
+
"cow-utils",
|
|
2944
|
+
"oxc-miette",
|
|
2945
|
+
"percent-encoding",
|
|
2946
|
+
]
|
|
2947
|
+
|
|
2948
|
+
[[package]]
|
|
2949
|
+
name = "oxc_ecmascript"
|
|
2950
|
+
version = "0.117.0"
|
|
2951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2952
|
+
checksum = "71b23b64fa8c4a84b1406de383c4666366c9f54ffb9cb11a63b8d7433950460a"
|
|
2953
|
+
dependencies = [
|
|
2954
|
+
"cow-utils",
|
|
2955
|
+
"num-bigint",
|
|
2956
|
+
"num-traits",
|
|
2957
|
+
"oxc_allocator",
|
|
2958
|
+
"oxc_ast",
|
|
2959
|
+
"oxc_regular_expression",
|
|
2960
|
+
"oxc_span",
|
|
2961
|
+
"oxc_syntax",
|
|
2962
|
+
]
|
|
2963
|
+
|
|
2964
|
+
[[package]]
|
|
2965
|
+
name = "oxc_estree"
|
|
2966
|
+
version = "0.117.0"
|
|
2967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2968
|
+
checksum = "a47515ead44bc8beec1ae1514f10ecca63cde043da167c0395dc914f098ea5d2"
|
|
2969
|
+
|
|
2970
|
+
[[package]]
|
|
2971
|
+
name = "oxc_index"
|
|
2972
|
+
version = "4.1.0"
|
|
2973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2974
|
+
checksum = "eb3e6120999627ec9703025eab7c9f410ebb7e95557632a8902ca48210416c2b"
|
|
2975
|
+
dependencies = [
|
|
2976
|
+
"nonmax",
|
|
2977
|
+
"serde",
|
|
2978
|
+
]
|
|
2979
|
+
|
|
2980
|
+
[[package]]
|
|
2981
|
+
name = "oxc_parser"
|
|
2982
|
+
version = "0.117.0"
|
|
2983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
+
checksum = "3278d4f34d01cdaf85a2391d7b12daba1d95c20c1ff2ac9316d3c28f36353e4e"
|
|
2985
|
+
dependencies = [
|
|
2986
|
+
"bitflags",
|
|
2987
|
+
"cow-utils",
|
|
2988
|
+
"memchr",
|
|
2989
|
+
"num-bigint",
|
|
2990
|
+
"num-traits",
|
|
2991
|
+
"oxc_allocator",
|
|
2992
|
+
"oxc_ast",
|
|
2993
|
+
"oxc_data_structures",
|
|
2994
|
+
"oxc_diagnostics",
|
|
2995
|
+
"oxc_ecmascript",
|
|
2996
|
+
"oxc_regular_expression",
|
|
2997
|
+
"oxc_span",
|
|
2998
|
+
"oxc_syntax",
|
|
2999
|
+
"rustc-hash",
|
|
3000
|
+
"seq-macro",
|
|
3001
|
+
]
|
|
3002
|
+
|
|
3003
|
+
[[package]]
|
|
3004
|
+
name = "oxc_regular_expression"
|
|
3005
|
+
version = "0.117.0"
|
|
3006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3007
|
+
checksum = "f3d680252672b22c24abbaf6e401eace0be9f53072a03411936204625ff349d0"
|
|
3008
|
+
dependencies = [
|
|
3009
|
+
"bitflags",
|
|
3010
|
+
"oxc_allocator",
|
|
3011
|
+
"oxc_ast_macros",
|
|
3012
|
+
"oxc_diagnostics",
|
|
3013
|
+
"oxc_span",
|
|
3014
|
+
"phf 0.13.1",
|
|
3015
|
+
"rustc-hash",
|
|
3016
|
+
"unicode-id-start",
|
|
3017
|
+
]
|
|
3018
|
+
|
|
3019
|
+
[[package]]
|
|
3020
|
+
name = "oxc_span"
|
|
3021
|
+
version = "0.117.0"
|
|
3022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3023
|
+
checksum = "b6eb1bd62de89fb0c646bfb053b72370750fab43a84ebe09ad97cfa020712314"
|
|
3024
|
+
dependencies = [
|
|
3025
|
+
"compact_str",
|
|
3026
|
+
"oxc-miette",
|
|
3027
|
+
"oxc_allocator",
|
|
3028
|
+
"oxc_ast_macros",
|
|
3029
|
+
"oxc_estree",
|
|
3030
|
+
"oxc_str",
|
|
3031
|
+
]
|
|
3032
|
+
|
|
3033
|
+
[[package]]
|
|
3034
|
+
name = "oxc_str"
|
|
3035
|
+
version = "0.117.0"
|
|
3036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3037
|
+
checksum = "2e65cbfb06ecbae07e0da931815b6b03ade886d016302c400bda7dc0a2f600d3"
|
|
3038
|
+
dependencies = [
|
|
3039
|
+
"compact_str",
|
|
3040
|
+
"hashbrown 0.16.1",
|
|
3041
|
+
"oxc_allocator",
|
|
3042
|
+
"oxc_estree",
|
|
3043
|
+
]
|
|
3044
|
+
|
|
3045
|
+
[[package]]
|
|
3046
|
+
name = "oxc_syntax"
|
|
3047
|
+
version = "0.117.0"
|
|
3048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3049
|
+
checksum = "e0f1617f0aa890517fb61ffa1d2d73a8497aca52e84ef6f027fad1e93250eccc"
|
|
3050
|
+
dependencies = [
|
|
3051
|
+
"bitflags",
|
|
3052
|
+
"cow-utils",
|
|
3053
|
+
"dragonbox_ecma",
|
|
3054
|
+
"nonmax",
|
|
3055
|
+
"oxc_allocator",
|
|
3056
|
+
"oxc_ast_macros",
|
|
3057
|
+
"oxc_estree",
|
|
3058
|
+
"oxc_index",
|
|
3059
|
+
"oxc_span",
|
|
3060
|
+
"phf 0.13.1",
|
|
3061
|
+
"unicode-id-start",
|
|
3062
|
+
]
|
|
3063
|
+
|
|
3064
|
+
[[package]]
|
|
3065
|
+
name = "p256"
|
|
3066
|
+
version = "0.13.2"
|
|
3067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3068
|
+
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
|
|
3069
|
+
dependencies = [
|
|
3070
|
+
"ecdsa 0.16.9",
|
|
3071
|
+
"elliptic-curve 0.13.8",
|
|
3072
|
+
"primeorder 0.13.6",
|
|
3073
|
+
"sha2 0.10.9",
|
|
3074
|
+
]
|
|
3075
|
+
|
|
3076
|
+
[[package]]
|
|
3077
|
+
name = "p256"
|
|
3078
|
+
version = "0.14.0-rc.8"
|
|
3079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3080
|
+
checksum = "44f0a10fe314869359cb2901342b045f4e5a962ef9febc006f03d2a8c848fe4c"
|
|
3081
|
+
dependencies = [
|
|
3082
|
+
"ecdsa 0.17.0-rc.16",
|
|
3083
|
+
"elliptic-curve 0.14.0-rc.29",
|
|
3084
|
+
"primefield",
|
|
3085
|
+
"primeorder 0.14.0-rc.8",
|
|
3086
|
+
"sha2 0.11.0",
|
|
3087
|
+
]
|
|
3088
|
+
|
|
3089
|
+
[[package]]
|
|
3090
|
+
name = "p384"
|
|
3091
|
+
version = "0.13.1"
|
|
3092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3093
|
+
checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
|
|
3094
|
+
dependencies = [
|
|
3095
|
+
"ecdsa 0.16.9",
|
|
3096
|
+
"elliptic-curve 0.13.8",
|
|
3097
|
+
"primeorder 0.13.6",
|
|
3098
|
+
"sha2 0.10.9",
|
|
3099
|
+
]
|
|
3100
|
+
|
|
3101
|
+
[[package]]
|
|
3102
|
+
name = "p384"
|
|
3103
|
+
version = "0.14.0-rc.8"
|
|
3104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3105
|
+
checksum = "b079e66810c55ab3d6ba424e056dc4aefcdb8046c8c3f3816142edbdd7af7721"
|
|
3106
|
+
dependencies = [
|
|
3107
|
+
"ecdsa 0.17.0-rc.16",
|
|
3108
|
+
"elliptic-curve 0.14.0-rc.29",
|
|
3109
|
+
"fiat-crypto 0.3.0",
|
|
3110
|
+
"primefield",
|
|
3111
|
+
"primeorder 0.14.0-rc.8",
|
|
3112
|
+
"sha2 0.11.0",
|
|
3113
|
+
]
|
|
3114
|
+
|
|
3115
|
+
[[package]]
|
|
3116
|
+
name = "p521"
|
|
3117
|
+
version = "0.13.3"
|
|
3118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3119
|
+
checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
|
|
3120
|
+
dependencies = [
|
|
3121
|
+
"base16ct 0.2.0",
|
|
3122
|
+
"ecdsa 0.16.9",
|
|
3123
|
+
"elliptic-curve 0.13.8",
|
|
3124
|
+
"primeorder 0.13.6",
|
|
3125
|
+
"rand_core 0.6.4",
|
|
3126
|
+
"sha2 0.10.9",
|
|
3127
|
+
]
|
|
3128
|
+
|
|
3129
|
+
[[package]]
|
|
3130
|
+
name = "p521"
|
|
3131
|
+
version = "0.14.0-rc.8"
|
|
3132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3133
|
+
checksum = "9eecc34c4c6e6596d5271fecf90ac4f16593fa198e77282214d0c22736aa9266"
|
|
3134
|
+
dependencies = [
|
|
3135
|
+
"base16ct 1.0.0",
|
|
3136
|
+
"ecdsa 0.17.0-rc.16",
|
|
3137
|
+
"elliptic-curve 0.14.0-rc.29",
|
|
3138
|
+
"primefield",
|
|
3139
|
+
"primeorder 0.14.0-rc.8",
|
|
3140
|
+
"sha2 0.11.0",
|
|
3141
|
+
]
|
|
3142
|
+
|
|
1977
3143
|
[[package]]
|
|
1978
3144
|
name = "page_size"
|
|
1979
3145
|
version = "0.6.0"
|
|
@@ -1984,6 +3150,40 @@ dependencies = [
|
|
|
1984
3150
|
"winapi",
|
|
1985
3151
|
]
|
|
1986
3152
|
|
|
3153
|
+
[[package]]
|
|
3154
|
+
name = "pageant"
|
|
3155
|
+
version = "0.0.1"
|
|
3156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3157
|
+
checksum = "032d6201d2fb765158455ae0d5a510c016bb6da7232e5040e39e9c8db12b0afc"
|
|
3158
|
+
dependencies = [
|
|
3159
|
+
"bytes",
|
|
3160
|
+
"delegate",
|
|
3161
|
+
"futures",
|
|
3162
|
+
"rand 0.8.5",
|
|
3163
|
+
"thiserror 1.0.69",
|
|
3164
|
+
"tokio",
|
|
3165
|
+
"windows 0.58.0",
|
|
3166
|
+
]
|
|
3167
|
+
|
|
3168
|
+
[[package]]
|
|
3169
|
+
name = "pageant"
|
|
3170
|
+
version = "0.2.0"
|
|
3171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3172
|
+
checksum = "1b537f975f6d8dcf48db368d7ec209d583b015713b5df0f5d92d2631e4ff5595"
|
|
3173
|
+
dependencies = [
|
|
3174
|
+
"byteorder",
|
|
3175
|
+
"bytes",
|
|
3176
|
+
"delegate",
|
|
3177
|
+
"futures",
|
|
3178
|
+
"log",
|
|
3179
|
+
"rand 0.8.5",
|
|
3180
|
+
"sha2 0.10.9",
|
|
3181
|
+
"thiserror 1.0.69",
|
|
3182
|
+
"tokio",
|
|
3183
|
+
"windows 0.62.2",
|
|
3184
|
+
"windows-strings 0.5.1",
|
|
3185
|
+
]
|
|
3186
|
+
|
|
1987
3187
|
[[package]]
|
|
1988
3188
|
name = "papergrid"
|
|
1989
3189
|
version = "0.17.0"
|
|
@@ -2018,12 +3218,61 @@ dependencies = [
|
|
|
2018
3218
|
"windows-link",
|
|
2019
3219
|
]
|
|
2020
3220
|
|
|
3221
|
+
[[package]]
|
|
3222
|
+
name = "password-hash"
|
|
3223
|
+
version = "0.5.0"
|
|
3224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3225
|
+
checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
|
|
3226
|
+
dependencies = [
|
|
3227
|
+
"base64ct",
|
|
3228
|
+
"rand_core 0.6.4",
|
|
3229
|
+
"subtle",
|
|
3230
|
+
]
|
|
3231
|
+
|
|
2021
3232
|
[[package]]
|
|
2022
3233
|
name = "paste"
|
|
2023
3234
|
version = "1.0.15"
|
|
2024
3235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
3236
|
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2026
3237
|
|
|
3238
|
+
[[package]]
|
|
3239
|
+
name = "pbkdf2"
|
|
3240
|
+
version = "0.12.2"
|
|
3241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3242
|
+
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
|
|
3243
|
+
dependencies = [
|
|
3244
|
+
"digest 0.10.7",
|
|
3245
|
+
"hmac 0.12.1",
|
|
3246
|
+
]
|
|
3247
|
+
|
|
3248
|
+
[[package]]
|
|
3249
|
+
name = "pbkdf2"
|
|
3250
|
+
version = "0.13.0-rc.10"
|
|
3251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3252
|
+
checksum = "1f24f3eb2f4471b1730d59e4b730b747939960a8c7eb0c33c5a9076f2d3dddea"
|
|
3253
|
+
dependencies = [
|
|
3254
|
+
"digest 0.11.2",
|
|
3255
|
+
"hmac 0.13.0",
|
|
3256
|
+
]
|
|
3257
|
+
|
|
3258
|
+
[[package]]
|
|
3259
|
+
name = "pem-rfc7468"
|
|
3260
|
+
version = "0.7.0"
|
|
3261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3262
|
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
|
3263
|
+
dependencies = [
|
|
3264
|
+
"base64ct",
|
|
3265
|
+
]
|
|
3266
|
+
|
|
3267
|
+
[[package]]
|
|
3268
|
+
name = "pem-rfc7468"
|
|
3269
|
+
version = "1.0.0"
|
|
3270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3271
|
+
checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
|
|
3272
|
+
dependencies = [
|
|
3273
|
+
"base64ct",
|
|
3274
|
+
]
|
|
3275
|
+
|
|
2027
3276
|
[[package]]
|
|
2028
3277
|
name = "percent-encoding"
|
|
2029
3278
|
version = "2.3.2"
|
|
@@ -2036,7 +3285,18 @@ version = "0.11.3"
|
|
|
2036
3285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2037
3286
|
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
2038
3287
|
dependencies = [
|
|
2039
|
-
"phf_shared",
|
|
3288
|
+
"phf_shared 0.11.3",
|
|
3289
|
+
]
|
|
3290
|
+
|
|
3291
|
+
[[package]]
|
|
3292
|
+
name = "phf"
|
|
3293
|
+
version = "0.13.1"
|
|
3294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3295
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
3296
|
+
dependencies = [
|
|
3297
|
+
"phf_macros",
|
|
3298
|
+
"phf_shared 0.13.1",
|
|
3299
|
+
"serde",
|
|
2040
3300
|
]
|
|
2041
3301
|
|
|
2042
3302
|
[[package]]
|
|
@@ -2045,8 +3305,8 @@ version = "0.11.3"
|
|
|
2045
3305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
3306
|
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
2047
3307
|
dependencies = [
|
|
2048
|
-
"phf_generator",
|
|
2049
|
-
"phf_shared",
|
|
3308
|
+
"phf_generator 0.11.3",
|
|
3309
|
+
"phf_shared 0.11.3",
|
|
2050
3310
|
]
|
|
2051
3311
|
|
|
2052
3312
|
[[package]]
|
|
@@ -2055,10 +3315,33 @@ version = "0.11.3"
|
|
|
2055
3315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2056
3316
|
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2057
3317
|
dependencies = [
|
|
2058
|
-
"phf_shared",
|
|
3318
|
+
"phf_shared 0.11.3",
|
|
2059
3319
|
"rand 0.8.5",
|
|
2060
3320
|
]
|
|
2061
3321
|
|
|
3322
|
+
[[package]]
|
|
3323
|
+
name = "phf_generator"
|
|
3324
|
+
version = "0.13.1"
|
|
3325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3326
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
3327
|
+
dependencies = [
|
|
3328
|
+
"fastrand",
|
|
3329
|
+
"phf_shared 0.13.1",
|
|
3330
|
+
]
|
|
3331
|
+
|
|
3332
|
+
[[package]]
|
|
3333
|
+
name = "phf_macros"
|
|
3334
|
+
version = "0.13.1"
|
|
3335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3336
|
+
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
|
3337
|
+
dependencies = [
|
|
3338
|
+
"phf_generator 0.13.1",
|
|
3339
|
+
"phf_shared 0.13.1",
|
|
3340
|
+
"proc-macro2",
|
|
3341
|
+
"quote",
|
|
3342
|
+
"syn",
|
|
3343
|
+
]
|
|
3344
|
+
|
|
2062
3345
|
[[package]]
|
|
2063
3346
|
name = "phf_shared"
|
|
2064
3347
|
version = "0.11.3"
|
|
@@ -2068,6 +3351,15 @@ dependencies = [
|
|
|
2068
3351
|
"siphasher",
|
|
2069
3352
|
]
|
|
2070
3353
|
|
|
3354
|
+
[[package]]
|
|
3355
|
+
name = "phf_shared"
|
|
3356
|
+
version = "0.13.1"
|
|
3357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3358
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
3359
|
+
dependencies = [
|
|
3360
|
+
"siphasher",
|
|
3361
|
+
]
|
|
3362
|
+
|
|
2071
3363
|
[[package]]
|
|
2072
3364
|
name = "pin-project-lite"
|
|
2073
3365
|
version = "0.2.17"
|
|
@@ -2075,10 +3367,81 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2075
3367
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2076
3368
|
|
|
2077
3369
|
[[package]]
|
|
2078
|
-
name = "
|
|
2079
|
-
version = "0.
|
|
3370
|
+
name = "pkcs1"
|
|
3371
|
+
version = "0.7.5"
|
|
3372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3373
|
+
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
|
|
3374
|
+
dependencies = [
|
|
3375
|
+
"der 0.7.10",
|
|
3376
|
+
"pkcs8 0.10.2",
|
|
3377
|
+
"spki 0.7.3",
|
|
3378
|
+
]
|
|
3379
|
+
|
|
3380
|
+
[[package]]
|
|
3381
|
+
name = "pkcs1"
|
|
3382
|
+
version = "0.8.0-rc.4"
|
|
3383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3384
|
+
checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e"
|
|
3385
|
+
dependencies = [
|
|
3386
|
+
"der 0.8.0",
|
|
3387
|
+
"spki 0.8.0",
|
|
3388
|
+
]
|
|
3389
|
+
|
|
3390
|
+
[[package]]
|
|
3391
|
+
name = "pkcs5"
|
|
3392
|
+
version = "0.7.1"
|
|
3393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3394
|
+
checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6"
|
|
3395
|
+
dependencies = [
|
|
3396
|
+
"aes 0.8.4",
|
|
3397
|
+
"cbc 0.1.2",
|
|
3398
|
+
"der 0.7.10",
|
|
3399
|
+
"pbkdf2 0.12.2",
|
|
3400
|
+
"scrypt 0.11.0",
|
|
3401
|
+
"sha2 0.10.9",
|
|
3402
|
+
"spki 0.7.3",
|
|
3403
|
+
]
|
|
3404
|
+
|
|
3405
|
+
[[package]]
|
|
3406
|
+
name = "pkcs5"
|
|
3407
|
+
version = "0.8.0-rc.13"
|
|
2080
3408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2081
|
-
checksum = "
|
|
3409
|
+
checksum = "c5a777c6e26664bc9504b3ce3f6133f8f20d9071f130a4f9fcbd3186959d8dd6"
|
|
3410
|
+
dependencies = [
|
|
3411
|
+
"aes 0.9.0-rc.4",
|
|
3412
|
+
"aes-gcm 0.11.0-rc.3",
|
|
3413
|
+
"cbc 0.2.0-rc.4",
|
|
3414
|
+
"der 0.8.0",
|
|
3415
|
+
"pbkdf2 0.13.0-rc.10",
|
|
3416
|
+
"rand_core 0.10.0",
|
|
3417
|
+
"scrypt 0.12.0-rc.10",
|
|
3418
|
+
"sha2 0.11.0",
|
|
3419
|
+
"spki 0.8.0",
|
|
3420
|
+
]
|
|
3421
|
+
|
|
3422
|
+
[[package]]
|
|
3423
|
+
name = "pkcs8"
|
|
3424
|
+
version = "0.10.2"
|
|
3425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3426
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
3427
|
+
dependencies = [
|
|
3428
|
+
"der 0.7.10",
|
|
3429
|
+
"pkcs5 0.7.1",
|
|
3430
|
+
"rand_core 0.6.4",
|
|
3431
|
+
"spki 0.7.3",
|
|
3432
|
+
]
|
|
3433
|
+
|
|
3434
|
+
[[package]]
|
|
3435
|
+
name = "pkcs8"
|
|
3436
|
+
version = "0.11.0-rc.11"
|
|
3437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3438
|
+
checksum = "12922b6296c06eb741b02d7b5161e3aaa22864af38dfa025a1a3ba3f68c84577"
|
|
3439
|
+
dependencies = [
|
|
3440
|
+
"der 0.8.0",
|
|
3441
|
+
"pkcs5 0.8.0-rc.13",
|
|
3442
|
+
"rand_core 0.10.0",
|
|
3443
|
+
"spki 0.8.0",
|
|
3444
|
+
]
|
|
2082
3445
|
|
|
2083
3446
|
[[package]]
|
|
2084
3447
|
name = "plotters"
|
|
@@ -2108,6 +3471,40 @@ dependencies = [
|
|
|
2108
3471
|
"plotters-backend",
|
|
2109
3472
|
]
|
|
2110
3473
|
|
|
3474
|
+
[[package]]
|
|
3475
|
+
name = "poly1305"
|
|
3476
|
+
version = "0.8.0"
|
|
3477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3478
|
+
checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
|
|
3479
|
+
dependencies = [
|
|
3480
|
+
"cpufeatures 0.2.17",
|
|
3481
|
+
"opaque-debug",
|
|
3482
|
+
"universal-hash 0.5.1",
|
|
3483
|
+
]
|
|
3484
|
+
|
|
3485
|
+
[[package]]
|
|
3486
|
+
name = "polyval"
|
|
3487
|
+
version = "0.6.2"
|
|
3488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3489
|
+
checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
|
|
3490
|
+
dependencies = [
|
|
3491
|
+
"cfg-if",
|
|
3492
|
+
"cpufeatures 0.2.17",
|
|
3493
|
+
"opaque-debug",
|
|
3494
|
+
"universal-hash 0.5.1",
|
|
3495
|
+
]
|
|
3496
|
+
|
|
3497
|
+
[[package]]
|
|
3498
|
+
name = "polyval"
|
|
3499
|
+
version = "0.7.1"
|
|
3500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3501
|
+
checksum = "7dfc63250416fea14f5749b90725916a6c903f599d51cb635aa7a52bfd03eede"
|
|
3502
|
+
dependencies = [
|
|
3503
|
+
"cpubits",
|
|
3504
|
+
"cpufeatures 0.3.0",
|
|
3505
|
+
"universal-hash 0.6.1",
|
|
3506
|
+
]
|
|
3507
|
+
|
|
2111
3508
|
[[package]]
|
|
2112
3509
|
name = "portable-atomic"
|
|
2113
3510
|
version = "1.13.1"
|
|
@@ -2138,9 +3535,9 @@ dependencies = [
|
|
|
2138
3535
|
|
|
2139
3536
|
[[package]]
|
|
2140
3537
|
name = "potential_utf"
|
|
2141
|
-
version = "0.1.
|
|
3538
|
+
version = "0.1.5"
|
|
2142
3539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
|
-
checksum = "
|
|
3540
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
2144
3541
|
dependencies = [
|
|
2145
3542
|
"zerovec",
|
|
2146
3543
|
]
|
|
@@ -2174,6 +3571,38 @@ dependencies = [
|
|
|
2174
3571
|
"syn",
|
|
2175
3572
|
]
|
|
2176
3573
|
|
|
3574
|
+
[[package]]
|
|
3575
|
+
name = "primefield"
|
|
3576
|
+
version = "0.14.0-rc.8"
|
|
3577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3578
|
+
checksum = "c6543f5eec854fbf74ba5ef651fbdc9408919b47c3e1526623687135c16d12e9"
|
|
3579
|
+
dependencies = [
|
|
3580
|
+
"crypto-bigint 0.7.3",
|
|
3581
|
+
"crypto-common 0.2.1",
|
|
3582
|
+
"rand_core 0.10.0",
|
|
3583
|
+
"rustcrypto-ff",
|
|
3584
|
+
"subtle",
|
|
3585
|
+
"zeroize",
|
|
3586
|
+
]
|
|
3587
|
+
|
|
3588
|
+
[[package]]
|
|
3589
|
+
name = "primeorder"
|
|
3590
|
+
version = "0.13.6"
|
|
3591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3592
|
+
checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
|
|
3593
|
+
dependencies = [
|
|
3594
|
+
"elliptic-curve 0.13.8",
|
|
3595
|
+
]
|
|
3596
|
+
|
|
3597
|
+
[[package]]
|
|
3598
|
+
name = "primeorder"
|
|
3599
|
+
version = "0.14.0-rc.8"
|
|
3600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3601
|
+
checksum = "569d9ad6ef822bb0322c7e7d84e5e286244050bd5246cac4c013535ae91c2c90"
|
|
3602
|
+
dependencies = [
|
|
3603
|
+
"elliptic-curve 0.14.0-rc.29",
|
|
3604
|
+
]
|
|
3605
|
+
|
|
2177
3606
|
[[package]]
|
|
2178
3607
|
name = "proc-macro-error-attr2"
|
|
2179
3608
|
version = "2.0.0"
|
|
@@ -2237,9 +3666,9 @@ dependencies = [
|
|
|
2237
3666
|
|
|
2238
3667
|
[[package]]
|
|
2239
3668
|
name = "pyo3"
|
|
2240
|
-
version = "0.28.
|
|
3669
|
+
version = "0.28.3"
|
|
2241
3670
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2242
|
-
checksum = "
|
|
3671
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
2243
3672
|
dependencies = [
|
|
2244
3673
|
"libc",
|
|
2245
3674
|
"once_cell",
|
|
@@ -2265,9 +3694,9 @@ dependencies = [
|
|
|
2265
3694
|
|
|
2266
3695
|
[[package]]
|
|
2267
3696
|
name = "pyo3-build-config"
|
|
2268
|
-
version = "0.28.
|
|
3697
|
+
version = "0.28.3"
|
|
2269
3698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2270
|
-
checksum = "
|
|
3699
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
2271
3700
|
dependencies = [
|
|
2272
3701
|
"python3-dll-a",
|
|
2273
3702
|
"target-lexicon",
|
|
@@ -2275,9 +3704,9 @@ dependencies = [
|
|
|
2275
3704
|
|
|
2276
3705
|
[[package]]
|
|
2277
3706
|
name = "pyo3-ffi"
|
|
2278
|
-
version = "0.28.
|
|
3707
|
+
version = "0.28.3"
|
|
2279
3708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2280
|
-
checksum = "
|
|
3709
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
2281
3710
|
dependencies = [
|
|
2282
3711
|
"libc",
|
|
2283
3712
|
"pyo3-build-config",
|
|
@@ -2285,9 +3714,9 @@ dependencies = [
|
|
|
2285
3714
|
|
|
2286
3715
|
[[package]]
|
|
2287
3716
|
name = "pyo3-macros"
|
|
2288
|
-
version = "0.28.
|
|
3717
|
+
version = "0.28.3"
|
|
2289
3718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2290
|
-
checksum = "
|
|
3719
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
2291
3720
|
dependencies = [
|
|
2292
3721
|
"proc-macro2",
|
|
2293
3722
|
"pyo3-macros-backend",
|
|
@@ -2297,9 +3726,9 @@ dependencies = [
|
|
|
2297
3726
|
|
|
2298
3727
|
[[package]]
|
|
2299
3728
|
name = "pyo3-macros-backend"
|
|
2300
|
-
version = "0.28.
|
|
3729
|
+
version = "0.28.3"
|
|
2301
3730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2302
|
-
checksum = "
|
|
3731
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
2303
3732
|
dependencies = [
|
|
2304
3733
|
"heck",
|
|
2305
3734
|
"proc-macro2",
|
|
@@ -2310,9 +3739,9 @@ dependencies = [
|
|
|
2310
3739
|
|
|
2311
3740
|
[[package]]
|
|
2312
3741
|
name = "python3-dll-a"
|
|
2313
|
-
version = "0.2.
|
|
3742
|
+
version = "0.2.15"
|
|
2314
3743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2315
|
-
checksum = "
|
|
3744
|
+
checksum = "d80ba7540edb18890d444c5aa8e1f1f99b1bdf26fb26ae383135325f4a36042b"
|
|
2316
3745
|
dependencies = [
|
|
2317
3746
|
"cc",
|
|
2318
3747
|
]
|
|
@@ -2443,6 +3872,17 @@ dependencies = [
|
|
|
2443
3872
|
"rand_core 0.9.5",
|
|
2444
3873
|
]
|
|
2445
3874
|
|
|
3875
|
+
[[package]]
|
|
3876
|
+
name = "rand"
|
|
3877
|
+
version = "0.10.0"
|
|
3878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3879
|
+
checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8"
|
|
3880
|
+
dependencies = [
|
|
3881
|
+
"chacha20 0.10.0",
|
|
3882
|
+
"getrandom 0.4.2",
|
|
3883
|
+
"rand_core 0.10.0",
|
|
3884
|
+
]
|
|
3885
|
+
|
|
2446
3886
|
[[package]]
|
|
2447
3887
|
name = "rand_chacha"
|
|
2448
3888
|
version = "0.3.1"
|
|
@@ -2481,6 +3921,12 @@ dependencies = [
|
|
|
2481
3921
|
"getrandom 0.3.4",
|
|
2482
3922
|
]
|
|
2483
3923
|
|
|
3924
|
+
[[package]]
|
|
3925
|
+
name = "rand_core"
|
|
3926
|
+
version = "0.10.0"
|
|
3927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3928
|
+
checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
|
|
3929
|
+
|
|
2484
3930
|
[[package]]
|
|
2485
3931
|
name = "rand_distr"
|
|
2486
3932
|
version = "0.4.3"
|
|
@@ -2630,6 +4076,26 @@ dependencies = [
|
|
|
2630
4076
|
"web-sys",
|
|
2631
4077
|
]
|
|
2632
4078
|
|
|
4079
|
+
[[package]]
|
|
4080
|
+
name = "rfc6979"
|
|
4081
|
+
version = "0.4.0"
|
|
4082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4083
|
+
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
|
|
4084
|
+
dependencies = [
|
|
4085
|
+
"hmac 0.12.1",
|
|
4086
|
+
"subtle",
|
|
4087
|
+
]
|
|
4088
|
+
|
|
4089
|
+
[[package]]
|
|
4090
|
+
name = "rfc6979"
|
|
4091
|
+
version = "0.5.0-rc.5"
|
|
4092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4093
|
+
checksum = "23a3127ee32baec36af75b4107082d9bd823501ec14a4e016be4b6b37faa74ae"
|
|
4094
|
+
dependencies = [
|
|
4095
|
+
"hmac 0.13.0",
|
|
4096
|
+
"subtle",
|
|
4097
|
+
]
|
|
4098
|
+
|
|
2633
4099
|
[[package]]
|
|
2634
4100
|
name = "ring"
|
|
2635
4101
|
version = "0.17.14"
|
|
@@ -2640,10 +4106,50 @@ dependencies = [
|
|
|
2640
4106
|
"cfg-if",
|
|
2641
4107
|
"getrandom 0.2.17",
|
|
2642
4108
|
"libc",
|
|
2643
|
-
"untrusted",
|
|
4109
|
+
"untrusted 0.9.0",
|
|
2644
4110
|
"windows-sys 0.52.0",
|
|
2645
4111
|
]
|
|
2646
4112
|
|
|
4113
|
+
[[package]]
|
|
4114
|
+
name = "rsa"
|
|
4115
|
+
version = "0.9.10"
|
|
4116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4117
|
+
checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
|
|
4118
|
+
dependencies = [
|
|
4119
|
+
"const-oid 0.9.6",
|
|
4120
|
+
"digest 0.10.7",
|
|
4121
|
+
"num-bigint-dig",
|
|
4122
|
+
"num-integer",
|
|
4123
|
+
"num-traits",
|
|
4124
|
+
"pkcs1 0.7.5",
|
|
4125
|
+
"pkcs8 0.10.2",
|
|
4126
|
+
"rand_core 0.6.4",
|
|
4127
|
+
"sha2 0.10.9",
|
|
4128
|
+
"signature 2.2.0",
|
|
4129
|
+
"spki 0.7.3",
|
|
4130
|
+
"subtle",
|
|
4131
|
+
"zeroize",
|
|
4132
|
+
]
|
|
4133
|
+
|
|
4134
|
+
[[package]]
|
|
4135
|
+
name = "rsa"
|
|
4136
|
+
version = "0.10.0-rc.17"
|
|
4137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4138
|
+
checksum = "87ed3e93fc7e473e464b9726f4759659e72bc8665e4b8ea227547024f416d905"
|
|
4139
|
+
dependencies = [
|
|
4140
|
+
"const-oid 0.10.2",
|
|
4141
|
+
"crypto-bigint 0.7.3",
|
|
4142
|
+
"crypto-primes",
|
|
4143
|
+
"digest 0.11.2",
|
|
4144
|
+
"pkcs1 0.8.0-rc.4",
|
|
4145
|
+
"pkcs8 0.11.0-rc.11",
|
|
4146
|
+
"rand_core 0.10.0",
|
|
4147
|
+
"sha2 0.11.0",
|
|
4148
|
+
"signature 3.0.0-rc.10",
|
|
4149
|
+
"spki 0.8.0",
|
|
4150
|
+
"zeroize",
|
|
4151
|
+
]
|
|
4152
|
+
|
|
2647
4153
|
[[package]]
|
|
2648
4154
|
name = "ruff_python_ast"
|
|
2649
4155
|
version = "0.0.0"
|
|
@@ -2710,6 +4216,175 @@ dependencies = [
|
|
|
2710
4216
|
"get-size2",
|
|
2711
4217
|
]
|
|
2712
4218
|
|
|
4219
|
+
[[package]]
|
|
4220
|
+
name = "russh"
|
|
4221
|
+
version = "0.60.0"
|
|
4222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4223
|
+
checksum = "3b530252dc3ff163b73a7e48c97b925450d2ca53edcb466a46ad0a231e45f998"
|
|
4224
|
+
dependencies = [
|
|
4225
|
+
"aes 0.8.4",
|
|
4226
|
+
"aws-lc-rs",
|
|
4227
|
+
"bitflags",
|
|
4228
|
+
"block-padding 0.3.3",
|
|
4229
|
+
"byteorder",
|
|
4230
|
+
"bytes",
|
|
4231
|
+
"cbc 0.1.2",
|
|
4232
|
+
"cipher 0.5.1",
|
|
4233
|
+
"crypto-bigint 0.7.3",
|
|
4234
|
+
"ctr 0.9.2",
|
|
4235
|
+
"curve25519-dalek 5.0.0-pre.6",
|
|
4236
|
+
"data-encoding",
|
|
4237
|
+
"delegate",
|
|
4238
|
+
"der 0.8.0",
|
|
4239
|
+
"digest 0.10.7",
|
|
4240
|
+
"ecdsa 0.17.0-rc.16",
|
|
4241
|
+
"ed25519-dalek 3.0.0-pre.6",
|
|
4242
|
+
"elliptic-curve 0.14.0-rc.29",
|
|
4243
|
+
"enum_dispatch",
|
|
4244
|
+
"flate2",
|
|
4245
|
+
"futures",
|
|
4246
|
+
"generic-array 1.3.5",
|
|
4247
|
+
"getrandom 0.2.17",
|
|
4248
|
+
"hex-literal",
|
|
4249
|
+
"hmac 0.12.1",
|
|
4250
|
+
"inout 0.1.4",
|
|
4251
|
+
"internal-russh-forked-ssh-key",
|
|
4252
|
+
"internal-russh-num-bigint",
|
|
4253
|
+
"log",
|
|
4254
|
+
"md5",
|
|
4255
|
+
"ml-kem",
|
|
4256
|
+
"module-lattice",
|
|
4257
|
+
"p256 0.14.0-rc.8",
|
|
4258
|
+
"p384 0.14.0-rc.8",
|
|
4259
|
+
"p521 0.14.0-rc.8",
|
|
4260
|
+
"pageant 0.2.0",
|
|
4261
|
+
"pbkdf2 0.12.2",
|
|
4262
|
+
"pkcs1 0.8.0-rc.4",
|
|
4263
|
+
"pkcs5 0.8.0-rc.13",
|
|
4264
|
+
"pkcs8 0.11.0-rc.11",
|
|
4265
|
+
"polyval 0.7.1",
|
|
4266
|
+
"rand 0.10.0",
|
|
4267
|
+
"rand_core 0.10.0",
|
|
4268
|
+
"rsa 0.10.0-rc.17",
|
|
4269
|
+
"russh-cryptovec 0.59.0",
|
|
4270
|
+
"russh-util 0.52.0",
|
|
4271
|
+
"sec1 0.8.1",
|
|
4272
|
+
"sha1 0.10.6",
|
|
4273
|
+
"sha2 0.10.9",
|
|
4274
|
+
"signature 3.0.0-rc.10",
|
|
4275
|
+
"spki 0.8.0",
|
|
4276
|
+
"ssh-encoding",
|
|
4277
|
+
"subtle",
|
|
4278
|
+
"thiserror 2.0.18",
|
|
4279
|
+
"tokio",
|
|
4280
|
+
"typenum",
|
|
4281
|
+
"universal-hash 0.6.1",
|
|
4282
|
+
"zeroize",
|
|
4283
|
+
]
|
|
4284
|
+
|
|
4285
|
+
[[package]]
|
|
4286
|
+
name = "russh-cryptovec"
|
|
4287
|
+
version = "0.48.0"
|
|
4288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4289
|
+
checksum = "4d8e7e854e1a87e4be00fa287c98cad23faa064d0464434beaa9f014ec3baa98"
|
|
4290
|
+
dependencies = [
|
|
4291
|
+
"libc",
|
|
4292
|
+
"ssh-encoding",
|
|
4293
|
+
"winapi",
|
|
4294
|
+
]
|
|
4295
|
+
|
|
4296
|
+
[[package]]
|
|
4297
|
+
name = "russh-cryptovec"
|
|
4298
|
+
version = "0.59.0"
|
|
4299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4300
|
+
checksum = "36140e8a20297bc2e8338807c3d9ca911f7fa49d7539cbcd6d48d3befd70efd8"
|
|
4301
|
+
dependencies = [
|
|
4302
|
+
"log",
|
|
4303
|
+
"nix",
|
|
4304
|
+
"ssh-encoding",
|
|
4305
|
+
"windows-sys 0.61.2",
|
|
4306
|
+
]
|
|
4307
|
+
|
|
4308
|
+
[[package]]
|
|
4309
|
+
name = "russh-keys"
|
|
4310
|
+
version = "0.49.2"
|
|
4311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4312
|
+
checksum = "788a2439ce385856585346beb37c48e7c9eb5de5f4f00736720a19ffdb3f5bb5"
|
|
4313
|
+
dependencies = [
|
|
4314
|
+
"aes 0.8.4",
|
|
4315
|
+
"async-trait",
|
|
4316
|
+
"bcrypt-pbkdf",
|
|
4317
|
+
"block-padding 0.3.3",
|
|
4318
|
+
"byteorder",
|
|
4319
|
+
"bytes",
|
|
4320
|
+
"cbc 0.1.2",
|
|
4321
|
+
"ctr 0.9.2",
|
|
4322
|
+
"data-encoding",
|
|
4323
|
+
"der 0.7.10",
|
|
4324
|
+
"digest 0.10.7",
|
|
4325
|
+
"ecdsa 0.16.9",
|
|
4326
|
+
"ed25519-dalek 2.2.0",
|
|
4327
|
+
"elliptic-curve 0.13.8",
|
|
4328
|
+
"futures",
|
|
4329
|
+
"getrandom 0.2.17",
|
|
4330
|
+
"hmac 0.12.1",
|
|
4331
|
+
"home",
|
|
4332
|
+
"inout 0.1.4",
|
|
4333
|
+
"log",
|
|
4334
|
+
"md5",
|
|
4335
|
+
"num-integer",
|
|
4336
|
+
"p256 0.13.2",
|
|
4337
|
+
"p384 0.13.1",
|
|
4338
|
+
"p521 0.13.3",
|
|
4339
|
+
"pageant 0.0.1",
|
|
4340
|
+
"pbkdf2 0.12.2",
|
|
4341
|
+
"pkcs1 0.7.5",
|
|
4342
|
+
"pkcs5 0.7.1",
|
|
4343
|
+
"pkcs8 0.10.2",
|
|
4344
|
+
"rand 0.8.5",
|
|
4345
|
+
"rand_core 0.6.4",
|
|
4346
|
+
"rsa 0.9.10",
|
|
4347
|
+
"russh-cryptovec 0.48.0",
|
|
4348
|
+
"russh-util 0.48.0",
|
|
4349
|
+
"sec1 0.7.3",
|
|
4350
|
+
"serde",
|
|
4351
|
+
"sha1 0.10.6",
|
|
4352
|
+
"sha2 0.10.9",
|
|
4353
|
+
"signature 2.2.0",
|
|
4354
|
+
"spki 0.7.3",
|
|
4355
|
+
"ssh-encoding",
|
|
4356
|
+
"ssh-key",
|
|
4357
|
+
"thiserror 1.0.69",
|
|
4358
|
+
"tokio",
|
|
4359
|
+
"tokio-stream",
|
|
4360
|
+
"typenum",
|
|
4361
|
+
"zeroize",
|
|
4362
|
+
]
|
|
4363
|
+
|
|
4364
|
+
[[package]]
|
|
4365
|
+
name = "russh-util"
|
|
4366
|
+
version = "0.48.0"
|
|
4367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4368
|
+
checksum = "92c7dd577958c0cefbc8f8a2c05c48c88c42e2fdb760dbe9b96ae31d4de97a1f"
|
|
4369
|
+
dependencies = [
|
|
4370
|
+
"chrono",
|
|
4371
|
+
"tokio",
|
|
4372
|
+
"wasm-bindgen",
|
|
4373
|
+
"wasm-bindgen-futures",
|
|
4374
|
+
]
|
|
4375
|
+
|
|
4376
|
+
[[package]]
|
|
4377
|
+
name = "russh-util"
|
|
4378
|
+
version = "0.52.0"
|
|
4379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4380
|
+
checksum = "668424a5dde0bcb45b55ba7de8476b93831b4aa2fa6947e145f3b053e22c60b6"
|
|
4381
|
+
dependencies = [
|
|
4382
|
+
"chrono",
|
|
4383
|
+
"tokio",
|
|
4384
|
+
"wasm-bindgen",
|
|
4385
|
+
"wasm-bindgen-futures",
|
|
4386
|
+
]
|
|
4387
|
+
|
|
2713
4388
|
[[package]]
|
|
2714
4389
|
name = "rustc-hash"
|
|
2715
4390
|
version = "2.1.2"
|
|
@@ -2720,9 +4395,30 @@ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
|
2720
4395
|
name = "rustc_version"
|
|
2721
4396
|
version = "0.4.1"
|
|
2722
4397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2723
|
-
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
4398
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
4399
|
+
dependencies = [
|
|
4400
|
+
"semver",
|
|
4401
|
+
]
|
|
4402
|
+
|
|
4403
|
+
[[package]]
|
|
4404
|
+
name = "rustcrypto-ff"
|
|
4405
|
+
version = "0.14.0-rc.1"
|
|
4406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4407
|
+
checksum = "fd2a8adb347447693cd2ba0d218c4b66c62da9b0a5672b17b981e4291ec65ff6"
|
|
4408
|
+
dependencies = [
|
|
4409
|
+
"rand_core 0.10.0",
|
|
4410
|
+
"subtle",
|
|
4411
|
+
]
|
|
4412
|
+
|
|
4413
|
+
[[package]]
|
|
4414
|
+
name = "rustcrypto-group"
|
|
4415
|
+
version = "0.14.0-rc.1"
|
|
4416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4417
|
+
checksum = "369f9b61aa45933c062c9f6b5c3c50ab710687eca83dd3802653b140b43f85ed"
|
|
2724
4418
|
dependencies = [
|
|
2725
|
-
"
|
|
4419
|
+
"rand_core 0.10.0",
|
|
4420
|
+
"rustcrypto-ff",
|
|
4421
|
+
"subtle",
|
|
2726
4422
|
]
|
|
2727
4423
|
|
|
2728
4424
|
[[package]]
|
|
@@ -2810,7 +4506,7 @@ dependencies = [
|
|
|
2810
4506
|
"aws-lc-rs",
|
|
2811
4507
|
"ring",
|
|
2812
4508
|
"rustls-pki-types",
|
|
2813
|
-
"untrusted",
|
|
4509
|
+
"untrusted 0.9.0",
|
|
2814
4510
|
]
|
|
2815
4511
|
|
|
2816
4512
|
[[package]]
|
|
@@ -2846,6 +4542,25 @@ dependencies = [
|
|
|
2846
4542
|
"bytemuck",
|
|
2847
4543
|
]
|
|
2848
4544
|
|
|
4545
|
+
[[package]]
|
|
4546
|
+
name = "salsa20"
|
|
4547
|
+
version = "0.10.2"
|
|
4548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4549
|
+
checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
|
|
4550
|
+
dependencies = [
|
|
4551
|
+
"cipher 0.4.4",
|
|
4552
|
+
]
|
|
4553
|
+
|
|
4554
|
+
[[package]]
|
|
4555
|
+
name = "salsa20"
|
|
4556
|
+
version = "0.11.0"
|
|
4557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4558
|
+
checksum = "2f874456e72520ff1375a06c588eaf074b0f01f9e9e1aada45bd9b7954a6e42c"
|
|
4559
|
+
dependencies = [
|
|
4560
|
+
"cfg-if",
|
|
4561
|
+
"cipher 0.5.1",
|
|
4562
|
+
]
|
|
4563
|
+
|
|
2849
4564
|
[[package]]
|
|
2850
4565
|
name = "same-file"
|
|
2851
4566
|
version = "1.0.6"
|
|
@@ -2904,12 +4619,63 @@ version = "1.2.0"
|
|
|
2904
4619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2905
4620
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2906
4621
|
|
|
4622
|
+
[[package]]
|
|
4623
|
+
name = "scrypt"
|
|
4624
|
+
version = "0.11.0"
|
|
4625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4626
|
+
checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
|
|
4627
|
+
dependencies = [
|
|
4628
|
+
"pbkdf2 0.12.2",
|
|
4629
|
+
"salsa20 0.10.2",
|
|
4630
|
+
"sha2 0.10.9",
|
|
4631
|
+
]
|
|
4632
|
+
|
|
4633
|
+
[[package]]
|
|
4634
|
+
name = "scrypt"
|
|
4635
|
+
version = "0.12.0-rc.10"
|
|
4636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4637
|
+
checksum = "e03ed5b54ed5fcc8e016cd94301416bc2c01c05c87a6742b97468337c8804598"
|
|
4638
|
+
dependencies = [
|
|
4639
|
+
"cfg-if",
|
|
4640
|
+
"pbkdf2 0.13.0-rc.10",
|
|
4641
|
+
"salsa20 0.11.0",
|
|
4642
|
+
"sha2 0.11.0",
|
|
4643
|
+
]
|
|
4644
|
+
|
|
2907
4645
|
[[package]]
|
|
2908
4646
|
name = "sdd"
|
|
2909
4647
|
version = "3.0.10"
|
|
2910
4648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2911
4649
|
checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
|
|
2912
4650
|
|
|
4651
|
+
[[package]]
|
|
4652
|
+
name = "sec1"
|
|
4653
|
+
version = "0.7.3"
|
|
4654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4655
|
+
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
|
|
4656
|
+
dependencies = [
|
|
4657
|
+
"base16ct 0.2.0",
|
|
4658
|
+
"der 0.7.10",
|
|
4659
|
+
"generic-array 0.14.7",
|
|
4660
|
+
"pkcs8 0.10.2",
|
|
4661
|
+
"subtle",
|
|
4662
|
+
"zeroize",
|
|
4663
|
+
]
|
|
4664
|
+
|
|
4665
|
+
[[package]]
|
|
4666
|
+
name = "sec1"
|
|
4667
|
+
version = "0.8.1"
|
|
4668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4669
|
+
checksum = "d56d437c2f19203ce5f7122e507831de96f3d2d4d3be5af44a0b0a09d8a80e4d"
|
|
4670
|
+
dependencies = [
|
|
4671
|
+
"base16ct 1.0.0",
|
|
4672
|
+
"ctutils",
|
|
4673
|
+
"der 0.8.0",
|
|
4674
|
+
"hybrid-array",
|
|
4675
|
+
"subtle",
|
|
4676
|
+
"zeroize",
|
|
4677
|
+
]
|
|
4678
|
+
|
|
2913
4679
|
[[package]]
|
|
2914
4680
|
name = "security-framework"
|
|
2915
4681
|
version = "3.7.0"
|
|
@@ -2941,9 +4707,15 @@ checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
|
|
|
2941
4707
|
|
|
2942
4708
|
[[package]]
|
|
2943
4709
|
name = "semver"
|
|
2944
|
-
version = "1.0.
|
|
4710
|
+
version = "1.0.28"
|
|
4711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4712
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
4713
|
+
|
|
4714
|
+
[[package]]
|
|
4715
|
+
name = "seq-macro"
|
|
4716
|
+
version = "0.3.6"
|
|
2945
4717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
-
checksum = "
|
|
4718
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
2947
4719
|
|
|
2948
4720
|
[[package]]
|
|
2949
4721
|
name = "serde"
|
|
@@ -2999,6 +4771,16 @@ dependencies = [
|
|
|
2999
4771
|
"zmij",
|
|
3000
4772
|
]
|
|
3001
4773
|
|
|
4774
|
+
[[package]]
|
|
4775
|
+
name = "serdect"
|
|
4776
|
+
version = "0.4.2"
|
|
4777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4778
|
+
checksum = "9af4a3e75ebd5599b30d4de5768e00b5095d518a79fefc3ecbaf77e665d1ec06"
|
|
4779
|
+
dependencies = [
|
|
4780
|
+
"base16ct 1.0.0",
|
|
4781
|
+
"serde",
|
|
4782
|
+
]
|
|
4783
|
+
|
|
3002
4784
|
[[package]]
|
|
3003
4785
|
name = "serial_test"
|
|
3004
4786
|
version = "3.4.0"
|
|
@@ -3025,6 +4807,17 @@ dependencies = [
|
|
|
3025
4807
|
"syn",
|
|
3026
4808
|
]
|
|
3027
4809
|
|
|
4810
|
+
[[package]]
|
|
4811
|
+
name = "sha1"
|
|
4812
|
+
version = "0.10.6"
|
|
4813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4814
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
4815
|
+
dependencies = [
|
|
4816
|
+
"cfg-if",
|
|
4817
|
+
"cpufeatures 0.2.17",
|
|
4818
|
+
"digest 0.10.7",
|
|
4819
|
+
]
|
|
4820
|
+
|
|
3028
4821
|
[[package]]
|
|
3029
4822
|
name = "sha1"
|
|
3030
4823
|
version = "0.11.0"
|
|
@@ -3032,8 +4825,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3032
4825
|
checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
|
|
3033
4826
|
dependencies = [
|
|
3034
4827
|
"cfg-if",
|
|
3035
|
-
"cpufeatures",
|
|
3036
|
-
"digest",
|
|
4828
|
+
"cpufeatures 0.3.0",
|
|
4829
|
+
"digest 0.11.2",
|
|
4830
|
+
]
|
|
4831
|
+
|
|
4832
|
+
[[package]]
|
|
4833
|
+
name = "sha2"
|
|
4834
|
+
version = "0.10.9"
|
|
4835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4836
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
4837
|
+
dependencies = [
|
|
4838
|
+
"cfg-if",
|
|
4839
|
+
"cpufeatures 0.2.17",
|
|
4840
|
+
"digest 0.10.7",
|
|
3037
4841
|
]
|
|
3038
4842
|
|
|
3039
4843
|
[[package]]
|
|
@@ -3043,8 +4847,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3043
4847
|
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
3044
4848
|
dependencies = [
|
|
3045
4849
|
"cfg-if",
|
|
3046
|
-
"cpufeatures",
|
|
3047
|
-
"digest",
|
|
4850
|
+
"cpufeatures 0.3.0",
|
|
4851
|
+
"digest 0.11.2",
|
|
4852
|
+
]
|
|
4853
|
+
|
|
4854
|
+
[[package]]
|
|
4855
|
+
name = "sha3"
|
|
4856
|
+
version = "0.11.0"
|
|
4857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4858
|
+
checksum = "be176f1a57ce4e3d31c1a166222d9768de5954f811601fb7ca06fc8203905ce1"
|
|
4859
|
+
dependencies = [
|
|
4860
|
+
"digest 0.11.2",
|
|
4861
|
+
"keccak",
|
|
3048
4862
|
]
|
|
3049
4863
|
|
|
3050
4864
|
[[package]]
|
|
@@ -3063,6 +4877,26 @@ dependencies = [
|
|
|
3063
4877
|
"libc",
|
|
3064
4878
|
]
|
|
3065
4879
|
|
|
4880
|
+
[[package]]
|
|
4881
|
+
name = "signature"
|
|
4882
|
+
version = "2.2.0"
|
|
4883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4884
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
4885
|
+
dependencies = [
|
|
4886
|
+
"digest 0.10.7",
|
|
4887
|
+
"rand_core 0.6.4",
|
|
4888
|
+
]
|
|
4889
|
+
|
|
4890
|
+
[[package]]
|
|
4891
|
+
name = "signature"
|
|
4892
|
+
version = "3.0.0-rc.10"
|
|
4893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4894
|
+
checksum = "7f1880df446116126965eeec169136b2e0251dba37c6223bcc819569550edea3"
|
|
4895
|
+
dependencies = [
|
|
4896
|
+
"digest 0.11.2",
|
|
4897
|
+
"rand_core 0.10.0",
|
|
4898
|
+
]
|
|
4899
|
+
|
|
3066
4900
|
[[package]]
|
|
3067
4901
|
name = "simba"
|
|
3068
4902
|
version = "0.9.1"
|
|
@@ -3109,6 +4943,12 @@ dependencies = [
|
|
|
3109
4943
|
"serde",
|
|
3110
4944
|
]
|
|
3111
4945
|
|
|
4946
|
+
[[package]]
|
|
4947
|
+
name = "smawk"
|
|
4948
|
+
version = "0.3.2"
|
|
4949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4950
|
+
checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
|
|
4951
|
+
|
|
3112
4952
|
[[package]]
|
|
3113
4953
|
name = "socket2"
|
|
3114
4954
|
version = "0.6.3"
|
|
@@ -3128,6 +4968,78 @@ dependencies = [
|
|
|
3128
4968
|
"lock_api",
|
|
3129
4969
|
]
|
|
3130
4970
|
|
|
4971
|
+
[[package]]
|
|
4972
|
+
name = "spki"
|
|
4973
|
+
version = "0.7.3"
|
|
4974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4975
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
4976
|
+
dependencies = [
|
|
4977
|
+
"base64ct",
|
|
4978
|
+
"der 0.7.10",
|
|
4979
|
+
]
|
|
4980
|
+
|
|
4981
|
+
[[package]]
|
|
4982
|
+
name = "spki"
|
|
4983
|
+
version = "0.8.0"
|
|
4984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4985
|
+
checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f"
|
|
4986
|
+
dependencies = [
|
|
4987
|
+
"base64ct",
|
|
4988
|
+
"der 0.8.0",
|
|
4989
|
+
]
|
|
4990
|
+
|
|
4991
|
+
[[package]]
|
|
4992
|
+
name = "ssh-cipher"
|
|
4993
|
+
version = "0.2.0"
|
|
4994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4995
|
+
checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
|
|
4996
|
+
dependencies = [
|
|
4997
|
+
"aes 0.8.4",
|
|
4998
|
+
"aes-gcm 0.10.3",
|
|
4999
|
+
"cbc 0.1.2",
|
|
5000
|
+
"chacha20 0.9.1",
|
|
5001
|
+
"cipher 0.4.4",
|
|
5002
|
+
"ctr 0.9.2",
|
|
5003
|
+
"poly1305",
|
|
5004
|
+
"ssh-encoding",
|
|
5005
|
+
"subtle",
|
|
5006
|
+
]
|
|
5007
|
+
|
|
5008
|
+
[[package]]
|
|
5009
|
+
name = "ssh-encoding"
|
|
5010
|
+
version = "0.2.0"
|
|
5011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5012
|
+
checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
|
|
5013
|
+
dependencies = [
|
|
5014
|
+
"base64ct",
|
|
5015
|
+
"bytes",
|
|
5016
|
+
"pem-rfc7468 0.7.0",
|
|
5017
|
+
"sha2 0.10.9",
|
|
5018
|
+
]
|
|
5019
|
+
|
|
5020
|
+
[[package]]
|
|
5021
|
+
name = "ssh-key"
|
|
5022
|
+
version = "0.6.7"
|
|
5023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5024
|
+
checksum = "3b86f5297f0f04d08cabaa0f6bff7cb6aec4d9c3b49d87990d63da9d9156a8c3"
|
|
5025
|
+
dependencies = [
|
|
5026
|
+
"bcrypt-pbkdf",
|
|
5027
|
+
"ed25519-dalek 2.2.0",
|
|
5028
|
+
"num-bigint-dig",
|
|
5029
|
+
"p256 0.13.2",
|
|
5030
|
+
"p384 0.13.1",
|
|
5031
|
+
"p521 0.13.3",
|
|
5032
|
+
"rand_core 0.6.4",
|
|
5033
|
+
"rsa 0.9.10",
|
|
5034
|
+
"sec1 0.7.3",
|
|
5035
|
+
"sha2 0.10.9",
|
|
5036
|
+
"signature 2.2.0",
|
|
5037
|
+
"ssh-cipher",
|
|
5038
|
+
"ssh-encoding",
|
|
5039
|
+
"subtle",
|
|
5040
|
+
"zeroize",
|
|
5041
|
+
]
|
|
5042
|
+
|
|
3131
5043
|
[[package]]
|
|
3132
5044
|
name = "stable_deref_trait"
|
|
3133
5045
|
version = "1.2.1"
|
|
@@ -3268,6 +5180,17 @@ dependencies = [
|
|
|
3268
5180
|
"unicode-width",
|
|
3269
5181
|
]
|
|
3270
5182
|
|
|
5183
|
+
[[package]]
|
|
5184
|
+
name = "textwrap"
|
|
5185
|
+
version = "0.16.2"
|
|
5186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5187
|
+
checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
|
|
5188
|
+
dependencies = [
|
|
5189
|
+
"smawk",
|
|
5190
|
+
"unicode-linebreak",
|
|
5191
|
+
"unicode-width",
|
|
5192
|
+
]
|
|
5193
|
+
|
|
3271
5194
|
[[package]]
|
|
3272
5195
|
name = "thiserror"
|
|
3273
5196
|
version = "1.0.69"
|
|
@@ -3310,9 +5233,9 @@ dependencies = [
|
|
|
3310
5233
|
|
|
3311
5234
|
[[package]]
|
|
3312
5235
|
name = "tinystr"
|
|
3313
|
-
version = "0.8.
|
|
5236
|
+
version = "0.8.3"
|
|
3314
5237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3315
|
-
checksum = "
|
|
5238
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
3316
5239
|
dependencies = [
|
|
3317
5240
|
"displaydoc",
|
|
3318
5241
|
"zerovec",
|
|
@@ -3345,9 +5268,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3345
5268
|
|
|
3346
5269
|
[[package]]
|
|
3347
5270
|
name = "tokio"
|
|
3348
|
-
version = "1.
|
|
5271
|
+
version = "1.51.0"
|
|
3349
5272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3350
|
-
checksum = "
|
|
5273
|
+
checksum = "2bd1c4c0fc4a7ab90fc15ef6daaa3ec3b893f004f915f2392557ed23237820cd"
|
|
3351
5274
|
dependencies = [
|
|
3352
5275
|
"bytes",
|
|
3353
5276
|
"libc",
|
|
@@ -3361,9 +5284,9 @@ dependencies = [
|
|
|
3361
5284
|
|
|
3362
5285
|
[[package]]
|
|
3363
5286
|
name = "tokio-macros"
|
|
3364
|
-
version = "2.
|
|
5287
|
+
version = "2.7.0"
|
|
3365
5288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3366
|
-
checksum = "
|
|
5289
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
3367
5290
|
dependencies = [
|
|
3368
5291
|
"proc-macro2",
|
|
3369
5292
|
"quote",
|
|
@@ -3389,6 +5312,7 @@ dependencies = [
|
|
|
3389
5312
|
"futures-core",
|
|
3390
5313
|
"pin-project-lite",
|
|
3391
5314
|
"tokio",
|
|
5315
|
+
"tokio-util",
|
|
3392
5316
|
]
|
|
3393
5317
|
|
|
3394
5318
|
[[package]]
|
|
@@ -3515,12 +5439,24 @@ version = "0.1.4"
|
|
|
3515
5439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3516
5440
|
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
3517
5441
|
|
|
5442
|
+
[[package]]
|
|
5443
|
+
name = "unicode-id-start"
|
|
5444
|
+
version = "1.4.0"
|
|
5445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5446
|
+
checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
|
|
5447
|
+
|
|
3518
5448
|
[[package]]
|
|
3519
5449
|
name = "unicode-ident"
|
|
3520
5450
|
version = "1.0.24"
|
|
3521
5451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3522
5452
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
3523
5453
|
|
|
5454
|
+
[[package]]
|
|
5455
|
+
name = "unicode-linebreak"
|
|
5456
|
+
version = "0.1.5"
|
|
5457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5458
|
+
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
|
5459
|
+
|
|
3524
5460
|
[[package]]
|
|
3525
5461
|
name = "unicode-normalization"
|
|
3526
5462
|
version = "0.1.25"
|
|
@@ -3554,7 +5490,7 @@ version = "1.3.0"
|
|
|
3554
5490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3555
5491
|
checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
|
|
3556
5492
|
dependencies = [
|
|
3557
|
-
"phf",
|
|
5493
|
+
"phf 0.11.3",
|
|
3558
5494
|
"unicode_names2_generator",
|
|
3559
5495
|
]
|
|
3560
5496
|
|
|
@@ -3570,6 +5506,32 @@ dependencies = [
|
|
|
3570
5506
|
"rand 0.8.5",
|
|
3571
5507
|
]
|
|
3572
5508
|
|
|
5509
|
+
[[package]]
|
|
5510
|
+
name = "universal-hash"
|
|
5511
|
+
version = "0.5.1"
|
|
5512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5513
|
+
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
|
5514
|
+
dependencies = [
|
|
5515
|
+
"crypto-common 0.1.7",
|
|
5516
|
+
"subtle",
|
|
5517
|
+
]
|
|
5518
|
+
|
|
5519
|
+
[[package]]
|
|
5520
|
+
name = "universal-hash"
|
|
5521
|
+
version = "0.6.1"
|
|
5522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5523
|
+
checksum = "f4987bdc12753382e0bec4a65c50738ffaabc998b9cdd1f952fb5f39b0048a96"
|
|
5524
|
+
dependencies = [
|
|
5525
|
+
"crypto-common 0.2.1",
|
|
5526
|
+
"ctutils",
|
|
5527
|
+
]
|
|
5528
|
+
|
|
5529
|
+
[[package]]
|
|
5530
|
+
name = "untrusted"
|
|
5531
|
+
version = "0.7.1"
|
|
5532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5533
|
+
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
|
5534
|
+
|
|
3573
5535
|
[[package]]
|
|
3574
5536
|
name = "untrusted"
|
|
3575
5537
|
version = "0.9.0"
|
|
@@ -3666,9 +5628,9 @@ dependencies = [
|
|
|
3666
5628
|
|
|
3667
5629
|
[[package]]
|
|
3668
5630
|
name = "wasm-bindgen"
|
|
3669
|
-
version = "0.2.
|
|
5631
|
+
version = "0.2.117"
|
|
3670
5632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3671
|
-
checksum = "
|
|
5633
|
+
checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
|
|
3672
5634
|
dependencies = [
|
|
3673
5635
|
"cfg-if",
|
|
3674
5636
|
"once_cell",
|
|
@@ -3679,9 +5641,9 @@ dependencies = [
|
|
|
3679
5641
|
|
|
3680
5642
|
[[package]]
|
|
3681
5643
|
name = "wasm-bindgen-futures"
|
|
3682
|
-
version = "0.4.
|
|
5644
|
+
version = "0.4.67"
|
|
3683
5645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3684
|
-
checksum = "
|
|
5646
|
+
checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
|
|
3685
5647
|
dependencies = [
|
|
3686
5648
|
"js-sys",
|
|
3687
5649
|
"wasm-bindgen",
|
|
@@ -3689,9 +5651,9 @@ dependencies = [
|
|
|
3689
5651
|
|
|
3690
5652
|
[[package]]
|
|
3691
5653
|
name = "wasm-bindgen-macro"
|
|
3692
|
-
version = "0.2.
|
|
5654
|
+
version = "0.2.117"
|
|
3693
5655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3694
|
-
checksum = "
|
|
5656
|
+
checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
|
|
3695
5657
|
dependencies = [
|
|
3696
5658
|
"quote",
|
|
3697
5659
|
"wasm-bindgen-macro-support",
|
|
@@ -3699,9 +5661,9 @@ dependencies = [
|
|
|
3699
5661
|
|
|
3700
5662
|
[[package]]
|
|
3701
5663
|
name = "wasm-bindgen-macro-support"
|
|
3702
|
-
version = "0.2.
|
|
5664
|
+
version = "0.2.117"
|
|
3703
5665
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3704
|
-
checksum = "
|
|
5666
|
+
checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
|
|
3705
5667
|
dependencies = [
|
|
3706
5668
|
"bumpalo",
|
|
3707
5669
|
"proc-macro2",
|
|
@@ -3712,9 +5674,9 @@ dependencies = [
|
|
|
3712
5674
|
|
|
3713
5675
|
[[package]]
|
|
3714
5676
|
name = "wasm-bindgen-shared"
|
|
3715
|
-
version = "0.2.
|
|
5677
|
+
version = "0.2.117"
|
|
3716
5678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3717
|
-
checksum = "
|
|
5679
|
+
checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
|
|
3718
5680
|
dependencies = [
|
|
3719
5681
|
"unicode-ident",
|
|
3720
5682
|
]
|
|
@@ -3768,9 +5730,9 @@ dependencies = [
|
|
|
3768
5730
|
|
|
3769
5731
|
[[package]]
|
|
3770
5732
|
name = "web-sys"
|
|
3771
|
-
version = "0.3.
|
|
5733
|
+
version = "0.3.94"
|
|
3772
5734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3773
|
-
checksum = "
|
|
5735
|
+
checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
|
|
3774
5736
|
dependencies = [
|
|
3775
5737
|
"js-sys",
|
|
3776
5738
|
"wasm-bindgen",
|
|
@@ -3836,17 +5798,83 @@ version = "0.4.0"
|
|
|
3836
5798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3837
5799
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3838
5800
|
|
|
5801
|
+
[[package]]
|
|
5802
|
+
name = "windows"
|
|
5803
|
+
version = "0.58.0"
|
|
5804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5805
|
+
checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
|
|
5806
|
+
dependencies = [
|
|
5807
|
+
"windows-core 0.58.0",
|
|
5808
|
+
"windows-targets 0.52.6",
|
|
5809
|
+
]
|
|
5810
|
+
|
|
5811
|
+
[[package]]
|
|
5812
|
+
name = "windows"
|
|
5813
|
+
version = "0.62.2"
|
|
5814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5815
|
+
checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
|
|
5816
|
+
dependencies = [
|
|
5817
|
+
"windows-collections",
|
|
5818
|
+
"windows-core 0.62.2",
|
|
5819
|
+
"windows-future",
|
|
5820
|
+
"windows-numerics",
|
|
5821
|
+
]
|
|
5822
|
+
|
|
5823
|
+
[[package]]
|
|
5824
|
+
name = "windows-collections"
|
|
5825
|
+
version = "0.3.2"
|
|
5826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5827
|
+
checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
|
|
5828
|
+
dependencies = [
|
|
5829
|
+
"windows-core 0.62.2",
|
|
5830
|
+
]
|
|
5831
|
+
|
|
5832
|
+
[[package]]
|
|
5833
|
+
name = "windows-core"
|
|
5834
|
+
version = "0.58.0"
|
|
5835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5836
|
+
checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
|
|
5837
|
+
dependencies = [
|
|
5838
|
+
"windows-implement 0.58.0",
|
|
5839
|
+
"windows-interface 0.58.0",
|
|
5840
|
+
"windows-result 0.2.0",
|
|
5841
|
+
"windows-strings 0.1.0",
|
|
5842
|
+
"windows-targets 0.52.6",
|
|
5843
|
+
]
|
|
5844
|
+
|
|
3839
5845
|
[[package]]
|
|
3840
5846
|
name = "windows-core"
|
|
3841
5847
|
version = "0.62.2"
|
|
3842
5848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3843
5849
|
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3844
5850
|
dependencies = [
|
|
3845
|
-
"windows-implement",
|
|
3846
|
-
"windows-interface",
|
|
5851
|
+
"windows-implement 0.60.2",
|
|
5852
|
+
"windows-interface 0.59.3",
|
|
5853
|
+
"windows-link",
|
|
5854
|
+
"windows-result 0.4.1",
|
|
5855
|
+
"windows-strings 0.5.1",
|
|
5856
|
+
]
|
|
5857
|
+
|
|
5858
|
+
[[package]]
|
|
5859
|
+
name = "windows-future"
|
|
5860
|
+
version = "0.3.2"
|
|
5861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5862
|
+
checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
|
|
5863
|
+
dependencies = [
|
|
5864
|
+
"windows-core 0.62.2",
|
|
3847
5865
|
"windows-link",
|
|
3848
|
-
"windows-
|
|
3849
|
-
|
|
5866
|
+
"windows-threading",
|
|
5867
|
+
]
|
|
5868
|
+
|
|
5869
|
+
[[package]]
|
|
5870
|
+
name = "windows-implement"
|
|
5871
|
+
version = "0.58.0"
|
|
5872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5873
|
+
checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
|
|
5874
|
+
dependencies = [
|
|
5875
|
+
"proc-macro2",
|
|
5876
|
+
"quote",
|
|
5877
|
+
"syn",
|
|
3850
5878
|
]
|
|
3851
5879
|
|
|
3852
5880
|
[[package]]
|
|
@@ -3860,6 +5888,17 @@ dependencies = [
|
|
|
3860
5888
|
"syn",
|
|
3861
5889
|
]
|
|
3862
5890
|
|
|
5891
|
+
[[package]]
|
|
5892
|
+
name = "windows-interface"
|
|
5893
|
+
version = "0.58.0"
|
|
5894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5895
|
+
checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
|
|
5896
|
+
dependencies = [
|
|
5897
|
+
"proc-macro2",
|
|
5898
|
+
"quote",
|
|
5899
|
+
"syn",
|
|
5900
|
+
]
|
|
5901
|
+
|
|
3863
5902
|
[[package]]
|
|
3864
5903
|
name = "windows-interface"
|
|
3865
5904
|
version = "0.59.3"
|
|
@@ -3877,6 +5916,25 @@ version = "0.2.1"
|
|
|
3877
5916
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3878
5917
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3879
5918
|
|
|
5919
|
+
[[package]]
|
|
5920
|
+
name = "windows-numerics"
|
|
5921
|
+
version = "0.3.1"
|
|
5922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5923
|
+
checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
|
|
5924
|
+
dependencies = [
|
|
5925
|
+
"windows-core 0.62.2",
|
|
5926
|
+
"windows-link",
|
|
5927
|
+
]
|
|
5928
|
+
|
|
5929
|
+
[[package]]
|
|
5930
|
+
name = "windows-result"
|
|
5931
|
+
version = "0.2.0"
|
|
5932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5933
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
5934
|
+
dependencies = [
|
|
5935
|
+
"windows-targets 0.52.6",
|
|
5936
|
+
]
|
|
5937
|
+
|
|
3880
5938
|
[[package]]
|
|
3881
5939
|
name = "windows-result"
|
|
3882
5940
|
version = "0.4.1"
|
|
@@ -3886,6 +5944,16 @@ dependencies = [
|
|
|
3886
5944
|
"windows-link",
|
|
3887
5945
|
]
|
|
3888
5946
|
|
|
5947
|
+
[[package]]
|
|
5948
|
+
name = "windows-strings"
|
|
5949
|
+
version = "0.1.0"
|
|
5950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5951
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
5952
|
+
dependencies = [
|
|
5953
|
+
"windows-result 0.2.0",
|
|
5954
|
+
"windows-targets 0.52.6",
|
|
5955
|
+
]
|
|
5956
|
+
|
|
3889
5957
|
[[package]]
|
|
3890
5958
|
name = "windows-strings"
|
|
3891
5959
|
version = "0.5.1"
|
|
@@ -3979,6 +6047,15 @@ dependencies = [
|
|
|
3979
6047
|
"windows_x86_64_msvc 0.53.1",
|
|
3980
6048
|
]
|
|
3981
6049
|
|
|
6050
|
+
[[package]]
|
|
6051
|
+
name = "windows-threading"
|
|
6052
|
+
version = "0.2.1"
|
|
6053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6054
|
+
checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
|
|
6055
|
+
dependencies = [
|
|
6056
|
+
"windows-link",
|
|
6057
|
+
]
|
|
6058
|
+
|
|
3982
6059
|
[[package]]
|
|
3983
6060
|
name = "windows_aarch64_gnullvm"
|
|
3984
6061
|
version = "0.42.2"
|
|
@@ -4207,9 +6284,9 @@ dependencies = [
|
|
|
4207
6284
|
|
|
4208
6285
|
[[package]]
|
|
4209
6286
|
name = "writeable"
|
|
4210
|
-
version = "0.6.
|
|
6287
|
+
version = "0.6.3"
|
|
4211
6288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4212
|
-
checksum = "
|
|
6289
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
4213
6290
|
|
|
4214
6291
|
[[package]]
|
|
4215
6292
|
name = "yansi"
|
|
@@ -4219,9 +6296,9 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
4219
6296
|
|
|
4220
6297
|
[[package]]
|
|
4221
6298
|
name = "yoke"
|
|
4222
|
-
version = "0.8.
|
|
6299
|
+
version = "0.8.2"
|
|
4223
6300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4224
|
-
checksum = "
|
|
6301
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
4225
6302
|
dependencies = [
|
|
4226
6303
|
"stable_deref_trait",
|
|
4227
6304
|
"yoke-derive",
|
|
@@ -4230,9 +6307,9 @@ dependencies = [
|
|
|
4230
6307
|
|
|
4231
6308
|
[[package]]
|
|
4232
6309
|
name = "yoke-derive"
|
|
4233
|
-
version = "0.8.
|
|
6310
|
+
version = "0.8.2"
|
|
4234
6311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4235
|
-
checksum = "
|
|
6312
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
4236
6313
|
dependencies = [
|
|
4237
6314
|
"proc-macro2",
|
|
4238
6315
|
"quote",
|
|
@@ -4240,20 +6317,37 @@ dependencies = [
|
|
|
4240
6317
|
"synstructure",
|
|
4241
6318
|
]
|
|
4242
6319
|
|
|
6320
|
+
[[package]]
|
|
6321
|
+
name = "zapcode-core"
|
|
6322
|
+
version = "1.5.1"
|
|
6323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6324
|
+
checksum = "763b84cb268f5cf5212198eff31106006ac32aa7e472201cae9f994521abebe2"
|
|
6325
|
+
dependencies = [
|
|
6326
|
+
"indexmap",
|
|
6327
|
+
"oxc_allocator",
|
|
6328
|
+
"oxc_ast",
|
|
6329
|
+
"oxc_parser",
|
|
6330
|
+
"oxc_span",
|
|
6331
|
+
"oxc_syntax",
|
|
6332
|
+
"postcard",
|
|
6333
|
+
"serde",
|
|
6334
|
+
"thiserror 2.0.18",
|
|
6335
|
+
]
|
|
6336
|
+
|
|
4243
6337
|
[[package]]
|
|
4244
6338
|
name = "zerocopy"
|
|
4245
|
-
version = "0.8.
|
|
6339
|
+
version = "0.8.48"
|
|
4246
6340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4247
|
-
checksum = "
|
|
6341
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
4248
6342
|
dependencies = [
|
|
4249
6343
|
"zerocopy-derive",
|
|
4250
6344
|
]
|
|
4251
6345
|
|
|
4252
6346
|
[[package]]
|
|
4253
6347
|
name = "zerocopy-derive"
|
|
4254
|
-
version = "0.8.
|
|
6348
|
+
version = "0.8.48"
|
|
4255
6349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4256
|
-
checksum = "
|
|
6350
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
4257
6351
|
dependencies = [
|
|
4258
6352
|
"proc-macro2",
|
|
4259
6353
|
"quote",
|
|
@@ -4262,18 +6356,18 @@ dependencies = [
|
|
|
4262
6356
|
|
|
4263
6357
|
[[package]]
|
|
4264
6358
|
name = "zerofrom"
|
|
4265
|
-
version = "0.1.
|
|
6359
|
+
version = "0.1.7"
|
|
4266
6360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4267
|
-
checksum = "
|
|
6361
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
4268
6362
|
dependencies = [
|
|
4269
6363
|
"zerofrom-derive",
|
|
4270
6364
|
]
|
|
4271
6365
|
|
|
4272
6366
|
[[package]]
|
|
4273
6367
|
name = "zerofrom-derive"
|
|
4274
|
-
version = "0.1.
|
|
6368
|
+
version = "0.1.7"
|
|
4275
6369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4276
|
-
checksum = "
|
|
6370
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
4277
6371
|
dependencies = [
|
|
4278
6372
|
"proc-macro2",
|
|
4279
6373
|
"quote",
|
|
@@ -4289,9 +6383,9 @@ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
|
4289
6383
|
|
|
4290
6384
|
[[package]]
|
|
4291
6385
|
name = "zerotrie"
|
|
4292
|
-
version = "0.2.
|
|
6386
|
+
version = "0.2.4"
|
|
4293
6387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4294
|
-
checksum = "
|
|
6388
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
4295
6389
|
dependencies = [
|
|
4296
6390
|
"displaydoc",
|
|
4297
6391
|
"yoke",
|
|
@@ -4300,9 +6394,9 @@ dependencies = [
|
|
|
4300
6394
|
|
|
4301
6395
|
[[package]]
|
|
4302
6396
|
name = "zerovec"
|
|
4303
|
-
version = "0.11.
|
|
6397
|
+
version = "0.11.6"
|
|
4304
6398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4305
|
-
checksum = "
|
|
6399
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
4306
6400
|
dependencies = [
|
|
4307
6401
|
"yoke",
|
|
4308
6402
|
"zerofrom",
|
|
@@ -4311,9 +6405,9 @@ dependencies = [
|
|
|
4311
6405
|
|
|
4312
6406
|
[[package]]
|
|
4313
6407
|
name = "zerovec-derive"
|
|
4314
|
-
version = "0.11.
|
|
6408
|
+
version = "0.11.3"
|
|
4315
6409
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4316
|
-
checksum = "
|
|
6410
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
4317
6411
|
dependencies = [
|
|
4318
6412
|
"proc-macro2",
|
|
4319
6413
|
"quote",
|