bashkit 0.1.13__tar.gz → 0.1.15__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.13 → bashkit-0.1.15}/Cargo.lock +1662 -209
- {bashkit-0.1.13 → bashkit-0.1.15}/Cargo.toml +17 -9
- {bashkit-0.1.13 → bashkit-0.1.15}/PKG-INFO +82 -2
- {bashkit-0.1.13/crates/bashkit-python → bashkit-0.1.15}/README.md +77 -1
- {bashkit-0.1.13 → bashkit-0.1.15}/bashkit/__init__.py +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/bashkit/_bashkit.pyi +50 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/Cargo.toml +35 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/README.md +145 -30
- bashkit-0.1.15/crates/bashkit/docs/ssh.md +77 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/docs/threat-model.md +3 -0
- bashkit-0.1.15/crates/bashkit/docs/typescript.md +252 -0
- bashkit-0.1.15/crates/bashkit/examples/ssh_supabase.rs +29 -0
- bashkit-0.1.15/crates/bashkit/examples/typescript_external_functions.rs +61 -0
- bashkit-0.1.15/crates/bashkit/examples/typescript_scripts.rs +184 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/archive.rs +60 -25
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/arg_parser.rs +64 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/awk.rs +780 -62
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/base64.rs +23 -32
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/checksum.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/clear.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/column.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/comm.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/compgen.rs +40 -1
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/csv.rs +4 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/curl.rs +352 -20
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/cuttr.rs +47 -55
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/date.rs +25 -18
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/diff.rs +163 -18
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/dotenv.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/environ.rs +26 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/envsubst.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/expand.rs +4 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/export.rs +11 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/fileops.rs +16 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/flow.rs +5 -3
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/fold.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/glob_cmd.rs +4 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/grep.rs +109 -6
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/headtail.rs +13 -7
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/hextools.rs +8 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/http.rs +108 -15
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/iconv.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/inspect.rs +40 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/join.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/jq.rs +178 -21
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/json.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/ls.rs +326 -44
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/mod.rs +38 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/nl.rs +4 -0
- bashkit-0.1.15/crates/bashkit/src/builtins/numfmt.rs +586 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/parallel.rs +65 -5
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/paste.rs +65 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/patch.rs +92 -1
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/path.rs +6 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/pipeline.rs +36 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/printf.rs +28 -2
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/python.rs +10 -1
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/read.rs +150 -37
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/rg.rs +123 -29
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/search_common.rs +24 -3
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/sed.rs +56 -10
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/semver.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/sleep.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/sortuniq.rs +391 -127
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/split.rs +2 -0
- bashkit-0.1.15/crates/bashkit/src/builtins/ssh.rs +700 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/strings.rs +4 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/system.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/template.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/test.rs +25 -11
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/timeout.rs +4 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/tomlq.rs +4 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/tree.rs +64 -20
- bashkit-0.1.15/crates/bashkit/src/builtins/typescript.rs +1284 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/vars.rs +27 -1
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/verify.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/wc.rs +2 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/yaml.rs +4 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/zip_cmd.rs +10 -0
- bashkit-0.1.15/crates/bashkit/src/error.rs +195 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/fs/memory.rs +332 -8
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/fs/mod.rs +1 -1
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/fs/mountable.rs +31 -7
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/fs/overlay.rs +71 -14
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/fs/realfs.rs +164 -20
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/fs/traits.rs +17 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/interpreter/glob.rs +17 -2
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/interpreter/mod.rs +1201 -355
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/interpreter/state.rs +193 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/lib.rs +469 -17
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/limits.rs +54 -0
- bashkit-0.1.15/crates/bashkit/src/network/bot_auth.rs +327 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/network/client.rs +157 -4
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/network/mod.rs +8 -1
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/parser/ast.rs +37 -3
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/parser/lexer.rs +101 -7
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/parser/mod.rs +429 -14
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/scripted_tool/mod.rs +1 -1
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/scripted_tool/toolset.rs +253 -156
- bashkit-0.1.15/crates/bashkit/src/snapshot.rs +241 -0
- bashkit-0.1.15/crates/bashkit/src/ssh/allowlist.rs +300 -0
- bashkit-0.1.15/crates/bashkit/src/ssh/client.rs +374 -0
- bashkit-0.1.15/crates/bashkit/src/ssh/config.rs +223 -0
- bashkit-0.1.15/crates/bashkit/src/ssh/handler.rs +128 -0
- bashkit-0.1.15/crates/bashkit/src/ssh/mod.rs +50 -0
- bashkit-0.1.15/crates/bashkit/src/ssh/russh_handler.rs +266 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/trace.rs +115 -4
- bashkit-0.1.15/crates/bashkit/tests/allexport_tests.rs +171 -0
- bashkit-0.1.15/crates/bashkit/tests/awk_newline_tests.rs +48 -0
- bashkit-0.1.15/crates/bashkit/tests/awk_pattern_tests.rs +28 -0
- bashkit-0.1.15/crates/bashkit/tests/awk_printf_expr_test.rs +25 -0
- bashkit-0.1.15/crates/bashkit/tests/bash_source_tests.rs +115 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/blackbox_security_tests.rs +43 -0
- bashkit-0.1.15/crates/bashkit/tests/cmdsub_quote_test.rs +34 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/dev_null_tests.rs +20 -3
- bashkit-0.1.15/crates/bashkit/tests/issue_853_test.rs +93 -0
- bashkit-0.1.15/crates/bashkit/tests/issue_872_test.rs +66 -0
- bashkit-0.1.15/crates/bashkit/tests/issue_873_test.rs +70 -0
- bashkit-0.1.15/crates/bashkit/tests/issue_875_test.rs +86 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/network_security_tests.rs +54 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/realfs_tests.rs +107 -0
- bashkit-0.1.15/crates/bashkit/tests/regex_limit_tests.rs +110 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/script_execution_tests.rs +151 -2
- bashkit-0.1.15/crates/bashkit/tests/set_e_and_or_tests.rs +233 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/snapshot_tests.rs +206 -1
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +42 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +21 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +22 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +55 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/awk/filename.test.sh +37 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +26 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +31 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +58 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +22 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +77 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +80 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +33 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +23 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +15 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +22 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +2 -3
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +2 -3
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +30 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +26 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +68 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +23 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +35 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +23 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +32 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +16 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +93 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +37 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +18 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +95 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/find.test.sh +28 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +35 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +31 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/ls.test.sh +117 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +43 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +114 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +113 -1
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +80 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -2
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +20 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +29 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +57 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +44 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +36 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +8 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +26 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +53 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +67 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +157 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +143 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +8 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +58 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/tree.test.sh +11 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +27 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +46 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/grep/rg.test.sh +94 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +45 -2
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +25 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +21 -0
- bashkit-0.1.15/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +337 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_tests.rs +75 -3
- bashkit-0.1.15/crates/bashkit/tests/ssh_builtin_tests.rs +316 -0
- bashkit-0.1.15/crates/bashkit/tests/ssh_supabase_tests.rs +40 -0
- bashkit-0.1.15/crates/bashkit/tests/symlink_overlay_security_tests.rs +228 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/threat_model_tests.rs +327 -6
- bashkit-0.1.15/crates/bashkit/tests/tty_tests.rs +46 -0
- bashkit-0.1.15/crates/bashkit/tests/typescript_integration_tests.rs +277 -0
- bashkit-0.1.15/crates/bashkit/tests/typescript_security_tests.rs +752 -0
- bashkit-0.1.15/crates/bashkit/tests/urandom_tests.rs +64 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit-python/Cargo.toml +2 -1
- {bashkit-0.1.13 → bashkit-0.1.15/crates/bashkit-python}/README.md +77 -1
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit-python/src/lib.rs +584 -31
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit-python/tests/test_bashkit.py +140 -1
- {bashkit-0.1.13 → bashkit-0.1.15}/pyproject.toml +6 -0
- bashkit-0.1.13/crates/bashkit/src/error.rs +0 -89
- bashkit-0.1.13/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -19
- {bashkit-0.1.13 → bashkit-0.1.15}/bashkit/deepagents.py +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/bashkit/langchain.py +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/bashkit/py.typed +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/bashkit/pydantic_ai.py +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/benches/parallel_execution.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/docs/compatibility.md +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/docs/custom_builtins.md +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/docs/live_mounts.md +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/docs/logging.md +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/docs/python.md +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/agent_tool.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/basic.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/custom_backend.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/custom_builtins.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/custom_fs.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/git_workflow.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/live_mounts.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/python_external_functions.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/python_scripts.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/realfs_readonly.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/resource_limits.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/scripted_tool.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/show_tool_output.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/streaming_output.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/text_files.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/text_processing.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/examples/virtual_identity.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/alias.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/assert.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/bc.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/caller.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/cat.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/dirstack.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/disk.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/echo.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/expr.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/fc.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/git.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/help.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/introspect.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/log.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/mapfile.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/navigation.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/retry.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/seq.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/source.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/textrev.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/trap.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/wait.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/builtins/yes.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/fs/backend.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/fs/limits.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/fs/posix.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/fs/search.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/git/client.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/git/config.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/git/mod.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/interpreter/jobs.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/logging_impl.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/network/allowlist.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/parser/budget.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/parser/span.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/parser/tokens.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/scripted_tool/execute.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/src/tool.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/background_exec_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/builtin_error_security_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/cancellation_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/coproc_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/custom_builtins_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/custom_fs_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/final_env_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/find_multi_path_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/git_advanced_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/git_inspection_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/git_integration_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/git_remote_security_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/git_security_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/history_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/issue_274_test.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/issue_275_279_282_test.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/issue_276_test.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/issue_277_test.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/issue_289_test.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/issue_290_test.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/issue_291_test.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/live_mount_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/logging_security_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/mkfifo_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/nested_subscript_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/output_truncation_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/overlay_path_validation_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/proptest_differential.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/proptest_security.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/python_integration_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/python_security_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/security_audit_pocs.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/skills_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/source_function_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/spec_runner.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/unicode_security_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit/tests/unset_function_tests.rs +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit-python/examples/bash_basics.py +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit-python/tests/test_frameworks.py +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit-python/tests/test_integration.py +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit-python/tests/test_python_security.py +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit-python/tests/test_security.py +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit-python/tests/test_security_advanced.py +0 -0
- {bashkit-0.1.13 → bashkit-0.1.15}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
|
@@ -8,6 +8,41 @@ 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",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[[package]]
|
|
22
|
+
name = "aes"
|
|
23
|
+
version = "0.8.4"
|
|
24
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
26
|
+
dependencies = [
|
|
27
|
+
"cfg-if",
|
|
28
|
+
"cipher",
|
|
29
|
+
"cpufeatures 0.2.17",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "aes-gcm"
|
|
34
|
+
version = "0.10.3"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"aead",
|
|
39
|
+
"aes",
|
|
40
|
+
"cipher",
|
|
41
|
+
"ctr",
|
|
42
|
+
"ghash",
|
|
43
|
+
"subtle",
|
|
44
|
+
]
|
|
45
|
+
|
|
11
46
|
[[package]]
|
|
12
47
|
name = "ahash"
|
|
13
48
|
version = "0.8.12"
|
|
@@ -126,6 +161,18 @@ dependencies = [
|
|
|
126
161
|
"num-traits",
|
|
127
162
|
]
|
|
128
163
|
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "argon2"
|
|
166
|
+
version = "0.5.3"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
|
|
169
|
+
dependencies = [
|
|
170
|
+
"base64ct",
|
|
171
|
+
"blake2",
|
|
172
|
+
"cpufeatures 0.2.17",
|
|
173
|
+
"password-hash",
|
|
174
|
+
]
|
|
175
|
+
|
|
129
176
|
[[package]]
|
|
130
177
|
name = "async-trait"
|
|
131
178
|
version = "0.1.89"
|
|
@@ -200,9 +247,9 @@ dependencies = [
|
|
|
200
247
|
|
|
201
248
|
[[package]]
|
|
202
249
|
name = "aws-lc-sys"
|
|
203
|
-
version = "0.39.
|
|
250
|
+
version = "0.39.1"
|
|
204
251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
-
checksum = "
|
|
252
|
+
checksum = "83a25cf98105baa966497416dbd42565ce3a8cf8dbfd59803ec9ad46f3126399"
|
|
206
253
|
dependencies = [
|
|
207
254
|
"cc",
|
|
208
255
|
"cmake",
|
|
@@ -210,21 +257,34 @@ dependencies = [
|
|
|
210
257
|
"fs_extra",
|
|
211
258
|
]
|
|
212
259
|
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "base16ct"
|
|
262
|
+
version = "0.2.0"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
265
|
+
|
|
213
266
|
[[package]]
|
|
214
267
|
name = "base64"
|
|
215
268
|
version = "0.22.1"
|
|
216
269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
270
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
218
271
|
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "base64ct"
|
|
274
|
+
version = "1.8.3"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
277
|
+
|
|
219
278
|
[[package]]
|
|
220
279
|
name = "bashkit"
|
|
221
|
-
version = "0.1.
|
|
280
|
+
version = "0.1.15"
|
|
222
281
|
dependencies = [
|
|
223
282
|
"anyhow",
|
|
224
283
|
"async-trait",
|
|
225
284
|
"base64",
|
|
226
285
|
"chrono",
|
|
227
286
|
"criterion",
|
|
287
|
+
"ed25519-dalek",
|
|
228
288
|
"fail",
|
|
229
289
|
"flate2",
|
|
230
290
|
"futures",
|
|
@@ -237,14 +297,17 @@ dependencies = [
|
|
|
237
297
|
"monty",
|
|
238
298
|
"pretty_assertions",
|
|
239
299
|
"proptest",
|
|
300
|
+
"rand 0.8.5",
|
|
240
301
|
"regex",
|
|
241
302
|
"reqwest",
|
|
303
|
+
"russh",
|
|
304
|
+
"russh-keys",
|
|
242
305
|
"schemars",
|
|
243
306
|
"serde",
|
|
244
307
|
"serde_json",
|
|
245
308
|
"serial_test",
|
|
246
|
-
"sha1",
|
|
247
|
-
"sha2",
|
|
309
|
+
"sha1 0.11.0",
|
|
310
|
+
"sha2 0.11.0",
|
|
248
311
|
"tempfile",
|
|
249
312
|
"thiserror 2.0.18",
|
|
250
313
|
"tokio",
|
|
@@ -252,11 +315,12 @@ dependencies = [
|
|
|
252
315
|
"tower",
|
|
253
316
|
"tracing",
|
|
254
317
|
"url",
|
|
318
|
+
"zapcode-core",
|
|
255
319
|
]
|
|
256
320
|
|
|
257
321
|
[[package]]
|
|
258
322
|
name = "bashkit-bench"
|
|
259
|
-
version = "0.1.
|
|
323
|
+
version = "0.1.15"
|
|
260
324
|
dependencies = [
|
|
261
325
|
"anyhow",
|
|
262
326
|
"bashkit",
|
|
@@ -272,7 +336,7 @@ dependencies = [
|
|
|
272
336
|
|
|
273
337
|
[[package]]
|
|
274
338
|
name = "bashkit-cli"
|
|
275
|
-
version = "0.1.
|
|
339
|
+
version = "0.1.15"
|
|
276
340
|
dependencies = [
|
|
277
341
|
"anyhow",
|
|
278
342
|
"bashkit",
|
|
@@ -285,7 +349,7 @@ dependencies = [
|
|
|
285
349
|
|
|
286
350
|
[[package]]
|
|
287
351
|
name = "bashkit-eval"
|
|
288
|
-
version = "0.1.
|
|
352
|
+
version = "0.1.15"
|
|
289
353
|
dependencies = [
|
|
290
354
|
"anyhow",
|
|
291
355
|
"async-trait",
|
|
@@ -301,7 +365,7 @@ dependencies = [
|
|
|
301
365
|
|
|
302
366
|
[[package]]
|
|
303
367
|
name = "bashkit-js"
|
|
304
|
-
version = "0.1.
|
|
368
|
+
version = "0.1.15"
|
|
305
369
|
dependencies = [
|
|
306
370
|
"bashkit",
|
|
307
371
|
"napi",
|
|
@@ -314,7 +378,7 @@ dependencies = [
|
|
|
314
378
|
|
|
315
379
|
[[package]]
|
|
316
380
|
name = "bashkit-python"
|
|
317
|
-
version = "0.1.
|
|
381
|
+
version = "0.1.15"
|
|
318
382
|
dependencies = [
|
|
319
383
|
"bashkit",
|
|
320
384
|
"num-bigint",
|
|
@@ -324,6 +388,17 @@ dependencies = [
|
|
|
324
388
|
"tokio",
|
|
325
389
|
]
|
|
326
390
|
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "bcrypt-pbkdf"
|
|
393
|
+
version = "0.10.0"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2"
|
|
396
|
+
dependencies = [
|
|
397
|
+
"blowfish",
|
|
398
|
+
"pbkdf2",
|
|
399
|
+
"sha2 0.10.9",
|
|
400
|
+
]
|
|
401
|
+
|
|
327
402
|
[[package]]
|
|
328
403
|
name = "bit-set"
|
|
329
404
|
version = "0.8.0"
|
|
@@ -345,6 +420,15 @@ version = "2.11.0"
|
|
|
345
420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
421
|
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
347
422
|
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "blake2"
|
|
425
|
+
version = "0.10.6"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
|
428
|
+
dependencies = [
|
|
429
|
+
"digest 0.10.7",
|
|
430
|
+
]
|
|
431
|
+
|
|
348
432
|
[[package]]
|
|
349
433
|
name = "block-buffer"
|
|
350
434
|
version = "0.10.4"
|
|
@@ -354,6 +438,34 @@ dependencies = [
|
|
|
354
438
|
"generic-array",
|
|
355
439
|
]
|
|
356
440
|
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "block-buffer"
|
|
443
|
+
version = "0.12.0"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
|
|
446
|
+
dependencies = [
|
|
447
|
+
"hybrid-array",
|
|
448
|
+
]
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "block-padding"
|
|
452
|
+
version = "0.3.3"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
|
|
455
|
+
dependencies = [
|
|
456
|
+
"generic-array",
|
|
457
|
+
]
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "blowfish"
|
|
461
|
+
version = "0.9.1"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
|
|
464
|
+
dependencies = [
|
|
465
|
+
"byteorder",
|
|
466
|
+
"cipher",
|
|
467
|
+
]
|
|
468
|
+
|
|
357
469
|
[[package]]
|
|
358
470
|
name = "bstr"
|
|
359
471
|
version = "1.12.1"
|
|
@@ -410,11 +522,20 @@ dependencies = [
|
|
|
410
522
|
"rustversion",
|
|
411
523
|
]
|
|
412
524
|
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "cbc"
|
|
527
|
+
version = "0.1.2"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"cipher",
|
|
532
|
+
]
|
|
533
|
+
|
|
413
534
|
[[package]]
|
|
414
535
|
name = "cc"
|
|
415
|
-
version = "1.2.
|
|
536
|
+
version = "1.2.59"
|
|
416
537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
-
checksum = "
|
|
538
|
+
checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
|
|
418
539
|
dependencies = [
|
|
419
540
|
"find-msvc-tools",
|
|
420
541
|
"jobserver",
|
|
@@ -440,6 +561,17 @@ version = "0.2.1"
|
|
|
440
561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
562
|
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
442
563
|
|
|
564
|
+
[[package]]
|
|
565
|
+
name = "chacha20"
|
|
566
|
+
version = "0.9.1"
|
|
567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
+
checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
|
|
569
|
+
dependencies = [
|
|
570
|
+
"cfg-if",
|
|
571
|
+
"cipher",
|
|
572
|
+
"cpufeatures 0.2.17",
|
|
573
|
+
]
|
|
574
|
+
|
|
443
575
|
[[package]]
|
|
444
576
|
name = "chrono"
|
|
445
577
|
version = "0.4.44"
|
|
@@ -480,6 +612,16 @@ dependencies = [
|
|
|
480
612
|
"half",
|
|
481
613
|
]
|
|
482
614
|
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "cipher"
|
|
617
|
+
version = "0.4.4"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
620
|
+
dependencies = [
|
|
621
|
+
"crypto-common 0.1.7",
|
|
622
|
+
"inout",
|
|
623
|
+
]
|
|
624
|
+
|
|
483
625
|
[[package]]
|
|
484
626
|
name = "clap"
|
|
485
627
|
version = "4.6.0"
|
|
@@ -522,9 +664,9 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
|
522
664
|
|
|
523
665
|
[[package]]
|
|
524
666
|
name = "cmake"
|
|
525
|
-
version = "0.1.
|
|
667
|
+
version = "0.1.58"
|
|
526
668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
-
checksum = "
|
|
669
|
+
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
528
670
|
dependencies = [
|
|
529
671
|
"cc",
|
|
530
672
|
]
|
|
@@ -585,16 +727,27 @@ dependencies = [
|
|
|
585
727
|
|
|
586
728
|
[[package]]
|
|
587
729
|
name = "console"
|
|
588
|
-
version = "0.
|
|
730
|
+
version = "0.16.3"
|
|
589
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
-
checksum = "
|
|
732
|
+
checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
|
|
591
733
|
dependencies = [
|
|
592
734
|
"encode_unicode",
|
|
593
735
|
"libc",
|
|
594
|
-
"
|
|
595
|
-
"windows-sys 0.59.0",
|
|
736
|
+
"windows-sys 0.61.2",
|
|
596
737
|
]
|
|
597
738
|
|
|
739
|
+
[[package]]
|
|
740
|
+
name = "const-oid"
|
|
741
|
+
version = "0.9.6"
|
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
744
|
+
|
|
745
|
+
[[package]]
|
|
746
|
+
name = "const-oid"
|
|
747
|
+
version = "0.10.2"
|
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
750
|
+
|
|
598
751
|
[[package]]
|
|
599
752
|
name = "convert_case"
|
|
600
753
|
version = "0.11.0"
|
|
@@ -620,6 +773,12 @@ version = "0.8.7"
|
|
|
620
773
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
774
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
622
775
|
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "cow-utils"
|
|
778
|
+
version = "0.1.3"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
|
|
781
|
+
|
|
623
782
|
[[package]]
|
|
624
783
|
name = "cpufeatures"
|
|
625
784
|
version = "0.2.17"
|
|
@@ -629,6 +788,15 @@ dependencies = [
|
|
|
629
788
|
"libc",
|
|
630
789
|
]
|
|
631
790
|
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "cpufeatures"
|
|
793
|
+
version = "0.3.0"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"libc",
|
|
798
|
+
]
|
|
799
|
+
|
|
632
800
|
[[package]]
|
|
633
801
|
name = "crc32fast"
|
|
634
802
|
version = "1.5.0"
|
|
@@ -711,6 +879,18 @@ version = "0.2.4"
|
|
|
711
879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
880
|
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
713
881
|
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "crypto-bigint"
|
|
884
|
+
version = "0.5.5"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"generic-array",
|
|
889
|
+
"rand_core 0.6.4",
|
|
890
|
+
"subtle",
|
|
891
|
+
"zeroize",
|
|
892
|
+
]
|
|
893
|
+
|
|
714
894
|
[[package]]
|
|
715
895
|
name = "crypto-common"
|
|
716
896
|
version = "0.1.7"
|
|
@@ -718,14 +898,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
718
898
|
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
719
899
|
dependencies = [
|
|
720
900
|
"generic-array",
|
|
901
|
+
"rand_core 0.6.4",
|
|
721
902
|
"typenum",
|
|
722
903
|
]
|
|
723
904
|
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "crypto-common"
|
|
907
|
+
version = "0.2.1"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
|
|
910
|
+
dependencies = [
|
|
911
|
+
"hybrid-array",
|
|
912
|
+
]
|
|
913
|
+
|
|
724
914
|
[[package]]
|
|
725
915
|
name = "ctor"
|
|
726
|
-
version = "0.
|
|
916
|
+
version = "0.8.0"
|
|
727
917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
-
checksum = "
|
|
918
|
+
checksum = "352d39c2f7bef1d6ad73db6f5160efcaed66d94ef8c6c573a8410c00bf909a98"
|
|
729
919
|
dependencies = [
|
|
730
920
|
"ctor-proc-macro",
|
|
731
921
|
"dtor",
|
|
@@ -737,6 +927,70 @@ version = "0.0.7"
|
|
|
737
927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
928
|
checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
|
|
739
929
|
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "ctr"
|
|
932
|
+
version = "0.9.2"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
|
|
935
|
+
dependencies = [
|
|
936
|
+
"cipher",
|
|
937
|
+
]
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "curve25519-dalek"
|
|
941
|
+
version = "4.1.3"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
|
944
|
+
dependencies = [
|
|
945
|
+
"cfg-if",
|
|
946
|
+
"cpufeatures 0.2.17",
|
|
947
|
+
"curve25519-dalek-derive",
|
|
948
|
+
"digest 0.10.7",
|
|
949
|
+
"fiat-crypto",
|
|
950
|
+
"rustc_version",
|
|
951
|
+
"subtle",
|
|
952
|
+
"zeroize",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "curve25519-dalek-derive"
|
|
957
|
+
version = "0.1.1"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
960
|
+
dependencies = [
|
|
961
|
+
"proc-macro2",
|
|
962
|
+
"quote",
|
|
963
|
+
"syn",
|
|
964
|
+
]
|
|
965
|
+
|
|
966
|
+
[[package]]
|
|
967
|
+
name = "data-encoding"
|
|
968
|
+
version = "2.10.0"
|
|
969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
+
checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "delegate"
|
|
974
|
+
version = "0.13.5"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "780eb241654bf097afb00fc5f054a09b687dad862e485fdcf8399bb056565370"
|
|
977
|
+
dependencies = [
|
|
978
|
+
"proc-macro2",
|
|
979
|
+
"quote",
|
|
980
|
+
"syn",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "der"
|
|
985
|
+
version = "0.7.10"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"const-oid 0.9.6",
|
|
990
|
+
"pem-rfc7468",
|
|
991
|
+
"zeroize",
|
|
992
|
+
]
|
|
993
|
+
|
|
740
994
|
[[package]]
|
|
741
995
|
name = "derive-where"
|
|
742
996
|
version = "1.6.1"
|
|
@@ -760,8 +1014,21 @@ version = "0.10.7"
|
|
|
760
1014
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
1015
|
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
762
1016
|
dependencies = [
|
|
763
|
-
"block-buffer",
|
|
764
|
-
"
|
|
1017
|
+
"block-buffer 0.10.4",
|
|
1018
|
+
"const-oid 0.9.6",
|
|
1019
|
+
"crypto-common 0.1.7",
|
|
1020
|
+
"subtle",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "digest"
|
|
1025
|
+
version = "0.11.2"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "4850db49bf08e663084f7fb5c87d202ef91a3907271aff24a94eb97ff039153c"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"block-buffer 0.12.0",
|
|
1030
|
+
"const-oid 0.10.2",
|
|
1031
|
+
"crypto-common 0.2.1",
|
|
765
1032
|
]
|
|
766
1033
|
|
|
767
1034
|
[[package]]
|
|
@@ -775,11 +1042,17 @@ dependencies = [
|
|
|
775
1042
|
"syn",
|
|
776
1043
|
]
|
|
777
1044
|
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "dragonbox_ecma"
|
|
1047
|
+
version = "0.1.12"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
|
|
1050
|
+
|
|
778
1051
|
[[package]]
|
|
779
1052
|
name = "dtor"
|
|
780
|
-
version = "0.
|
|
1053
|
+
version = "0.3.0"
|
|
781
1054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
-
checksum = "
|
|
1055
|
+
checksum = "f1057d6c64987086ff8ed0fd3fbf377a6b7d205cc7715868cd401705f715cbe4"
|
|
783
1056
|
dependencies = [
|
|
784
1057
|
"dtor-proc-macro",
|
|
785
1058
|
]
|
|
@@ -802,12 +1075,72 @@ version = "1.0.20"
|
|
|
802
1075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
1076
|
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
804
1077
|
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "ecdsa"
|
|
1080
|
+
version = "0.16.9"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
|
|
1083
|
+
dependencies = [
|
|
1084
|
+
"der",
|
|
1085
|
+
"digest 0.10.7",
|
|
1086
|
+
"elliptic-curve",
|
|
1087
|
+
"rfc6979",
|
|
1088
|
+
"signature",
|
|
1089
|
+
"spki",
|
|
1090
|
+
]
|
|
1091
|
+
|
|
1092
|
+
[[package]]
|
|
1093
|
+
name = "ed25519"
|
|
1094
|
+
version = "2.2.3"
|
|
1095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
+
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
|
1097
|
+
dependencies = [
|
|
1098
|
+
"pkcs8",
|
|
1099
|
+
"signature",
|
|
1100
|
+
]
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "ed25519-dalek"
|
|
1104
|
+
version = "2.2.0"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
|
1107
|
+
dependencies = [
|
|
1108
|
+
"curve25519-dalek",
|
|
1109
|
+
"ed25519",
|
|
1110
|
+
"rand_core 0.6.4",
|
|
1111
|
+
"serde",
|
|
1112
|
+
"sha2 0.10.9",
|
|
1113
|
+
"subtle",
|
|
1114
|
+
"zeroize",
|
|
1115
|
+
]
|
|
1116
|
+
|
|
805
1117
|
[[package]]
|
|
806
1118
|
name = "either"
|
|
807
1119
|
version = "1.15.0"
|
|
808
1120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
1121
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
810
1122
|
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "elliptic-curve"
|
|
1125
|
+
version = "0.13.8"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
|
|
1128
|
+
dependencies = [
|
|
1129
|
+
"base16ct",
|
|
1130
|
+
"crypto-bigint",
|
|
1131
|
+
"digest 0.10.7",
|
|
1132
|
+
"ff",
|
|
1133
|
+
"generic-array",
|
|
1134
|
+
"group",
|
|
1135
|
+
"hkdf",
|
|
1136
|
+
"pem-rfc7468",
|
|
1137
|
+
"pkcs8",
|
|
1138
|
+
"rand_core 0.6.4",
|
|
1139
|
+
"sec1",
|
|
1140
|
+
"subtle",
|
|
1141
|
+
"zeroize",
|
|
1142
|
+
]
|
|
1143
|
+
|
|
811
1144
|
[[package]]
|
|
812
1145
|
name = "embedded-io"
|
|
813
1146
|
version = "0.4.0"
|
|
@@ -826,6 +1159,18 @@ version = "1.0.0"
|
|
|
826
1159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
1160
|
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
828
1161
|
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "enum_dispatch"
|
|
1164
|
+
version = "0.3.13"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
|
|
1167
|
+
dependencies = [
|
|
1168
|
+
"once_cell",
|
|
1169
|
+
"proc-macro2",
|
|
1170
|
+
"quote",
|
|
1171
|
+
"syn",
|
|
1172
|
+
]
|
|
1173
|
+
|
|
829
1174
|
[[package]]
|
|
830
1175
|
name = "equivalent"
|
|
831
1176
|
version = "1.0.2"
|
|
@@ -866,9 +1211,25 @@ dependencies = [
|
|
|
866
1211
|
|
|
867
1212
|
[[package]]
|
|
868
1213
|
name = "fastrand"
|
|
869
|
-
version = "2.
|
|
1214
|
+
version = "2.4.0"
|
|
1215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
+
checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "ff"
|
|
1220
|
+
version = "0.13.1"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
1223
|
+
dependencies = [
|
|
1224
|
+
"rand_core 0.6.4",
|
|
1225
|
+
"subtle",
|
|
1226
|
+
]
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "fiat-crypto"
|
|
1230
|
+
version = "0.2.9"
|
|
870
1231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
-
checksum = "
|
|
1232
|
+
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
872
1233
|
|
|
873
1234
|
[[package]]
|
|
874
1235
|
name = "find-msvc-tools"
|
|
@@ -1015,6 +1376,7 @@ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
|
1015
1376
|
dependencies = [
|
|
1016
1377
|
"typenum",
|
|
1017
1378
|
"version_check",
|
|
1379
|
+
"zeroize",
|
|
1018
1380
|
]
|
|
1019
1381
|
|
|
1020
1382
|
[[package]]
|
|
@@ -1090,6 +1452,16 @@ dependencies = [
|
|
|
1090
1452
|
"wasip3",
|
|
1091
1453
|
]
|
|
1092
1454
|
|
|
1455
|
+
[[package]]
|
|
1456
|
+
name = "ghash"
|
|
1457
|
+
version = "0.5.1"
|
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
+
checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
|
|
1460
|
+
dependencies = [
|
|
1461
|
+
"opaque-debug",
|
|
1462
|
+
"polyval",
|
|
1463
|
+
]
|
|
1464
|
+
|
|
1093
1465
|
[[package]]
|
|
1094
1466
|
name = "globset"
|
|
1095
1467
|
version = "0.4.18"
|
|
@@ -1103,6 +1475,17 @@ dependencies = [
|
|
|
1103
1475
|
"regex-syntax",
|
|
1104
1476
|
]
|
|
1105
1477
|
|
|
1478
|
+
[[package]]
|
|
1479
|
+
name = "group"
|
|
1480
|
+
version = "0.13.0"
|
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
+
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
|
|
1483
|
+
dependencies = [
|
|
1484
|
+
"ff",
|
|
1485
|
+
"rand_core 0.6.4",
|
|
1486
|
+
"subtle",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1106
1489
|
[[package]]
|
|
1107
1490
|
name = "half"
|
|
1108
1491
|
version = "2.7.1"
|
|
@@ -1164,19 +1547,58 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1164
1547
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1165
1548
|
|
|
1166
1549
|
[[package]]
|
|
1167
|
-
name = "
|
|
1168
|
-
version = "0.
|
|
1550
|
+
name = "hex"
|
|
1551
|
+
version = "0.4.3"
|
|
1169
1552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
-
checksum = "
|
|
1553
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1171
1554
|
|
|
1172
1555
|
[[package]]
|
|
1173
|
-
name = "
|
|
1174
|
-
version = "
|
|
1556
|
+
name = "hex-literal"
|
|
1557
|
+
version = "0.4.1"
|
|
1175
1558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
-
checksum = "
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
"
|
|
1559
|
+
checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
|
|
1560
|
+
|
|
1561
|
+
[[package]]
|
|
1562
|
+
name = "hifijson"
|
|
1563
|
+
version = "0.5.0"
|
|
1564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1565
|
+
checksum = "242402749acf71e6f32f5857598b7002c4058a4e3c3b22b4c7d51cab9aea754e"
|
|
1566
|
+
|
|
1567
|
+
[[package]]
|
|
1568
|
+
name = "hkdf"
|
|
1569
|
+
version = "0.12.4"
|
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
+
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
|
1572
|
+
dependencies = [
|
|
1573
|
+
"hmac",
|
|
1574
|
+
]
|
|
1575
|
+
|
|
1576
|
+
[[package]]
|
|
1577
|
+
name = "hmac"
|
|
1578
|
+
version = "0.12.1"
|
|
1579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1580
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
1581
|
+
dependencies = [
|
|
1582
|
+
"digest 0.10.7",
|
|
1583
|
+
]
|
|
1584
|
+
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "home"
|
|
1587
|
+
version = "0.5.12"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
|
|
1590
|
+
dependencies = [
|
|
1591
|
+
"windows-sys 0.61.2",
|
|
1592
|
+
]
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "http"
|
|
1596
|
+
version = "1.4.0"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
1599
|
+
dependencies = [
|
|
1600
|
+
"bytes",
|
|
1601
|
+
"itoa",
|
|
1180
1602
|
]
|
|
1181
1603
|
|
|
1182
1604
|
[[package]]
|
|
@@ -1208,11 +1630,20 @@ version = "1.10.1"
|
|
|
1208
1630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
1631
|
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1210
1632
|
|
|
1633
|
+
[[package]]
|
|
1634
|
+
name = "hybrid-array"
|
|
1635
|
+
version = "0.4.10"
|
|
1636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1637
|
+
checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
|
|
1638
|
+
dependencies = [
|
|
1639
|
+
"typenum",
|
|
1640
|
+
]
|
|
1641
|
+
|
|
1211
1642
|
[[package]]
|
|
1212
1643
|
name = "hyper"
|
|
1213
|
-
version = "1.
|
|
1644
|
+
version = "1.9.0"
|
|
1214
1645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
-
checksum = "
|
|
1646
|
+
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
|
|
1216
1647
|
dependencies = [
|
|
1217
1648
|
"atomic-waker",
|
|
1218
1649
|
"bytes",
|
|
@@ -1223,7 +1654,6 @@ dependencies = [
|
|
|
1223
1654
|
"httparse",
|
|
1224
1655
|
"itoa",
|
|
1225
1656
|
"pin-project-lite",
|
|
1226
|
-
"pin-utils",
|
|
1227
1657
|
"smallvec",
|
|
1228
1658
|
"tokio",
|
|
1229
1659
|
"want",
|
|
@@ -1280,7 +1710,7 @@ dependencies = [
|
|
|
1280
1710
|
"js-sys",
|
|
1281
1711
|
"log",
|
|
1282
1712
|
"wasm-bindgen",
|
|
1283
|
-
"windows-core",
|
|
1713
|
+
"windows-core 0.62.2",
|
|
1284
1714
|
]
|
|
1285
1715
|
|
|
1286
1716
|
[[package]]
|
|
@@ -1294,12 +1724,13 @@ dependencies = [
|
|
|
1294
1724
|
|
|
1295
1725
|
[[package]]
|
|
1296
1726
|
name = "icu_collections"
|
|
1297
|
-
version = "2.
|
|
1727
|
+
version = "2.2.0"
|
|
1298
1728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1299
|
-
checksum = "
|
|
1729
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
1300
1730
|
dependencies = [
|
|
1301
1731
|
"displaydoc",
|
|
1302
1732
|
"potential_utf",
|
|
1733
|
+
"utf8_iter",
|
|
1303
1734
|
"yoke",
|
|
1304
1735
|
"zerofrom",
|
|
1305
1736
|
"zerovec",
|
|
@@ -1307,9 +1738,9 @@ dependencies = [
|
|
|
1307
1738
|
|
|
1308
1739
|
[[package]]
|
|
1309
1740
|
name = "icu_locale_core"
|
|
1310
|
-
version = "2.
|
|
1741
|
+
version = "2.2.0"
|
|
1311
1742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1312
|
-
checksum = "
|
|
1743
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
1313
1744
|
dependencies = [
|
|
1314
1745
|
"displaydoc",
|
|
1315
1746
|
"litemap",
|
|
@@ -1320,9 +1751,9 @@ dependencies = [
|
|
|
1320
1751
|
|
|
1321
1752
|
[[package]]
|
|
1322
1753
|
name = "icu_normalizer"
|
|
1323
|
-
version = "2.
|
|
1754
|
+
version = "2.2.0"
|
|
1324
1755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
-
checksum = "
|
|
1756
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1326
1757
|
dependencies = [
|
|
1327
1758
|
"icu_collections",
|
|
1328
1759
|
"icu_normalizer_data",
|
|
@@ -1334,15 +1765,15 @@ dependencies = [
|
|
|
1334
1765
|
|
|
1335
1766
|
[[package]]
|
|
1336
1767
|
name = "icu_normalizer_data"
|
|
1337
|
-
version = "2.
|
|
1768
|
+
version = "2.2.0"
|
|
1338
1769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
-
checksum = "
|
|
1770
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1340
1771
|
|
|
1341
1772
|
[[package]]
|
|
1342
1773
|
name = "icu_properties"
|
|
1343
|
-
version = "2.
|
|
1774
|
+
version = "2.2.0"
|
|
1344
1775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
-
checksum = "
|
|
1776
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1346
1777
|
dependencies = [
|
|
1347
1778
|
"icu_collections",
|
|
1348
1779
|
"icu_locale_core",
|
|
@@ -1354,15 +1785,15 @@ dependencies = [
|
|
|
1354
1785
|
|
|
1355
1786
|
[[package]]
|
|
1356
1787
|
name = "icu_properties_data"
|
|
1357
|
-
version = "2.
|
|
1788
|
+
version = "2.2.0"
|
|
1358
1789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
|
-
checksum = "
|
|
1790
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1360
1791
|
|
|
1361
1792
|
[[package]]
|
|
1362
1793
|
name = "icu_provider"
|
|
1363
|
-
version = "2.
|
|
1794
|
+
version = "2.2.0"
|
|
1364
1795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1365
|
-
checksum = "
|
|
1796
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1366
1797
|
dependencies = [
|
|
1367
1798
|
"displaydoc",
|
|
1368
1799
|
"icu_locale_core",
|
|
@@ -1402,9 +1833,9 @@ dependencies = [
|
|
|
1402
1833
|
|
|
1403
1834
|
[[package]]
|
|
1404
1835
|
name = "indexmap"
|
|
1405
|
-
version = "2.13.
|
|
1836
|
+
version = "2.13.1"
|
|
1406
1837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
-
checksum = "
|
|
1838
|
+
checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
|
|
1408
1839
|
dependencies = [
|
|
1409
1840
|
"equivalent",
|
|
1410
1841
|
"hashbrown 0.16.1",
|
|
@@ -1412,11 +1843,21 @@ dependencies = [
|
|
|
1412
1843
|
"serde_core",
|
|
1413
1844
|
]
|
|
1414
1845
|
|
|
1846
|
+
[[package]]
|
|
1847
|
+
name = "inout"
|
|
1848
|
+
version = "0.1.4"
|
|
1849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
1851
|
+
dependencies = [
|
|
1852
|
+
"block-padding",
|
|
1853
|
+
"generic-array",
|
|
1854
|
+
]
|
|
1855
|
+
|
|
1415
1856
|
[[package]]
|
|
1416
1857
|
name = "insta"
|
|
1417
|
-
version = "1.
|
|
1858
|
+
version = "1.47.2"
|
|
1418
1859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1419
|
-
checksum = "
|
|
1860
|
+
checksum = "7b4a6248eb93a4401ed2f37dfe8ea592d3cf05b7cf4f8efa867b6895af7e094e"
|
|
1420
1861
|
dependencies = [
|
|
1421
1862
|
"console",
|
|
1422
1863
|
"once_cell",
|
|
@@ -1433,6 +1874,34 @@ dependencies = [
|
|
|
1433
1874
|
"cfg-if",
|
|
1434
1875
|
]
|
|
1435
1876
|
|
|
1877
|
+
[[package]]
|
|
1878
|
+
name = "internal-russh-forked-ssh-key"
|
|
1879
|
+
version = "0.6.10+upstream-0.6.7"
|
|
1880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1881
|
+
checksum = "33555bd765ace379fe85d97bb6d48b5783054f6048a7d5ec24cd9155e490e266"
|
|
1882
|
+
dependencies = [
|
|
1883
|
+
"argon2",
|
|
1884
|
+
"bcrypt-pbkdf",
|
|
1885
|
+
"ecdsa",
|
|
1886
|
+
"ed25519-dalek",
|
|
1887
|
+
"hex",
|
|
1888
|
+
"hmac",
|
|
1889
|
+
"num-bigint-dig",
|
|
1890
|
+
"p256",
|
|
1891
|
+
"p384",
|
|
1892
|
+
"p521",
|
|
1893
|
+
"rand_core 0.6.4",
|
|
1894
|
+
"rsa",
|
|
1895
|
+
"sec1",
|
|
1896
|
+
"sha1 0.10.6",
|
|
1897
|
+
"sha2 0.10.9",
|
|
1898
|
+
"signature",
|
|
1899
|
+
"ssh-cipher",
|
|
1900
|
+
"ssh-encoding",
|
|
1901
|
+
"subtle",
|
|
1902
|
+
"zeroize",
|
|
1903
|
+
]
|
|
1904
|
+
|
|
1436
1905
|
[[package]]
|
|
1437
1906
|
name = "interpolator"
|
|
1438
1907
|
version = "0.5.0"
|
|
@@ -1447,9 +1916,9 @@ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
|
1447
1916
|
|
|
1448
1917
|
[[package]]
|
|
1449
1918
|
name = "iri-string"
|
|
1450
|
-
version = "0.7.
|
|
1919
|
+
version = "0.7.12"
|
|
1451
1920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
-
checksum = "
|
|
1921
|
+
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
1453
1922
|
dependencies = [
|
|
1454
1923
|
"memchr",
|
|
1455
1924
|
"serde",
|
|
@@ -1499,9 +1968,9 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
|
1499
1968
|
|
|
1500
1969
|
[[package]]
|
|
1501
1970
|
name = "jaq-core"
|
|
1502
|
-
version = "
|
|
1971
|
+
version = "3.0.0"
|
|
1503
1972
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
-
checksum = "
|
|
1973
|
+
checksum = "dca0f164c8e9c55fc5aefe60b371df735c719b09930dac185878f2f8c7ab6b68"
|
|
1505
1974
|
dependencies = [
|
|
1506
1975
|
"dyn-clone",
|
|
1507
1976
|
"once_cell",
|
|
@@ -1510,34 +1979,81 @@ dependencies = [
|
|
|
1510
1979
|
|
|
1511
1980
|
[[package]]
|
|
1512
1981
|
name = "jaq-json"
|
|
1513
|
-
version = "
|
|
1982
|
+
version = "2.0.0"
|
|
1514
1983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
-
checksum = "
|
|
1984
|
+
checksum = "f5c5baabe63d1d72cde60ec7548a098036773e3541dbc65c6a44fb38e9cfb272"
|
|
1516
1985
|
dependencies = [
|
|
1986
|
+
"bstr",
|
|
1987
|
+
"bytes",
|
|
1517
1988
|
"foldhash 0.1.5",
|
|
1518
1989
|
"hifijson",
|
|
1519
1990
|
"indexmap",
|
|
1520
1991
|
"jaq-core",
|
|
1521
1992
|
"jaq-std",
|
|
1522
|
-
"
|
|
1993
|
+
"num-bigint",
|
|
1994
|
+
"num-traits",
|
|
1995
|
+
"ryu",
|
|
1996
|
+
"self_cell",
|
|
1523
1997
|
]
|
|
1524
1998
|
|
|
1525
1999
|
[[package]]
|
|
1526
2000
|
name = "jaq-std"
|
|
1527
|
-
version = "
|
|
2001
|
+
version = "3.0.0"
|
|
1528
2002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1529
|
-
checksum = "
|
|
2003
|
+
checksum = "2a11bb307027b20b3dc7b212ad687e7e410cbc43933eec5d498672ab2bc60666"
|
|
1530
2004
|
dependencies = [
|
|
1531
2005
|
"aho-corasick",
|
|
1532
2006
|
"base64",
|
|
1533
|
-
"
|
|
2007
|
+
"bstr",
|
|
1534
2008
|
"jaq-core",
|
|
2009
|
+
"jiff",
|
|
1535
2010
|
"libm",
|
|
1536
2011
|
"log",
|
|
1537
|
-
"regex-
|
|
2012
|
+
"regex-bites",
|
|
1538
2013
|
"urlencoding",
|
|
1539
2014
|
]
|
|
1540
2015
|
|
|
2016
|
+
[[package]]
|
|
2017
|
+
name = "jiff"
|
|
2018
|
+
version = "0.2.23"
|
|
2019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
+
checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359"
|
|
2021
|
+
dependencies = [
|
|
2022
|
+
"jiff-static",
|
|
2023
|
+
"jiff-tzdb-platform",
|
|
2024
|
+
"log",
|
|
2025
|
+
"portable-atomic",
|
|
2026
|
+
"portable-atomic-util",
|
|
2027
|
+
"serde_core",
|
|
2028
|
+
"windows-sys 0.61.2",
|
|
2029
|
+
]
|
|
2030
|
+
|
|
2031
|
+
[[package]]
|
|
2032
|
+
name = "jiff-static"
|
|
2033
|
+
version = "0.2.23"
|
|
2034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2035
|
+
checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4"
|
|
2036
|
+
dependencies = [
|
|
2037
|
+
"proc-macro2",
|
|
2038
|
+
"quote",
|
|
2039
|
+
"syn",
|
|
2040
|
+
]
|
|
2041
|
+
|
|
2042
|
+
[[package]]
|
|
2043
|
+
name = "jiff-tzdb"
|
|
2044
|
+
version = "0.1.6"
|
|
2045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
+
checksum = "c900ef84826f1338a557697dc8fc601df9ca9af4ac137c7fb61d4c6f2dfd3076"
|
|
2047
|
+
|
|
2048
|
+
[[package]]
|
|
2049
|
+
name = "jiff-tzdb-platform"
|
|
2050
|
+
version = "0.1.3"
|
|
2051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
+
checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
|
|
2053
|
+
dependencies = [
|
|
2054
|
+
"jiff-tzdb",
|
|
2055
|
+
]
|
|
2056
|
+
|
|
1541
2057
|
[[package]]
|
|
1542
2058
|
name = "jni"
|
|
1543
2059
|
version = "0.21.1"
|
|
@@ -1594,14 +2110,25 @@ dependencies = [
|
|
|
1594
2110
|
|
|
1595
2111
|
[[package]]
|
|
1596
2112
|
name = "js-sys"
|
|
1597
|
-
version = "0.3.
|
|
2113
|
+
version = "0.3.94"
|
|
1598
2114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
-
checksum = "
|
|
2115
|
+
checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
|
|
1600
2116
|
dependencies = [
|
|
2117
|
+
"cfg-if",
|
|
2118
|
+
"futures-util",
|
|
1601
2119
|
"once_cell",
|
|
1602
2120
|
"wasm-bindgen",
|
|
1603
2121
|
]
|
|
1604
2122
|
|
|
2123
|
+
[[package]]
|
|
2124
|
+
name = "lazy_static"
|
|
2125
|
+
version = "1.5.0"
|
|
2126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2127
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
2128
|
+
dependencies = [
|
|
2129
|
+
"spin",
|
|
2130
|
+
]
|
|
2131
|
+
|
|
1605
2132
|
[[package]]
|
|
1606
2133
|
name = "leb128fmt"
|
|
1607
2134
|
version = "0.1.0"
|
|
@@ -1610,9 +2137,9 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
|
1610
2137
|
|
|
1611
2138
|
[[package]]
|
|
1612
2139
|
name = "libc"
|
|
1613
|
-
version = "0.2.
|
|
2140
|
+
version = "0.2.184"
|
|
1614
2141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
-
checksum = "
|
|
2142
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
1616
2143
|
|
|
1617
2144
|
[[package]]
|
|
1618
2145
|
name = "libloading"
|
|
@@ -1638,9 +2165,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
|
1638
2165
|
|
|
1639
2166
|
[[package]]
|
|
1640
2167
|
name = "litemap"
|
|
1641
|
-
version = "0.8.
|
|
2168
|
+
version = "0.8.2"
|
|
1642
2169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
|
-
checksum = "
|
|
2170
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1644
2171
|
|
|
1645
2172
|
[[package]]
|
|
1646
2173
|
name = "lock_api"
|
|
@@ -1698,14 +2225,20 @@ dependencies = [
|
|
|
1698
2225
|
|
|
1699
2226
|
[[package]]
|
|
1700
2227
|
name = "md-5"
|
|
1701
|
-
version = "0.
|
|
2228
|
+
version = "0.11.0"
|
|
1702
2229
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1703
|
-
checksum = "
|
|
2230
|
+
checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
|
|
1704
2231
|
dependencies = [
|
|
1705
2232
|
"cfg-if",
|
|
1706
|
-
"digest",
|
|
2233
|
+
"digest 0.11.2",
|
|
1707
2234
|
]
|
|
1708
2235
|
|
|
2236
|
+
[[package]]
|
|
2237
|
+
name = "md5"
|
|
2238
|
+
version = "0.7.0"
|
|
2239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2240
|
+
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
|
|
2241
|
+
|
|
1709
2242
|
[[package]]
|
|
1710
2243
|
name = "memchr"
|
|
1711
2244
|
version = "2.8.0"
|
|
@@ -1724,9 +2257,9 @@ dependencies = [
|
|
|
1724
2257
|
|
|
1725
2258
|
[[package]]
|
|
1726
2259
|
name = "mio"
|
|
1727
|
-
version = "1.
|
|
2260
|
+
version = "1.2.0"
|
|
1728
2261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1729
|
-
checksum = "
|
|
2262
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
1730
2263
|
dependencies = [
|
|
1731
2264
|
"libc",
|
|
1732
2265
|
"wasi",
|
|
@@ -1759,9 +2292,9 @@ dependencies = [
|
|
|
1759
2292
|
|
|
1760
2293
|
[[package]]
|
|
1761
2294
|
name = "nalgebra"
|
|
1762
|
-
version = "0.33.
|
|
2295
|
+
version = "0.33.3"
|
|
1763
2296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1764
|
-
checksum = "
|
|
2297
|
+
checksum = "9d43ddcacf343185dfd6de2ee786d9e8b1c2301622afab66b6c73baf9882abfd"
|
|
1765
2298
|
dependencies = [
|
|
1766
2299
|
"approx",
|
|
1767
2300
|
"matrixmultiply",
|
|
@@ -1776,9 +2309,9 @@ dependencies = [
|
|
|
1776
2309
|
|
|
1777
2310
|
[[package]]
|
|
1778
2311
|
name = "napi"
|
|
1779
|
-
version = "3.8.
|
|
2312
|
+
version = "3.8.4"
|
|
1780
2313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
-
checksum = "
|
|
2314
|
+
checksum = "fb7848c221fb7bb789e02f01875287ebb1e078b92a6566a34de01ef8806e7c2b"
|
|
1782
2315
|
dependencies = [
|
|
1783
2316
|
"bitflags",
|
|
1784
2317
|
"ctor",
|
|
@@ -1798,9 +2331,9 @@ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
|
1798
2331
|
|
|
1799
2332
|
[[package]]
|
|
1800
2333
|
name = "napi-derive"
|
|
1801
|
-
version = "3.5.
|
|
2334
|
+
version = "3.5.3"
|
|
1802
2335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
-
checksum = "
|
|
2336
|
+
checksum = "60867ff9a6f76e82350e0c3420cb0736f5866091b61d7d8a024baa54b0ec17dd"
|
|
1804
2337
|
dependencies = [
|
|
1805
2338
|
"convert_case",
|
|
1806
2339
|
"ctor",
|
|
@@ -1832,12 +2365,30 @@ dependencies = [
|
|
|
1832
2365
|
"libloading",
|
|
1833
2366
|
]
|
|
1834
2367
|
|
|
2368
|
+
[[package]]
|
|
2369
|
+
name = "nix"
|
|
2370
|
+
version = "0.29.0"
|
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
+
checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
|
|
2373
|
+
dependencies = [
|
|
2374
|
+
"bitflags",
|
|
2375
|
+
"cfg-if",
|
|
2376
|
+
"cfg_aliases",
|
|
2377
|
+
"libc",
|
|
2378
|
+
]
|
|
2379
|
+
|
|
1835
2380
|
[[package]]
|
|
1836
2381
|
name = "nohash-hasher"
|
|
1837
2382
|
version = "0.2.0"
|
|
1838
2383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1839
2384
|
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
1840
2385
|
|
|
2386
|
+
[[package]]
|
|
2387
|
+
name = "nonmax"
|
|
2388
|
+
version = "0.5.5"
|
|
2389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2390
|
+
checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
|
|
2391
|
+
|
|
1841
2392
|
[[package]]
|
|
1842
2393
|
name = "num-bigint"
|
|
1843
2394
|
version = "0.4.6"
|
|
@@ -1846,9 +2397,26 @@ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
|
1846
2397
|
dependencies = [
|
|
1847
2398
|
"num-integer",
|
|
1848
2399
|
"num-traits",
|
|
2400
|
+
"rand 0.8.5",
|
|
1849
2401
|
"serde",
|
|
1850
2402
|
]
|
|
1851
2403
|
|
|
2404
|
+
[[package]]
|
|
2405
|
+
name = "num-bigint-dig"
|
|
2406
|
+
version = "0.8.6"
|
|
2407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2408
|
+
checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
|
|
2409
|
+
dependencies = [
|
|
2410
|
+
"lazy_static",
|
|
2411
|
+
"libm",
|
|
2412
|
+
"num-integer",
|
|
2413
|
+
"num-iter",
|
|
2414
|
+
"num-traits",
|
|
2415
|
+
"rand 0.8.5",
|
|
2416
|
+
"smallvec",
|
|
2417
|
+
"zeroize",
|
|
2418
|
+
]
|
|
2419
|
+
|
|
1852
2420
|
[[package]]
|
|
1853
2421
|
name = "num-complex"
|
|
1854
2422
|
version = "0.4.6"
|
|
@@ -1867,6 +2435,17 @@ dependencies = [
|
|
|
1867
2435
|
"num-traits",
|
|
1868
2436
|
]
|
|
1869
2437
|
|
|
2438
|
+
[[package]]
|
|
2439
|
+
name = "num-iter"
|
|
2440
|
+
version = "0.1.45"
|
|
2441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2442
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
2443
|
+
dependencies = [
|
|
2444
|
+
"autocfg",
|
|
2445
|
+
"num-integer",
|
|
2446
|
+
"num-traits",
|
|
2447
|
+
]
|
|
2448
|
+
|
|
1870
2449
|
[[package]]
|
|
1871
2450
|
name = "num-rational"
|
|
1872
2451
|
version = "0.4.2"
|
|
@@ -1906,6 +2485,12 @@ version = "11.1.5"
|
|
|
1906
2485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
2486
|
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1908
2487
|
|
|
2488
|
+
[[package]]
|
|
2489
|
+
name = "opaque-debug"
|
|
2490
|
+
version = "0.3.1"
|
|
2491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2492
|
+
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
2493
|
+
|
|
1909
2494
|
[[package]]
|
|
1910
2495
|
name = "openssl-probe"
|
|
1911
2496
|
version = "0.2.1"
|
|
@@ -1921,6 +2506,250 @@ dependencies = [
|
|
|
1921
2506
|
"indexmap",
|
|
1922
2507
|
]
|
|
1923
2508
|
|
|
2509
|
+
[[package]]
|
|
2510
|
+
name = "owo-colors"
|
|
2511
|
+
version = "4.3.0"
|
|
2512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2513
|
+
checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
|
|
2514
|
+
|
|
2515
|
+
[[package]]
|
|
2516
|
+
name = "oxc-miette"
|
|
2517
|
+
version = "2.7.1"
|
|
2518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2519
|
+
checksum = "4356a61f2ed4c9b3610245215fbf48970eb277126919f87db9d0efa93a74245c"
|
|
2520
|
+
dependencies = [
|
|
2521
|
+
"cfg-if",
|
|
2522
|
+
"owo-colors",
|
|
2523
|
+
"oxc-miette-derive",
|
|
2524
|
+
"textwrap",
|
|
2525
|
+
"thiserror 2.0.18",
|
|
2526
|
+
"unicode-segmentation",
|
|
2527
|
+
"unicode-width",
|
|
2528
|
+
]
|
|
2529
|
+
|
|
2530
|
+
[[package]]
|
|
2531
|
+
name = "oxc-miette-derive"
|
|
2532
|
+
version = "2.7.1"
|
|
2533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2534
|
+
checksum = "b237422b014f8f8fff75bb9379e697d13f8d57551a22c88bebb39f073c1bf696"
|
|
2535
|
+
dependencies = [
|
|
2536
|
+
"proc-macro2",
|
|
2537
|
+
"quote",
|
|
2538
|
+
"syn",
|
|
2539
|
+
]
|
|
2540
|
+
|
|
2541
|
+
[[package]]
|
|
2542
|
+
name = "oxc_allocator"
|
|
2543
|
+
version = "0.117.0"
|
|
2544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2545
|
+
checksum = "97b44277218c002c09167474648a478d3d29a29095ef8950ec9f1fac016c62d7"
|
|
2546
|
+
dependencies = [
|
|
2547
|
+
"allocator-api2",
|
|
2548
|
+
"hashbrown 0.16.1",
|
|
2549
|
+
"oxc_data_structures",
|
|
2550
|
+
"rustc-hash",
|
|
2551
|
+
]
|
|
2552
|
+
|
|
2553
|
+
[[package]]
|
|
2554
|
+
name = "oxc_ast"
|
|
2555
|
+
version = "0.117.0"
|
|
2556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2557
|
+
checksum = "e4222e4e7a1ab01b2a20420a5a65798377a748ea37ee7ece4d7a6b733f86eb61"
|
|
2558
|
+
dependencies = [
|
|
2559
|
+
"bitflags",
|
|
2560
|
+
"oxc_allocator",
|
|
2561
|
+
"oxc_ast_macros",
|
|
2562
|
+
"oxc_data_structures",
|
|
2563
|
+
"oxc_diagnostics",
|
|
2564
|
+
"oxc_estree",
|
|
2565
|
+
"oxc_regular_expression",
|
|
2566
|
+
"oxc_span",
|
|
2567
|
+
"oxc_syntax",
|
|
2568
|
+
]
|
|
2569
|
+
|
|
2570
|
+
[[package]]
|
|
2571
|
+
name = "oxc_ast_macros"
|
|
2572
|
+
version = "0.117.0"
|
|
2573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2574
|
+
checksum = "8e65a38ae589e284dd45a85008024f04aa680e9ddf1321c163cf7f187c805e91"
|
|
2575
|
+
dependencies = [
|
|
2576
|
+
"phf 0.13.1",
|
|
2577
|
+
"proc-macro2",
|
|
2578
|
+
"quote",
|
|
2579
|
+
"syn",
|
|
2580
|
+
]
|
|
2581
|
+
|
|
2582
|
+
[[package]]
|
|
2583
|
+
name = "oxc_data_structures"
|
|
2584
|
+
version = "0.117.0"
|
|
2585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2586
|
+
checksum = "f53bed71cad192596aee8f87f6d6bc2a38a4f898255a69b1d41da1968b9b2c6f"
|
|
2587
|
+
|
|
2588
|
+
[[package]]
|
|
2589
|
+
name = "oxc_diagnostics"
|
|
2590
|
+
version = "0.117.0"
|
|
2591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2592
|
+
checksum = "1a2d2491c0a1ea29a83abe645424f85c64b5c825f60e5304a453e4314a8b6d88"
|
|
2593
|
+
dependencies = [
|
|
2594
|
+
"cow-utils",
|
|
2595
|
+
"oxc-miette",
|
|
2596
|
+
"percent-encoding",
|
|
2597
|
+
]
|
|
2598
|
+
|
|
2599
|
+
[[package]]
|
|
2600
|
+
name = "oxc_ecmascript"
|
|
2601
|
+
version = "0.117.0"
|
|
2602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2603
|
+
checksum = "71b23b64fa8c4a84b1406de383c4666366c9f54ffb9cb11a63b8d7433950460a"
|
|
2604
|
+
dependencies = [
|
|
2605
|
+
"cow-utils",
|
|
2606
|
+
"num-bigint",
|
|
2607
|
+
"num-traits",
|
|
2608
|
+
"oxc_allocator",
|
|
2609
|
+
"oxc_ast",
|
|
2610
|
+
"oxc_regular_expression",
|
|
2611
|
+
"oxc_span",
|
|
2612
|
+
"oxc_syntax",
|
|
2613
|
+
]
|
|
2614
|
+
|
|
2615
|
+
[[package]]
|
|
2616
|
+
name = "oxc_estree"
|
|
2617
|
+
version = "0.117.0"
|
|
2618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2619
|
+
checksum = "a47515ead44bc8beec1ae1514f10ecca63cde043da167c0395dc914f098ea5d2"
|
|
2620
|
+
|
|
2621
|
+
[[package]]
|
|
2622
|
+
name = "oxc_index"
|
|
2623
|
+
version = "4.1.0"
|
|
2624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
|
+
checksum = "eb3e6120999627ec9703025eab7c9f410ebb7e95557632a8902ca48210416c2b"
|
|
2626
|
+
dependencies = [
|
|
2627
|
+
"nonmax",
|
|
2628
|
+
"serde",
|
|
2629
|
+
]
|
|
2630
|
+
|
|
2631
|
+
[[package]]
|
|
2632
|
+
name = "oxc_parser"
|
|
2633
|
+
version = "0.117.0"
|
|
2634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2635
|
+
checksum = "3278d4f34d01cdaf85a2391d7b12daba1d95c20c1ff2ac9316d3c28f36353e4e"
|
|
2636
|
+
dependencies = [
|
|
2637
|
+
"bitflags",
|
|
2638
|
+
"cow-utils",
|
|
2639
|
+
"memchr",
|
|
2640
|
+
"num-bigint",
|
|
2641
|
+
"num-traits",
|
|
2642
|
+
"oxc_allocator",
|
|
2643
|
+
"oxc_ast",
|
|
2644
|
+
"oxc_data_structures",
|
|
2645
|
+
"oxc_diagnostics",
|
|
2646
|
+
"oxc_ecmascript",
|
|
2647
|
+
"oxc_regular_expression",
|
|
2648
|
+
"oxc_span",
|
|
2649
|
+
"oxc_syntax",
|
|
2650
|
+
"rustc-hash",
|
|
2651
|
+
"seq-macro",
|
|
2652
|
+
]
|
|
2653
|
+
|
|
2654
|
+
[[package]]
|
|
2655
|
+
name = "oxc_regular_expression"
|
|
2656
|
+
version = "0.117.0"
|
|
2657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2658
|
+
checksum = "f3d680252672b22c24abbaf6e401eace0be9f53072a03411936204625ff349d0"
|
|
2659
|
+
dependencies = [
|
|
2660
|
+
"bitflags",
|
|
2661
|
+
"oxc_allocator",
|
|
2662
|
+
"oxc_ast_macros",
|
|
2663
|
+
"oxc_diagnostics",
|
|
2664
|
+
"oxc_span",
|
|
2665
|
+
"phf 0.13.1",
|
|
2666
|
+
"rustc-hash",
|
|
2667
|
+
"unicode-id-start",
|
|
2668
|
+
]
|
|
2669
|
+
|
|
2670
|
+
[[package]]
|
|
2671
|
+
name = "oxc_span"
|
|
2672
|
+
version = "0.117.0"
|
|
2673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2674
|
+
checksum = "b6eb1bd62de89fb0c646bfb053b72370750fab43a84ebe09ad97cfa020712314"
|
|
2675
|
+
dependencies = [
|
|
2676
|
+
"compact_str",
|
|
2677
|
+
"oxc-miette",
|
|
2678
|
+
"oxc_allocator",
|
|
2679
|
+
"oxc_ast_macros",
|
|
2680
|
+
"oxc_estree",
|
|
2681
|
+
"oxc_str",
|
|
2682
|
+
]
|
|
2683
|
+
|
|
2684
|
+
[[package]]
|
|
2685
|
+
name = "oxc_str"
|
|
2686
|
+
version = "0.117.0"
|
|
2687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2688
|
+
checksum = "2e65cbfb06ecbae07e0da931815b6b03ade886d016302c400bda7dc0a2f600d3"
|
|
2689
|
+
dependencies = [
|
|
2690
|
+
"compact_str",
|
|
2691
|
+
"hashbrown 0.16.1",
|
|
2692
|
+
"oxc_allocator",
|
|
2693
|
+
"oxc_estree",
|
|
2694
|
+
]
|
|
2695
|
+
|
|
2696
|
+
[[package]]
|
|
2697
|
+
name = "oxc_syntax"
|
|
2698
|
+
version = "0.117.0"
|
|
2699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2700
|
+
checksum = "e0f1617f0aa890517fb61ffa1d2d73a8497aca52e84ef6f027fad1e93250eccc"
|
|
2701
|
+
dependencies = [
|
|
2702
|
+
"bitflags",
|
|
2703
|
+
"cow-utils",
|
|
2704
|
+
"dragonbox_ecma",
|
|
2705
|
+
"nonmax",
|
|
2706
|
+
"oxc_allocator",
|
|
2707
|
+
"oxc_ast_macros",
|
|
2708
|
+
"oxc_estree",
|
|
2709
|
+
"oxc_index",
|
|
2710
|
+
"oxc_span",
|
|
2711
|
+
"phf 0.13.1",
|
|
2712
|
+
"unicode-id-start",
|
|
2713
|
+
]
|
|
2714
|
+
|
|
2715
|
+
[[package]]
|
|
2716
|
+
name = "p256"
|
|
2717
|
+
version = "0.13.2"
|
|
2718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2719
|
+
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
|
|
2720
|
+
dependencies = [
|
|
2721
|
+
"ecdsa",
|
|
2722
|
+
"elliptic-curve",
|
|
2723
|
+
"primeorder",
|
|
2724
|
+
"sha2 0.10.9",
|
|
2725
|
+
]
|
|
2726
|
+
|
|
2727
|
+
[[package]]
|
|
2728
|
+
name = "p384"
|
|
2729
|
+
version = "0.13.1"
|
|
2730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2731
|
+
checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
|
|
2732
|
+
dependencies = [
|
|
2733
|
+
"ecdsa",
|
|
2734
|
+
"elliptic-curve",
|
|
2735
|
+
"primeorder",
|
|
2736
|
+
"sha2 0.10.9",
|
|
2737
|
+
]
|
|
2738
|
+
|
|
2739
|
+
[[package]]
|
|
2740
|
+
name = "p521"
|
|
2741
|
+
version = "0.13.3"
|
|
2742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2743
|
+
checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
|
|
2744
|
+
dependencies = [
|
|
2745
|
+
"base16ct",
|
|
2746
|
+
"ecdsa",
|
|
2747
|
+
"elliptic-curve",
|
|
2748
|
+
"primeorder",
|
|
2749
|
+
"rand_core 0.6.4",
|
|
2750
|
+
"sha2 0.10.9",
|
|
2751
|
+
]
|
|
2752
|
+
|
|
1924
2753
|
[[package]]
|
|
1925
2754
|
name = "page_size"
|
|
1926
2755
|
version = "0.6.0"
|
|
@@ -1931,6 +2760,37 @@ dependencies = [
|
|
|
1931
2760
|
"winapi",
|
|
1932
2761
|
]
|
|
1933
2762
|
|
|
2763
|
+
[[package]]
|
|
2764
|
+
name = "pageant"
|
|
2765
|
+
version = "0.0.1"
|
|
2766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2767
|
+
checksum = "032d6201d2fb765158455ae0d5a510c016bb6da7232e5040e39e9c8db12b0afc"
|
|
2768
|
+
dependencies = [
|
|
2769
|
+
"bytes",
|
|
2770
|
+
"delegate",
|
|
2771
|
+
"futures",
|
|
2772
|
+
"rand 0.8.5",
|
|
2773
|
+
"thiserror 1.0.69",
|
|
2774
|
+
"tokio",
|
|
2775
|
+
"windows",
|
|
2776
|
+
]
|
|
2777
|
+
|
|
2778
|
+
[[package]]
|
|
2779
|
+
name = "pageant"
|
|
2780
|
+
version = "0.0.3"
|
|
2781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2782
|
+
checksum = "bdd27df01428302f915ea74737fe88170dd1bab4cbd00ff9548ca85618fcd4e4"
|
|
2783
|
+
dependencies = [
|
|
2784
|
+
"bytes",
|
|
2785
|
+
"delegate",
|
|
2786
|
+
"futures",
|
|
2787
|
+
"log",
|
|
2788
|
+
"rand 0.8.5",
|
|
2789
|
+
"thiserror 1.0.69",
|
|
2790
|
+
"tokio",
|
|
2791
|
+
"windows",
|
|
2792
|
+
]
|
|
2793
|
+
|
|
1934
2794
|
[[package]]
|
|
1935
2795
|
name = "papergrid"
|
|
1936
2796
|
version = "0.17.0"
|
|
@@ -1965,12 +2825,42 @@ dependencies = [
|
|
|
1965
2825
|
"windows-link",
|
|
1966
2826
|
]
|
|
1967
2827
|
|
|
2828
|
+
[[package]]
|
|
2829
|
+
name = "password-hash"
|
|
2830
|
+
version = "0.5.0"
|
|
2831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2832
|
+
checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
|
|
2833
|
+
dependencies = [
|
|
2834
|
+
"base64ct",
|
|
2835
|
+
"rand_core 0.6.4",
|
|
2836
|
+
"subtle",
|
|
2837
|
+
]
|
|
2838
|
+
|
|
1968
2839
|
[[package]]
|
|
1969
2840
|
name = "paste"
|
|
1970
2841
|
version = "1.0.15"
|
|
1971
2842
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
2843
|
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1973
2844
|
|
|
2845
|
+
[[package]]
|
|
2846
|
+
name = "pbkdf2"
|
|
2847
|
+
version = "0.12.2"
|
|
2848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
+
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
|
|
2850
|
+
dependencies = [
|
|
2851
|
+
"digest 0.10.7",
|
|
2852
|
+
"hmac",
|
|
2853
|
+
]
|
|
2854
|
+
|
|
2855
|
+
[[package]]
|
|
2856
|
+
name = "pem-rfc7468"
|
|
2857
|
+
version = "0.7.0"
|
|
2858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2859
|
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
|
2860
|
+
dependencies = [
|
|
2861
|
+
"base64ct",
|
|
2862
|
+
]
|
|
2863
|
+
|
|
1974
2864
|
[[package]]
|
|
1975
2865
|
name = "percent-encoding"
|
|
1976
2866
|
version = "2.3.2"
|
|
@@ -1983,7 +2873,18 @@ version = "0.11.3"
|
|
|
1983
2873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
2874
|
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
1985
2875
|
dependencies = [
|
|
1986
|
-
"phf_shared",
|
|
2876
|
+
"phf_shared 0.11.3",
|
|
2877
|
+
]
|
|
2878
|
+
|
|
2879
|
+
[[package]]
|
|
2880
|
+
name = "phf"
|
|
2881
|
+
version = "0.13.1"
|
|
2882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2883
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
2884
|
+
dependencies = [
|
|
2885
|
+
"phf_macros",
|
|
2886
|
+
"phf_shared 0.13.1",
|
|
2887
|
+
"serde",
|
|
1987
2888
|
]
|
|
1988
2889
|
|
|
1989
2890
|
[[package]]
|
|
@@ -1992,8 +2893,8 @@ version = "0.11.3"
|
|
|
1992
2893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1993
2894
|
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
1994
2895
|
dependencies = [
|
|
1995
|
-
"phf_generator",
|
|
1996
|
-
"phf_shared",
|
|
2896
|
+
"phf_generator 0.11.3",
|
|
2897
|
+
"phf_shared 0.11.3",
|
|
1997
2898
|
]
|
|
1998
2899
|
|
|
1999
2900
|
[[package]]
|
|
@@ -2002,10 +2903,33 @@ version = "0.11.3"
|
|
|
2002
2903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
2904
|
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2004
2905
|
dependencies = [
|
|
2005
|
-
"phf_shared",
|
|
2906
|
+
"phf_shared 0.11.3",
|
|
2006
2907
|
"rand 0.8.5",
|
|
2007
2908
|
]
|
|
2008
2909
|
|
|
2910
|
+
[[package]]
|
|
2911
|
+
name = "phf_generator"
|
|
2912
|
+
version = "0.13.1"
|
|
2913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
2915
|
+
dependencies = [
|
|
2916
|
+
"fastrand",
|
|
2917
|
+
"phf_shared 0.13.1",
|
|
2918
|
+
]
|
|
2919
|
+
|
|
2920
|
+
[[package]]
|
|
2921
|
+
name = "phf_macros"
|
|
2922
|
+
version = "0.13.1"
|
|
2923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2924
|
+
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
|
2925
|
+
dependencies = [
|
|
2926
|
+
"phf_generator 0.13.1",
|
|
2927
|
+
"phf_shared 0.13.1",
|
|
2928
|
+
"proc-macro2",
|
|
2929
|
+
"quote",
|
|
2930
|
+
"syn",
|
|
2931
|
+
]
|
|
2932
|
+
|
|
2009
2933
|
[[package]]
|
|
2010
2934
|
name = "phf_shared"
|
|
2011
2935
|
version = "0.11.3"
|
|
@@ -2015,6 +2939,15 @@ dependencies = [
|
|
|
2015
2939
|
"siphasher",
|
|
2016
2940
|
]
|
|
2017
2941
|
|
|
2942
|
+
[[package]]
|
|
2943
|
+
name = "phf_shared"
|
|
2944
|
+
version = "0.13.1"
|
|
2945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
2947
|
+
dependencies = [
|
|
2948
|
+
"siphasher",
|
|
2949
|
+
]
|
|
2950
|
+
|
|
2018
2951
|
[[package]]
|
|
2019
2952
|
name = "pin-project-lite"
|
|
2020
2953
|
version = "0.2.17"
|
|
@@ -2022,10 +2955,42 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2022
2955
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2023
2956
|
|
|
2024
2957
|
[[package]]
|
|
2025
|
-
name = "
|
|
2026
|
-
version = "0.
|
|
2958
|
+
name = "pkcs1"
|
|
2959
|
+
version = "0.7.5"
|
|
2960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2961
|
+
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
|
|
2962
|
+
dependencies = [
|
|
2963
|
+
"der",
|
|
2964
|
+
"pkcs8",
|
|
2965
|
+
"spki",
|
|
2966
|
+
]
|
|
2967
|
+
|
|
2968
|
+
[[package]]
|
|
2969
|
+
name = "pkcs5"
|
|
2970
|
+
version = "0.7.1"
|
|
2971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2972
|
+
checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6"
|
|
2973
|
+
dependencies = [
|
|
2974
|
+
"aes",
|
|
2975
|
+
"cbc",
|
|
2976
|
+
"der",
|
|
2977
|
+
"pbkdf2",
|
|
2978
|
+
"scrypt",
|
|
2979
|
+
"sha2 0.10.9",
|
|
2980
|
+
"spki",
|
|
2981
|
+
]
|
|
2982
|
+
|
|
2983
|
+
[[package]]
|
|
2984
|
+
name = "pkcs8"
|
|
2985
|
+
version = "0.10.2"
|
|
2027
2986
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2028
|
-
checksum = "
|
|
2987
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
2988
|
+
dependencies = [
|
|
2989
|
+
"der",
|
|
2990
|
+
"pkcs5",
|
|
2991
|
+
"rand_core 0.6.4",
|
|
2992
|
+
"spki",
|
|
2993
|
+
]
|
|
2029
2994
|
|
|
2030
2995
|
[[package]]
|
|
2031
2996
|
name = "plotters"
|
|
@@ -2055,12 +3020,44 @@ dependencies = [
|
|
|
2055
3020
|
"plotters-backend",
|
|
2056
3021
|
]
|
|
2057
3022
|
|
|
3023
|
+
[[package]]
|
|
3024
|
+
name = "poly1305"
|
|
3025
|
+
version = "0.8.0"
|
|
3026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3027
|
+
checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
|
|
3028
|
+
dependencies = [
|
|
3029
|
+
"cpufeatures 0.2.17",
|
|
3030
|
+
"opaque-debug",
|
|
3031
|
+
"universal-hash",
|
|
3032
|
+
]
|
|
3033
|
+
|
|
3034
|
+
[[package]]
|
|
3035
|
+
name = "polyval"
|
|
3036
|
+
version = "0.6.2"
|
|
3037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3038
|
+
checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
|
|
3039
|
+
dependencies = [
|
|
3040
|
+
"cfg-if",
|
|
3041
|
+
"cpufeatures 0.2.17",
|
|
3042
|
+
"opaque-debug",
|
|
3043
|
+
"universal-hash",
|
|
3044
|
+
]
|
|
3045
|
+
|
|
2058
3046
|
[[package]]
|
|
2059
3047
|
name = "portable-atomic"
|
|
2060
3048
|
version = "1.13.1"
|
|
2061
3049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2062
3050
|
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
2063
3051
|
|
|
3052
|
+
[[package]]
|
|
3053
|
+
name = "portable-atomic-util"
|
|
3054
|
+
version = "0.2.6"
|
|
3055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3056
|
+
checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
|
|
3057
|
+
dependencies = [
|
|
3058
|
+
"portable-atomic",
|
|
3059
|
+
]
|
|
3060
|
+
|
|
2064
3061
|
[[package]]
|
|
2065
3062
|
name = "postcard"
|
|
2066
3063
|
version = "1.1.3"
|
|
@@ -2076,9 +3073,9 @@ dependencies = [
|
|
|
2076
3073
|
|
|
2077
3074
|
[[package]]
|
|
2078
3075
|
name = "potential_utf"
|
|
2079
|
-
version = "0.1.
|
|
3076
|
+
version = "0.1.5"
|
|
2080
3077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2081
|
-
checksum = "
|
|
3078
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
2082
3079
|
dependencies = [
|
|
2083
3080
|
"zerovec",
|
|
2084
3081
|
]
|
|
@@ -2112,6 +3109,15 @@ dependencies = [
|
|
|
2112
3109
|
"syn",
|
|
2113
3110
|
]
|
|
2114
3111
|
|
|
3112
|
+
[[package]]
|
|
3113
|
+
name = "primeorder"
|
|
3114
|
+
version = "0.13.6"
|
|
3115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
|
+
checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
|
|
3117
|
+
dependencies = [
|
|
3118
|
+
"elliptic-curve",
|
|
3119
|
+
]
|
|
3120
|
+
|
|
2115
3121
|
[[package]]
|
|
2116
3122
|
name = "proc-macro-error-attr2"
|
|
2117
3123
|
version = "2.0.0"
|
|
@@ -2156,9 +3162,9 @@ dependencies = [
|
|
|
2156
3162
|
|
|
2157
3163
|
[[package]]
|
|
2158
3164
|
name = "proptest"
|
|
2159
|
-
version = "1.
|
|
3165
|
+
version = "1.11.0"
|
|
2160
3166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2161
|
-
checksum = "
|
|
3167
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
2162
3168
|
dependencies = [
|
|
2163
3169
|
"bit-set",
|
|
2164
3170
|
"bit-vec",
|
|
@@ -2175,9 +3181,9 @@ dependencies = [
|
|
|
2175
3181
|
|
|
2176
3182
|
[[package]]
|
|
2177
3183
|
name = "pyo3"
|
|
2178
|
-
version = "0.28.
|
|
3184
|
+
version = "0.28.3"
|
|
2179
3185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2180
|
-
checksum = "
|
|
3186
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
2181
3187
|
dependencies = [
|
|
2182
3188
|
"libc",
|
|
2183
3189
|
"once_cell",
|
|
@@ -2203,9 +3209,9 @@ dependencies = [
|
|
|
2203
3209
|
|
|
2204
3210
|
[[package]]
|
|
2205
3211
|
name = "pyo3-build-config"
|
|
2206
|
-
version = "0.28.
|
|
3212
|
+
version = "0.28.3"
|
|
2207
3213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2208
|
-
checksum = "
|
|
3214
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
2209
3215
|
dependencies = [
|
|
2210
3216
|
"python3-dll-a",
|
|
2211
3217
|
"target-lexicon",
|
|
@@ -2213,9 +3219,9 @@ dependencies = [
|
|
|
2213
3219
|
|
|
2214
3220
|
[[package]]
|
|
2215
3221
|
name = "pyo3-ffi"
|
|
2216
|
-
version = "0.28.
|
|
3222
|
+
version = "0.28.3"
|
|
2217
3223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2218
|
-
checksum = "
|
|
3224
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
2219
3225
|
dependencies = [
|
|
2220
3226
|
"libc",
|
|
2221
3227
|
"pyo3-build-config",
|
|
@@ -2223,9 +3229,9 @@ dependencies = [
|
|
|
2223
3229
|
|
|
2224
3230
|
[[package]]
|
|
2225
3231
|
name = "pyo3-macros"
|
|
2226
|
-
version = "0.28.
|
|
3232
|
+
version = "0.28.3"
|
|
2227
3233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2228
|
-
checksum = "
|
|
3234
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
2229
3235
|
dependencies = [
|
|
2230
3236
|
"proc-macro2",
|
|
2231
3237
|
"pyo3-macros-backend",
|
|
@@ -2235,9 +3241,9 @@ dependencies = [
|
|
|
2235
3241
|
|
|
2236
3242
|
[[package]]
|
|
2237
3243
|
name = "pyo3-macros-backend"
|
|
2238
|
-
version = "0.28.
|
|
3244
|
+
version = "0.28.3"
|
|
2239
3245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2240
|
-
checksum = "
|
|
3246
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
2241
3247
|
dependencies = [
|
|
2242
3248
|
"heck",
|
|
2243
3249
|
"proc-macro2",
|
|
@@ -2517,10 +3523,10 @@ dependencies = [
|
|
|
2517
3523
|
]
|
|
2518
3524
|
|
|
2519
3525
|
[[package]]
|
|
2520
|
-
name = "regex-
|
|
2521
|
-
version = "0.1.
|
|
3526
|
+
name = "regex-bites"
|
|
3527
|
+
version = "0.1.6"
|
|
2522
3528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2523
|
-
checksum = "
|
|
3529
|
+
checksum = "b6a15a2fa0bfda9361941c45550896ae87b15cc6c8c939ea350079670332e211"
|
|
2524
3530
|
|
|
2525
3531
|
[[package]]
|
|
2526
3532
|
name = "regex-syntax"
|
|
@@ -2568,6 +3574,16 @@ dependencies = [
|
|
|
2568
3574
|
"web-sys",
|
|
2569
3575
|
]
|
|
2570
3576
|
|
|
3577
|
+
[[package]]
|
|
3578
|
+
name = "rfc6979"
|
|
3579
|
+
version = "0.4.0"
|
|
3580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3581
|
+
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
|
|
3582
|
+
dependencies = [
|
|
3583
|
+
"hmac",
|
|
3584
|
+
"subtle",
|
|
3585
|
+
]
|
|
3586
|
+
|
|
2571
3587
|
[[package]]
|
|
2572
3588
|
name = "ring"
|
|
2573
3589
|
version = "0.17.14"
|
|
@@ -2582,6 +3598,27 @@ dependencies = [
|
|
|
2582
3598
|
"windows-sys 0.52.0",
|
|
2583
3599
|
]
|
|
2584
3600
|
|
|
3601
|
+
[[package]]
|
|
3602
|
+
name = "rsa"
|
|
3603
|
+
version = "0.9.10"
|
|
3604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3605
|
+
checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
|
|
3606
|
+
dependencies = [
|
|
3607
|
+
"const-oid 0.9.6",
|
|
3608
|
+
"digest 0.10.7",
|
|
3609
|
+
"num-bigint-dig",
|
|
3610
|
+
"num-integer",
|
|
3611
|
+
"num-traits",
|
|
3612
|
+
"pkcs1",
|
|
3613
|
+
"pkcs8",
|
|
3614
|
+
"rand_core 0.6.4",
|
|
3615
|
+
"sha2 0.10.9",
|
|
3616
|
+
"signature",
|
|
3617
|
+
"spki",
|
|
3618
|
+
"subtle",
|
|
3619
|
+
"zeroize",
|
|
3620
|
+
]
|
|
3621
|
+
|
|
2585
3622
|
[[package]]
|
|
2586
3623
|
name = "ruff_python_ast"
|
|
2587
3624
|
version = "0.0.0"
|
|
@@ -2601,58 +3638,226 @@ dependencies = [
|
|
|
2601
3638
|
]
|
|
2602
3639
|
|
|
2603
3640
|
[[package]]
|
|
2604
|
-
name = "ruff_python_parser"
|
|
2605
|
-
version = "0.0.0"
|
|
2606
|
-
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
3641
|
+
name = "ruff_python_parser"
|
|
3642
|
+
version = "0.0.0"
|
|
3643
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
3644
|
+
dependencies = [
|
|
3645
|
+
"bitflags",
|
|
3646
|
+
"bstr",
|
|
3647
|
+
"compact_str",
|
|
3648
|
+
"get-size2",
|
|
3649
|
+
"memchr",
|
|
3650
|
+
"ruff_python_ast",
|
|
3651
|
+
"ruff_python_trivia",
|
|
3652
|
+
"ruff_text_size",
|
|
3653
|
+
"rustc-hash",
|
|
3654
|
+
"static_assertions",
|
|
3655
|
+
"unicode-ident",
|
|
3656
|
+
"unicode-normalization",
|
|
3657
|
+
"unicode_names2",
|
|
3658
|
+
]
|
|
3659
|
+
|
|
3660
|
+
[[package]]
|
|
3661
|
+
name = "ruff_python_trivia"
|
|
3662
|
+
version = "0.0.0"
|
|
3663
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
3664
|
+
dependencies = [
|
|
3665
|
+
"itertools 0.14.0",
|
|
3666
|
+
"ruff_source_file",
|
|
3667
|
+
"ruff_text_size",
|
|
3668
|
+
"unicode-ident",
|
|
3669
|
+
]
|
|
3670
|
+
|
|
3671
|
+
[[package]]
|
|
3672
|
+
name = "ruff_source_file"
|
|
3673
|
+
version = "0.0.0"
|
|
3674
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
3675
|
+
dependencies = [
|
|
3676
|
+
"memchr",
|
|
3677
|
+
"ruff_text_size",
|
|
3678
|
+
]
|
|
3679
|
+
|
|
3680
|
+
[[package]]
|
|
3681
|
+
name = "ruff_text_size"
|
|
3682
|
+
version = "0.0.0"
|
|
3683
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
3684
|
+
dependencies = [
|
|
3685
|
+
"get-size2",
|
|
3686
|
+
]
|
|
3687
|
+
|
|
3688
|
+
[[package]]
|
|
3689
|
+
name = "russh"
|
|
3690
|
+
version = "0.52.1"
|
|
3691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3692
|
+
checksum = "bcc2b4e549ed83a4e36517807367b538c6d00b603ce138637f50a2218222e23f"
|
|
3693
|
+
dependencies = [
|
|
3694
|
+
"aes",
|
|
3695
|
+
"aes-gcm",
|
|
3696
|
+
"bitflags",
|
|
3697
|
+
"block-padding",
|
|
3698
|
+
"byteorder",
|
|
3699
|
+
"bytes",
|
|
3700
|
+
"cbc",
|
|
3701
|
+
"chacha20",
|
|
3702
|
+
"ctr",
|
|
3703
|
+
"curve25519-dalek",
|
|
3704
|
+
"data-encoding",
|
|
3705
|
+
"delegate",
|
|
3706
|
+
"der",
|
|
3707
|
+
"digest 0.10.7",
|
|
3708
|
+
"ecdsa",
|
|
3709
|
+
"ed25519-dalek",
|
|
3710
|
+
"elliptic-curve",
|
|
3711
|
+
"enum_dispatch",
|
|
3712
|
+
"flate2",
|
|
3713
|
+
"futures",
|
|
3714
|
+
"generic-array",
|
|
3715
|
+
"getrandom 0.2.17",
|
|
3716
|
+
"hex-literal",
|
|
3717
|
+
"hmac",
|
|
3718
|
+
"home",
|
|
3719
|
+
"inout",
|
|
3720
|
+
"internal-russh-forked-ssh-key",
|
|
3721
|
+
"log",
|
|
3722
|
+
"md5",
|
|
3723
|
+
"num-bigint",
|
|
3724
|
+
"once_cell",
|
|
3725
|
+
"p256",
|
|
3726
|
+
"p384",
|
|
3727
|
+
"p521",
|
|
3728
|
+
"pageant 0.0.3",
|
|
3729
|
+
"pbkdf2",
|
|
3730
|
+
"pkcs1",
|
|
3731
|
+
"pkcs5",
|
|
3732
|
+
"pkcs8",
|
|
3733
|
+
"poly1305",
|
|
3734
|
+
"rand 0.8.5",
|
|
3735
|
+
"rand_core 0.6.4",
|
|
3736
|
+
"rsa",
|
|
3737
|
+
"russh-cryptovec 0.52.0",
|
|
3738
|
+
"russh-util 0.52.0",
|
|
3739
|
+
"sec1",
|
|
3740
|
+
"sha1 0.10.6",
|
|
3741
|
+
"sha2 0.10.9",
|
|
3742
|
+
"signature",
|
|
3743
|
+
"spki",
|
|
3744
|
+
"ssh-encoding",
|
|
3745
|
+
"subtle",
|
|
3746
|
+
"thiserror 1.0.69",
|
|
3747
|
+
"tokio",
|
|
3748
|
+
"typenum",
|
|
3749
|
+
"zeroize",
|
|
3750
|
+
]
|
|
3751
|
+
|
|
3752
|
+
[[package]]
|
|
3753
|
+
name = "russh-cryptovec"
|
|
3754
|
+
version = "0.48.0"
|
|
3755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3756
|
+
checksum = "4d8e7e854e1a87e4be00fa287c98cad23faa064d0464434beaa9f014ec3baa98"
|
|
2607
3757
|
dependencies = [
|
|
2608
|
-
"
|
|
2609
|
-
"
|
|
2610
|
-
"
|
|
2611
|
-
"get-size2",
|
|
2612
|
-
"memchr",
|
|
2613
|
-
"ruff_python_ast",
|
|
2614
|
-
"ruff_python_trivia",
|
|
2615
|
-
"ruff_text_size",
|
|
2616
|
-
"rustc-hash",
|
|
2617
|
-
"static_assertions",
|
|
2618
|
-
"unicode-ident",
|
|
2619
|
-
"unicode-normalization",
|
|
2620
|
-
"unicode_names2",
|
|
3758
|
+
"libc",
|
|
3759
|
+
"ssh-encoding",
|
|
3760
|
+
"winapi",
|
|
2621
3761
|
]
|
|
2622
3762
|
|
|
2623
3763
|
[[package]]
|
|
2624
|
-
name = "
|
|
2625
|
-
version = "0.
|
|
2626
|
-
source = "
|
|
3764
|
+
name = "russh-cryptovec"
|
|
3765
|
+
version = "0.52.0"
|
|
3766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3767
|
+
checksum = "4fb0ed583ff0f6b4aa44c7867dd7108df01b30571ee9423e250b4cc939f8c6cf"
|
|
2627
3768
|
dependencies = [
|
|
2628
|
-
"
|
|
2629
|
-
"
|
|
2630
|
-
"
|
|
2631
|
-
"
|
|
3769
|
+
"libc",
|
|
3770
|
+
"log",
|
|
3771
|
+
"nix",
|
|
3772
|
+
"ssh-encoding",
|
|
3773
|
+
"winapi",
|
|
2632
3774
|
]
|
|
2633
3775
|
|
|
2634
3776
|
[[package]]
|
|
2635
|
-
name = "
|
|
2636
|
-
version = "0.
|
|
2637
|
-
source = "
|
|
3777
|
+
name = "russh-keys"
|
|
3778
|
+
version = "0.49.2"
|
|
3779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3780
|
+
checksum = "788a2439ce385856585346beb37c48e7c9eb5de5f4f00736720a19ffdb3f5bb5"
|
|
2638
3781
|
dependencies = [
|
|
2639
|
-
"
|
|
2640
|
-
"
|
|
3782
|
+
"aes",
|
|
3783
|
+
"async-trait",
|
|
3784
|
+
"bcrypt-pbkdf",
|
|
3785
|
+
"block-padding",
|
|
3786
|
+
"byteorder",
|
|
3787
|
+
"bytes",
|
|
3788
|
+
"cbc",
|
|
3789
|
+
"ctr",
|
|
3790
|
+
"data-encoding",
|
|
3791
|
+
"der",
|
|
3792
|
+
"digest 0.10.7",
|
|
3793
|
+
"ecdsa",
|
|
3794
|
+
"ed25519-dalek",
|
|
3795
|
+
"elliptic-curve",
|
|
3796
|
+
"futures",
|
|
3797
|
+
"getrandom 0.2.17",
|
|
3798
|
+
"hmac",
|
|
3799
|
+
"home",
|
|
3800
|
+
"inout",
|
|
3801
|
+
"log",
|
|
3802
|
+
"md5",
|
|
3803
|
+
"num-integer",
|
|
3804
|
+
"p256",
|
|
3805
|
+
"p384",
|
|
3806
|
+
"p521",
|
|
3807
|
+
"pageant 0.0.1",
|
|
3808
|
+
"pbkdf2",
|
|
3809
|
+
"pkcs1",
|
|
3810
|
+
"pkcs5",
|
|
3811
|
+
"pkcs8",
|
|
3812
|
+
"rand 0.8.5",
|
|
3813
|
+
"rand_core 0.6.4",
|
|
3814
|
+
"rsa",
|
|
3815
|
+
"russh-cryptovec 0.48.0",
|
|
3816
|
+
"russh-util 0.48.0",
|
|
3817
|
+
"sec1",
|
|
3818
|
+
"serde",
|
|
3819
|
+
"sha1 0.10.6",
|
|
3820
|
+
"sha2 0.10.9",
|
|
3821
|
+
"signature",
|
|
3822
|
+
"spki",
|
|
3823
|
+
"ssh-encoding",
|
|
3824
|
+
"ssh-key",
|
|
3825
|
+
"thiserror 1.0.69",
|
|
3826
|
+
"tokio",
|
|
3827
|
+
"tokio-stream",
|
|
3828
|
+
"typenum",
|
|
3829
|
+
"zeroize",
|
|
2641
3830
|
]
|
|
2642
3831
|
|
|
2643
3832
|
[[package]]
|
|
2644
|
-
name = "
|
|
2645
|
-
version = "0.
|
|
2646
|
-
source = "
|
|
3833
|
+
name = "russh-util"
|
|
3834
|
+
version = "0.48.0"
|
|
3835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3836
|
+
checksum = "92c7dd577958c0cefbc8f8a2c05c48c88c42e2fdb760dbe9b96ae31d4de97a1f"
|
|
2647
3837
|
dependencies = [
|
|
2648
|
-
"
|
|
3838
|
+
"chrono",
|
|
3839
|
+
"tokio",
|
|
3840
|
+
"wasm-bindgen",
|
|
3841
|
+
"wasm-bindgen-futures",
|
|
3842
|
+
]
|
|
3843
|
+
|
|
3844
|
+
[[package]]
|
|
3845
|
+
name = "russh-util"
|
|
3846
|
+
version = "0.52.0"
|
|
3847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3848
|
+
checksum = "668424a5dde0bcb45b55ba7de8476b93831b4aa2fa6947e145f3b053e22c60b6"
|
|
3849
|
+
dependencies = [
|
|
3850
|
+
"chrono",
|
|
3851
|
+
"tokio",
|
|
3852
|
+
"wasm-bindgen",
|
|
3853
|
+
"wasm-bindgen-futures",
|
|
2649
3854
|
]
|
|
2650
3855
|
|
|
2651
3856
|
[[package]]
|
|
2652
3857
|
name = "rustc-hash"
|
|
2653
|
-
version = "2.1.
|
|
3858
|
+
version = "2.1.2"
|
|
2654
3859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2655
|
-
checksum = "
|
|
3860
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
2656
3861
|
|
|
2657
3862
|
[[package]]
|
|
2658
3863
|
name = "rustc_version"
|
|
@@ -2784,6 +3989,15 @@ dependencies = [
|
|
|
2784
3989
|
"bytemuck",
|
|
2785
3990
|
]
|
|
2786
3991
|
|
|
3992
|
+
[[package]]
|
|
3993
|
+
name = "salsa20"
|
|
3994
|
+
version = "0.10.2"
|
|
3995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3996
|
+
checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
|
|
3997
|
+
dependencies = [
|
|
3998
|
+
"cipher",
|
|
3999
|
+
]
|
|
4000
|
+
|
|
2787
4001
|
[[package]]
|
|
2788
4002
|
name = "same-file"
|
|
2789
4003
|
version = "1.0.6"
|
|
@@ -2842,12 +4056,37 @@ version = "1.2.0"
|
|
|
2842
4056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
4057
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2844
4058
|
|
|
4059
|
+
[[package]]
|
|
4060
|
+
name = "scrypt"
|
|
4061
|
+
version = "0.11.0"
|
|
4062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4063
|
+
checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
|
|
4064
|
+
dependencies = [
|
|
4065
|
+
"pbkdf2",
|
|
4066
|
+
"salsa20",
|
|
4067
|
+
"sha2 0.10.9",
|
|
4068
|
+
]
|
|
4069
|
+
|
|
2845
4070
|
[[package]]
|
|
2846
4071
|
name = "sdd"
|
|
2847
4072
|
version = "3.0.10"
|
|
2848
4073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
4074
|
checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
|
|
2850
4075
|
|
|
4076
|
+
[[package]]
|
|
4077
|
+
name = "sec1"
|
|
4078
|
+
version = "0.7.3"
|
|
4079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4080
|
+
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
|
|
4081
|
+
dependencies = [
|
|
4082
|
+
"base16ct",
|
|
4083
|
+
"der",
|
|
4084
|
+
"generic-array",
|
|
4085
|
+
"pkcs8",
|
|
4086
|
+
"subtle",
|
|
4087
|
+
"zeroize",
|
|
4088
|
+
]
|
|
4089
|
+
|
|
2851
4090
|
[[package]]
|
|
2852
4091
|
name = "security-framework"
|
|
2853
4092
|
version = "3.7.0"
|
|
@@ -2871,11 +4110,23 @@ dependencies = [
|
|
|
2871
4110
|
"libc",
|
|
2872
4111
|
]
|
|
2873
4112
|
|
|
4113
|
+
[[package]]
|
|
4114
|
+
name = "self_cell"
|
|
4115
|
+
version = "1.2.2"
|
|
4116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4117
|
+
checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
|
|
4118
|
+
|
|
2874
4119
|
[[package]]
|
|
2875
4120
|
name = "semver"
|
|
2876
|
-
version = "1.0.
|
|
4121
|
+
version = "1.0.28"
|
|
2877
4122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
-
checksum = "
|
|
4123
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
4124
|
+
|
|
4125
|
+
[[package]]
|
|
4126
|
+
name = "seq-macro"
|
|
4127
|
+
version = "0.3.6"
|
|
4128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4129
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
2879
4130
|
|
|
2880
4131
|
[[package]]
|
|
2881
4132
|
name = "serde"
|
|
@@ -2964,8 +4215,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2964
4215
|
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
2965
4216
|
dependencies = [
|
|
2966
4217
|
"cfg-if",
|
|
2967
|
-
"cpufeatures",
|
|
2968
|
-
"digest",
|
|
4218
|
+
"cpufeatures 0.2.17",
|
|
4219
|
+
"digest 0.10.7",
|
|
4220
|
+
]
|
|
4221
|
+
|
|
4222
|
+
[[package]]
|
|
4223
|
+
name = "sha1"
|
|
4224
|
+
version = "0.11.0"
|
|
4225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4226
|
+
checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
|
|
4227
|
+
dependencies = [
|
|
4228
|
+
"cfg-if",
|
|
4229
|
+
"cpufeatures 0.3.0",
|
|
4230
|
+
"digest 0.11.2",
|
|
2969
4231
|
]
|
|
2970
4232
|
|
|
2971
4233
|
[[package]]
|
|
@@ -2975,8 +4237,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2975
4237
|
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2976
4238
|
dependencies = [
|
|
2977
4239
|
"cfg-if",
|
|
2978
|
-
"cpufeatures",
|
|
2979
|
-
"digest",
|
|
4240
|
+
"cpufeatures 0.2.17",
|
|
4241
|
+
"digest 0.10.7",
|
|
4242
|
+
]
|
|
4243
|
+
|
|
4244
|
+
[[package]]
|
|
4245
|
+
name = "sha2"
|
|
4246
|
+
version = "0.11.0"
|
|
4247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4248
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
4249
|
+
dependencies = [
|
|
4250
|
+
"cfg-if",
|
|
4251
|
+
"cpufeatures 0.3.0",
|
|
4252
|
+
"digest 0.11.2",
|
|
2980
4253
|
]
|
|
2981
4254
|
|
|
2982
4255
|
[[package]]
|
|
@@ -2995,6 +4268,16 @@ dependencies = [
|
|
|
2995
4268
|
"libc",
|
|
2996
4269
|
]
|
|
2997
4270
|
|
|
4271
|
+
[[package]]
|
|
4272
|
+
name = "signature"
|
|
4273
|
+
version = "2.2.0"
|
|
4274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4275
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
4276
|
+
dependencies = [
|
|
4277
|
+
"digest 0.10.7",
|
|
4278
|
+
"rand_core 0.6.4",
|
|
4279
|
+
]
|
|
4280
|
+
|
|
2998
4281
|
[[package]]
|
|
2999
4282
|
name = "simba"
|
|
3000
4283
|
version = "0.9.1"
|
|
@@ -3010,9 +4293,9 @@ dependencies = [
|
|
|
3010
4293
|
|
|
3011
4294
|
[[package]]
|
|
3012
4295
|
name = "simd-adler32"
|
|
3013
|
-
version = "0.3.
|
|
4296
|
+
version = "0.3.9"
|
|
3014
4297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3015
|
-
checksum = "
|
|
4298
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
3016
4299
|
|
|
3017
4300
|
[[package]]
|
|
3018
4301
|
name = "similar"
|
|
@@ -3041,6 +4324,12 @@ dependencies = [
|
|
|
3041
4324
|
"serde",
|
|
3042
4325
|
]
|
|
3043
4326
|
|
|
4327
|
+
[[package]]
|
|
4328
|
+
name = "smawk"
|
|
4329
|
+
version = "0.3.2"
|
|
4330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4331
|
+
checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
|
|
4332
|
+
|
|
3044
4333
|
[[package]]
|
|
3045
4334
|
name = "socket2"
|
|
3046
4335
|
version = "0.6.3"
|
|
@@ -3060,6 +4349,68 @@ dependencies = [
|
|
|
3060
4349
|
"lock_api",
|
|
3061
4350
|
]
|
|
3062
4351
|
|
|
4352
|
+
[[package]]
|
|
4353
|
+
name = "spki"
|
|
4354
|
+
version = "0.7.3"
|
|
4355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4356
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
4357
|
+
dependencies = [
|
|
4358
|
+
"base64ct",
|
|
4359
|
+
"der",
|
|
4360
|
+
]
|
|
4361
|
+
|
|
4362
|
+
[[package]]
|
|
4363
|
+
name = "ssh-cipher"
|
|
4364
|
+
version = "0.2.0"
|
|
4365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4366
|
+
checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
|
|
4367
|
+
dependencies = [
|
|
4368
|
+
"aes",
|
|
4369
|
+
"aes-gcm",
|
|
4370
|
+
"cbc",
|
|
4371
|
+
"chacha20",
|
|
4372
|
+
"cipher",
|
|
4373
|
+
"ctr",
|
|
4374
|
+
"poly1305",
|
|
4375
|
+
"ssh-encoding",
|
|
4376
|
+
"subtle",
|
|
4377
|
+
]
|
|
4378
|
+
|
|
4379
|
+
[[package]]
|
|
4380
|
+
name = "ssh-encoding"
|
|
4381
|
+
version = "0.2.0"
|
|
4382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4383
|
+
checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
|
|
4384
|
+
dependencies = [
|
|
4385
|
+
"base64ct",
|
|
4386
|
+
"bytes",
|
|
4387
|
+
"pem-rfc7468",
|
|
4388
|
+
"sha2 0.10.9",
|
|
4389
|
+
]
|
|
4390
|
+
|
|
4391
|
+
[[package]]
|
|
4392
|
+
name = "ssh-key"
|
|
4393
|
+
version = "0.6.7"
|
|
4394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4395
|
+
checksum = "3b86f5297f0f04d08cabaa0f6bff7cb6aec4d9c3b49d87990d63da9d9156a8c3"
|
|
4396
|
+
dependencies = [
|
|
4397
|
+
"bcrypt-pbkdf",
|
|
4398
|
+
"ed25519-dalek",
|
|
4399
|
+
"num-bigint-dig",
|
|
4400
|
+
"p256",
|
|
4401
|
+
"p384",
|
|
4402
|
+
"p521",
|
|
4403
|
+
"rand_core 0.6.4",
|
|
4404
|
+
"rsa",
|
|
4405
|
+
"sec1",
|
|
4406
|
+
"sha2 0.10.9",
|
|
4407
|
+
"signature",
|
|
4408
|
+
"ssh-cipher",
|
|
4409
|
+
"ssh-encoding",
|
|
4410
|
+
"subtle",
|
|
4411
|
+
"zeroize",
|
|
4412
|
+
]
|
|
4413
|
+
|
|
3063
4414
|
[[package]]
|
|
3064
4415
|
name = "stable_deref_trait"
|
|
3065
4416
|
version = "1.2.1"
|
|
@@ -3200,6 +4551,17 @@ dependencies = [
|
|
|
3200
4551
|
"unicode-width",
|
|
3201
4552
|
]
|
|
3202
4553
|
|
|
4554
|
+
[[package]]
|
|
4555
|
+
name = "textwrap"
|
|
4556
|
+
version = "0.16.2"
|
|
4557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4558
|
+
checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
|
|
4559
|
+
dependencies = [
|
|
4560
|
+
"smawk",
|
|
4561
|
+
"unicode-linebreak",
|
|
4562
|
+
"unicode-width",
|
|
4563
|
+
]
|
|
4564
|
+
|
|
3203
4565
|
[[package]]
|
|
3204
4566
|
name = "thiserror"
|
|
3205
4567
|
version = "1.0.69"
|
|
@@ -3242,9 +4604,9 @@ dependencies = [
|
|
|
3242
4604
|
|
|
3243
4605
|
[[package]]
|
|
3244
4606
|
name = "tinystr"
|
|
3245
|
-
version = "0.8.
|
|
4607
|
+
version = "0.8.3"
|
|
3246
4608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3247
|
-
checksum = "
|
|
4609
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
3248
4610
|
dependencies = [
|
|
3249
4611
|
"displaydoc",
|
|
3250
4612
|
"zerovec",
|
|
@@ -3277,9 +4639,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3277
4639
|
|
|
3278
4640
|
[[package]]
|
|
3279
4641
|
name = "tokio"
|
|
3280
|
-
version = "1.
|
|
4642
|
+
version = "1.51.0"
|
|
3281
4643
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3282
|
-
checksum = "
|
|
4644
|
+
checksum = "2bd1c4c0fc4a7ab90fc15ef6daaa3ec3b893f004f915f2392557ed23237820cd"
|
|
3283
4645
|
dependencies = [
|
|
3284
4646
|
"bytes",
|
|
3285
4647
|
"libc",
|
|
@@ -3293,9 +4655,9 @@ dependencies = [
|
|
|
3293
4655
|
|
|
3294
4656
|
[[package]]
|
|
3295
4657
|
name = "tokio-macros"
|
|
3296
|
-
version = "2.
|
|
4658
|
+
version = "2.7.0"
|
|
3297
4659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3298
|
-
checksum = "
|
|
4660
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
3299
4661
|
dependencies = [
|
|
3300
4662
|
"proc-macro2",
|
|
3301
4663
|
"quote",
|
|
@@ -3321,6 +4683,7 @@ dependencies = [
|
|
|
3321
4683
|
"futures-core",
|
|
3322
4684
|
"pin-project-lite",
|
|
3323
4685
|
"tokio",
|
|
4686
|
+
"tokio-util",
|
|
3324
4687
|
]
|
|
3325
4688
|
|
|
3326
4689
|
[[package]]
|
|
@@ -3447,12 +4810,24 @@ version = "0.1.4"
|
|
|
3447
4810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3448
4811
|
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
3449
4812
|
|
|
4813
|
+
[[package]]
|
|
4814
|
+
name = "unicode-id-start"
|
|
4815
|
+
version = "1.4.0"
|
|
4816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4817
|
+
checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
|
|
4818
|
+
|
|
3450
4819
|
[[package]]
|
|
3451
4820
|
name = "unicode-ident"
|
|
3452
4821
|
version = "1.0.24"
|
|
3453
4822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3454
4823
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
3455
4824
|
|
|
4825
|
+
[[package]]
|
|
4826
|
+
name = "unicode-linebreak"
|
|
4827
|
+
version = "0.1.5"
|
|
4828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4829
|
+
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
|
4830
|
+
|
|
3456
4831
|
[[package]]
|
|
3457
4832
|
name = "unicode-normalization"
|
|
3458
4833
|
version = "0.1.25"
|
|
@@ -3464,9 +4839,9 @@ dependencies = [
|
|
|
3464
4839
|
|
|
3465
4840
|
[[package]]
|
|
3466
4841
|
name = "unicode-segmentation"
|
|
3467
|
-
version = "1.
|
|
4842
|
+
version = "1.13.2"
|
|
3468
4843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3469
|
-
checksum = "
|
|
4844
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
3470
4845
|
|
|
3471
4846
|
[[package]]
|
|
3472
4847
|
name = "unicode-width"
|
|
@@ -3486,7 +4861,7 @@ version = "1.3.0"
|
|
|
3486
4861
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3487
4862
|
checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
|
|
3488
4863
|
dependencies = [
|
|
3489
|
-
"phf",
|
|
4864
|
+
"phf 0.11.3",
|
|
3490
4865
|
"unicode_names2_generator",
|
|
3491
4866
|
]
|
|
3492
4867
|
|
|
@@ -3502,6 +4877,16 @@ dependencies = [
|
|
|
3502
4877
|
"rand 0.8.5",
|
|
3503
4878
|
]
|
|
3504
4879
|
|
|
4880
|
+
[[package]]
|
|
4881
|
+
name = "universal-hash"
|
|
4882
|
+
version = "0.5.1"
|
|
4883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4884
|
+
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
|
4885
|
+
dependencies = [
|
|
4886
|
+
"crypto-common 0.1.7",
|
|
4887
|
+
"subtle",
|
|
4888
|
+
]
|
|
4889
|
+
|
|
3505
4890
|
[[package]]
|
|
3506
4891
|
name = "untrusted"
|
|
3507
4892
|
version = "0.9.0"
|
|
@@ -3598,9 +4983,9 @@ dependencies = [
|
|
|
3598
4983
|
|
|
3599
4984
|
[[package]]
|
|
3600
4985
|
name = "wasm-bindgen"
|
|
3601
|
-
version = "0.2.
|
|
4986
|
+
version = "0.2.117"
|
|
3602
4987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3603
|
-
checksum = "
|
|
4988
|
+
checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
|
|
3604
4989
|
dependencies = [
|
|
3605
4990
|
"cfg-if",
|
|
3606
4991
|
"once_cell",
|
|
@@ -3611,23 +4996,19 @@ dependencies = [
|
|
|
3611
4996
|
|
|
3612
4997
|
[[package]]
|
|
3613
4998
|
name = "wasm-bindgen-futures"
|
|
3614
|
-
version = "0.4.
|
|
4999
|
+
version = "0.4.67"
|
|
3615
5000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3616
|
-
checksum = "
|
|
5001
|
+
checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
|
|
3617
5002
|
dependencies = [
|
|
3618
|
-
"cfg-if",
|
|
3619
|
-
"futures-util",
|
|
3620
5003
|
"js-sys",
|
|
3621
|
-
"once_cell",
|
|
3622
5004
|
"wasm-bindgen",
|
|
3623
|
-
"web-sys",
|
|
3624
5005
|
]
|
|
3625
5006
|
|
|
3626
5007
|
[[package]]
|
|
3627
5008
|
name = "wasm-bindgen-macro"
|
|
3628
|
-
version = "0.2.
|
|
5009
|
+
version = "0.2.117"
|
|
3629
5010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3630
|
-
checksum = "
|
|
5011
|
+
checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
|
|
3631
5012
|
dependencies = [
|
|
3632
5013
|
"quote",
|
|
3633
5014
|
"wasm-bindgen-macro-support",
|
|
@@ -3635,9 +5016,9 @@ dependencies = [
|
|
|
3635
5016
|
|
|
3636
5017
|
[[package]]
|
|
3637
5018
|
name = "wasm-bindgen-macro-support"
|
|
3638
|
-
version = "0.2.
|
|
5019
|
+
version = "0.2.117"
|
|
3639
5020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3640
|
-
checksum = "
|
|
5021
|
+
checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
|
|
3641
5022
|
dependencies = [
|
|
3642
5023
|
"bumpalo",
|
|
3643
5024
|
"proc-macro2",
|
|
@@ -3648,9 +5029,9 @@ dependencies = [
|
|
|
3648
5029
|
|
|
3649
5030
|
[[package]]
|
|
3650
5031
|
name = "wasm-bindgen-shared"
|
|
3651
|
-
version = "0.2.
|
|
5032
|
+
version = "0.2.117"
|
|
3652
5033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3653
|
-
checksum = "
|
|
5034
|
+
checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
|
|
3654
5035
|
dependencies = [
|
|
3655
5036
|
"unicode-ident",
|
|
3656
5037
|
]
|
|
@@ -3704,9 +5085,9 @@ dependencies = [
|
|
|
3704
5085
|
|
|
3705
5086
|
[[package]]
|
|
3706
5087
|
name = "web-sys"
|
|
3707
|
-
version = "0.3.
|
|
5088
|
+
version = "0.3.94"
|
|
3708
5089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3709
|
-
checksum = "
|
|
5090
|
+
checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
|
|
3710
5091
|
dependencies = [
|
|
3711
5092
|
"js-sys",
|
|
3712
5093
|
"wasm-bindgen",
|
|
@@ -3772,17 +5153,51 @@ version = "0.4.0"
|
|
|
3772
5153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3773
5154
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3774
5155
|
|
|
5156
|
+
[[package]]
|
|
5157
|
+
name = "windows"
|
|
5158
|
+
version = "0.58.0"
|
|
5159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5160
|
+
checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
|
|
5161
|
+
dependencies = [
|
|
5162
|
+
"windows-core 0.58.0",
|
|
5163
|
+
"windows-targets 0.52.6",
|
|
5164
|
+
]
|
|
5165
|
+
|
|
5166
|
+
[[package]]
|
|
5167
|
+
name = "windows-core"
|
|
5168
|
+
version = "0.58.0"
|
|
5169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5170
|
+
checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
|
|
5171
|
+
dependencies = [
|
|
5172
|
+
"windows-implement 0.58.0",
|
|
5173
|
+
"windows-interface 0.58.0",
|
|
5174
|
+
"windows-result 0.2.0",
|
|
5175
|
+
"windows-strings 0.1.0",
|
|
5176
|
+
"windows-targets 0.52.6",
|
|
5177
|
+
]
|
|
5178
|
+
|
|
3775
5179
|
[[package]]
|
|
3776
5180
|
name = "windows-core"
|
|
3777
5181
|
version = "0.62.2"
|
|
3778
5182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3779
5183
|
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3780
5184
|
dependencies = [
|
|
3781
|
-
"windows-implement",
|
|
3782
|
-
"windows-interface",
|
|
5185
|
+
"windows-implement 0.60.2",
|
|
5186
|
+
"windows-interface 0.59.3",
|
|
3783
5187
|
"windows-link",
|
|
3784
|
-
"windows-result",
|
|
3785
|
-
"windows-strings",
|
|
5188
|
+
"windows-result 0.4.1",
|
|
5189
|
+
"windows-strings 0.5.1",
|
|
5190
|
+
]
|
|
5191
|
+
|
|
5192
|
+
[[package]]
|
|
5193
|
+
name = "windows-implement"
|
|
5194
|
+
version = "0.58.0"
|
|
5195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5196
|
+
checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
|
|
5197
|
+
dependencies = [
|
|
5198
|
+
"proc-macro2",
|
|
5199
|
+
"quote",
|
|
5200
|
+
"syn",
|
|
3786
5201
|
]
|
|
3787
5202
|
|
|
3788
5203
|
[[package]]
|
|
@@ -3796,6 +5211,17 @@ dependencies = [
|
|
|
3796
5211
|
"syn",
|
|
3797
5212
|
]
|
|
3798
5213
|
|
|
5214
|
+
[[package]]
|
|
5215
|
+
name = "windows-interface"
|
|
5216
|
+
version = "0.58.0"
|
|
5217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5218
|
+
checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
|
|
5219
|
+
dependencies = [
|
|
5220
|
+
"proc-macro2",
|
|
5221
|
+
"quote",
|
|
5222
|
+
"syn",
|
|
5223
|
+
]
|
|
5224
|
+
|
|
3799
5225
|
[[package]]
|
|
3800
5226
|
name = "windows-interface"
|
|
3801
5227
|
version = "0.59.3"
|
|
@@ -3813,6 +5239,15 @@ version = "0.2.1"
|
|
|
3813
5239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3814
5240
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3815
5241
|
|
|
5242
|
+
[[package]]
|
|
5243
|
+
name = "windows-result"
|
|
5244
|
+
version = "0.2.0"
|
|
5245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5246
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
5247
|
+
dependencies = [
|
|
5248
|
+
"windows-targets 0.52.6",
|
|
5249
|
+
]
|
|
5250
|
+
|
|
3816
5251
|
[[package]]
|
|
3817
5252
|
name = "windows-result"
|
|
3818
5253
|
version = "0.4.1"
|
|
@@ -3822,6 +5257,16 @@ dependencies = [
|
|
|
3822
5257
|
"windows-link",
|
|
3823
5258
|
]
|
|
3824
5259
|
|
|
5260
|
+
[[package]]
|
|
5261
|
+
name = "windows-strings"
|
|
5262
|
+
version = "0.1.0"
|
|
5263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5264
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
5265
|
+
dependencies = [
|
|
5266
|
+
"windows-result 0.2.0",
|
|
5267
|
+
"windows-targets 0.52.6",
|
|
5268
|
+
]
|
|
5269
|
+
|
|
3825
5270
|
[[package]]
|
|
3826
5271
|
name = "windows-strings"
|
|
3827
5272
|
version = "0.5.1"
|
|
@@ -3849,15 +5294,6 @@ dependencies = [
|
|
|
3849
5294
|
"windows-targets 0.52.6",
|
|
3850
5295
|
]
|
|
3851
5296
|
|
|
3852
|
-
[[package]]
|
|
3853
|
-
name = "windows-sys"
|
|
3854
|
-
version = "0.59.0"
|
|
3855
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3856
|
-
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3857
|
-
dependencies = [
|
|
3858
|
-
"windows-targets 0.52.6",
|
|
3859
|
-
]
|
|
3860
|
-
|
|
3861
5297
|
[[package]]
|
|
3862
5298
|
name = "windows-sys"
|
|
3863
5299
|
version = "0.60.2"
|
|
@@ -4152,9 +5588,9 @@ dependencies = [
|
|
|
4152
5588
|
|
|
4153
5589
|
[[package]]
|
|
4154
5590
|
name = "writeable"
|
|
4155
|
-
version = "0.6.
|
|
5591
|
+
version = "0.6.3"
|
|
4156
5592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4157
|
-
checksum = "
|
|
5593
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
4158
5594
|
|
|
4159
5595
|
[[package]]
|
|
4160
5596
|
name = "yansi"
|
|
@@ -4164,9 +5600,9 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
4164
5600
|
|
|
4165
5601
|
[[package]]
|
|
4166
5602
|
name = "yoke"
|
|
4167
|
-
version = "0.8.
|
|
5603
|
+
version = "0.8.2"
|
|
4168
5604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4169
|
-
checksum = "
|
|
5605
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
4170
5606
|
dependencies = [
|
|
4171
5607
|
"stable_deref_trait",
|
|
4172
5608
|
"yoke-derive",
|
|
@@ -4175,9 +5611,9 @@ dependencies = [
|
|
|
4175
5611
|
|
|
4176
5612
|
[[package]]
|
|
4177
5613
|
name = "yoke-derive"
|
|
4178
|
-
version = "0.8.
|
|
5614
|
+
version = "0.8.2"
|
|
4179
5615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4180
|
-
checksum = "
|
|
5616
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
4181
5617
|
dependencies = [
|
|
4182
5618
|
"proc-macro2",
|
|
4183
5619
|
"quote",
|
|
@@ -4185,20 +5621,37 @@ dependencies = [
|
|
|
4185
5621
|
"synstructure",
|
|
4186
5622
|
]
|
|
4187
5623
|
|
|
5624
|
+
[[package]]
|
|
5625
|
+
name = "zapcode-core"
|
|
5626
|
+
version = "1.5.1"
|
|
5627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5628
|
+
checksum = "763b84cb268f5cf5212198eff31106006ac32aa7e472201cae9f994521abebe2"
|
|
5629
|
+
dependencies = [
|
|
5630
|
+
"indexmap",
|
|
5631
|
+
"oxc_allocator",
|
|
5632
|
+
"oxc_ast",
|
|
5633
|
+
"oxc_parser",
|
|
5634
|
+
"oxc_span",
|
|
5635
|
+
"oxc_syntax",
|
|
5636
|
+
"postcard",
|
|
5637
|
+
"serde",
|
|
5638
|
+
"thiserror 2.0.18",
|
|
5639
|
+
]
|
|
5640
|
+
|
|
4188
5641
|
[[package]]
|
|
4189
5642
|
name = "zerocopy"
|
|
4190
|
-
version = "0.8.
|
|
5643
|
+
version = "0.8.48"
|
|
4191
5644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4192
|
-
checksum = "
|
|
5645
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
4193
5646
|
dependencies = [
|
|
4194
5647
|
"zerocopy-derive",
|
|
4195
5648
|
]
|
|
4196
5649
|
|
|
4197
5650
|
[[package]]
|
|
4198
5651
|
name = "zerocopy-derive"
|
|
4199
|
-
version = "0.8.
|
|
5652
|
+
version = "0.8.48"
|
|
4200
5653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4201
|
-
checksum = "
|
|
5654
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
4202
5655
|
dependencies = [
|
|
4203
5656
|
"proc-macro2",
|
|
4204
5657
|
"quote",
|
|
@@ -4207,18 +5660,18 @@ dependencies = [
|
|
|
4207
5660
|
|
|
4208
5661
|
[[package]]
|
|
4209
5662
|
name = "zerofrom"
|
|
4210
|
-
version = "0.1.
|
|
5663
|
+
version = "0.1.7"
|
|
4211
5664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4212
|
-
checksum = "
|
|
5665
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
4213
5666
|
dependencies = [
|
|
4214
5667
|
"zerofrom-derive",
|
|
4215
5668
|
]
|
|
4216
5669
|
|
|
4217
5670
|
[[package]]
|
|
4218
5671
|
name = "zerofrom-derive"
|
|
4219
|
-
version = "0.1.
|
|
5672
|
+
version = "0.1.7"
|
|
4220
5673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4221
|
-
checksum = "
|
|
5674
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
4222
5675
|
dependencies = [
|
|
4223
5676
|
"proc-macro2",
|
|
4224
5677
|
"quote",
|
|
@@ -4234,9 +5687,9 @@ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
|
4234
5687
|
|
|
4235
5688
|
[[package]]
|
|
4236
5689
|
name = "zerotrie"
|
|
4237
|
-
version = "0.2.
|
|
5690
|
+
version = "0.2.4"
|
|
4238
5691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4239
|
-
checksum = "
|
|
5692
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
4240
5693
|
dependencies = [
|
|
4241
5694
|
"displaydoc",
|
|
4242
5695
|
"yoke",
|
|
@@ -4245,9 +5698,9 @@ dependencies = [
|
|
|
4245
5698
|
|
|
4246
5699
|
[[package]]
|
|
4247
5700
|
name = "zerovec"
|
|
4248
|
-
version = "0.11.
|
|
5701
|
+
version = "0.11.6"
|
|
4249
5702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4250
|
-
checksum = "
|
|
5703
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
4251
5704
|
dependencies = [
|
|
4252
5705
|
"yoke",
|
|
4253
5706
|
"zerofrom",
|
|
@@ -4256,9 +5709,9 @@ dependencies = [
|
|
|
4256
5709
|
|
|
4257
5710
|
[[package]]
|
|
4258
5711
|
name = "zerovec-derive"
|
|
4259
|
-
version = "0.11.
|
|
5712
|
+
version = "0.11.3"
|
|
4260
5713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4261
|
-
checksum = "
|
|
5714
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
4262
5715
|
dependencies = [
|
|
4263
5716
|
"proc-macro2",
|
|
4264
5717
|
"quote",
|