bashkit 0.2.1__tar.gz → 0.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bashkit-0.2.1 → bashkit-0.4.0}/Cargo.lock +775 -237
- {bashkit-0.2.1 → bashkit-0.4.0}/Cargo.toml +8 -4
- {bashkit-0.2.1 → bashkit-0.4.0}/PKG-INFO +47 -5
- {bashkit-0.2.1/crates/bashkit-python → bashkit-0.4.0}/README.md +46 -4
- {bashkit-0.2.1 → bashkit-0.4.0}/bashkit/_bashkit.pyi +93 -8
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/Cargo.toml +35 -2
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/README.md +35 -1
- bashkit-0.4.0/crates/bashkit/benches/sqlite.rs +424 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/docs/custom_builtins.md +39 -0
- bashkit-0.4.0/crates/bashkit/docs/sqlite.md +169 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/docs/threat-model.md +38 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/docs/typescript.md +10 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/agent_tool.rs +4 -0
- bashkit-0.4.0/crates/bashkit/examples/clap_builtin.rs +54 -0
- bashkit-0.4.0/crates/bashkit/examples/clap_builtin_subcommands.rs +63 -0
- bashkit-0.4.0/crates/bashkit/examples/sqlite_basic.rs +37 -0
- bashkit-0.4.0/crates/bashkit/examples/sqlite_workflow.rs +122 -0
- bashkit-0.4.0/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +7 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/awk.rs +29 -1
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/bc.rs +12 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/csv.rs +12 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/curl.rs +21 -1
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/date.rs +12 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/expr.rs +11 -0
- bashkit-0.2.1/crates/bashkit/src/builtins/git.rs → bashkit-0.4.0/crates/bashkit/src/builtins/git/cmd.rs +24 -24
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.4.0/crates/bashkit/src/builtins}/git/mod.rs +6 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/grep.rs +13 -2
- bashkit-0.4.0/crates/bashkit/src/builtins/jq/args.rs +624 -0
- bashkit-0.4.0/crates/bashkit/src/builtins/jq/compat.rs +144 -0
- bashkit-0.4.0/crates/bashkit/src/builtins/jq/convert.rs +287 -0
- bashkit-0.4.0/crates/bashkit/src/builtins/jq/errors.rs +357 -0
- bashkit-0.4.0/crates/bashkit/src/builtins/jq/format.rs +273 -0
- bashkit-0.4.0/crates/bashkit/src/builtins/jq/mod.rs +450 -0
- bashkit-0.4.0/crates/bashkit/src/builtins/jq/regex_compat.rs +307 -0
- bashkit-0.4.0/crates/bashkit/src/builtins/jq/tests.rs +1461 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/json.rs +11 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/ls.rs +2 -2
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/mod.rs +406 -7
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/numfmt.rs +13 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/python.rs +5 -5
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/sed.rs +11 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/semver.rs +11 -0
- bashkit-0.4.0/crates/bashkit/src/builtins/sqlite/dot_commands.rs +556 -0
- bashkit-0.4.0/crates/bashkit/src/builtins/sqlite/engine.rs +291 -0
- bashkit-0.4.0/crates/bashkit/src/builtins/sqlite/formatter.rs +517 -0
- bashkit-0.4.0/crates/bashkit/src/builtins/sqlite/mod.rs +836 -0
- bashkit-0.4.0/crates/bashkit/src/builtins/sqlite/parser.rs +529 -0
- bashkit-0.4.0/crates/bashkit/src/builtins/sqlite/tests.rs +830 -0
- bashkit-0.4.0/crates/bashkit/src/builtins/sqlite/vfs_io.rs +320 -0
- bashkit-0.2.1/crates/bashkit/src/builtins/ssh.rs → bashkit-0.4.0/crates/bashkit/src/builtins/ssh/cmd.rs +15 -21
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.4.0/crates/bashkit/src/builtins}/ssh/config.rs +1 -1
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.4.0/crates/bashkit/src/builtins}/ssh/handler.rs +2 -2
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.4.0/crates/bashkit/src/builtins}/ssh/mod.rs +6 -0
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.4.0/crates/bashkit/src/builtins}/ssh/russh_handler.rs +8 -8
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/tomlq.rs +13 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/typescript.rs +89 -1
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/yaml.rs +11 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/fs/mod.rs +74 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/interpreter/mod.rs +227 -8
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/lib.rs +212 -58
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/scripted_tool/execute.rs +31 -485
- bashkit-0.4.0/crates/bashkit/src/scripted_tool/extension.rs +552 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/scripted_tool/mod.rs +179 -0
- bashkit-0.4.0/crates/bashkit/src/testing.rs +155 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/tool.rs +150 -2
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/awk_fuzz_scaffold_tests.rs +39 -20
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/custom_builtins_tests.rs +133 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/jq_fuzz_scaffold_tests.rs +34 -14
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/network_security_tests.rs +92 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/proptest_security.rs +147 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/python_integration_tests.rs +1 -1
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +6 -5
- bashkit-0.4.0/crates/bashkit/tests/sqlite_compat_tests.rs +158 -0
- bashkit-0.4.0/crates/bashkit/tests/sqlite_differential_tests.rs +331 -0
- bashkit-0.4.0/crates/bashkit/tests/sqlite_fuzz_tests.rs +146 -0
- bashkit-0.4.0/crates/bashkit/tests/sqlite_integration_tests.rs +335 -0
- bashkit-0.4.0/crates/bashkit/tests/sqlite_security_tests.rs +260 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/ssh_supabase_tests.rs +18 -7
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/threat_model_tests.rs +8 -8
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/typescript_security_tests.rs +16 -1
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/Cargo.toml +1 -1
- {bashkit-0.2.1 → bashkit-0.4.0/crates/bashkit-python}/README.md +46 -4
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/src/lib.rs +261 -11
- bashkit-0.4.0/crates/bashkit-python/tests/test_network_credentials.py +401 -0
- bashkit-0.4.0/crates/bashkit-python/tests/test_sqlite.py +145 -0
- bashkit-0.2.1/crates/bashkit/src/builtins/jq.rs +0 -2061
- {bashkit-0.2.1 → bashkit-0.4.0}/bashkit/__init__.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/bashkit/deepagents.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/bashkit/langchain.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/bashkit/py.typed +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/bashkit/pydantic_ai.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/benches/parallel_execution.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/docs/compatibility.md +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/docs/credential-injection.md +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/docs/hooks.md +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/docs/jq.md +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/docs/live_mounts.md +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/docs/logging.md +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/docs/python.md +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/docs/ssh.md +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/basic.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/custom_backend.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/custom_builtins.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/custom_fs.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/git_workflow.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/live_mounts.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/python_external_functions.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/python_scripts.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/realfs_readonly.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/resource_limits.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/scripted_tool.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/show_tool_output.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/ssh_supabase.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/streaming_output.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/text_files.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/text_processing.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/typescript_scripts.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/examples/virtual_identity.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/alias.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/archive.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/assert.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/base64.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/caller.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/cat.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/checksum.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/clear.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/column.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/comm.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/compgen.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/cuttr.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/diff.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/dirstack.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/disk.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/dotenv.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/echo.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/environ.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/envsubst.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/expand.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/export.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/fc.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/fileops.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/flow.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/fold.rs +0 -0
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.4.0/crates/bashkit/src/builtins}/git/client.rs +0 -0
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.4.0/crates/bashkit/src/builtins}/git/config.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/headtail.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/help.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/hextools.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/http.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/iconv.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/inspect.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/introspect.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/join.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/log.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/mapfile.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/navigation.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/nl.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/parallel.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/paste.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/patch.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/path.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/pipeline.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/printf.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/read.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/retry.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/rg.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/search_common.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/seq.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/sleep.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/sortuniq.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/source.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/split.rs +0 -0
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.4.0/crates/bashkit/src/builtins}/ssh/allowlist.rs +0 -0
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.4.0/crates/bashkit/src/builtins}/ssh/client.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/strings.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/system.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/template.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/textrev.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/timeout.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/trap.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/tree.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/vars.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/verify.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/wait.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/wc.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/yes.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/builtins/zip_cmd.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/credential.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/error.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/fs/backend.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/fs/limits.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/fs/memory.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/fs/mountable.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/fs/overlay.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/fs/posix.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/fs/realfs.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/fs/search.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/fs/traits.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/hooks.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/interop/fs.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/interop/mod.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/interpreter/glob.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/interpreter/jobs.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/interpreter/state.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/limits.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/logging_impl.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/network/allowlist.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/network/bot_auth.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/network/client.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/network/mod.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/parser/ast.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/parser/budget.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/parser/lexer.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/parser/mod.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/parser/span.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/parser/tokens.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/snapshot.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/tool_def.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/src/trace.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/allexport_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/awk_newline_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/awk_pattern_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/awk_printf_expr_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/awk_range_pattern_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/background_exec_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/bash_source_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/blackbox_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/builtin_error_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/byte_range_panic_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/cancellation_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/cmdsub_quote_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/coproc_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/credential_injection_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/custom_fs_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/dev_null_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/final_env_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/find_multi_path_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/git_advanced_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/git_inspection_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/git_integration_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/git_remote_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/git_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/harness_example_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/history_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/issue_1175_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/issue_274_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/issue_275_279_282_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/issue_276_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/issue_277_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/issue_289_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/issue_290_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/issue_291_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/issue_853_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/issue_872_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/issue_873_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/issue_875_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/live_mount_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/logging_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/mkfifo_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/nested_subscript_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/output_truncation_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/overlay_path_validation_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/proptest_differential.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/python_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/realfs_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/regex_limit_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/release_profile_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/script_execution_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/security_audit_pocs.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/set_e_and_or_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/skills_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/snapshot_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/source_function_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_runner.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/spec_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/stack_overflow_regression_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/subst_depth_limit_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/symlink_overlay_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/tty_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/typescript_integration_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/unicode_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/unset_function_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit/tests/urandom_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/examples/bash_basics.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/examples/data_pipeline.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/examples/llm_tool.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/_bashkit_categories.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/_security_advanced.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/_security_core.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_basic.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_builtins.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_control_flow.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_error_handling.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_fastapi_integration.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_integration.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_network_config.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_python_security.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_scripts.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_security.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/crates/bashkit-python/tests/test_vfs.py +0 -0
- {bashkit-0.2.1 → bashkit-0.4.0}/pyproject.toml +0 -0
|
@@ -28,6 +28,16 @@ dependencies = [
|
|
|
28
28
|
"inout 0.2.2",
|
|
29
29
|
]
|
|
30
30
|
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "aegis"
|
|
33
|
+
version = "0.9.8"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "78412fa53e6da95324e8902c3641b3ff32ab45258582ea997eb9169c68ffa219"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"cc",
|
|
38
|
+
"softaes",
|
|
39
|
+
]
|
|
40
|
+
|
|
31
41
|
[[package]]
|
|
32
42
|
name = "aes"
|
|
33
43
|
version = "0.8.4"
|
|
@@ -181,12 +191,37 @@ dependencies = [
|
|
|
181
191
|
"windows-sys 0.61.2",
|
|
182
192
|
]
|
|
183
193
|
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "antithesis_sdk"
|
|
196
|
+
version = "0.2.8"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "18dbd97a5b6c21cc9176891cf715f7f0c273caf3959897f43b9bd1231939e675"
|
|
199
|
+
dependencies = [
|
|
200
|
+
"libc",
|
|
201
|
+
"libloading 0.8.9",
|
|
202
|
+
"linkme",
|
|
203
|
+
"once_cell",
|
|
204
|
+
"rand 0.8.6",
|
|
205
|
+
"rustc_version_runtime",
|
|
206
|
+
"serde",
|
|
207
|
+
"serde_json",
|
|
208
|
+
]
|
|
209
|
+
|
|
184
210
|
[[package]]
|
|
185
211
|
name = "anyhow"
|
|
186
212
|
version = "1.0.102"
|
|
187
213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
214
|
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
189
215
|
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "arc-swap"
|
|
218
|
+
version = "1.9.1"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"rustversion",
|
|
223
|
+
]
|
|
224
|
+
|
|
190
225
|
[[package]]
|
|
191
226
|
name = "argon2"
|
|
192
227
|
version = "0.5.3"
|
|
@@ -199,6 +234,12 @@ dependencies = [
|
|
|
199
234
|
"password-hash",
|
|
200
235
|
]
|
|
201
236
|
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "assoc"
|
|
239
|
+
version = "0.1.3"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "bfdc70193dadb9d7287fa4b633f15f90c876915b31f6af17da307fc59c9859a8"
|
|
242
|
+
|
|
202
243
|
[[package]]
|
|
203
244
|
name = "async-trait"
|
|
204
245
|
version = "0.1.89"
|
|
@@ -263,9 +304,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
|
263
304
|
|
|
264
305
|
[[package]]
|
|
265
306
|
name = "aws-lc-rs"
|
|
266
|
-
version = "1.16.
|
|
307
|
+
version = "1.16.3"
|
|
267
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
-
checksum = "
|
|
309
|
+
checksum = "0ec6fb3fe69024a75fa7e1bfb48aa6cf59706a101658ea01bfd33b2b248a038f"
|
|
269
310
|
dependencies = [
|
|
270
311
|
"aws-lc-sys",
|
|
271
312
|
"untrusted 0.7.1",
|
|
@@ -274,9 +315,9 @@ dependencies = [
|
|
|
274
315
|
|
|
275
316
|
[[package]]
|
|
276
317
|
name = "aws-lc-sys"
|
|
277
|
-
version = "0.
|
|
318
|
+
version = "0.40.0"
|
|
278
319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
-
checksum = "
|
|
320
|
+
checksum = "f50037ee5e1e41e7b8f9d161680a725bd1626cb6f8c7e901f91f942850852fe7"
|
|
280
321
|
dependencies = [
|
|
281
322
|
"cc",
|
|
282
323
|
"cmake",
|
|
@@ -304,12 +345,13 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
304
345
|
|
|
305
346
|
[[package]]
|
|
306
347
|
name = "bashkit"
|
|
307
|
-
version = "0.
|
|
348
|
+
version = "0.4.0"
|
|
308
349
|
dependencies = [
|
|
309
350
|
"anyhow",
|
|
310
351
|
"async-trait",
|
|
311
352
|
"base64",
|
|
312
353
|
"chrono",
|
|
354
|
+
"clap",
|
|
313
355
|
"criterion",
|
|
314
356
|
"ed25519-dalek 2.2.0",
|
|
315
357
|
"fail",
|
|
@@ -343,6 +385,7 @@ dependencies = [
|
|
|
343
385
|
"tokio-test",
|
|
344
386
|
"tower",
|
|
345
387
|
"tracing",
|
|
388
|
+
"turso_core",
|
|
346
389
|
"url",
|
|
347
390
|
"zapcode-core",
|
|
348
391
|
"zeroize",
|
|
@@ -350,7 +393,7 @@ dependencies = [
|
|
|
350
393
|
|
|
351
394
|
[[package]]
|
|
352
395
|
name = "bashkit-bench"
|
|
353
|
-
version = "0.
|
|
396
|
+
version = "0.4.0"
|
|
354
397
|
dependencies = [
|
|
355
398
|
"anyhow",
|
|
356
399
|
"bashkit",
|
|
@@ -364,7 +407,7 @@ dependencies = [
|
|
|
364
407
|
|
|
365
408
|
[[package]]
|
|
366
409
|
name = "bashkit-cli"
|
|
367
|
-
version = "0.
|
|
410
|
+
version = "0.4.0"
|
|
368
411
|
dependencies = [
|
|
369
412
|
"anyhow",
|
|
370
413
|
"bashkit",
|
|
@@ -380,7 +423,7 @@ dependencies = [
|
|
|
380
423
|
|
|
381
424
|
[[package]]
|
|
382
425
|
name = "bashkit-eval"
|
|
383
|
-
version = "0.
|
|
426
|
+
version = "0.4.0"
|
|
384
427
|
dependencies = [
|
|
385
428
|
"anyhow",
|
|
386
429
|
"async-trait",
|
|
@@ -397,7 +440,7 @@ dependencies = [
|
|
|
397
440
|
|
|
398
441
|
[[package]]
|
|
399
442
|
name = "bashkit-js"
|
|
400
|
-
version = "0.
|
|
443
|
+
version = "0.4.0"
|
|
401
444
|
dependencies = [
|
|
402
445
|
"bashkit",
|
|
403
446
|
"napi",
|
|
@@ -410,7 +453,7 @@ dependencies = [
|
|
|
410
453
|
|
|
411
454
|
[[package]]
|
|
412
455
|
name = "bashkit-python"
|
|
413
|
-
version = "0.
|
|
456
|
+
version = "0.4.0"
|
|
414
457
|
dependencies = [
|
|
415
458
|
"bashkit",
|
|
416
459
|
"num-bigint",
|
|
@@ -431,6 +474,19 @@ dependencies = [
|
|
|
431
474
|
"sha2 0.10.9",
|
|
432
475
|
]
|
|
433
476
|
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "bigdecimal"
|
|
479
|
+
version = "0.4.10"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"autocfg",
|
|
484
|
+
"libm",
|
|
485
|
+
"num-bigint",
|
|
486
|
+
"num-integer",
|
|
487
|
+
"num-traits",
|
|
488
|
+
]
|
|
489
|
+
|
|
434
490
|
[[package]]
|
|
435
491
|
name = "bit-set"
|
|
436
492
|
version = "0.8.0"
|
|
@@ -519,6 +575,15 @@ dependencies = [
|
|
|
519
575
|
"cipher 0.4.4",
|
|
520
576
|
]
|
|
521
577
|
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "branches"
|
|
580
|
+
version = "0.4.4"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "e426eb5cc1900033930ec955317b302e68f19f326cc7bb0c8a86865a826cdf0c"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"rustc_version",
|
|
585
|
+
]
|
|
586
|
+
|
|
522
587
|
[[package]]
|
|
523
588
|
name = "bstr"
|
|
524
589
|
version = "1.12.1"
|
|
@@ -530,6 +595,15 @@ dependencies = [
|
|
|
530
595
|
"serde",
|
|
531
596
|
]
|
|
532
597
|
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "built"
|
|
600
|
+
version = "0.7.5"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "c360505aed52b7ec96a3636c3f039d99103c37d1d9b4f7a8c743d3ea9ffcd03b"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"chrono",
|
|
605
|
+
]
|
|
606
|
+
|
|
533
607
|
[[package]]
|
|
534
608
|
name = "bumpalo"
|
|
535
609
|
version = "3.20.2"
|
|
@@ -609,9 +683,9 @@ dependencies = [
|
|
|
609
683
|
|
|
610
684
|
[[package]]
|
|
611
685
|
name = "cc"
|
|
612
|
-
version = "1.2.
|
|
686
|
+
version = "1.2.61"
|
|
613
687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
-
checksum = "
|
|
688
|
+
checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
|
|
615
689
|
dependencies = [
|
|
616
690
|
"find-msvc-tools",
|
|
617
691
|
"jobserver",
|
|
@@ -619,12 +693,6 @@ dependencies = [
|
|
|
619
693
|
"shlex",
|
|
620
694
|
]
|
|
621
695
|
|
|
622
|
-
[[package]]
|
|
623
|
-
name = "cesu8"
|
|
624
|
-
version = "1.1.0"
|
|
625
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
-
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
627
|
-
|
|
628
696
|
[[package]]
|
|
629
697
|
name = "cfg-if"
|
|
630
698
|
version = "1.0.4"
|
|
@@ -637,6 +705,12 @@ version = "0.2.1"
|
|
|
637
705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
706
|
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
639
707
|
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "cfg_block"
|
|
710
|
+
version = "0.1.1"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "18758054972164c3264f7c8386f5fc6da6114cb46b619fd365d4e3b2dc3ae487"
|
|
713
|
+
|
|
640
714
|
[[package]]
|
|
641
715
|
name = "chacha20"
|
|
642
716
|
version = "0.9.1"
|
|
@@ -839,6 +913,15 @@ dependencies = [
|
|
|
839
913
|
"static_assertions",
|
|
840
914
|
]
|
|
841
915
|
|
|
916
|
+
[[package]]
|
|
917
|
+
name = "concurrent-queue"
|
|
918
|
+
version = "2.5.0"
|
|
919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
921
|
+
dependencies = [
|
|
922
|
+
"crossbeam-utils",
|
|
923
|
+
]
|
|
924
|
+
|
|
842
925
|
[[package]]
|
|
843
926
|
name = "console"
|
|
844
927
|
version = "0.16.3"
|
|
@@ -895,9 +978,9 @@ checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
|
|
|
895
978
|
|
|
896
979
|
[[package]]
|
|
897
980
|
name = "cpubits"
|
|
898
|
-
version = "0.1.
|
|
981
|
+
version = "0.1.1"
|
|
899
982
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
-
checksum = "
|
|
983
|
+
checksum = "15b85f9c39137c3a891689859392b1bd49812121d0d61c9caf00d46ed5ce06ae"
|
|
901
984
|
|
|
902
985
|
[[package]]
|
|
903
986
|
name = "cpufeatures"
|
|
@@ -917,6 +1000,15 @@ dependencies = [
|
|
|
917
1000
|
"libc",
|
|
918
1001
|
]
|
|
919
1002
|
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "crc32c"
|
|
1005
|
+
version = "0.6.8"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47"
|
|
1008
|
+
dependencies = [
|
|
1009
|
+
"rustc_version",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
920
1012
|
[[package]]
|
|
921
1013
|
name = "crc32fast"
|
|
922
1014
|
version = "1.5.0"
|
|
@@ -987,6 +1079,16 @@ dependencies = [
|
|
|
987
1079
|
"crossbeam-utils",
|
|
988
1080
|
]
|
|
989
1081
|
|
|
1082
|
+
[[package]]
|
|
1083
|
+
name = "crossbeam-skiplist"
|
|
1084
|
+
version = "0.1.3"
|
|
1085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1086
|
+
checksum = "df29de440c58ca2cc6e587ec3d22347551a32435fbde9d2bff64e78a9ffa151b"
|
|
1087
|
+
dependencies = [
|
|
1088
|
+
"crossbeam-epoch",
|
|
1089
|
+
"crossbeam-utils",
|
|
1090
|
+
]
|
|
1091
|
+
|
|
990
1092
|
[[package]]
|
|
991
1093
|
name = "crossbeam-utils"
|
|
992
1094
|
version = "0.8.21"
|
|
@@ -1001,9 +1103,9 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
|
1001
1103
|
|
|
1002
1104
|
[[package]]
|
|
1003
1105
|
name = "crypto-bigint"
|
|
1004
|
-
version = "0.7.
|
|
1106
|
+
version = "0.7.0-rc.28"
|
|
1005
1107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
-
checksum = "
|
|
1108
|
+
checksum = "96dacf199529fb801ae62a9aafdc01b189e9504c0d1ee1512a4c16bcd8666a93"
|
|
1007
1109
|
dependencies = [
|
|
1008
1110
|
"cpubits",
|
|
1009
1111
|
"ctutils",
|
|
@@ -1023,6 +1125,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1023
1125
|
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
1024
1126
|
dependencies = [
|
|
1025
1127
|
"generic-array 0.14.7",
|
|
1128
|
+
"rand_core 0.6.4",
|
|
1026
1129
|
"typenum",
|
|
1027
1130
|
]
|
|
1028
1131
|
|
|
@@ -1039,9 +1142,9 @@ dependencies = [
|
|
|
1039
1142
|
|
|
1040
1143
|
[[package]]
|
|
1041
1144
|
name = "crypto-primes"
|
|
1042
|
-
version = "0.7.0"
|
|
1145
|
+
version = "0.7.0-pre.9"
|
|
1043
1146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
-
checksum = "
|
|
1147
|
+
checksum = "6081ce8b60c0e533e2bba42771b94eb6149052115f4179744d5779883dc98583"
|
|
1045
1148
|
dependencies = [
|
|
1046
1149
|
"crypto-bigint",
|
|
1047
1150
|
"libm",
|
|
@@ -1050,19 +1153,9 @@ dependencies = [
|
|
|
1050
1153
|
|
|
1051
1154
|
[[package]]
|
|
1052
1155
|
name = "ctor"
|
|
1053
|
-
version = "0.
|
|
1054
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
-
checksum = "83cf0d42651b16c6dfe68685716d18480d18a9c39c62d76e8cf3eb6ed5d8bcbf"
|
|
1056
|
-
dependencies = [
|
|
1057
|
-
"ctor-proc-macro",
|
|
1058
|
-
"dtor",
|
|
1059
|
-
]
|
|
1060
|
-
|
|
1061
|
-
[[package]]
|
|
1062
|
-
name = "ctor-proc-macro"
|
|
1063
|
-
version = "0.0.13"
|
|
1156
|
+
version = "0.11.1"
|
|
1064
1157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
-
checksum = "
|
|
1158
|
+
checksum = "400a21f1014a968ec518c7ccdf9b4a4ed0cac8c56ccb6d604f8b91f00110501e"
|
|
1066
1159
|
|
|
1067
1160
|
[[package]]
|
|
1068
1161
|
name = "ctr"
|
|
@@ -1137,9 +1230,9 @@ dependencies = [
|
|
|
1137
1230
|
|
|
1138
1231
|
[[package]]
|
|
1139
1232
|
name = "data-encoding"
|
|
1140
|
-
version = "2.
|
|
1233
|
+
version = "2.11.0"
|
|
1141
1234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
-
checksum = "
|
|
1235
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
1143
1236
|
|
|
1144
1237
|
[[package]]
|
|
1145
1238
|
name = "delegate"
|
|
@@ -1231,21 +1324,6 @@ version = "0.1.12"
|
|
|
1231
1324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
1325
|
checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
|
|
1233
1326
|
|
|
1234
|
-
[[package]]
|
|
1235
|
-
name = "dtor"
|
|
1236
|
-
version = "0.8.1"
|
|
1237
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
-
checksum = "edf234dd1594d6dd434a8fb8cada51ddbbc593e40e4a01556a0b31c62da2775b"
|
|
1239
|
-
dependencies = [
|
|
1240
|
-
"dtor-proc-macro",
|
|
1241
|
-
]
|
|
1242
|
-
|
|
1243
|
-
[[package]]
|
|
1244
|
-
name = "dtor-proc-macro"
|
|
1245
|
-
version = "0.0.13"
|
|
1246
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1247
|
-
checksum = "2647271c92754afcb174e758003cfd1cbf1e43e5a7853d7b1813e63e19e39a73"
|
|
1248
|
-
|
|
1249
1327
|
[[package]]
|
|
1250
1328
|
name = "dunce"
|
|
1251
1329
|
version = "1.0.5"
|
|
@@ -1269,7 +1347,7 @@ dependencies = [
|
|
|
1269
1347
|
"elliptic-curve",
|
|
1270
1348
|
"rfc6979",
|
|
1271
1349
|
"signature 3.0.0-rc.10",
|
|
1272
|
-
"spki 0.8.0",
|
|
1350
|
+
"spki 0.8.0-rc.4",
|
|
1273
1351
|
"zeroize",
|
|
1274
1352
|
]
|
|
1275
1353
|
|
|
@@ -1332,9 +1410,9 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
|
1332
1410
|
|
|
1333
1411
|
[[package]]
|
|
1334
1412
|
name = "elliptic-curve"
|
|
1335
|
-
version = "0.14.0-rc.
|
|
1413
|
+
version = "0.14.0-rc.28"
|
|
1336
1414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
|
-
checksum = "
|
|
1415
|
+
checksum = "bde7860544606d222fd6bd6d9f9a0773321bf78072a637e1d560a058c0031978"
|
|
1338
1416
|
dependencies = [
|
|
1339
1417
|
"base16ct",
|
|
1340
1418
|
"crypto-bigint",
|
|
@@ -1422,6 +1500,12 @@ dependencies = [
|
|
|
1422
1500
|
"rand 0.8.6",
|
|
1423
1501
|
]
|
|
1424
1502
|
|
|
1503
|
+
[[package]]
|
|
1504
|
+
name = "fallible-iterator"
|
|
1505
|
+
version = "0.3.0"
|
|
1506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
1508
|
+
|
|
1425
1509
|
[[package]]
|
|
1426
1510
|
name = "fancy-regex"
|
|
1427
1511
|
version = "0.17.0"
|
|
@@ -1444,6 +1528,18 @@ dependencies = [
|
|
|
1444
1528
|
"regex-syntax",
|
|
1445
1529
|
]
|
|
1446
1530
|
|
|
1531
|
+
[[package]]
|
|
1532
|
+
name = "fastbloom"
|
|
1533
|
+
version = "0.14.1"
|
|
1534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1535
|
+
checksum = "4e7f34442dbe69c60fe8eaf58a8cafff81a1f278816d8ab4db255b3bef4ac3c4"
|
|
1536
|
+
dependencies = [
|
|
1537
|
+
"getrandom 0.3.4",
|
|
1538
|
+
"libm",
|
|
1539
|
+
"rand 0.9.4",
|
|
1540
|
+
"siphasher",
|
|
1541
|
+
]
|
|
1542
|
+
|
|
1447
1543
|
[[package]]
|
|
1448
1544
|
name = "fastrand"
|
|
1449
1545
|
version = "2.4.1"
|
|
@@ -1605,6 +1701,21 @@ dependencies = [
|
|
|
1605
1701
|
"slab",
|
|
1606
1702
|
]
|
|
1607
1703
|
|
|
1704
|
+
[[package]]
|
|
1705
|
+
name = "generator"
|
|
1706
|
+
version = "0.8.8"
|
|
1707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
+
checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9"
|
|
1709
|
+
dependencies = [
|
|
1710
|
+
"cc",
|
|
1711
|
+
"cfg-if",
|
|
1712
|
+
"libc",
|
|
1713
|
+
"log",
|
|
1714
|
+
"rustversion",
|
|
1715
|
+
"windows-link",
|
|
1716
|
+
"windows-result",
|
|
1717
|
+
]
|
|
1718
|
+
|
|
1608
1719
|
[[package]]
|
|
1609
1720
|
name = "generic-array"
|
|
1610
1721
|
version = "0.14.7"
|
|
@@ -1617,9 +1728,9 @@ dependencies = [
|
|
|
1617
1728
|
|
|
1618
1729
|
[[package]]
|
|
1619
1730
|
name = "generic-array"
|
|
1620
|
-
version = "1.
|
|
1731
|
+
version = "1.4.1"
|
|
1621
1732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
-
checksum = "
|
|
1733
|
+
checksum = "dab9e9188e97a93276e1fe7b56401b851e2b45a46d045ca658100c1303ada649"
|
|
1623
1734
|
dependencies = [
|
|
1624
1735
|
"generic-array 0.14.7",
|
|
1625
1736
|
"rustversion",
|
|
@@ -1656,7 +1767,7 @@ version = "0.2.24"
|
|
|
1656
1767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
1768
|
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
1658
1769
|
dependencies = [
|
|
1659
|
-
"unicode-width",
|
|
1770
|
+
"unicode-width 0.2.2",
|
|
1660
1771
|
]
|
|
1661
1772
|
|
|
1662
1773
|
[[package]]
|
|
@@ -1783,6 +1894,12 @@ version = "0.5.0"
|
|
|
1783
1894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1784
1895
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1785
1896
|
|
|
1897
|
+
[[package]]
|
|
1898
|
+
name = "hermit-abi"
|
|
1899
|
+
version = "0.5.2"
|
|
1900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1901
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1902
|
+
|
|
1786
1903
|
[[package]]
|
|
1787
1904
|
name = "hex"
|
|
1788
1905
|
version = "0.4.3"
|
|
@@ -1878,9 +1995,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
|
1878
1995
|
|
|
1879
1996
|
[[package]]
|
|
1880
1997
|
name = "hybrid-array"
|
|
1881
|
-
version = "0.4.
|
|
1998
|
+
version = "0.4.11"
|
|
1882
1999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
-
checksum = "
|
|
2000
|
+
checksum = "08d46837a0ed51fe95bd3b05de33cd64a1ee88fc797477ca48446872504507c5"
|
|
1884
2001
|
dependencies = [
|
|
1885
2002
|
"ctutils",
|
|
1886
2003
|
"subtle",
|
|
@@ -2071,9 +2188,9 @@ dependencies = [
|
|
|
2071
2188
|
|
|
2072
2189
|
[[package]]
|
|
2073
2190
|
name = "idna_adapter"
|
|
2074
|
-
version = "1.2.
|
|
2191
|
+
version = "1.2.2"
|
|
2075
2192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2076
|
-
checksum = "
|
|
2193
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
2077
2194
|
dependencies = [
|
|
2078
2195
|
"icu_normalizer",
|
|
2079
2196
|
"icu_properties",
|
|
@@ -2170,6 +2287,15 @@ version = "0.5.0"
|
|
|
2170
2287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2171
2288
|
checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
|
|
2172
2289
|
|
|
2290
|
+
[[package]]
|
|
2291
|
+
name = "intrusive-collections"
|
|
2292
|
+
version = "0.9.7"
|
|
2293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2294
|
+
checksum = "189d0897e4cbe8c75efedf3502c18c887b05046e59d28404d4d8e46cbc4d1e86"
|
|
2295
|
+
dependencies = [
|
|
2296
|
+
"memoffset",
|
|
2297
|
+
]
|
|
2298
|
+
|
|
2173
2299
|
[[package]]
|
|
2174
2300
|
name = "ipnet"
|
|
2175
2301
|
version = "2.12.0"
|
|
@@ -2277,9 +2403,9 @@ dependencies = [
|
|
|
2277
2403
|
|
|
2278
2404
|
[[package]]
|
|
2279
2405
|
name = "jiff"
|
|
2280
|
-
version = "0.2.
|
|
2406
|
+
version = "0.2.24"
|
|
2281
2407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2282
|
-
checksum = "
|
|
2408
|
+
checksum = "f00b5dbd620d61dfdcb6007c9c1f6054ebd75319f163d886a9055cec1155073d"
|
|
2283
2409
|
dependencies = [
|
|
2284
2410
|
"jiff-static",
|
|
2285
2411
|
"jiff-tzdb-platform",
|
|
@@ -2292,9 +2418,9 @@ dependencies = [
|
|
|
2292
2418
|
|
|
2293
2419
|
[[package]]
|
|
2294
2420
|
name = "jiff-static"
|
|
2295
|
-
version = "0.2.
|
|
2421
|
+
version = "0.2.24"
|
|
2296
2422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2297
|
-
checksum = "
|
|
2423
|
+
checksum = "e000de030ff8022ea1da3f466fbb0f3a809f5e51ed31f6dd931c35181ad8e6d7"
|
|
2298
2424
|
dependencies = [
|
|
2299
2425
|
"proc-macro2",
|
|
2300
2426
|
"quote",
|
|
@@ -2333,27 +2459,32 @@ dependencies = [
|
|
|
2333
2459
|
|
|
2334
2460
|
[[package]]
|
|
2335
2461
|
name = "jni"
|
|
2336
|
-
version = "0.
|
|
2462
|
+
version = "0.22.4"
|
|
2337
2463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2338
|
-
checksum = "
|
|
2464
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
2339
2465
|
dependencies = [
|
|
2340
|
-
"cesu8",
|
|
2341
2466
|
"cfg-if",
|
|
2342
2467
|
"combine",
|
|
2343
|
-
"jni-
|
|
2468
|
+
"jni-macros",
|
|
2469
|
+
"jni-sys",
|
|
2344
2470
|
"log",
|
|
2345
|
-
"
|
|
2471
|
+
"simd_cesu8",
|
|
2472
|
+
"thiserror 2.0.18",
|
|
2346
2473
|
"walkdir",
|
|
2347
|
-
"windows-
|
|
2474
|
+
"windows-link",
|
|
2348
2475
|
]
|
|
2349
2476
|
|
|
2350
2477
|
[[package]]
|
|
2351
|
-
name = "jni-
|
|
2352
|
-
version = "0.
|
|
2478
|
+
name = "jni-macros"
|
|
2479
|
+
version = "0.22.4"
|
|
2353
2480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
-
checksum = "
|
|
2481
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
2355
2482
|
dependencies = [
|
|
2356
|
-
"
|
|
2483
|
+
"proc-macro2",
|
|
2484
|
+
"quote",
|
|
2485
|
+
"rustc_version",
|
|
2486
|
+
"simd_cesu8",
|
|
2487
|
+
"syn",
|
|
2357
2488
|
]
|
|
2358
2489
|
|
|
2359
2490
|
[[package]]
|
|
@@ -2387,9 +2518,9 @@ dependencies = [
|
|
|
2387
2518
|
|
|
2388
2519
|
[[package]]
|
|
2389
2520
|
name = "js-sys"
|
|
2390
|
-
version = "0.3.
|
|
2521
|
+
version = "0.3.97"
|
|
2391
2522
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2392
|
-
checksum = "
|
|
2523
|
+
checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
|
|
2393
2524
|
dependencies = [
|
|
2394
2525
|
"cfg-if",
|
|
2395
2526
|
"futures-util",
|
|
@@ -2459,9 +2590,19 @@ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
|
2459
2590
|
|
|
2460
2591
|
[[package]]
|
|
2461
2592
|
name = "libc"
|
|
2462
|
-
version = "0.2.
|
|
2593
|
+
version = "0.2.186"
|
|
2594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2595
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
2596
|
+
|
|
2597
|
+
[[package]]
|
|
2598
|
+
name = "libloading"
|
|
2599
|
+
version = "0.8.9"
|
|
2463
2600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2464
|
-
checksum = "
|
|
2601
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
2602
|
+
dependencies = [
|
|
2603
|
+
"cfg-if",
|
|
2604
|
+
"windows-link",
|
|
2605
|
+
]
|
|
2465
2606
|
|
|
2466
2607
|
[[package]]
|
|
2467
2608
|
name = "libloading"
|
|
@@ -2479,6 +2620,26 @@ version = "0.2.16"
|
|
|
2479
2620
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2480
2621
|
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
2481
2622
|
|
|
2623
|
+
[[package]]
|
|
2624
|
+
name = "linkme"
|
|
2625
|
+
version = "0.3.36"
|
|
2626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2627
|
+
checksum = "e83272d46373fb8decca684579ac3e7c8f3d71d4cc3aa693df8759e260ae41cf"
|
|
2628
|
+
dependencies = [
|
|
2629
|
+
"linkme-impl",
|
|
2630
|
+
]
|
|
2631
|
+
|
|
2632
|
+
[[package]]
|
|
2633
|
+
name = "linkme-impl"
|
|
2634
|
+
version = "0.3.36"
|
|
2635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2636
|
+
checksum = "32d59e20403c7d08fe62b4376edfe5c7fb2ef1e6b1465379686d0f21c8df444b"
|
|
2637
|
+
dependencies = [
|
|
2638
|
+
"proc-macro2",
|
|
2639
|
+
"quote",
|
|
2640
|
+
"syn",
|
|
2641
|
+
]
|
|
2642
|
+
|
|
2482
2643
|
[[package]]
|
|
2483
2644
|
name = "linux-raw-sys"
|
|
2484
2645
|
version = "0.12.1"
|
|
@@ -2506,6 +2667,19 @@ version = "0.4.29"
|
|
|
2506
2667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2507
2668
|
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
2508
2669
|
|
|
2670
|
+
[[package]]
|
|
2671
|
+
name = "loom"
|
|
2672
|
+
version = "0.7.2"
|
|
2673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2674
|
+
checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
|
|
2675
|
+
dependencies = [
|
|
2676
|
+
"cfg-if",
|
|
2677
|
+
"generator",
|
|
2678
|
+
"scoped-tls",
|
|
2679
|
+
"tracing",
|
|
2680
|
+
"tracing-subscriber",
|
|
2681
|
+
]
|
|
2682
|
+
|
|
2509
2683
|
[[package]]
|
|
2510
2684
|
name = "manyhow"
|
|
2511
2685
|
version = "0.11.4"
|
|
@@ -2529,6 +2703,15 @@ dependencies = [
|
|
|
2529
2703
|
"quote",
|
|
2530
2704
|
]
|
|
2531
2705
|
|
|
2706
|
+
[[package]]
|
|
2707
|
+
name = "matchers"
|
|
2708
|
+
version = "0.2.0"
|
|
2709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2710
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
2711
|
+
dependencies = [
|
|
2712
|
+
"regex-automata",
|
|
2713
|
+
]
|
|
2714
|
+
|
|
2532
2715
|
[[package]]
|
|
2533
2716
|
name = "md-5"
|
|
2534
2717
|
version = "0.11.0"
|
|
@@ -2551,6 +2734,37 @@ version = "2.8.0"
|
|
|
2551
2734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
2735
|
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
2553
2736
|
|
|
2737
|
+
[[package]]
|
|
2738
|
+
name = "memoffset"
|
|
2739
|
+
version = "0.9.1"
|
|
2740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2741
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
2742
|
+
dependencies = [
|
|
2743
|
+
"autocfg",
|
|
2744
|
+
]
|
|
2745
|
+
|
|
2746
|
+
[[package]]
|
|
2747
|
+
name = "miette"
|
|
2748
|
+
version = "7.6.0"
|
|
2749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2750
|
+
checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
|
|
2751
|
+
dependencies = [
|
|
2752
|
+
"cfg-if",
|
|
2753
|
+
"miette-derive",
|
|
2754
|
+
"unicode-width 0.1.14",
|
|
2755
|
+
]
|
|
2756
|
+
|
|
2757
|
+
[[package]]
|
|
2758
|
+
name = "miette-derive"
|
|
2759
|
+
version = "7.6.0"
|
|
2760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2761
|
+
checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
|
|
2762
|
+
dependencies = [
|
|
2763
|
+
"proc-macro2",
|
|
2764
|
+
"quote",
|
|
2765
|
+
"syn",
|
|
2766
|
+
]
|
|
2767
|
+
|
|
2554
2768
|
[[package]]
|
|
2555
2769
|
name = "miniz_oxide"
|
|
2556
2770
|
version = "0.8.9"
|
|
@@ -2574,9 +2788,9 @@ dependencies = [
|
|
|
2574
2788
|
|
|
2575
2789
|
[[package]]
|
|
2576
2790
|
name = "ml-kem"
|
|
2577
|
-
version = "0.3.0-rc.
|
|
2791
|
+
version = "0.3.0-rc.1"
|
|
2578
2792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2579
|
-
checksum = "
|
|
2793
|
+
checksum = "8198b5db27ac9773534c371751a59dc18aec8b80aa141e69abfdd1dec2e3f78c"
|
|
2580
2794
|
dependencies = [
|
|
2581
2795
|
"hybrid-array",
|
|
2582
2796
|
"kem",
|
|
@@ -2587,9 +2801,9 @@ dependencies = [
|
|
|
2587
2801
|
|
|
2588
2802
|
[[package]]
|
|
2589
2803
|
name = "module-lattice"
|
|
2590
|
-
version = "0.2.
|
|
2804
|
+
version = "0.2.2"
|
|
2591
2805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2592
|
-
checksum = "
|
|
2806
|
+
checksum = "dc7c90d33a0dac244570c26461d761ffaeadb3bfc2b17cc625ae2185cafdffae"
|
|
2593
2807
|
dependencies = [
|
|
2594
2808
|
"ctutils",
|
|
2595
2809
|
"hybrid-array",
|
|
@@ -2598,8 +2812,8 @@ dependencies = [
|
|
|
2598
2812
|
|
|
2599
2813
|
[[package]]
|
|
2600
2814
|
name = "monty"
|
|
2601
|
-
version = "0.0.
|
|
2602
|
-
source = "git+https://github.com/pydantic/monty?rev=
|
|
2815
|
+
version = "0.0.17"
|
|
2816
|
+
source = "git+https://github.com/pydantic/monty?rev=49faa4c#49faa4c8ae94490eae286e76259adcc35f64f0a5"
|
|
2603
2817
|
dependencies = [
|
|
2604
2818
|
"ahash",
|
|
2605
2819
|
"bytemuck",
|
|
@@ -2614,21 +2828,22 @@ dependencies = [
|
|
|
2614
2828
|
"num-integer",
|
|
2615
2829
|
"num-traits",
|
|
2616
2830
|
"postcard",
|
|
2617
|
-
"pyo3-build-config",
|
|
2618
2831
|
"ruff_python_ast",
|
|
2619
2832
|
"ruff_python_parser",
|
|
2833
|
+
"ruff_python_stdlib",
|
|
2620
2834
|
"ruff_text_size",
|
|
2621
2835
|
"serde",
|
|
2836
|
+
"serde_json",
|
|
2622
2837
|
"smallvec",
|
|
2623
2838
|
"speedate",
|
|
2624
|
-
"strum",
|
|
2839
|
+
"strum 0.27.2",
|
|
2625
2840
|
]
|
|
2626
2841
|
|
|
2627
2842
|
[[package]]
|
|
2628
2843
|
name = "napi"
|
|
2629
|
-
version = "3.8.
|
|
2844
|
+
version = "3.8.6"
|
|
2630
2845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
-
checksum = "
|
|
2846
|
+
checksum = "8e55037284865448ecf329baa86a4d05401f647ebde99f5747b640d32c2c5226"
|
|
2632
2847
|
dependencies = [
|
|
2633
2848
|
"bitflags",
|
|
2634
2849
|
"ctor",
|
|
@@ -2648,9 +2863,9 @@ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
|
2648
2863
|
|
|
2649
2864
|
[[package]]
|
|
2650
2865
|
name = "napi-derive"
|
|
2651
|
-
version = "3.5.
|
|
2866
|
+
version = "3.5.5"
|
|
2652
2867
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2653
|
-
checksum = "
|
|
2868
|
+
checksum = "a4ba740fe4c9524d86fd90798fd8ccdb23402b3eef7e7c30897a8a369b529fcf"
|
|
2654
2869
|
dependencies = [
|
|
2655
2870
|
"convert_case",
|
|
2656
2871
|
"ctor",
|
|
@@ -2662,9 +2877,9 @@ dependencies = [
|
|
|
2662
2877
|
|
|
2663
2878
|
[[package]]
|
|
2664
2879
|
name = "napi-derive-backend"
|
|
2665
|
-
version = "5.0.
|
|
2880
|
+
version = "5.0.4"
|
|
2666
2881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2667
|
-
checksum = "
|
|
2882
|
+
checksum = "0d5af30503edf933ce7377cf6d4c877a62b0f1107ea05585f1b5e430e88d5baf"
|
|
2668
2883
|
dependencies = [
|
|
2669
2884
|
"convert_case",
|
|
2670
2885
|
"proc-macro2",
|
|
@@ -2679,7 +2894,7 @@ version = "3.2.1"
|
|
|
2679
2894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2680
2895
|
checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
|
|
2681
2896
|
dependencies = [
|
|
2682
|
-
"libloading",
|
|
2897
|
+
"libloading 0.9.0",
|
|
2683
2898
|
]
|
|
2684
2899
|
|
|
2685
2900
|
[[package]]
|
|
@@ -2715,6 +2930,15 @@ version = "0.5.5"
|
|
|
2715
2930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2716
2931
|
checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
|
|
2717
2932
|
|
|
2933
|
+
[[package]]
|
|
2934
|
+
name = "nu-ansi-term"
|
|
2935
|
+
version = "0.50.3"
|
|
2936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2937
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
2938
|
+
dependencies = [
|
|
2939
|
+
"windows-sys 0.61.2",
|
|
2940
|
+
]
|
|
2941
|
+
|
|
2718
2942
|
[[package]]
|
|
2719
2943
|
name = "num-bigint"
|
|
2720
2944
|
version = "0.4.6"
|
|
@@ -2810,6 +3034,12 @@ dependencies = [
|
|
|
2810
3034
|
"indexmap",
|
|
2811
3035
|
]
|
|
2812
3036
|
|
|
3037
|
+
[[package]]
|
|
3038
|
+
name = "owo-colors"
|
|
3039
|
+
version = "3.5.0"
|
|
3040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3041
|
+
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
|
|
3042
|
+
|
|
2813
3043
|
[[package]]
|
|
2814
3044
|
name = "owo-colors"
|
|
2815
3045
|
version = "4.3.0"
|
|
@@ -2823,12 +3053,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2823
3053
|
checksum = "4356a61f2ed4c9b3610245215fbf48970eb277126919f87db9d0efa93a74245c"
|
|
2824
3054
|
dependencies = [
|
|
2825
3055
|
"cfg-if",
|
|
2826
|
-
"owo-colors",
|
|
3056
|
+
"owo-colors 4.3.0",
|
|
2827
3057
|
"oxc-miette-derive",
|
|
2828
3058
|
"textwrap",
|
|
2829
3059
|
"thiserror 2.0.18",
|
|
2830
3060
|
"unicode-segmentation",
|
|
2831
|
-
"unicode-width",
|
|
3061
|
+
"unicode-width 0.2.2",
|
|
2832
3062
|
]
|
|
2833
3063
|
|
|
2834
3064
|
[[package]]
|
|
@@ -3018,9 +3248,9 @@ dependencies = [
|
|
|
3018
3248
|
|
|
3019
3249
|
[[package]]
|
|
3020
3250
|
name = "p256"
|
|
3021
|
-
version = "0.14.0-rc.
|
|
3251
|
+
version = "0.14.0-rc.7"
|
|
3022
3252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3023
|
-
checksum = "
|
|
3253
|
+
checksum = "018bfbb86e05fd70a83e985921241035ee09fcd369c4a2c3680b389a01d2ad28"
|
|
3024
3254
|
dependencies = [
|
|
3025
3255
|
"ecdsa",
|
|
3026
3256
|
"elliptic-curve",
|
|
@@ -3031,9 +3261,9 @@ dependencies = [
|
|
|
3031
3261
|
|
|
3032
3262
|
[[package]]
|
|
3033
3263
|
name = "p384"
|
|
3034
|
-
version = "0.14.0-rc.
|
|
3264
|
+
version = "0.14.0-rc.7"
|
|
3035
3265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3036
|
-
checksum = "
|
|
3266
|
+
checksum = "8c91df688211f5957dbe2ab599dcbcaade8d6d3cdc15c5b350d350d7d07ce423"
|
|
3037
3267
|
dependencies = [
|
|
3038
3268
|
"ecdsa",
|
|
3039
3269
|
"elliptic-curve",
|
|
@@ -3045,9 +3275,9 @@ dependencies = [
|
|
|
3045
3275
|
|
|
3046
3276
|
[[package]]
|
|
3047
3277
|
name = "p521"
|
|
3048
|
-
version = "0.14.0-rc.
|
|
3278
|
+
version = "0.14.0-rc.7"
|
|
3049
3279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3050
|
-
checksum = "
|
|
3280
|
+
checksum = "de6cd9451de522549d36cc78a1b45a699a3d55a872e8ea0c8f0318e502d99e2c"
|
|
3051
3281
|
dependencies = [
|
|
3052
3282
|
"base16ct",
|
|
3053
3283
|
"ecdsa",
|
|
@@ -3057,6 +3287,15 @@ dependencies = [
|
|
|
3057
3287
|
"sha2 0.11.0",
|
|
3058
3288
|
]
|
|
3059
3289
|
|
|
3290
|
+
[[package]]
|
|
3291
|
+
name = "pack1"
|
|
3292
|
+
version = "1.0.0"
|
|
3293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3294
|
+
checksum = "d6e7cd9bd638dc2c831519a0caa1c006cab771a92b1303403a8322773c5b72d6"
|
|
3295
|
+
dependencies = [
|
|
3296
|
+
"bytemuck",
|
|
3297
|
+
]
|
|
3298
|
+
|
|
3060
3299
|
[[package]]
|
|
3061
3300
|
name = "page_size"
|
|
3062
3301
|
version = "0.6.0"
|
|
@@ -3094,7 +3333,7 @@ checksum = "6978128c8b51d8f4080631ceb2302ab51e32cc6e8615f735ee2f83fd269ae3f1"
|
|
|
3094
3333
|
dependencies = [
|
|
3095
3334
|
"bytecount",
|
|
3096
3335
|
"fnv",
|
|
3097
|
-
"unicode-width",
|
|
3336
|
+
"unicode-width 0.2.2",
|
|
3098
3337
|
]
|
|
3099
3338
|
|
|
3100
3339
|
[[package]]
|
|
@@ -3131,6 +3370,12 @@ dependencies = [
|
|
|
3131
3370
|
"subtle",
|
|
3132
3371
|
]
|
|
3133
3372
|
|
|
3373
|
+
[[package]]
|
|
3374
|
+
name = "paste"
|
|
3375
|
+
version = "1.0.15"
|
|
3376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3377
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
3378
|
+
|
|
3134
3379
|
[[package]]
|
|
3135
3380
|
name = "pbkdf2"
|
|
3136
3381
|
version = "0.12.2"
|
|
@@ -3143,9 +3388,9 @@ dependencies = [
|
|
|
3143
3388
|
|
|
3144
3389
|
[[package]]
|
|
3145
3390
|
name = "pbkdf2"
|
|
3146
|
-
version = "0.13.0
|
|
3391
|
+
version = "0.13.0"
|
|
3147
3392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3148
|
-
checksum = "
|
|
3393
|
+
checksum = "112d82ceb8c5bf524d9af484d4e4970c9fd5a0cc15ba14ad93dccd28873b0629"
|
|
3149
3394
|
dependencies = [
|
|
3150
3395
|
"digest 0.11.2",
|
|
3151
3396
|
"hmac 0.13.0",
|
|
@@ -3269,7 +3514,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3269
3514
|
checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e"
|
|
3270
3515
|
dependencies = [
|
|
3271
3516
|
"der 0.8.0",
|
|
3272
|
-
"spki 0.8.0",
|
|
3517
|
+
"spki 0.8.0-rc.4",
|
|
3273
3518
|
]
|
|
3274
3519
|
|
|
3275
3520
|
[[package]]
|
|
@@ -3282,11 +3527,11 @@ dependencies = [
|
|
|
3282
3527
|
"aes-gcm 0.11.0-rc.3",
|
|
3283
3528
|
"cbc 0.2.0",
|
|
3284
3529
|
"der 0.8.0",
|
|
3285
|
-
"pbkdf2 0.13.0
|
|
3530
|
+
"pbkdf2 0.13.0",
|
|
3286
3531
|
"rand_core 0.10.1",
|
|
3287
3532
|
"scrypt",
|
|
3288
3533
|
"sha2 0.11.0",
|
|
3289
|
-
"spki 0.8.0",
|
|
3534
|
+
"spki 0.8.0-rc.4",
|
|
3290
3535
|
]
|
|
3291
3536
|
|
|
3292
3537
|
[[package]]
|
|
@@ -3308,7 +3553,7 @@ dependencies = [
|
|
|
3308
3553
|
"der 0.8.0",
|
|
3309
3554
|
"pkcs5",
|
|
3310
3555
|
"rand_core 0.10.1",
|
|
3311
|
-
"spki 0.8.0",
|
|
3556
|
+
"spki 0.8.0-rc.4",
|
|
3312
3557
|
]
|
|
3313
3558
|
|
|
3314
3559
|
[[package]]
|
|
@@ -3339,6 +3584,20 @@ dependencies = [
|
|
|
3339
3584
|
"plotters-backend",
|
|
3340
3585
|
]
|
|
3341
3586
|
|
|
3587
|
+
[[package]]
|
|
3588
|
+
name = "polling"
|
|
3589
|
+
version = "3.11.0"
|
|
3590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3591
|
+
checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
|
|
3592
|
+
dependencies = [
|
|
3593
|
+
"cfg-if",
|
|
3594
|
+
"concurrent-queue",
|
|
3595
|
+
"hermit-abi",
|
|
3596
|
+
"pin-project-lite",
|
|
3597
|
+
"rustix",
|
|
3598
|
+
"windows-sys 0.61.2",
|
|
3599
|
+
]
|
|
3600
|
+
|
|
3342
3601
|
[[package]]
|
|
3343
3602
|
name = "poly1305"
|
|
3344
3603
|
version = "0.8.0"
|
|
@@ -3381,9 +3640,9 @@ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
|
3381
3640
|
|
|
3382
3641
|
[[package]]
|
|
3383
3642
|
name = "portable-atomic-util"
|
|
3384
|
-
version = "0.2.
|
|
3643
|
+
version = "0.2.7"
|
|
3385
3644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3386
|
-
checksum = "
|
|
3645
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
3387
3646
|
dependencies = [
|
|
3388
3647
|
"portable-atomic",
|
|
3389
3648
|
]
|
|
@@ -3441,9 +3700,9 @@ dependencies = [
|
|
|
3441
3700
|
|
|
3442
3701
|
[[package]]
|
|
3443
3702
|
name = "primefield"
|
|
3444
|
-
version = "0.14.0-rc.
|
|
3703
|
+
version = "0.14.0-rc.7"
|
|
3445
3704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3446
|
-
checksum = "
|
|
3705
|
+
checksum = "93401c13cc7ff24684571cfca9d3cf9ebabfaf3d4b7b9963ade41ec54da196b5"
|
|
3447
3706
|
dependencies = [
|
|
3448
3707
|
"crypto-bigint",
|
|
3449
3708
|
"crypto-common 0.2.1",
|
|
@@ -3455,9 +3714,9 @@ dependencies = [
|
|
|
3455
3714
|
|
|
3456
3715
|
[[package]]
|
|
3457
3716
|
name = "primeorder"
|
|
3458
|
-
version = "0.14.0-rc.
|
|
3717
|
+
version = "0.14.0-rc.7"
|
|
3459
3718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3460
|
-
checksum = "
|
|
3719
|
+
checksum = "a0c5c8a39bcd764bfedf456e8d55e115fe86dda3e0f555371849f2a41cbc9706"
|
|
3461
3720
|
dependencies = [
|
|
3462
3721
|
"elliptic-curve",
|
|
3463
3722
|
]
|
|
@@ -3748,6 +4007,15 @@ version = "0.10.1"
|
|
|
3748
4007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3749
4008
|
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
3750
4009
|
|
|
4010
|
+
[[package]]
|
|
4011
|
+
name = "rand_pcg"
|
|
4012
|
+
version = "0.3.1"
|
|
4013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4014
|
+
checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e"
|
|
4015
|
+
dependencies = [
|
|
4016
|
+
"rand_core 0.6.4",
|
|
4017
|
+
]
|
|
4018
|
+
|
|
3751
4019
|
[[package]]
|
|
3752
4020
|
name = "rand_xorshift"
|
|
3753
4021
|
version = "0.4.0"
|
|
@@ -3757,6 +4025,15 @@ dependencies = [
|
|
|
3757
4025
|
"rand_core 0.9.5",
|
|
3758
4026
|
]
|
|
3759
4027
|
|
|
4028
|
+
[[package]]
|
|
4029
|
+
name = "rapidhash"
|
|
4030
|
+
version = "4.4.1"
|
|
4031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4032
|
+
checksum = "b5e48930979c155e2f33aa36ab3119b5ee81332beb6482199a8ecd6029b80b59"
|
|
4033
|
+
dependencies = [
|
|
4034
|
+
"rustversion",
|
|
4035
|
+
]
|
|
4036
|
+
|
|
3760
4037
|
[[package]]
|
|
3761
4038
|
name = "rayon"
|
|
3762
4039
|
version = "1.12.0"
|
|
@@ -3843,9 +4120,9 @@ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
|
3843
4120
|
|
|
3844
4121
|
[[package]]
|
|
3845
4122
|
name = "reqwest"
|
|
3846
|
-
version = "0.13.
|
|
4123
|
+
version = "0.13.3"
|
|
3847
4124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3848
|
-
checksum = "
|
|
4125
|
+
checksum = "62e0021ea2c22aed41653bc7e1419abb2c97e038ff2c33d0e1309e49a97deec0"
|
|
3849
4126
|
dependencies = [
|
|
3850
4127
|
"base64",
|
|
3851
4128
|
"bytes",
|
|
@@ -3904,11 +4181,21 @@ dependencies = [
|
|
|
3904
4181
|
"windows-sys 0.52.0",
|
|
3905
4182
|
]
|
|
3906
4183
|
|
|
4184
|
+
[[package]]
|
|
4185
|
+
name = "roaring"
|
|
4186
|
+
version = "0.11.4"
|
|
4187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4188
|
+
checksum = "1dedc5658c6ecb3bdb5ef5f3295bb9253f42dcf3fd1402c03f6b1f7659c3c4a9"
|
|
4189
|
+
dependencies = [
|
|
4190
|
+
"bytemuck",
|
|
4191
|
+
"byteorder",
|
|
4192
|
+
]
|
|
4193
|
+
|
|
3907
4194
|
[[package]]
|
|
3908
4195
|
name = "rsa"
|
|
3909
|
-
version = "0.10.0-rc.
|
|
4196
|
+
version = "0.10.0-rc.16"
|
|
3910
4197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3911
|
-
checksum = "
|
|
4198
|
+
checksum = "6fb9fd8c1edd9e6a2693623baf0fe77ff05ce022a5d7746900ffc38a15c233de"
|
|
3912
4199
|
dependencies = [
|
|
3913
4200
|
"const-oid 0.10.2",
|
|
3914
4201
|
"crypto-bigint",
|
|
@@ -3919,7 +4206,7 @@ dependencies = [
|
|
|
3919
4206
|
"rand_core 0.10.1",
|
|
3920
4207
|
"sha2 0.11.0",
|
|
3921
4208
|
"signature 3.0.0-rc.10",
|
|
3922
|
-
"spki 0.8.0",
|
|
4209
|
+
"spki 0.8.0-rc.4",
|
|
3923
4210
|
"zeroize",
|
|
3924
4211
|
]
|
|
3925
4212
|
|
|
@@ -3961,6 +4248,15 @@ dependencies = [
|
|
|
3961
4248
|
"unicode_names2",
|
|
3962
4249
|
]
|
|
3963
4250
|
|
|
4251
|
+
[[package]]
|
|
4252
|
+
name = "ruff_python_stdlib"
|
|
4253
|
+
version = "0.0.0"
|
|
4254
|
+
source = "git+https://github.com/astral-sh/ruff.git?rev=6ded4bed1651e30b34dd04cdaa50c763036abb0d#6ded4bed1651e30b34dd04cdaa50c763036abb0d"
|
|
4255
|
+
dependencies = [
|
|
4256
|
+
"bitflags",
|
|
4257
|
+
"unicode-ident",
|
|
4258
|
+
]
|
|
4259
|
+
|
|
3964
4260
|
[[package]]
|
|
3965
4261
|
name = "ruff_python_trivia"
|
|
3966
4262
|
version = "0.0.0"
|
|
@@ -3991,19 +4287,24 @@ dependencies = [
|
|
|
3991
4287
|
|
|
3992
4288
|
[[package]]
|
|
3993
4289
|
name = "russh"
|
|
3994
|
-
version = "0.60.
|
|
4290
|
+
version = "0.60.2"
|
|
3995
4291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3996
|
-
checksum = "
|
|
4292
|
+
checksum = "9c9e358980fe9b079b99da387117864ee6f0a3fd02f39e5b5fde6af9c2895374"
|
|
3997
4293
|
dependencies = [
|
|
4294
|
+
"aead 0.6.0-rc.10",
|
|
3998
4295
|
"aes 0.8.4",
|
|
4296
|
+
"aes 0.9.0",
|
|
4297
|
+
"aes-gcm 0.11.0-rc.3",
|
|
3999
4298
|
"aws-lc-rs",
|
|
4000
4299
|
"bitflags",
|
|
4001
4300
|
"block-padding 0.3.3",
|
|
4002
4301
|
"byteorder",
|
|
4003
4302
|
"bytes",
|
|
4004
4303
|
"cbc 0.1.2",
|
|
4304
|
+
"cbc 0.2.0",
|
|
4005
4305
|
"cipher 0.5.1",
|
|
4006
4306
|
"crypto-bigint",
|
|
4307
|
+
"ctr 0.10.0",
|
|
4007
4308
|
"ctr 0.9.2",
|
|
4008
4309
|
"curve25519-dalek 5.0.0-pre.6",
|
|
4009
4310
|
"data-encoding",
|
|
@@ -4016,22 +4317,28 @@ dependencies = [
|
|
|
4016
4317
|
"enum_dispatch",
|
|
4017
4318
|
"flate2",
|
|
4018
4319
|
"futures",
|
|
4019
|
-
"generic-array 1.
|
|
4320
|
+
"generic-array 1.4.1",
|
|
4020
4321
|
"getrandom 0.2.17",
|
|
4322
|
+
"ghash 0.6.0",
|
|
4021
4323
|
"hex-literal",
|
|
4324
|
+
"hkdf",
|
|
4022
4325
|
"hmac 0.12.1",
|
|
4326
|
+
"hmac 0.13.0",
|
|
4023
4327
|
"inout 0.1.4",
|
|
4024
4328
|
"internal-russh-forked-ssh-key",
|
|
4025
4329
|
"internal-russh-num-bigint",
|
|
4330
|
+
"keccak",
|
|
4026
4331
|
"log",
|
|
4027
4332
|
"md5",
|
|
4028
4333
|
"ml-kem",
|
|
4029
4334
|
"module-lattice",
|
|
4335
|
+
"num-bigint",
|
|
4030
4336
|
"p256",
|
|
4031
4337
|
"p384",
|
|
4032
4338
|
"p521",
|
|
4033
4339
|
"pageant",
|
|
4034
4340
|
"pbkdf2 0.12.2",
|
|
4341
|
+
"pbkdf2 0.13.0",
|
|
4035
4342
|
"pkcs1",
|
|
4036
4343
|
"pkcs5",
|
|
4037
4344
|
"pkcs8 0.11.0-rc.11",
|
|
@@ -4041,11 +4348,16 @@ dependencies = [
|
|
|
4041
4348
|
"rsa",
|
|
4042
4349
|
"russh-cryptovec",
|
|
4043
4350
|
"russh-util",
|
|
4351
|
+
"salsa20",
|
|
4352
|
+
"scrypt",
|
|
4044
4353
|
"sec1",
|
|
4045
4354
|
"sha1 0.10.6",
|
|
4355
|
+
"sha1 0.11.0",
|
|
4046
4356
|
"sha2 0.10.9",
|
|
4357
|
+
"sha2 0.11.0",
|
|
4358
|
+
"sha3",
|
|
4047
4359
|
"signature 3.0.0-rc.10",
|
|
4048
|
-
"spki 0.8.0",
|
|
4360
|
+
"spki 0.8.0-rc.4",
|
|
4049
4361
|
"ssh-encoding",
|
|
4050
4362
|
"subtle",
|
|
4051
4363
|
"thiserror 2.0.18",
|
|
@@ -4094,6 +4406,16 @@ dependencies = [
|
|
|
4094
4406
|
"semver",
|
|
4095
4407
|
]
|
|
4096
4408
|
|
|
4409
|
+
[[package]]
|
|
4410
|
+
name = "rustc_version_runtime"
|
|
4411
|
+
version = "0.3.0"
|
|
4412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4413
|
+
checksum = "2dd18cd2bae1820af0b6ad5e54f4a51d0f3fcc53b05f845675074efcc7af071d"
|
|
4414
|
+
dependencies = [
|
|
4415
|
+
"rustc_version",
|
|
4416
|
+
"semver",
|
|
4417
|
+
]
|
|
4418
|
+
|
|
4097
4419
|
[[package]]
|
|
4098
4420
|
name = "rustcrypto-ff"
|
|
4099
4421
|
version = "0.14.0-rc.1"
|
|
@@ -4130,9 +4452,9 @@ dependencies = [
|
|
|
4130
4452
|
|
|
4131
4453
|
[[package]]
|
|
4132
4454
|
name = "rustls"
|
|
4133
|
-
version = "0.23.
|
|
4455
|
+
version = "0.23.40"
|
|
4134
4456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4135
|
-
checksum = "
|
|
4457
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
4136
4458
|
dependencies = [
|
|
4137
4459
|
"log",
|
|
4138
4460
|
"once_cell",
|
|
@@ -4157,18 +4479,18 @@ dependencies = [
|
|
|
4157
4479
|
|
|
4158
4480
|
[[package]]
|
|
4159
4481
|
name = "rustls-pki-types"
|
|
4160
|
-
version = "1.14.
|
|
4482
|
+
version = "1.14.1"
|
|
4161
4483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4162
|
-
checksum = "
|
|
4484
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
4163
4485
|
dependencies = [
|
|
4164
4486
|
"zeroize",
|
|
4165
4487
|
]
|
|
4166
4488
|
|
|
4167
4489
|
[[package]]
|
|
4168
4490
|
name = "rustls-platform-verifier"
|
|
4169
|
-
version = "0.
|
|
4491
|
+
version = "0.7.0"
|
|
4170
4492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4171
|
-
checksum = "
|
|
4493
|
+
checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
4172
4494
|
dependencies = [
|
|
4173
4495
|
"core-foundation",
|
|
4174
4496
|
"core-foundation-sys",
|
|
@@ -4236,7 +4558,7 @@ dependencies = [
|
|
|
4236
4558
|
"nix",
|
|
4237
4559
|
"radix_trie",
|
|
4238
4560
|
"unicode-segmentation",
|
|
4239
|
-
"unicode-width",
|
|
4561
|
+
"unicode-width 0.2.2",
|
|
4240
4562
|
"utf8parse",
|
|
4241
4563
|
"windows-sys 0.61.2",
|
|
4242
4564
|
]
|
|
@@ -4309,6 +4631,12 @@ dependencies = [
|
|
|
4309
4631
|
"syn",
|
|
4310
4632
|
]
|
|
4311
4633
|
|
|
4634
|
+
[[package]]
|
|
4635
|
+
name = "scoped-tls"
|
|
4636
|
+
version = "1.0.1"
|
|
4637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4638
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
4639
|
+
|
|
4312
4640
|
[[package]]
|
|
4313
4641
|
name = "scopeguard"
|
|
4314
4642
|
version = "1.2.0"
|
|
@@ -4317,12 +4645,12 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
4317
4645
|
|
|
4318
4646
|
[[package]]
|
|
4319
4647
|
name = "scrypt"
|
|
4320
|
-
version = "0.12.0
|
|
4648
|
+
version = "0.12.0"
|
|
4321
4649
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4322
|
-
checksum = "
|
|
4650
|
+
checksum = "d87af57419b594aa23fa95f09f0e06d80d84ba01c26148c43844cad6ff4485f0"
|
|
4323
4651
|
dependencies = [
|
|
4324
4652
|
"cfg-if",
|
|
4325
|
-
"pbkdf2 0.13.0
|
|
4653
|
+
"pbkdf2 0.13.0",
|
|
4326
4654
|
"salsa20",
|
|
4327
4655
|
"sha2 0.11.0",
|
|
4328
4656
|
]
|
|
@@ -4500,6 +4828,12 @@ dependencies = [
|
|
|
4500
4828
|
"digest 0.11.2",
|
|
4501
4829
|
]
|
|
4502
4830
|
|
|
4831
|
+
[[package]]
|
|
4832
|
+
name = "sha1_smol"
|
|
4833
|
+
version = "1.0.1"
|
|
4834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4835
|
+
checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
|
|
4836
|
+
|
|
4503
4837
|
[[package]]
|
|
4504
4838
|
name = "sha2"
|
|
4505
4839
|
version = "0.10.9"
|
|
@@ -4532,12 +4866,41 @@ dependencies = [
|
|
|
4532
4866
|
"keccak",
|
|
4533
4867
|
]
|
|
4534
4868
|
|
|
4869
|
+
[[package]]
|
|
4870
|
+
name = "sharded-slab"
|
|
4871
|
+
version = "0.1.7"
|
|
4872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4873
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
4874
|
+
dependencies = [
|
|
4875
|
+
"lazy_static",
|
|
4876
|
+
]
|
|
4877
|
+
|
|
4535
4878
|
[[package]]
|
|
4536
4879
|
name = "shlex"
|
|
4537
4880
|
version = "1.3.0"
|
|
4538
4881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4539
4882
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
4540
4883
|
|
|
4884
|
+
[[package]]
|
|
4885
|
+
name = "shuttle"
|
|
4886
|
+
version = "0.8.1"
|
|
4887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4888
|
+
checksum = "2ab17edba38d63047f46780cf7360acf7467fec2c048928689a5c1dd1c2b4e31"
|
|
4889
|
+
dependencies = [
|
|
4890
|
+
"assoc",
|
|
4891
|
+
"bitvec",
|
|
4892
|
+
"cfg-if",
|
|
4893
|
+
"generator",
|
|
4894
|
+
"hex",
|
|
4895
|
+
"owo-colors 3.5.0",
|
|
4896
|
+
"rand 0.8.6",
|
|
4897
|
+
"rand_core 0.6.4",
|
|
4898
|
+
"rand_pcg",
|
|
4899
|
+
"scoped-tls",
|
|
4900
|
+
"smallvec",
|
|
4901
|
+
"tracing",
|
|
4902
|
+
]
|
|
4903
|
+
|
|
4541
4904
|
[[package]]
|
|
4542
4905
|
name = "signal-hook"
|
|
4543
4906
|
version = "0.4.4"
|
|
@@ -4583,12 +4946,37 @@ version = "0.3.9"
|
|
|
4583
4946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4584
4947
|
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
4585
4948
|
|
|
4949
|
+
[[package]]
|
|
4950
|
+
name = "simd_cesu8"
|
|
4951
|
+
version = "1.1.1"
|
|
4952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4953
|
+
checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
|
|
4954
|
+
dependencies = [
|
|
4955
|
+
"rustc_version",
|
|
4956
|
+
"simdutf8",
|
|
4957
|
+
]
|
|
4958
|
+
|
|
4959
|
+
[[package]]
|
|
4960
|
+
name = "simdutf8"
|
|
4961
|
+
version = "0.1.5"
|
|
4962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4963
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
4964
|
+
|
|
4586
4965
|
[[package]]
|
|
4587
4966
|
name = "similar"
|
|
4588
4967
|
version = "2.7.0"
|
|
4589
4968
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4590
4969
|
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
4591
4970
|
|
|
4971
|
+
[[package]]
|
|
4972
|
+
name = "simsimd"
|
|
4973
|
+
version = "6.5.16"
|
|
4974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4975
|
+
checksum = "f4fb3bc3cdce07a7d7d4caa4c54f8aa967f6be41690482b54b24100a2253fa70"
|
|
4976
|
+
dependencies = [
|
|
4977
|
+
"cc",
|
|
4978
|
+
]
|
|
4979
|
+
|
|
4592
4980
|
[[package]]
|
|
4593
4981
|
name = "siphasher"
|
|
4594
4982
|
version = "1.0.2"
|
|
@@ -4626,6 +5014,12 @@ dependencies = [
|
|
|
4626
5014
|
"windows-sys 0.61.2",
|
|
4627
5015
|
]
|
|
4628
5016
|
|
|
5017
|
+
[[package]]
|
|
5018
|
+
name = "softaes"
|
|
5019
|
+
version = "0.1.3"
|
|
5020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5021
|
+
checksum = "fef461faaeb36c340b6c887167a9054a034f6acfc50a014ead26a02b4356b3de"
|
|
5022
|
+
|
|
4629
5023
|
[[package]]
|
|
4630
5024
|
name = "speedate"
|
|
4631
5025
|
version = "0.17.0"
|
|
@@ -4633,8 +5027,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4633
5027
|
checksum = "aba069c070b5e213f2a094deb7e5ed50ecb092be36102a4f4042e8d2056d060e"
|
|
4634
5028
|
dependencies = [
|
|
4635
5029
|
"lexical-parse-float",
|
|
4636
|
-
"strum",
|
|
4637
|
-
"strum_macros",
|
|
5030
|
+
"strum 0.27.2",
|
|
5031
|
+
"strum_macros 0.27.2",
|
|
4638
5032
|
]
|
|
4639
5033
|
|
|
4640
5034
|
[[package]]
|
|
@@ -4658,9 +5052,9 @@ dependencies = [
|
|
|
4658
5052
|
|
|
4659
5053
|
[[package]]
|
|
4660
5054
|
name = "spki"
|
|
4661
|
-
version = "0.8.0"
|
|
5055
|
+
version = "0.8.0-rc.4"
|
|
4662
5056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4663
|
-
checksum = "
|
|
5057
|
+
checksum = "8baeff88f34ed0691978ec34440140e1572b68c7dd4a495fd14a3dc1944daa80"
|
|
4664
5058
|
dependencies = [
|
|
4665
5059
|
"base64ct",
|
|
4666
5060
|
"der 0.8.0",
|
|
@@ -4713,13 +5107,35 @@ version = "0.11.1"
|
|
|
4713
5107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4714
5108
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
4715
5109
|
|
|
5110
|
+
[[package]]
|
|
5111
|
+
name = "strum"
|
|
5112
|
+
version = "0.26.3"
|
|
5113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5114
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
5115
|
+
dependencies = [
|
|
5116
|
+
"strum_macros 0.26.4",
|
|
5117
|
+
]
|
|
5118
|
+
|
|
4716
5119
|
[[package]]
|
|
4717
5120
|
name = "strum"
|
|
4718
5121
|
version = "0.27.2"
|
|
4719
5122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4720
5123
|
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
4721
5124
|
dependencies = [
|
|
4722
|
-
"strum_macros",
|
|
5125
|
+
"strum_macros 0.27.2",
|
|
5126
|
+
]
|
|
5127
|
+
|
|
5128
|
+
[[package]]
|
|
5129
|
+
name = "strum_macros"
|
|
5130
|
+
version = "0.26.4"
|
|
5131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5132
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
5133
|
+
dependencies = [
|
|
5134
|
+
"heck",
|
|
5135
|
+
"proc-macro2",
|
|
5136
|
+
"quote",
|
|
5137
|
+
"rustversion",
|
|
5138
|
+
"syn",
|
|
4723
5139
|
]
|
|
4724
5140
|
|
|
4725
5141
|
[[package]]
|
|
@@ -4836,7 +5252,7 @@ version = "0.3.0"
|
|
|
4836
5252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4837
5253
|
checksum = "0f8daae29995a24f65619e19d8d31dea5b389f3d853d8bf297bbf607cd0014cc"
|
|
4838
5254
|
dependencies = [
|
|
4839
|
-
"unicode-width",
|
|
5255
|
+
"unicode-width 0.2.2",
|
|
4840
5256
|
]
|
|
4841
5257
|
|
|
4842
5258
|
[[package]]
|
|
@@ -4847,7 +5263,7 @@ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
|
|
|
4847
5263
|
dependencies = [
|
|
4848
5264
|
"smawk",
|
|
4849
5265
|
"unicode-linebreak",
|
|
4850
|
-
"unicode-width",
|
|
5266
|
+
"unicode-width 0.2.2",
|
|
4851
5267
|
]
|
|
4852
5268
|
|
|
4853
5269
|
[[package]]
|
|
@@ -4890,6 +5306,15 @@ dependencies = [
|
|
|
4890
5306
|
"syn",
|
|
4891
5307
|
]
|
|
4892
5308
|
|
|
5309
|
+
[[package]]
|
|
5310
|
+
name = "thread_local"
|
|
5311
|
+
version = "1.1.9"
|
|
5312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5313
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
5314
|
+
dependencies = [
|
|
5315
|
+
"cfg-if",
|
|
5316
|
+
]
|
|
5317
|
+
|
|
4893
5318
|
[[package]]
|
|
4894
5319
|
name = "tinystr"
|
|
4895
5320
|
version = "0.8.3"
|
|
@@ -5071,6 +5496,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5071
5496
|
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
5072
5497
|
dependencies = [
|
|
5073
5498
|
"once_cell",
|
|
5499
|
+
"valuable",
|
|
5500
|
+
]
|
|
5501
|
+
|
|
5502
|
+
[[package]]
|
|
5503
|
+
name = "tracing-log"
|
|
5504
|
+
version = "0.2.0"
|
|
5505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5506
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
5507
|
+
dependencies = [
|
|
5508
|
+
"log",
|
|
5509
|
+
"once_cell",
|
|
5510
|
+
"tracing-core",
|
|
5511
|
+
]
|
|
5512
|
+
|
|
5513
|
+
[[package]]
|
|
5514
|
+
name = "tracing-subscriber"
|
|
5515
|
+
version = "0.3.23"
|
|
5516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5517
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
5518
|
+
dependencies = [
|
|
5519
|
+
"matchers",
|
|
5520
|
+
"nu-ansi-term",
|
|
5521
|
+
"once_cell",
|
|
5522
|
+
"regex-automata",
|
|
5523
|
+
"sharded-slab",
|
|
5524
|
+
"smallvec",
|
|
5525
|
+
"thread_local",
|
|
5526
|
+
"tracing",
|
|
5527
|
+
"tracing-core",
|
|
5528
|
+
"tracing-log",
|
|
5074
5529
|
]
|
|
5075
5530
|
|
|
5076
5531
|
[[package]]
|
|
@@ -5079,6 +5534,116 @@ version = "0.2.5"
|
|
|
5079
5534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5080
5535
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
5081
5536
|
|
|
5537
|
+
[[package]]
|
|
5538
|
+
name = "turso_core"
|
|
5539
|
+
version = "0.5.3"
|
|
5540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5541
|
+
checksum = "81fac73a12b91b569f4671d63d65912876c11e6312597c996dac40494f9f9b39"
|
|
5542
|
+
dependencies = [
|
|
5543
|
+
"aegis",
|
|
5544
|
+
"aes 0.8.4",
|
|
5545
|
+
"aes-gcm 0.10.3",
|
|
5546
|
+
"antithesis_sdk",
|
|
5547
|
+
"arc-swap",
|
|
5548
|
+
"bigdecimal",
|
|
5549
|
+
"bitflags",
|
|
5550
|
+
"branches",
|
|
5551
|
+
"built",
|
|
5552
|
+
"bumpalo",
|
|
5553
|
+
"bytemuck",
|
|
5554
|
+
"cfg_block",
|
|
5555
|
+
"chrono",
|
|
5556
|
+
"crc32c",
|
|
5557
|
+
"crossbeam-skiplist",
|
|
5558
|
+
"either",
|
|
5559
|
+
"fallible-iterator",
|
|
5560
|
+
"fastbloom",
|
|
5561
|
+
"hex",
|
|
5562
|
+
"intrusive-collections",
|
|
5563
|
+
"libc",
|
|
5564
|
+
"libloading 0.8.9",
|
|
5565
|
+
"libm",
|
|
5566
|
+
"loom",
|
|
5567
|
+
"miette",
|
|
5568
|
+
"num-bigint",
|
|
5569
|
+
"num-traits",
|
|
5570
|
+
"pack1",
|
|
5571
|
+
"parking_lot",
|
|
5572
|
+
"paste",
|
|
5573
|
+
"polling",
|
|
5574
|
+
"rand 0.9.4",
|
|
5575
|
+
"rapidhash",
|
|
5576
|
+
"regex",
|
|
5577
|
+
"regex-syntax",
|
|
5578
|
+
"roaring",
|
|
5579
|
+
"rustc-hash",
|
|
5580
|
+
"rustix",
|
|
5581
|
+
"ryu",
|
|
5582
|
+
"serde_json",
|
|
5583
|
+
"shuttle",
|
|
5584
|
+
"simsimd",
|
|
5585
|
+
"smallvec",
|
|
5586
|
+
"strum 0.26.3",
|
|
5587
|
+
"strum_macros 0.26.4",
|
|
5588
|
+
"tempfile",
|
|
5589
|
+
"thiserror 2.0.18",
|
|
5590
|
+
"tracing",
|
|
5591
|
+
"tracing-subscriber",
|
|
5592
|
+
"turso_ext",
|
|
5593
|
+
"turso_macros",
|
|
5594
|
+
"turso_parser",
|
|
5595
|
+
"twox-hash",
|
|
5596
|
+
"uncased",
|
|
5597
|
+
"uuid",
|
|
5598
|
+
"windows-sys 0.61.2",
|
|
5599
|
+
]
|
|
5600
|
+
|
|
5601
|
+
[[package]]
|
|
5602
|
+
name = "turso_ext"
|
|
5603
|
+
version = "0.5.3"
|
|
5604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5605
|
+
checksum = "bdd7410a02a3a4cebd48a5bc0db74940d1157dc9c05ad42d48ee5156dd31edd1"
|
|
5606
|
+
dependencies = [
|
|
5607
|
+
"chrono",
|
|
5608
|
+
"getrandom 0.3.4",
|
|
5609
|
+
"turso_macros",
|
|
5610
|
+
]
|
|
5611
|
+
|
|
5612
|
+
[[package]]
|
|
5613
|
+
name = "turso_macros"
|
|
5614
|
+
version = "0.5.3"
|
|
5615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5616
|
+
checksum = "9c846c30c3cb085884a8bbaba7760bdcc406ff2176cbde1e51d41b6057171fd4"
|
|
5617
|
+
dependencies = [
|
|
5618
|
+
"proc-macro2",
|
|
5619
|
+
"quote",
|
|
5620
|
+
"syn",
|
|
5621
|
+
]
|
|
5622
|
+
|
|
5623
|
+
[[package]]
|
|
5624
|
+
name = "turso_parser"
|
|
5625
|
+
version = "0.5.3"
|
|
5626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5627
|
+
checksum = "8402ba98c236e3e6d6ed6a43557a9a0b3a682f86a37fcafe02b659b9e6c06b82"
|
|
5628
|
+
dependencies = [
|
|
5629
|
+
"bitflags",
|
|
5630
|
+
"memchr",
|
|
5631
|
+
"miette",
|
|
5632
|
+
"strum 0.26.3",
|
|
5633
|
+
"strum_macros 0.26.4",
|
|
5634
|
+
"thiserror 2.0.18",
|
|
5635
|
+
"turso_macros",
|
|
5636
|
+
]
|
|
5637
|
+
|
|
5638
|
+
[[package]]
|
|
5639
|
+
name = "twox-hash"
|
|
5640
|
+
version = "2.1.2"
|
|
5641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5642
|
+
checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
|
|
5643
|
+
dependencies = [
|
|
5644
|
+
"rand 0.9.4",
|
|
5645
|
+
]
|
|
5646
|
+
|
|
5082
5647
|
[[package]]
|
|
5083
5648
|
name = "typed-arena"
|
|
5084
5649
|
version = "2.0.2"
|
|
@@ -5087,9 +5652,9 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
|
5087
5652
|
|
|
5088
5653
|
[[package]]
|
|
5089
5654
|
name = "typenum"
|
|
5090
|
-
version = "1.
|
|
5655
|
+
version = "1.20.0"
|
|
5091
5656
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5092
|
-
checksum = "
|
|
5657
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
5093
5658
|
|
|
5094
5659
|
[[package]]
|
|
5095
5660
|
name = "unarray"
|
|
@@ -5097,6 +5662,15 @@ version = "0.1.4"
|
|
|
5097
5662
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5098
5663
|
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
5099
5664
|
|
|
5665
|
+
[[package]]
|
|
5666
|
+
name = "uncased"
|
|
5667
|
+
version = "0.9.10"
|
|
5668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5669
|
+
checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
|
|
5670
|
+
dependencies = [
|
|
5671
|
+
"version_check",
|
|
5672
|
+
]
|
|
5673
|
+
|
|
5100
5674
|
[[package]]
|
|
5101
5675
|
name = "unicode-id-start"
|
|
5102
5676
|
version = "1.4.0"
|
|
@@ -5130,6 +5704,12 @@ version = "1.13.2"
|
|
|
5130
5704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5131
5705
|
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
5132
5706
|
|
|
5707
|
+
[[package]]
|
|
5708
|
+
name = "unicode-width"
|
|
5709
|
+
version = "0.1.14"
|
|
5710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5711
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
5712
|
+
|
|
5133
5713
|
[[package]]
|
|
5134
5714
|
name = "unicode-width"
|
|
5135
5715
|
version = "0.2.2"
|
|
@@ -5226,6 +5806,24 @@ version = "0.2.2"
|
|
|
5226
5806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5227
5807
|
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
5228
5808
|
|
|
5809
|
+
[[package]]
|
|
5810
|
+
name = "uuid"
|
|
5811
|
+
version = "1.23.1"
|
|
5812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5813
|
+
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
|
|
5814
|
+
dependencies = [
|
|
5815
|
+
"getrandom 0.4.2",
|
|
5816
|
+
"js-sys",
|
|
5817
|
+
"sha1_smol",
|
|
5818
|
+
"wasm-bindgen",
|
|
5819
|
+
]
|
|
5820
|
+
|
|
5821
|
+
[[package]]
|
|
5822
|
+
name = "valuable"
|
|
5823
|
+
version = "0.1.1"
|
|
5824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5825
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
5826
|
+
|
|
5229
5827
|
[[package]]
|
|
5230
5828
|
name = "version_check"
|
|
5231
5829
|
version = "0.9.5"
|
|
@@ -5268,11 +5866,11 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
5268
5866
|
|
|
5269
5867
|
[[package]]
|
|
5270
5868
|
name = "wasip2"
|
|
5271
|
-
version = "1.0.
|
|
5869
|
+
version = "1.0.3+wasi-0.2.9"
|
|
5272
5870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5273
|
-
checksum = "
|
|
5871
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
5274
5872
|
dependencies = [
|
|
5275
|
-
"wit-bindgen",
|
|
5873
|
+
"wit-bindgen 0.57.1",
|
|
5276
5874
|
]
|
|
5277
5875
|
|
|
5278
5876
|
[[package]]
|
|
@@ -5281,14 +5879,14 @@ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
|
5281
5879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5282
5880
|
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
5283
5881
|
dependencies = [
|
|
5284
|
-
"wit-bindgen",
|
|
5882
|
+
"wit-bindgen 0.51.0",
|
|
5285
5883
|
]
|
|
5286
5884
|
|
|
5287
5885
|
[[package]]
|
|
5288
5886
|
name = "wasm-bindgen"
|
|
5289
|
-
version = "0.2.
|
|
5887
|
+
version = "0.2.120"
|
|
5290
5888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5291
|
-
checksum = "
|
|
5889
|
+
checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
|
|
5292
5890
|
dependencies = [
|
|
5293
5891
|
"cfg-if",
|
|
5294
5892
|
"once_cell",
|
|
@@ -5299,9 +5897,9 @@ dependencies = [
|
|
|
5299
5897
|
|
|
5300
5898
|
[[package]]
|
|
5301
5899
|
name = "wasm-bindgen-futures"
|
|
5302
|
-
version = "0.4.
|
|
5900
|
+
version = "0.4.70"
|
|
5303
5901
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5304
|
-
checksum = "
|
|
5902
|
+
checksum = "af934872acec734c2d80e6617bbb5ff4f12b052dd8e6332b0817bce889516084"
|
|
5305
5903
|
dependencies = [
|
|
5306
5904
|
"js-sys",
|
|
5307
5905
|
"wasm-bindgen",
|
|
@@ -5309,9 +5907,9 @@ dependencies = [
|
|
|
5309
5907
|
|
|
5310
5908
|
[[package]]
|
|
5311
5909
|
name = "wasm-bindgen-macro"
|
|
5312
|
-
version = "0.2.
|
|
5910
|
+
version = "0.2.120"
|
|
5313
5911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5314
|
-
checksum = "
|
|
5912
|
+
checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
|
|
5315
5913
|
dependencies = [
|
|
5316
5914
|
"quote",
|
|
5317
5915
|
"wasm-bindgen-macro-support",
|
|
@@ -5319,9 +5917,9 @@ dependencies = [
|
|
|
5319
5917
|
|
|
5320
5918
|
[[package]]
|
|
5321
5919
|
name = "wasm-bindgen-macro-support"
|
|
5322
|
-
version = "0.2.
|
|
5920
|
+
version = "0.2.120"
|
|
5323
5921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5324
|
-
checksum = "
|
|
5922
|
+
checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
|
|
5325
5923
|
dependencies = [
|
|
5326
5924
|
"bumpalo",
|
|
5327
5925
|
"proc-macro2",
|
|
@@ -5332,9 +5930,9 @@ dependencies = [
|
|
|
5332
5930
|
|
|
5333
5931
|
[[package]]
|
|
5334
5932
|
name = "wasm-bindgen-shared"
|
|
5335
|
-
version = "0.2.
|
|
5933
|
+
version = "0.2.120"
|
|
5336
5934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5337
|
-
checksum = "
|
|
5935
|
+
checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
|
|
5338
5936
|
dependencies = [
|
|
5339
5937
|
"unicode-ident",
|
|
5340
5938
|
]
|
|
@@ -5388,9 +5986,9 @@ dependencies = [
|
|
|
5388
5986
|
|
|
5389
5987
|
[[package]]
|
|
5390
5988
|
name = "web-sys"
|
|
5391
|
-
version = "0.3.
|
|
5989
|
+
version = "0.3.97"
|
|
5392
5990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5393
|
-
checksum = "
|
|
5991
|
+
checksum = "2eadbac71025cd7b0834f20d1fe8472e8495821b4e9801eb0a60bd1f19827602"
|
|
5394
5992
|
dependencies = [
|
|
5395
5993
|
"js-sys",
|
|
5396
5994
|
"wasm-bindgen",
|
|
@@ -5398,9 +5996,9 @@ dependencies = [
|
|
|
5398
5996
|
|
|
5399
5997
|
[[package]]
|
|
5400
5998
|
name = "webpki-root-certs"
|
|
5401
|
-
version = "1.0.
|
|
5999
|
+
version = "1.0.7"
|
|
5402
6000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5403
|
-
checksum = "
|
|
6001
|
+
checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
|
|
5404
6002
|
dependencies = [
|
|
5405
6003
|
"rustls-pki-types",
|
|
5406
6004
|
]
|
|
@@ -5537,22 +6135,13 @@ dependencies = [
|
|
|
5537
6135
|
"windows-link",
|
|
5538
6136
|
]
|
|
5539
6137
|
|
|
5540
|
-
[[package]]
|
|
5541
|
-
name = "windows-sys"
|
|
5542
|
-
version = "0.45.0"
|
|
5543
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5544
|
-
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
5545
|
-
dependencies = [
|
|
5546
|
-
"windows-targets 0.42.2",
|
|
5547
|
-
]
|
|
5548
|
-
|
|
5549
6138
|
[[package]]
|
|
5550
6139
|
name = "windows-sys"
|
|
5551
6140
|
version = "0.52.0"
|
|
5552
6141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5553
6142
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
5554
6143
|
dependencies = [
|
|
5555
|
-
"windows-targets
|
|
6144
|
+
"windows-targets",
|
|
5556
6145
|
]
|
|
5557
6146
|
|
|
5558
6147
|
[[package]]
|
|
@@ -5564,35 +6153,20 @@ dependencies = [
|
|
|
5564
6153
|
"windows-link",
|
|
5565
6154
|
]
|
|
5566
6155
|
|
|
5567
|
-
[[package]]
|
|
5568
|
-
name = "windows-targets"
|
|
5569
|
-
version = "0.42.2"
|
|
5570
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5571
|
-
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
5572
|
-
dependencies = [
|
|
5573
|
-
"windows_aarch64_gnullvm 0.42.2",
|
|
5574
|
-
"windows_aarch64_msvc 0.42.2",
|
|
5575
|
-
"windows_i686_gnu 0.42.2",
|
|
5576
|
-
"windows_i686_msvc 0.42.2",
|
|
5577
|
-
"windows_x86_64_gnu 0.42.2",
|
|
5578
|
-
"windows_x86_64_gnullvm 0.42.2",
|
|
5579
|
-
"windows_x86_64_msvc 0.42.2",
|
|
5580
|
-
]
|
|
5581
|
-
|
|
5582
6156
|
[[package]]
|
|
5583
6157
|
name = "windows-targets"
|
|
5584
6158
|
version = "0.52.6"
|
|
5585
6159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5586
6160
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
5587
6161
|
dependencies = [
|
|
5588
|
-
"windows_aarch64_gnullvm
|
|
5589
|
-
"windows_aarch64_msvc
|
|
5590
|
-
"windows_i686_gnu
|
|
6162
|
+
"windows_aarch64_gnullvm",
|
|
6163
|
+
"windows_aarch64_msvc",
|
|
6164
|
+
"windows_i686_gnu",
|
|
5591
6165
|
"windows_i686_gnullvm",
|
|
5592
|
-
"windows_i686_msvc
|
|
5593
|
-
"windows_x86_64_gnu
|
|
5594
|
-
"windows_x86_64_gnullvm
|
|
5595
|
-
"windows_x86_64_msvc
|
|
6166
|
+
"windows_i686_msvc",
|
|
6167
|
+
"windows_x86_64_gnu",
|
|
6168
|
+
"windows_x86_64_gnullvm",
|
|
6169
|
+
"windows_x86_64_msvc",
|
|
5596
6170
|
]
|
|
5597
6171
|
|
|
5598
6172
|
[[package]]
|
|
@@ -5604,36 +6178,18 @@ dependencies = [
|
|
|
5604
6178
|
"windows-link",
|
|
5605
6179
|
]
|
|
5606
6180
|
|
|
5607
|
-
[[package]]
|
|
5608
|
-
name = "windows_aarch64_gnullvm"
|
|
5609
|
-
version = "0.42.2"
|
|
5610
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5611
|
-
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
5612
|
-
|
|
5613
6181
|
[[package]]
|
|
5614
6182
|
name = "windows_aarch64_gnullvm"
|
|
5615
6183
|
version = "0.52.6"
|
|
5616
6184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5617
6185
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
5618
6186
|
|
|
5619
|
-
[[package]]
|
|
5620
|
-
name = "windows_aarch64_msvc"
|
|
5621
|
-
version = "0.42.2"
|
|
5622
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5623
|
-
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
5624
|
-
|
|
5625
6187
|
[[package]]
|
|
5626
6188
|
name = "windows_aarch64_msvc"
|
|
5627
6189
|
version = "0.52.6"
|
|
5628
6190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5629
6191
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
5630
6192
|
|
|
5631
|
-
[[package]]
|
|
5632
|
-
name = "windows_i686_gnu"
|
|
5633
|
-
version = "0.42.2"
|
|
5634
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5635
|
-
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
5636
|
-
|
|
5637
6193
|
[[package]]
|
|
5638
6194
|
name = "windows_i686_gnu"
|
|
5639
6195
|
version = "0.52.6"
|
|
@@ -5646,48 +6202,24 @@ version = "0.52.6"
|
|
|
5646
6202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5647
6203
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
5648
6204
|
|
|
5649
|
-
[[package]]
|
|
5650
|
-
name = "windows_i686_msvc"
|
|
5651
|
-
version = "0.42.2"
|
|
5652
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5653
|
-
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
5654
|
-
|
|
5655
6205
|
[[package]]
|
|
5656
6206
|
name = "windows_i686_msvc"
|
|
5657
6207
|
version = "0.52.6"
|
|
5658
6208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5659
6209
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
5660
6210
|
|
|
5661
|
-
[[package]]
|
|
5662
|
-
name = "windows_x86_64_gnu"
|
|
5663
|
-
version = "0.42.2"
|
|
5664
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5665
|
-
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
5666
|
-
|
|
5667
6211
|
[[package]]
|
|
5668
6212
|
name = "windows_x86_64_gnu"
|
|
5669
6213
|
version = "0.52.6"
|
|
5670
6214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5671
6215
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
5672
6216
|
|
|
5673
|
-
[[package]]
|
|
5674
|
-
name = "windows_x86_64_gnullvm"
|
|
5675
|
-
version = "0.42.2"
|
|
5676
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5677
|
-
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
5678
|
-
|
|
5679
6217
|
[[package]]
|
|
5680
6218
|
name = "windows_x86_64_gnullvm"
|
|
5681
6219
|
version = "0.52.6"
|
|
5682
6220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5683
6221
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
5684
6222
|
|
|
5685
|
-
[[package]]
|
|
5686
|
-
name = "windows_x86_64_msvc"
|
|
5687
|
-
version = "0.42.2"
|
|
5688
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5689
|
-
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
5690
|
-
|
|
5691
6223
|
[[package]]
|
|
5692
6224
|
name = "windows_x86_64_msvc"
|
|
5693
6225
|
version = "0.52.6"
|
|
@@ -5703,6 +6235,12 @@ dependencies = [
|
|
|
5703
6235
|
"wit-bindgen-rust-macro",
|
|
5704
6236
|
]
|
|
5705
6237
|
|
|
6238
|
+
[[package]]
|
|
6239
|
+
name = "wit-bindgen"
|
|
6240
|
+
version = "0.57.1"
|
|
6241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6242
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
6243
|
+
|
|
5706
6244
|
[[package]]
|
|
5707
6245
|
name = "wit-bindgen-core"
|
|
5708
6246
|
version = "0.51.0"
|