bashkit 0.2.1__tar.gz → 0.3.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.3.0}/Cargo.lock +763 -236
- {bashkit-0.2.1 → bashkit-0.3.0}/Cargo.toml +8 -4
- {bashkit-0.2.1 → bashkit-0.3.0}/PKG-INFO +47 -5
- {bashkit-0.2.1/crates/bashkit-python → bashkit-0.3.0}/README.md +46 -4
- {bashkit-0.2.1 → bashkit-0.3.0}/bashkit/_bashkit.pyi +93 -8
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/Cargo.toml +23 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/README.md +35 -1
- bashkit-0.3.0/crates/bashkit/docs/sqlite.md +169 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/agent_tool.rs +4 -0
- bashkit-0.3.0/crates/bashkit/examples/sqlite_basic.rs +37 -0
- bashkit-0.3.0/crates/bashkit/examples/sqlite_workflow.rs +122 -0
- bashkit-0.3.0/crates/bashkit/proptest-regressions/builtins/sqlite/tests.txt +7 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/awk.rs +29 -1
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/bc.rs +12 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/csv.rs +12 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/curl.rs +21 -1
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/date.rs +12 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/expr.rs +11 -0
- bashkit-0.2.1/crates/bashkit/src/builtins/git.rs → bashkit-0.3.0/crates/bashkit/src/builtins/git/cmd.rs +24 -24
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/git/mod.rs +6 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/grep.rs +13 -2
- bashkit-0.3.0/crates/bashkit/src/builtins/jq/args.rs +624 -0
- bashkit-0.3.0/crates/bashkit/src/builtins/jq/compat.rs +144 -0
- bashkit-0.3.0/crates/bashkit/src/builtins/jq/convert.rs +287 -0
- bashkit-0.3.0/crates/bashkit/src/builtins/jq/errors.rs +357 -0
- bashkit-0.3.0/crates/bashkit/src/builtins/jq/format.rs +273 -0
- bashkit-0.3.0/crates/bashkit/src/builtins/jq/mod.rs +450 -0
- bashkit-0.3.0/crates/bashkit/src/builtins/jq/regex_compat.rs +307 -0
- bashkit-0.3.0/crates/bashkit/src/builtins/jq/tests.rs +1461 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/json.rs +11 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/ls.rs +2 -2
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/mod.rs +166 -6
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/numfmt.rs +13 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/sed.rs +11 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/semver.rs +11 -0
- bashkit-0.3.0/crates/bashkit/src/builtins/sqlite/dot_commands.rs +556 -0
- bashkit-0.3.0/crates/bashkit/src/builtins/sqlite/engine.rs +291 -0
- bashkit-0.3.0/crates/bashkit/src/builtins/sqlite/formatter.rs +517 -0
- bashkit-0.3.0/crates/bashkit/src/builtins/sqlite/mod.rs +751 -0
- bashkit-0.3.0/crates/bashkit/src/builtins/sqlite/parser.rs +439 -0
- bashkit-0.3.0/crates/bashkit/src/builtins/sqlite/tests.rs +795 -0
- bashkit-0.3.0/crates/bashkit/src/builtins/sqlite/vfs_io.rs +316 -0
- bashkit-0.2.1/crates/bashkit/src/builtins/ssh.rs → bashkit-0.3.0/crates/bashkit/src/builtins/ssh/cmd.rs +15 -21
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/ssh/config.rs +1 -1
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/ssh/handler.rs +2 -2
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/ssh/mod.rs +6 -0
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/ssh/russh_handler.rs +8 -8
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/tomlq.rs +13 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/yaml.rs +11 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/fs/mod.rs +74 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/interpreter/mod.rs +227 -8
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/lib.rs +119 -15
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/scripted_tool/execute.rs +4 -4
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/scripted_tool/mod.rs +147 -0
- bashkit-0.3.0/crates/bashkit/src/testing.rs +155 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/awk_fuzz_scaffold_tests.rs +39 -20
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/jq_fuzz_scaffold_tests.rs +34 -14
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/network_security_tests.rs +92 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/proptest_security.rs +147 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/jq/jq.test.sh +6 -5
- bashkit-0.3.0/crates/bashkit/tests/sqlite_compat_tests.rs +158 -0
- bashkit-0.3.0/crates/bashkit/tests/sqlite_fuzz_tests.rs +146 -0
- bashkit-0.3.0/crates/bashkit/tests/sqlite_integration_tests.rs +237 -0
- bashkit-0.3.0/crates/bashkit/tests/sqlite_security_tests.rs +260 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/Cargo.toml +1 -1
- {bashkit-0.2.1 → bashkit-0.3.0/crates/bashkit-python}/README.md +46 -4
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/src/lib.rs +261 -11
- bashkit-0.3.0/crates/bashkit-python/tests/test_network_credentials.py +401 -0
- bashkit-0.3.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.3.0}/bashkit/__init__.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/bashkit/deepagents.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/bashkit/langchain.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/bashkit/py.typed +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/bashkit/pydantic_ai.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/benches/parallel_execution.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/docs/compatibility.md +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/docs/credential-injection.md +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/docs/custom_builtins.md +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/docs/hooks.md +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/docs/jq.md +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/docs/live_mounts.md +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/docs/logging.md +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/docs/python.md +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/docs/ssh.md +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/docs/threat-model.md +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/docs/typescript.md +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/basic.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/custom_backend.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/custom_builtins.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/custom_filesystem_impl.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/custom_fs.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/git_workflow.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/live_mounts.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/python_external_functions.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/python_scripts.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/realfs_readonly.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/realfs_readwrite.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/resource_limits.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/scripted_tool.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/show_tool_output.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/ssh_supabase.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/streaming_output.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/text_files.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/text_processing.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/typescript_external_functions.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/typescript_scripts.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/examples/virtual_identity.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/alias.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/archive.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/arg_parser.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/assert.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/base64.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/caller.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/cat.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/checksum.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/clear.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/column.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/comm.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/compgen.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/cuttr.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/diff.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/dirstack.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/disk.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/dotenv.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/echo.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/environ.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/envsubst.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/expand.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/export.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/fc.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/fileops.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/flow.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/fold.rs +0 -0
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/git/client.rs +0 -0
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/git/config.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/glob_cmd.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/headtail.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/help.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/hextools.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/http.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/iconv.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/inspect.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/introspect.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/join.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/log.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/mapfile.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/mkfifo.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/navigation.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/nl.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/parallel.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/paste.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/patch.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/path.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/pipeline.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/printf.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/python.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/read.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/retry.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/rg.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/search_common.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/seq.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/sleep.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/sortuniq.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/source.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/split.rs +0 -0
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/ssh/allowlist.rs +0 -0
- {bashkit-0.2.1/crates/bashkit/src → bashkit-0.3.0/crates/bashkit/src/builtins}/ssh/client.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/strings.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/system.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/template.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/textrev.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/timeout.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/trap.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/tree.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/typescript.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/vars.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/verify.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/wait.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/wc.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/yes.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/builtins/zip_cmd.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/credential.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/error.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/fs/backend.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/fs/limits.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/fs/memory.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/fs/mountable.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/fs/overlay.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/fs/posix.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/fs/realfs.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/fs/search.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/fs/traits.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/hooks.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/interop/fs.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/interop/mod.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/interpreter/glob.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/interpreter/jobs.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/interpreter/state.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/limits.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/logging_impl.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/network/allowlist.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/network/bot_auth.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/network/client.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/network/mod.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/parser/ast.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/parser/budget.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/parser/lexer.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/parser/mod.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/parser/span.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/parser/tokens.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/scripted_tool/toolset.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/snapshot.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/tool.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/tool_def.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/src/trace.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/allexport_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/awk_newline_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/awk_pattern_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/awk_printf_expr_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/awk_range_pattern_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/background_exec_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/bash_source_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/blackbox_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/builtin_error_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/byte_range_panic_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/cancellation_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/cmdsub_quote_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/coproc_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/credential_injection_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/custom_builtins_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/custom_fs_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/dev_null_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/final_env_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/find_multi_path_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/git_advanced_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/git_inspection_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/git_integration_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/git_remote_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/git_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/harness_example_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/history_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/issue_1175_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/issue_274_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/issue_275_279_282_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/issue_276_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/issue_277_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/issue_289_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/issue_290_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/issue_291_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/issue_853_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/issue_872_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/issue_873_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/issue_875_test.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/live_mount_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/logging_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/mkfifo_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/nested_subscript_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/output_truncation_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/overlay_path_validation_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/proptest_differential.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/python_integration_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/python_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/realfs_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/regex_limit_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/release_profile_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/script_execution_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/security_audit_pocs.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/security_failpoint_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/set_e_and_or_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/azure_discover_rank.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/azure_generate_url.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/azure_query_capacity.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/helm_validate_chart.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/jwt_test_setup.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/stitch_download_asset.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/stitch_fetch.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/stitch_verify_setup.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/superpowers_find_polluter.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/skills_fixtures/vercel_deploy.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/skills_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/snapshot_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/source_function_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/awk/awk.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/awk/delete-array.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/awk/dev-stderr.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/awk/eval-bugs.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/awk/filename.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/awk/getline-file.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/alias.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/append_redirect.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/arith-dynamic.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/arithmetic-base-expansion.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/arithmetic.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/array-slicing.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/array-splat.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/arrays.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/assoc-arrays.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/awk-printf-width.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/background.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/bash-c-exports.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/bash-command.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/bash-flags.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/bash-source-var.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/bash-stdin-pipe.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/bc.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/blackbox-edge-cases.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/blackbox-exploration.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/brace-expansion.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/brace_expansion_lookahead.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/checksum.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/chown-kill.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/cmd-suggestions.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/cmdsub_depth_unquoted.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/column.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/comm.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/command-not-found.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/command-subst.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/command.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/command_v.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/compgen-path.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/conditional-short-circuit.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/conditional.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/control-flow.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/cuttr.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/date.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/declare.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/df.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/diff.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/dirstack.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/du.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/echo.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/empty-bodies.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/env.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/errexit.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/eval-bugs.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/exec-command.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-redirect.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/exec-fd-variable.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/exit-status.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/expr.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/extglob.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/file.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/fileops.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/find.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/functions.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/getopts.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/glob-options.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/glob_match_cap.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/globs.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/gzip.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/headtail.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/help-flag.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/heredoc-edge.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/heredoc.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/herestring.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/hextools.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/history.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/indirect-expansion.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/less.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/ln.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/ls.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/memory_budget_desync.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/nameref-assoc.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/nameref.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/negative-tests.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/nl.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/nounset.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/numfmt.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/parse-errors.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/paste-flags.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/paste.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/path.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/pipes-redirects.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/printenv.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/printf.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/procsub.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/quote.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/read-builtin.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/recursive-cmdsub.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/regex-limit.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/replace_pattern_limit.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/script-exec.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/seq.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/set-allexport.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/shell-grammar.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/sleep.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/sortuniq.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/source.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/stat.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/string-ops.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/strings.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/subprocess-isolation.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/subshell.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/tar.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/tar_create.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/tee.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/temp-binding.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/test-operators.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/test-tty.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/textrev.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/time.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/timeout.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/tree.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/type.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/unicode.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/unset-exported-var.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/var-op-test.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/variables.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/wait.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/watch.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/wc.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/word-split.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/bash/xargs.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/grep/eval-bugs.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/grep/grep.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/grep/rg.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/python/env_leak.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/python/python.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/sed/eval-bugs.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/sed/sed.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_cases/typescript/typescript.test.sh +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_runner.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/spec_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/ssh_builtin_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/ssh_supabase_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/stack_overflow_regression_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/subst_depth_limit_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/symlink_overlay_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/threat_model_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/tty_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/typescript_integration_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/typescript_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/unicode_security_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/unset_function_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit/tests/urandom_tests.rs +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/examples/bash_basics.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/examples/custom_filesystem_interop.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/examples/data_pipeline.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/examples/fastapi_async_tool.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/examples/jupyter_async_test.ipynb +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/examples/k8s_orchestrator.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/examples/langgraph_async_tool.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/examples/llm_tool.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/_bashkit_categories.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/_security_advanced.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/_security_core.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_ai_adapters.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_async_callbacks.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_basic.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_builtins.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_control_flow.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_error_handling.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_fastapi_integration.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_filesystem_interop.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_integration.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_jupyter_compat.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_langgraph_integration.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_network_config.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_python_security.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_registered_tools.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_scripts.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_security.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_shell_injection.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_streaming_output.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_strings_and_quoting.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_tool_metadata.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.0}/crates/bashkit-python/tests/test_vfs.py +0 -0
- {bashkit-0.2.1 → bashkit-0.3.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,7 +345,7 @@ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
|
304
345
|
|
|
305
346
|
[[package]]
|
|
306
347
|
name = "bashkit"
|
|
307
|
-
version = "0.
|
|
348
|
+
version = "0.3.0"
|
|
308
349
|
dependencies = [
|
|
309
350
|
"anyhow",
|
|
310
351
|
"async-trait",
|
|
@@ -343,6 +384,7 @@ dependencies = [
|
|
|
343
384
|
"tokio-test",
|
|
344
385
|
"tower",
|
|
345
386
|
"tracing",
|
|
387
|
+
"turso_core",
|
|
346
388
|
"url",
|
|
347
389
|
"zapcode-core",
|
|
348
390
|
"zeroize",
|
|
@@ -350,7 +392,7 @@ dependencies = [
|
|
|
350
392
|
|
|
351
393
|
[[package]]
|
|
352
394
|
name = "bashkit-bench"
|
|
353
|
-
version = "0.
|
|
395
|
+
version = "0.3.0"
|
|
354
396
|
dependencies = [
|
|
355
397
|
"anyhow",
|
|
356
398
|
"bashkit",
|
|
@@ -364,7 +406,7 @@ dependencies = [
|
|
|
364
406
|
|
|
365
407
|
[[package]]
|
|
366
408
|
name = "bashkit-cli"
|
|
367
|
-
version = "0.
|
|
409
|
+
version = "0.3.0"
|
|
368
410
|
dependencies = [
|
|
369
411
|
"anyhow",
|
|
370
412
|
"bashkit",
|
|
@@ -380,7 +422,7 @@ dependencies = [
|
|
|
380
422
|
|
|
381
423
|
[[package]]
|
|
382
424
|
name = "bashkit-eval"
|
|
383
|
-
version = "0.
|
|
425
|
+
version = "0.3.0"
|
|
384
426
|
dependencies = [
|
|
385
427
|
"anyhow",
|
|
386
428
|
"async-trait",
|
|
@@ -397,7 +439,7 @@ dependencies = [
|
|
|
397
439
|
|
|
398
440
|
[[package]]
|
|
399
441
|
name = "bashkit-js"
|
|
400
|
-
version = "0.
|
|
442
|
+
version = "0.3.0"
|
|
401
443
|
dependencies = [
|
|
402
444
|
"bashkit",
|
|
403
445
|
"napi",
|
|
@@ -410,7 +452,7 @@ dependencies = [
|
|
|
410
452
|
|
|
411
453
|
[[package]]
|
|
412
454
|
name = "bashkit-python"
|
|
413
|
-
version = "0.
|
|
455
|
+
version = "0.3.0"
|
|
414
456
|
dependencies = [
|
|
415
457
|
"bashkit",
|
|
416
458
|
"num-bigint",
|
|
@@ -431,6 +473,19 @@ dependencies = [
|
|
|
431
473
|
"sha2 0.10.9",
|
|
432
474
|
]
|
|
433
475
|
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "bigdecimal"
|
|
478
|
+
version = "0.4.10"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"autocfg",
|
|
483
|
+
"libm",
|
|
484
|
+
"num-bigint",
|
|
485
|
+
"num-integer",
|
|
486
|
+
"num-traits",
|
|
487
|
+
]
|
|
488
|
+
|
|
434
489
|
[[package]]
|
|
435
490
|
name = "bit-set"
|
|
436
491
|
version = "0.8.0"
|
|
@@ -519,6 +574,15 @@ dependencies = [
|
|
|
519
574
|
"cipher 0.4.4",
|
|
520
575
|
]
|
|
521
576
|
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "branches"
|
|
579
|
+
version = "0.4.4"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "e426eb5cc1900033930ec955317b302e68f19f326cc7bb0c8a86865a826cdf0c"
|
|
582
|
+
dependencies = [
|
|
583
|
+
"rustc_version",
|
|
584
|
+
]
|
|
585
|
+
|
|
522
586
|
[[package]]
|
|
523
587
|
name = "bstr"
|
|
524
588
|
version = "1.12.1"
|
|
@@ -530,6 +594,15 @@ dependencies = [
|
|
|
530
594
|
"serde",
|
|
531
595
|
]
|
|
532
596
|
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "built"
|
|
599
|
+
version = "0.7.5"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "c360505aed52b7ec96a3636c3f039d99103c37d1d9b4f7a8c743d3ea9ffcd03b"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"chrono",
|
|
604
|
+
]
|
|
605
|
+
|
|
533
606
|
[[package]]
|
|
534
607
|
name = "bumpalo"
|
|
535
608
|
version = "3.20.2"
|
|
@@ -609,9 +682,9 @@ dependencies = [
|
|
|
609
682
|
|
|
610
683
|
[[package]]
|
|
611
684
|
name = "cc"
|
|
612
|
-
version = "1.2.
|
|
685
|
+
version = "1.2.61"
|
|
613
686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
-
checksum = "
|
|
687
|
+
checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
|
|
615
688
|
dependencies = [
|
|
616
689
|
"find-msvc-tools",
|
|
617
690
|
"jobserver",
|
|
@@ -619,12 +692,6 @@ dependencies = [
|
|
|
619
692
|
"shlex",
|
|
620
693
|
]
|
|
621
694
|
|
|
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
695
|
[[package]]
|
|
629
696
|
name = "cfg-if"
|
|
630
697
|
version = "1.0.4"
|
|
@@ -637,6 +704,12 @@ version = "0.2.1"
|
|
|
637
704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
705
|
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
639
706
|
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "cfg_block"
|
|
709
|
+
version = "0.1.1"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "18758054972164c3264f7c8386f5fc6da6114cb46b619fd365d4e3b2dc3ae487"
|
|
712
|
+
|
|
640
713
|
[[package]]
|
|
641
714
|
name = "chacha20"
|
|
642
715
|
version = "0.9.1"
|
|
@@ -839,6 +912,15 @@ dependencies = [
|
|
|
839
912
|
"static_assertions",
|
|
840
913
|
]
|
|
841
914
|
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "concurrent-queue"
|
|
917
|
+
version = "2.5.0"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
920
|
+
dependencies = [
|
|
921
|
+
"crossbeam-utils",
|
|
922
|
+
]
|
|
923
|
+
|
|
842
924
|
[[package]]
|
|
843
925
|
name = "console"
|
|
844
926
|
version = "0.16.3"
|
|
@@ -895,9 +977,9 @@ checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
|
|
|
895
977
|
|
|
896
978
|
[[package]]
|
|
897
979
|
name = "cpubits"
|
|
898
|
-
version = "0.1.
|
|
980
|
+
version = "0.1.1"
|
|
899
981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
-
checksum = "
|
|
982
|
+
checksum = "15b85f9c39137c3a891689859392b1bd49812121d0d61c9caf00d46ed5ce06ae"
|
|
901
983
|
|
|
902
984
|
[[package]]
|
|
903
985
|
name = "cpufeatures"
|
|
@@ -917,6 +999,15 @@ dependencies = [
|
|
|
917
999
|
"libc",
|
|
918
1000
|
]
|
|
919
1001
|
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "crc32c"
|
|
1004
|
+
version = "0.6.8"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"rustc_version",
|
|
1009
|
+
]
|
|
1010
|
+
|
|
920
1011
|
[[package]]
|
|
921
1012
|
name = "crc32fast"
|
|
922
1013
|
version = "1.5.0"
|
|
@@ -987,6 +1078,16 @@ dependencies = [
|
|
|
987
1078
|
"crossbeam-utils",
|
|
988
1079
|
]
|
|
989
1080
|
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "crossbeam-skiplist"
|
|
1083
|
+
version = "0.1.3"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "df29de440c58ca2cc6e587ec3d22347551a32435fbde9d2bff64e78a9ffa151b"
|
|
1086
|
+
dependencies = [
|
|
1087
|
+
"crossbeam-epoch",
|
|
1088
|
+
"crossbeam-utils",
|
|
1089
|
+
]
|
|
1090
|
+
|
|
990
1091
|
[[package]]
|
|
991
1092
|
name = "crossbeam-utils"
|
|
992
1093
|
version = "0.8.21"
|
|
@@ -1001,9 +1102,9 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
|
1001
1102
|
|
|
1002
1103
|
[[package]]
|
|
1003
1104
|
name = "crypto-bigint"
|
|
1004
|
-
version = "0.7.
|
|
1105
|
+
version = "0.7.0-rc.28"
|
|
1005
1106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
-
checksum = "
|
|
1107
|
+
checksum = "96dacf199529fb801ae62a9aafdc01b189e9504c0d1ee1512a4c16bcd8666a93"
|
|
1007
1108
|
dependencies = [
|
|
1008
1109
|
"cpubits",
|
|
1009
1110
|
"ctutils",
|
|
@@ -1023,6 +1124,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1023
1124
|
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
1024
1125
|
dependencies = [
|
|
1025
1126
|
"generic-array 0.14.7",
|
|
1127
|
+
"rand_core 0.6.4",
|
|
1026
1128
|
"typenum",
|
|
1027
1129
|
]
|
|
1028
1130
|
|
|
@@ -1039,9 +1141,9 @@ dependencies = [
|
|
|
1039
1141
|
|
|
1040
1142
|
[[package]]
|
|
1041
1143
|
name = "crypto-primes"
|
|
1042
|
-
version = "0.7.0"
|
|
1144
|
+
version = "0.7.0-pre.9"
|
|
1043
1145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
-
checksum = "
|
|
1146
|
+
checksum = "6081ce8b60c0e533e2bba42771b94eb6149052115f4179744d5779883dc98583"
|
|
1045
1147
|
dependencies = [
|
|
1046
1148
|
"crypto-bigint",
|
|
1047
1149
|
"libm",
|
|
@@ -1050,19 +1152,9 @@ dependencies = [
|
|
|
1050
1152
|
|
|
1051
1153
|
[[package]]
|
|
1052
1154
|
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"
|
|
1155
|
+
version = "0.11.1"
|
|
1064
1156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
-
checksum = "
|
|
1157
|
+
checksum = "400a21f1014a968ec518c7ccdf9b4a4ed0cac8c56ccb6d604f8b91f00110501e"
|
|
1066
1158
|
|
|
1067
1159
|
[[package]]
|
|
1068
1160
|
name = "ctr"
|
|
@@ -1137,9 +1229,9 @@ dependencies = [
|
|
|
1137
1229
|
|
|
1138
1230
|
[[package]]
|
|
1139
1231
|
name = "data-encoding"
|
|
1140
|
-
version = "2.
|
|
1232
|
+
version = "2.11.0"
|
|
1141
1233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
-
checksum = "
|
|
1234
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
1143
1235
|
|
|
1144
1236
|
[[package]]
|
|
1145
1237
|
name = "delegate"
|
|
@@ -1231,21 +1323,6 @@ version = "0.1.12"
|
|
|
1231
1323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
1324
|
checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
|
|
1233
1325
|
|
|
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
1326
|
[[package]]
|
|
1250
1327
|
name = "dunce"
|
|
1251
1328
|
version = "1.0.5"
|
|
@@ -1269,7 +1346,7 @@ dependencies = [
|
|
|
1269
1346
|
"elliptic-curve",
|
|
1270
1347
|
"rfc6979",
|
|
1271
1348
|
"signature 3.0.0-rc.10",
|
|
1272
|
-
"spki 0.8.0",
|
|
1349
|
+
"spki 0.8.0-rc.4",
|
|
1273
1350
|
"zeroize",
|
|
1274
1351
|
]
|
|
1275
1352
|
|
|
@@ -1332,9 +1409,9 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
|
1332
1409
|
|
|
1333
1410
|
[[package]]
|
|
1334
1411
|
name = "elliptic-curve"
|
|
1335
|
-
version = "0.14.0-rc.
|
|
1412
|
+
version = "0.14.0-rc.28"
|
|
1336
1413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
|
-
checksum = "
|
|
1414
|
+
checksum = "bde7860544606d222fd6bd6d9f9a0773321bf78072a637e1d560a058c0031978"
|
|
1338
1415
|
dependencies = [
|
|
1339
1416
|
"base16ct",
|
|
1340
1417
|
"crypto-bigint",
|
|
@@ -1422,6 +1499,12 @@ dependencies = [
|
|
|
1422
1499
|
"rand 0.8.6",
|
|
1423
1500
|
]
|
|
1424
1501
|
|
|
1502
|
+
[[package]]
|
|
1503
|
+
name = "fallible-iterator"
|
|
1504
|
+
version = "0.3.0"
|
|
1505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1506
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
1507
|
+
|
|
1425
1508
|
[[package]]
|
|
1426
1509
|
name = "fancy-regex"
|
|
1427
1510
|
version = "0.17.0"
|
|
@@ -1444,6 +1527,18 @@ dependencies = [
|
|
|
1444
1527
|
"regex-syntax",
|
|
1445
1528
|
]
|
|
1446
1529
|
|
|
1530
|
+
[[package]]
|
|
1531
|
+
name = "fastbloom"
|
|
1532
|
+
version = "0.14.1"
|
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
+
checksum = "4e7f34442dbe69c60fe8eaf58a8cafff81a1f278816d8ab4db255b3bef4ac3c4"
|
|
1535
|
+
dependencies = [
|
|
1536
|
+
"getrandom 0.3.4",
|
|
1537
|
+
"libm",
|
|
1538
|
+
"rand 0.9.4",
|
|
1539
|
+
"siphasher",
|
|
1540
|
+
]
|
|
1541
|
+
|
|
1447
1542
|
[[package]]
|
|
1448
1543
|
name = "fastrand"
|
|
1449
1544
|
version = "2.4.1"
|
|
@@ -1605,6 +1700,21 @@ dependencies = [
|
|
|
1605
1700
|
"slab",
|
|
1606
1701
|
]
|
|
1607
1702
|
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "generator"
|
|
1705
|
+
version = "0.8.8"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9"
|
|
1708
|
+
dependencies = [
|
|
1709
|
+
"cc",
|
|
1710
|
+
"cfg-if",
|
|
1711
|
+
"libc",
|
|
1712
|
+
"log",
|
|
1713
|
+
"rustversion",
|
|
1714
|
+
"windows-link",
|
|
1715
|
+
"windows-result",
|
|
1716
|
+
]
|
|
1717
|
+
|
|
1608
1718
|
[[package]]
|
|
1609
1719
|
name = "generic-array"
|
|
1610
1720
|
version = "0.14.7"
|
|
@@ -1617,9 +1727,9 @@ dependencies = [
|
|
|
1617
1727
|
|
|
1618
1728
|
[[package]]
|
|
1619
1729
|
name = "generic-array"
|
|
1620
|
-
version = "1.
|
|
1730
|
+
version = "1.4.1"
|
|
1621
1731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
-
checksum = "
|
|
1732
|
+
checksum = "dab9e9188e97a93276e1fe7b56401b851e2b45a46d045ca658100c1303ada649"
|
|
1623
1733
|
dependencies = [
|
|
1624
1734
|
"generic-array 0.14.7",
|
|
1625
1735
|
"rustversion",
|
|
@@ -1656,7 +1766,7 @@ version = "0.2.24"
|
|
|
1656
1766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
1767
|
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
1658
1768
|
dependencies = [
|
|
1659
|
-
"unicode-width",
|
|
1769
|
+
"unicode-width 0.2.2",
|
|
1660
1770
|
]
|
|
1661
1771
|
|
|
1662
1772
|
[[package]]
|
|
@@ -1783,6 +1893,12 @@ version = "0.5.0"
|
|
|
1783
1893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1784
1894
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1785
1895
|
|
|
1896
|
+
[[package]]
|
|
1897
|
+
name = "hermit-abi"
|
|
1898
|
+
version = "0.5.2"
|
|
1899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1900
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1901
|
+
|
|
1786
1902
|
[[package]]
|
|
1787
1903
|
name = "hex"
|
|
1788
1904
|
version = "0.4.3"
|
|
@@ -1878,9 +1994,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
|
1878
1994
|
|
|
1879
1995
|
[[package]]
|
|
1880
1996
|
name = "hybrid-array"
|
|
1881
|
-
version = "0.4.
|
|
1997
|
+
version = "0.4.11"
|
|
1882
1998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
-
checksum = "
|
|
1999
|
+
checksum = "08d46837a0ed51fe95bd3b05de33cd64a1ee88fc797477ca48446872504507c5"
|
|
1884
2000
|
dependencies = [
|
|
1885
2001
|
"ctutils",
|
|
1886
2002
|
"subtle",
|
|
@@ -2071,9 +2187,9 @@ dependencies = [
|
|
|
2071
2187
|
|
|
2072
2188
|
[[package]]
|
|
2073
2189
|
name = "idna_adapter"
|
|
2074
|
-
version = "1.2.
|
|
2190
|
+
version = "1.2.2"
|
|
2075
2191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2076
|
-
checksum = "
|
|
2192
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
2077
2193
|
dependencies = [
|
|
2078
2194
|
"icu_normalizer",
|
|
2079
2195
|
"icu_properties",
|
|
@@ -2170,6 +2286,15 @@ version = "0.5.0"
|
|
|
2170
2286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2171
2287
|
checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
|
|
2172
2288
|
|
|
2289
|
+
[[package]]
|
|
2290
|
+
name = "intrusive-collections"
|
|
2291
|
+
version = "0.9.7"
|
|
2292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2293
|
+
checksum = "189d0897e4cbe8c75efedf3502c18c887b05046e59d28404d4d8e46cbc4d1e86"
|
|
2294
|
+
dependencies = [
|
|
2295
|
+
"memoffset",
|
|
2296
|
+
]
|
|
2297
|
+
|
|
2173
2298
|
[[package]]
|
|
2174
2299
|
name = "ipnet"
|
|
2175
2300
|
version = "2.12.0"
|
|
@@ -2277,9 +2402,9 @@ dependencies = [
|
|
|
2277
2402
|
|
|
2278
2403
|
[[package]]
|
|
2279
2404
|
name = "jiff"
|
|
2280
|
-
version = "0.2.
|
|
2405
|
+
version = "0.2.24"
|
|
2281
2406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2282
|
-
checksum = "
|
|
2407
|
+
checksum = "f00b5dbd620d61dfdcb6007c9c1f6054ebd75319f163d886a9055cec1155073d"
|
|
2283
2408
|
dependencies = [
|
|
2284
2409
|
"jiff-static",
|
|
2285
2410
|
"jiff-tzdb-platform",
|
|
@@ -2292,9 +2417,9 @@ dependencies = [
|
|
|
2292
2417
|
|
|
2293
2418
|
[[package]]
|
|
2294
2419
|
name = "jiff-static"
|
|
2295
|
-
version = "0.2.
|
|
2420
|
+
version = "0.2.24"
|
|
2296
2421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2297
|
-
checksum = "
|
|
2422
|
+
checksum = "e000de030ff8022ea1da3f466fbb0f3a809f5e51ed31f6dd931c35181ad8e6d7"
|
|
2298
2423
|
dependencies = [
|
|
2299
2424
|
"proc-macro2",
|
|
2300
2425
|
"quote",
|
|
@@ -2333,27 +2458,32 @@ dependencies = [
|
|
|
2333
2458
|
|
|
2334
2459
|
[[package]]
|
|
2335
2460
|
name = "jni"
|
|
2336
|
-
version = "0.
|
|
2461
|
+
version = "0.22.4"
|
|
2337
2462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2338
|
-
checksum = "
|
|
2463
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
2339
2464
|
dependencies = [
|
|
2340
|
-
"cesu8",
|
|
2341
2465
|
"cfg-if",
|
|
2342
2466
|
"combine",
|
|
2343
|
-
"jni-
|
|
2467
|
+
"jni-macros",
|
|
2468
|
+
"jni-sys",
|
|
2344
2469
|
"log",
|
|
2345
|
-
"
|
|
2470
|
+
"simd_cesu8",
|
|
2471
|
+
"thiserror 2.0.18",
|
|
2346
2472
|
"walkdir",
|
|
2347
|
-
"windows-
|
|
2473
|
+
"windows-link",
|
|
2348
2474
|
]
|
|
2349
2475
|
|
|
2350
2476
|
[[package]]
|
|
2351
|
-
name = "jni-
|
|
2352
|
-
version = "0.
|
|
2477
|
+
name = "jni-macros"
|
|
2478
|
+
version = "0.22.4"
|
|
2353
2479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
-
checksum = "
|
|
2480
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
2355
2481
|
dependencies = [
|
|
2356
|
-
"
|
|
2482
|
+
"proc-macro2",
|
|
2483
|
+
"quote",
|
|
2484
|
+
"rustc_version",
|
|
2485
|
+
"simd_cesu8",
|
|
2486
|
+
"syn",
|
|
2357
2487
|
]
|
|
2358
2488
|
|
|
2359
2489
|
[[package]]
|
|
@@ -2387,9 +2517,9 @@ dependencies = [
|
|
|
2387
2517
|
|
|
2388
2518
|
[[package]]
|
|
2389
2519
|
name = "js-sys"
|
|
2390
|
-
version = "0.3.
|
|
2520
|
+
version = "0.3.97"
|
|
2391
2521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2392
|
-
checksum = "
|
|
2522
|
+
checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
|
|
2393
2523
|
dependencies = [
|
|
2394
2524
|
"cfg-if",
|
|
2395
2525
|
"futures-util",
|
|
@@ -2459,9 +2589,19 @@ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
|
2459
2589
|
|
|
2460
2590
|
[[package]]
|
|
2461
2591
|
name = "libc"
|
|
2462
|
-
version = "0.2.
|
|
2592
|
+
version = "0.2.186"
|
|
2593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2594
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
2595
|
+
|
|
2596
|
+
[[package]]
|
|
2597
|
+
name = "libloading"
|
|
2598
|
+
version = "0.8.9"
|
|
2463
2599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2464
|
-
checksum = "
|
|
2600
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
2601
|
+
dependencies = [
|
|
2602
|
+
"cfg-if",
|
|
2603
|
+
"windows-link",
|
|
2604
|
+
]
|
|
2465
2605
|
|
|
2466
2606
|
[[package]]
|
|
2467
2607
|
name = "libloading"
|
|
@@ -2479,6 +2619,26 @@ version = "0.2.16"
|
|
|
2479
2619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2480
2620
|
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
2481
2621
|
|
|
2622
|
+
[[package]]
|
|
2623
|
+
name = "linkme"
|
|
2624
|
+
version = "0.3.36"
|
|
2625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2626
|
+
checksum = "e83272d46373fb8decca684579ac3e7c8f3d71d4cc3aa693df8759e260ae41cf"
|
|
2627
|
+
dependencies = [
|
|
2628
|
+
"linkme-impl",
|
|
2629
|
+
]
|
|
2630
|
+
|
|
2631
|
+
[[package]]
|
|
2632
|
+
name = "linkme-impl"
|
|
2633
|
+
version = "0.3.36"
|
|
2634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2635
|
+
checksum = "32d59e20403c7d08fe62b4376edfe5c7fb2ef1e6b1465379686d0f21c8df444b"
|
|
2636
|
+
dependencies = [
|
|
2637
|
+
"proc-macro2",
|
|
2638
|
+
"quote",
|
|
2639
|
+
"syn",
|
|
2640
|
+
]
|
|
2641
|
+
|
|
2482
2642
|
[[package]]
|
|
2483
2643
|
name = "linux-raw-sys"
|
|
2484
2644
|
version = "0.12.1"
|
|
@@ -2506,6 +2666,19 @@ version = "0.4.29"
|
|
|
2506
2666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2507
2667
|
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
2508
2668
|
|
|
2669
|
+
[[package]]
|
|
2670
|
+
name = "loom"
|
|
2671
|
+
version = "0.7.2"
|
|
2672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2673
|
+
checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
|
|
2674
|
+
dependencies = [
|
|
2675
|
+
"cfg-if",
|
|
2676
|
+
"generator",
|
|
2677
|
+
"scoped-tls",
|
|
2678
|
+
"tracing",
|
|
2679
|
+
"tracing-subscriber",
|
|
2680
|
+
]
|
|
2681
|
+
|
|
2509
2682
|
[[package]]
|
|
2510
2683
|
name = "manyhow"
|
|
2511
2684
|
version = "0.11.4"
|
|
@@ -2529,6 +2702,15 @@ dependencies = [
|
|
|
2529
2702
|
"quote",
|
|
2530
2703
|
]
|
|
2531
2704
|
|
|
2705
|
+
[[package]]
|
|
2706
|
+
name = "matchers"
|
|
2707
|
+
version = "0.2.0"
|
|
2708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2709
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
2710
|
+
dependencies = [
|
|
2711
|
+
"regex-automata",
|
|
2712
|
+
]
|
|
2713
|
+
|
|
2532
2714
|
[[package]]
|
|
2533
2715
|
name = "md-5"
|
|
2534
2716
|
version = "0.11.0"
|
|
@@ -2551,6 +2733,37 @@ version = "2.8.0"
|
|
|
2551
2733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
2734
|
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
2553
2735
|
|
|
2736
|
+
[[package]]
|
|
2737
|
+
name = "memoffset"
|
|
2738
|
+
version = "0.9.1"
|
|
2739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
2741
|
+
dependencies = [
|
|
2742
|
+
"autocfg",
|
|
2743
|
+
]
|
|
2744
|
+
|
|
2745
|
+
[[package]]
|
|
2746
|
+
name = "miette"
|
|
2747
|
+
version = "7.6.0"
|
|
2748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2749
|
+
checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
|
|
2750
|
+
dependencies = [
|
|
2751
|
+
"cfg-if",
|
|
2752
|
+
"miette-derive",
|
|
2753
|
+
"unicode-width 0.1.14",
|
|
2754
|
+
]
|
|
2755
|
+
|
|
2756
|
+
[[package]]
|
|
2757
|
+
name = "miette-derive"
|
|
2758
|
+
version = "7.6.0"
|
|
2759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2760
|
+
checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
|
|
2761
|
+
dependencies = [
|
|
2762
|
+
"proc-macro2",
|
|
2763
|
+
"quote",
|
|
2764
|
+
"syn",
|
|
2765
|
+
]
|
|
2766
|
+
|
|
2554
2767
|
[[package]]
|
|
2555
2768
|
name = "miniz_oxide"
|
|
2556
2769
|
version = "0.8.9"
|
|
@@ -2574,9 +2787,9 @@ dependencies = [
|
|
|
2574
2787
|
|
|
2575
2788
|
[[package]]
|
|
2576
2789
|
name = "ml-kem"
|
|
2577
|
-
version = "0.3.0-rc.
|
|
2790
|
+
version = "0.3.0-rc.1"
|
|
2578
2791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2579
|
-
checksum = "
|
|
2792
|
+
checksum = "8198b5db27ac9773534c371751a59dc18aec8b80aa141e69abfdd1dec2e3f78c"
|
|
2580
2793
|
dependencies = [
|
|
2581
2794
|
"hybrid-array",
|
|
2582
2795
|
"kem",
|
|
@@ -2587,9 +2800,9 @@ dependencies = [
|
|
|
2587
2800
|
|
|
2588
2801
|
[[package]]
|
|
2589
2802
|
name = "module-lattice"
|
|
2590
|
-
version = "0.2.
|
|
2803
|
+
version = "0.2.2"
|
|
2591
2804
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2592
|
-
checksum = "
|
|
2805
|
+
checksum = "dc7c90d33a0dac244570c26461d761ffaeadb3bfc2b17cc625ae2185cafdffae"
|
|
2593
2806
|
dependencies = [
|
|
2594
2807
|
"ctutils",
|
|
2595
2808
|
"hybrid-array",
|
|
@@ -2621,14 +2834,14 @@ dependencies = [
|
|
|
2621
2834
|
"serde",
|
|
2622
2835
|
"smallvec",
|
|
2623
2836
|
"speedate",
|
|
2624
|
-
"strum",
|
|
2837
|
+
"strum 0.27.2",
|
|
2625
2838
|
]
|
|
2626
2839
|
|
|
2627
2840
|
[[package]]
|
|
2628
2841
|
name = "napi"
|
|
2629
|
-
version = "3.8.
|
|
2842
|
+
version = "3.8.6"
|
|
2630
2843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2631
|
-
checksum = "
|
|
2844
|
+
checksum = "8e55037284865448ecf329baa86a4d05401f647ebde99f5747b640d32c2c5226"
|
|
2632
2845
|
dependencies = [
|
|
2633
2846
|
"bitflags",
|
|
2634
2847
|
"ctor",
|
|
@@ -2648,9 +2861,9 @@ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
|
2648
2861
|
|
|
2649
2862
|
[[package]]
|
|
2650
2863
|
name = "napi-derive"
|
|
2651
|
-
version = "3.5.
|
|
2864
|
+
version = "3.5.5"
|
|
2652
2865
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2653
|
-
checksum = "
|
|
2866
|
+
checksum = "a4ba740fe4c9524d86fd90798fd8ccdb23402b3eef7e7c30897a8a369b529fcf"
|
|
2654
2867
|
dependencies = [
|
|
2655
2868
|
"convert_case",
|
|
2656
2869
|
"ctor",
|
|
@@ -2662,9 +2875,9 @@ dependencies = [
|
|
|
2662
2875
|
|
|
2663
2876
|
[[package]]
|
|
2664
2877
|
name = "napi-derive-backend"
|
|
2665
|
-
version = "5.0.
|
|
2878
|
+
version = "5.0.4"
|
|
2666
2879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2667
|
-
checksum = "
|
|
2880
|
+
checksum = "0d5af30503edf933ce7377cf6d4c877a62b0f1107ea05585f1b5e430e88d5baf"
|
|
2668
2881
|
dependencies = [
|
|
2669
2882
|
"convert_case",
|
|
2670
2883
|
"proc-macro2",
|
|
@@ -2679,7 +2892,7 @@ version = "3.2.1"
|
|
|
2679
2892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2680
2893
|
checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
|
|
2681
2894
|
dependencies = [
|
|
2682
|
-
"libloading",
|
|
2895
|
+
"libloading 0.9.0",
|
|
2683
2896
|
]
|
|
2684
2897
|
|
|
2685
2898
|
[[package]]
|
|
@@ -2715,6 +2928,15 @@ version = "0.5.5"
|
|
|
2715
2928
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2716
2929
|
checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
|
|
2717
2930
|
|
|
2931
|
+
[[package]]
|
|
2932
|
+
name = "nu-ansi-term"
|
|
2933
|
+
version = "0.50.3"
|
|
2934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2935
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
2936
|
+
dependencies = [
|
|
2937
|
+
"windows-sys 0.61.2",
|
|
2938
|
+
]
|
|
2939
|
+
|
|
2718
2940
|
[[package]]
|
|
2719
2941
|
name = "num-bigint"
|
|
2720
2942
|
version = "0.4.6"
|
|
@@ -2810,6 +3032,12 @@ dependencies = [
|
|
|
2810
3032
|
"indexmap",
|
|
2811
3033
|
]
|
|
2812
3034
|
|
|
3035
|
+
[[package]]
|
|
3036
|
+
name = "owo-colors"
|
|
3037
|
+
version = "3.5.0"
|
|
3038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3039
|
+
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
|
|
3040
|
+
|
|
2813
3041
|
[[package]]
|
|
2814
3042
|
name = "owo-colors"
|
|
2815
3043
|
version = "4.3.0"
|
|
@@ -2823,12 +3051,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2823
3051
|
checksum = "4356a61f2ed4c9b3610245215fbf48970eb277126919f87db9d0efa93a74245c"
|
|
2824
3052
|
dependencies = [
|
|
2825
3053
|
"cfg-if",
|
|
2826
|
-
"owo-colors",
|
|
3054
|
+
"owo-colors 4.3.0",
|
|
2827
3055
|
"oxc-miette-derive",
|
|
2828
3056
|
"textwrap",
|
|
2829
3057
|
"thiserror 2.0.18",
|
|
2830
3058
|
"unicode-segmentation",
|
|
2831
|
-
"unicode-width",
|
|
3059
|
+
"unicode-width 0.2.2",
|
|
2832
3060
|
]
|
|
2833
3061
|
|
|
2834
3062
|
[[package]]
|
|
@@ -3018,9 +3246,9 @@ dependencies = [
|
|
|
3018
3246
|
|
|
3019
3247
|
[[package]]
|
|
3020
3248
|
name = "p256"
|
|
3021
|
-
version = "0.14.0-rc.
|
|
3249
|
+
version = "0.14.0-rc.7"
|
|
3022
3250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3023
|
-
checksum = "
|
|
3251
|
+
checksum = "018bfbb86e05fd70a83e985921241035ee09fcd369c4a2c3680b389a01d2ad28"
|
|
3024
3252
|
dependencies = [
|
|
3025
3253
|
"ecdsa",
|
|
3026
3254
|
"elliptic-curve",
|
|
@@ -3031,9 +3259,9 @@ dependencies = [
|
|
|
3031
3259
|
|
|
3032
3260
|
[[package]]
|
|
3033
3261
|
name = "p384"
|
|
3034
|
-
version = "0.14.0-rc.
|
|
3262
|
+
version = "0.14.0-rc.7"
|
|
3035
3263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3036
|
-
checksum = "
|
|
3264
|
+
checksum = "8c91df688211f5957dbe2ab599dcbcaade8d6d3cdc15c5b350d350d7d07ce423"
|
|
3037
3265
|
dependencies = [
|
|
3038
3266
|
"ecdsa",
|
|
3039
3267
|
"elliptic-curve",
|
|
@@ -3045,9 +3273,9 @@ dependencies = [
|
|
|
3045
3273
|
|
|
3046
3274
|
[[package]]
|
|
3047
3275
|
name = "p521"
|
|
3048
|
-
version = "0.14.0-rc.
|
|
3276
|
+
version = "0.14.0-rc.7"
|
|
3049
3277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3050
|
-
checksum = "
|
|
3278
|
+
checksum = "de6cd9451de522549d36cc78a1b45a699a3d55a872e8ea0c8f0318e502d99e2c"
|
|
3051
3279
|
dependencies = [
|
|
3052
3280
|
"base16ct",
|
|
3053
3281
|
"ecdsa",
|
|
@@ -3057,6 +3285,15 @@ dependencies = [
|
|
|
3057
3285
|
"sha2 0.11.0",
|
|
3058
3286
|
]
|
|
3059
3287
|
|
|
3288
|
+
[[package]]
|
|
3289
|
+
name = "pack1"
|
|
3290
|
+
version = "1.0.0"
|
|
3291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3292
|
+
checksum = "d6e7cd9bd638dc2c831519a0caa1c006cab771a92b1303403a8322773c5b72d6"
|
|
3293
|
+
dependencies = [
|
|
3294
|
+
"bytemuck",
|
|
3295
|
+
]
|
|
3296
|
+
|
|
3060
3297
|
[[package]]
|
|
3061
3298
|
name = "page_size"
|
|
3062
3299
|
version = "0.6.0"
|
|
@@ -3094,7 +3331,7 @@ checksum = "6978128c8b51d8f4080631ceb2302ab51e32cc6e8615f735ee2f83fd269ae3f1"
|
|
|
3094
3331
|
dependencies = [
|
|
3095
3332
|
"bytecount",
|
|
3096
3333
|
"fnv",
|
|
3097
|
-
"unicode-width",
|
|
3334
|
+
"unicode-width 0.2.2",
|
|
3098
3335
|
]
|
|
3099
3336
|
|
|
3100
3337
|
[[package]]
|
|
@@ -3131,6 +3368,12 @@ dependencies = [
|
|
|
3131
3368
|
"subtle",
|
|
3132
3369
|
]
|
|
3133
3370
|
|
|
3371
|
+
[[package]]
|
|
3372
|
+
name = "paste"
|
|
3373
|
+
version = "1.0.15"
|
|
3374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3375
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
3376
|
+
|
|
3134
3377
|
[[package]]
|
|
3135
3378
|
name = "pbkdf2"
|
|
3136
3379
|
version = "0.12.2"
|
|
@@ -3143,9 +3386,9 @@ dependencies = [
|
|
|
3143
3386
|
|
|
3144
3387
|
[[package]]
|
|
3145
3388
|
name = "pbkdf2"
|
|
3146
|
-
version = "0.13.0
|
|
3389
|
+
version = "0.13.0"
|
|
3147
3390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3148
|
-
checksum = "
|
|
3391
|
+
checksum = "112d82ceb8c5bf524d9af484d4e4970c9fd5a0cc15ba14ad93dccd28873b0629"
|
|
3149
3392
|
dependencies = [
|
|
3150
3393
|
"digest 0.11.2",
|
|
3151
3394
|
"hmac 0.13.0",
|
|
@@ -3269,7 +3512,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3269
3512
|
checksum = "986d2e952779af96ea048f160fd9194e1751b4faea78bcf3ceb456efe008088e"
|
|
3270
3513
|
dependencies = [
|
|
3271
3514
|
"der 0.8.0",
|
|
3272
|
-
"spki 0.8.0",
|
|
3515
|
+
"spki 0.8.0-rc.4",
|
|
3273
3516
|
]
|
|
3274
3517
|
|
|
3275
3518
|
[[package]]
|
|
@@ -3282,11 +3525,11 @@ dependencies = [
|
|
|
3282
3525
|
"aes-gcm 0.11.0-rc.3",
|
|
3283
3526
|
"cbc 0.2.0",
|
|
3284
3527
|
"der 0.8.0",
|
|
3285
|
-
"pbkdf2 0.13.0
|
|
3528
|
+
"pbkdf2 0.13.0",
|
|
3286
3529
|
"rand_core 0.10.1",
|
|
3287
3530
|
"scrypt",
|
|
3288
3531
|
"sha2 0.11.0",
|
|
3289
|
-
"spki 0.8.0",
|
|
3532
|
+
"spki 0.8.0-rc.4",
|
|
3290
3533
|
]
|
|
3291
3534
|
|
|
3292
3535
|
[[package]]
|
|
@@ -3308,7 +3551,7 @@ dependencies = [
|
|
|
3308
3551
|
"der 0.8.0",
|
|
3309
3552
|
"pkcs5",
|
|
3310
3553
|
"rand_core 0.10.1",
|
|
3311
|
-
"spki 0.8.0",
|
|
3554
|
+
"spki 0.8.0-rc.4",
|
|
3312
3555
|
]
|
|
3313
3556
|
|
|
3314
3557
|
[[package]]
|
|
@@ -3339,6 +3582,20 @@ dependencies = [
|
|
|
3339
3582
|
"plotters-backend",
|
|
3340
3583
|
]
|
|
3341
3584
|
|
|
3585
|
+
[[package]]
|
|
3586
|
+
name = "polling"
|
|
3587
|
+
version = "3.11.0"
|
|
3588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3589
|
+
checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
|
|
3590
|
+
dependencies = [
|
|
3591
|
+
"cfg-if",
|
|
3592
|
+
"concurrent-queue",
|
|
3593
|
+
"hermit-abi",
|
|
3594
|
+
"pin-project-lite",
|
|
3595
|
+
"rustix",
|
|
3596
|
+
"windows-sys 0.61.2",
|
|
3597
|
+
]
|
|
3598
|
+
|
|
3342
3599
|
[[package]]
|
|
3343
3600
|
name = "poly1305"
|
|
3344
3601
|
version = "0.8.0"
|
|
@@ -3381,9 +3638,9 @@ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
|
3381
3638
|
|
|
3382
3639
|
[[package]]
|
|
3383
3640
|
name = "portable-atomic-util"
|
|
3384
|
-
version = "0.2.
|
|
3641
|
+
version = "0.2.7"
|
|
3385
3642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3386
|
-
checksum = "
|
|
3643
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
3387
3644
|
dependencies = [
|
|
3388
3645
|
"portable-atomic",
|
|
3389
3646
|
]
|
|
@@ -3441,9 +3698,9 @@ dependencies = [
|
|
|
3441
3698
|
|
|
3442
3699
|
[[package]]
|
|
3443
3700
|
name = "primefield"
|
|
3444
|
-
version = "0.14.0-rc.
|
|
3701
|
+
version = "0.14.0-rc.7"
|
|
3445
3702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3446
|
-
checksum = "
|
|
3703
|
+
checksum = "93401c13cc7ff24684571cfca9d3cf9ebabfaf3d4b7b9963ade41ec54da196b5"
|
|
3447
3704
|
dependencies = [
|
|
3448
3705
|
"crypto-bigint",
|
|
3449
3706
|
"crypto-common 0.2.1",
|
|
@@ -3455,9 +3712,9 @@ dependencies = [
|
|
|
3455
3712
|
|
|
3456
3713
|
[[package]]
|
|
3457
3714
|
name = "primeorder"
|
|
3458
|
-
version = "0.14.0-rc.
|
|
3715
|
+
version = "0.14.0-rc.7"
|
|
3459
3716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3460
|
-
checksum = "
|
|
3717
|
+
checksum = "a0c5c8a39bcd764bfedf456e8d55e115fe86dda3e0f555371849f2a41cbc9706"
|
|
3461
3718
|
dependencies = [
|
|
3462
3719
|
"elliptic-curve",
|
|
3463
3720
|
]
|
|
@@ -3749,14 +4006,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3749
4006
|
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
3750
4007
|
|
|
3751
4008
|
[[package]]
|
|
3752
|
-
name = "
|
|
3753
|
-
version = "0.
|
|
4009
|
+
name = "rand_pcg"
|
|
4010
|
+
version = "0.3.1"
|
|
4011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4012
|
+
checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e"
|
|
4013
|
+
dependencies = [
|
|
4014
|
+
"rand_core 0.6.4",
|
|
4015
|
+
]
|
|
4016
|
+
|
|
4017
|
+
[[package]]
|
|
4018
|
+
name = "rand_xorshift"
|
|
4019
|
+
version = "0.4.0"
|
|
3754
4020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3755
4021
|
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
3756
4022
|
dependencies = [
|
|
3757
4023
|
"rand_core 0.9.5",
|
|
3758
4024
|
]
|
|
3759
4025
|
|
|
4026
|
+
[[package]]
|
|
4027
|
+
name = "rapidhash"
|
|
4028
|
+
version = "4.4.1"
|
|
4029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4030
|
+
checksum = "b5e48930979c155e2f33aa36ab3119b5ee81332beb6482199a8ecd6029b80b59"
|
|
4031
|
+
dependencies = [
|
|
4032
|
+
"rustversion",
|
|
4033
|
+
]
|
|
4034
|
+
|
|
3760
4035
|
[[package]]
|
|
3761
4036
|
name = "rayon"
|
|
3762
4037
|
version = "1.12.0"
|
|
@@ -3843,9 +4118,9 @@ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
|
3843
4118
|
|
|
3844
4119
|
[[package]]
|
|
3845
4120
|
name = "reqwest"
|
|
3846
|
-
version = "0.13.
|
|
4121
|
+
version = "0.13.3"
|
|
3847
4122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3848
|
-
checksum = "
|
|
4123
|
+
checksum = "62e0021ea2c22aed41653bc7e1419abb2c97e038ff2c33d0e1309e49a97deec0"
|
|
3849
4124
|
dependencies = [
|
|
3850
4125
|
"base64",
|
|
3851
4126
|
"bytes",
|
|
@@ -3904,11 +4179,21 @@ dependencies = [
|
|
|
3904
4179
|
"windows-sys 0.52.0",
|
|
3905
4180
|
]
|
|
3906
4181
|
|
|
4182
|
+
[[package]]
|
|
4183
|
+
name = "roaring"
|
|
4184
|
+
version = "0.11.4"
|
|
4185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4186
|
+
checksum = "1dedc5658c6ecb3bdb5ef5f3295bb9253f42dcf3fd1402c03f6b1f7659c3c4a9"
|
|
4187
|
+
dependencies = [
|
|
4188
|
+
"bytemuck",
|
|
4189
|
+
"byteorder",
|
|
4190
|
+
]
|
|
4191
|
+
|
|
3907
4192
|
[[package]]
|
|
3908
4193
|
name = "rsa"
|
|
3909
|
-
version = "0.10.0-rc.
|
|
4194
|
+
version = "0.10.0-rc.16"
|
|
3910
4195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3911
|
-
checksum = "
|
|
4196
|
+
checksum = "6fb9fd8c1edd9e6a2693623baf0fe77ff05ce022a5d7746900ffc38a15c233de"
|
|
3912
4197
|
dependencies = [
|
|
3913
4198
|
"const-oid 0.10.2",
|
|
3914
4199
|
"crypto-bigint",
|
|
@@ -3919,7 +4204,7 @@ dependencies = [
|
|
|
3919
4204
|
"rand_core 0.10.1",
|
|
3920
4205
|
"sha2 0.11.0",
|
|
3921
4206
|
"signature 3.0.0-rc.10",
|
|
3922
|
-
"spki 0.8.0",
|
|
4207
|
+
"spki 0.8.0-rc.4",
|
|
3923
4208
|
"zeroize",
|
|
3924
4209
|
]
|
|
3925
4210
|
|
|
@@ -3991,19 +4276,24 @@ dependencies = [
|
|
|
3991
4276
|
|
|
3992
4277
|
[[package]]
|
|
3993
4278
|
name = "russh"
|
|
3994
|
-
version = "0.60.
|
|
4279
|
+
version = "0.60.2"
|
|
3995
4280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3996
|
-
checksum = "
|
|
4281
|
+
checksum = "9c9e358980fe9b079b99da387117864ee6f0a3fd02f39e5b5fde6af9c2895374"
|
|
3997
4282
|
dependencies = [
|
|
4283
|
+
"aead 0.6.0-rc.10",
|
|
3998
4284
|
"aes 0.8.4",
|
|
4285
|
+
"aes 0.9.0",
|
|
4286
|
+
"aes-gcm 0.11.0-rc.3",
|
|
3999
4287
|
"aws-lc-rs",
|
|
4000
4288
|
"bitflags",
|
|
4001
4289
|
"block-padding 0.3.3",
|
|
4002
4290
|
"byteorder",
|
|
4003
4291
|
"bytes",
|
|
4004
4292
|
"cbc 0.1.2",
|
|
4293
|
+
"cbc 0.2.0",
|
|
4005
4294
|
"cipher 0.5.1",
|
|
4006
4295
|
"crypto-bigint",
|
|
4296
|
+
"ctr 0.10.0",
|
|
4007
4297
|
"ctr 0.9.2",
|
|
4008
4298
|
"curve25519-dalek 5.0.0-pre.6",
|
|
4009
4299
|
"data-encoding",
|
|
@@ -4016,22 +4306,28 @@ dependencies = [
|
|
|
4016
4306
|
"enum_dispatch",
|
|
4017
4307
|
"flate2",
|
|
4018
4308
|
"futures",
|
|
4019
|
-
"generic-array 1.
|
|
4309
|
+
"generic-array 1.4.1",
|
|
4020
4310
|
"getrandom 0.2.17",
|
|
4311
|
+
"ghash 0.6.0",
|
|
4021
4312
|
"hex-literal",
|
|
4313
|
+
"hkdf",
|
|
4022
4314
|
"hmac 0.12.1",
|
|
4315
|
+
"hmac 0.13.0",
|
|
4023
4316
|
"inout 0.1.4",
|
|
4024
4317
|
"internal-russh-forked-ssh-key",
|
|
4025
4318
|
"internal-russh-num-bigint",
|
|
4319
|
+
"keccak",
|
|
4026
4320
|
"log",
|
|
4027
4321
|
"md5",
|
|
4028
4322
|
"ml-kem",
|
|
4029
4323
|
"module-lattice",
|
|
4324
|
+
"num-bigint",
|
|
4030
4325
|
"p256",
|
|
4031
4326
|
"p384",
|
|
4032
4327
|
"p521",
|
|
4033
4328
|
"pageant",
|
|
4034
4329
|
"pbkdf2 0.12.2",
|
|
4330
|
+
"pbkdf2 0.13.0",
|
|
4035
4331
|
"pkcs1",
|
|
4036
4332
|
"pkcs5",
|
|
4037
4333
|
"pkcs8 0.11.0-rc.11",
|
|
@@ -4041,11 +4337,16 @@ dependencies = [
|
|
|
4041
4337
|
"rsa",
|
|
4042
4338
|
"russh-cryptovec",
|
|
4043
4339
|
"russh-util",
|
|
4340
|
+
"salsa20",
|
|
4341
|
+
"scrypt",
|
|
4044
4342
|
"sec1",
|
|
4045
4343
|
"sha1 0.10.6",
|
|
4344
|
+
"sha1 0.11.0",
|
|
4046
4345
|
"sha2 0.10.9",
|
|
4346
|
+
"sha2 0.11.0",
|
|
4347
|
+
"sha3",
|
|
4047
4348
|
"signature 3.0.0-rc.10",
|
|
4048
|
-
"spki 0.8.0",
|
|
4349
|
+
"spki 0.8.0-rc.4",
|
|
4049
4350
|
"ssh-encoding",
|
|
4050
4351
|
"subtle",
|
|
4051
4352
|
"thiserror 2.0.18",
|
|
@@ -4094,6 +4395,16 @@ dependencies = [
|
|
|
4094
4395
|
"semver",
|
|
4095
4396
|
]
|
|
4096
4397
|
|
|
4398
|
+
[[package]]
|
|
4399
|
+
name = "rustc_version_runtime"
|
|
4400
|
+
version = "0.3.0"
|
|
4401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4402
|
+
checksum = "2dd18cd2bae1820af0b6ad5e54f4a51d0f3fcc53b05f845675074efcc7af071d"
|
|
4403
|
+
dependencies = [
|
|
4404
|
+
"rustc_version",
|
|
4405
|
+
"semver",
|
|
4406
|
+
]
|
|
4407
|
+
|
|
4097
4408
|
[[package]]
|
|
4098
4409
|
name = "rustcrypto-ff"
|
|
4099
4410
|
version = "0.14.0-rc.1"
|
|
@@ -4130,9 +4441,9 @@ dependencies = [
|
|
|
4130
4441
|
|
|
4131
4442
|
[[package]]
|
|
4132
4443
|
name = "rustls"
|
|
4133
|
-
version = "0.23.
|
|
4444
|
+
version = "0.23.40"
|
|
4134
4445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4135
|
-
checksum = "
|
|
4446
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
4136
4447
|
dependencies = [
|
|
4137
4448
|
"log",
|
|
4138
4449
|
"once_cell",
|
|
@@ -4157,18 +4468,18 @@ dependencies = [
|
|
|
4157
4468
|
|
|
4158
4469
|
[[package]]
|
|
4159
4470
|
name = "rustls-pki-types"
|
|
4160
|
-
version = "1.14.
|
|
4471
|
+
version = "1.14.1"
|
|
4161
4472
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4162
|
-
checksum = "
|
|
4473
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
4163
4474
|
dependencies = [
|
|
4164
4475
|
"zeroize",
|
|
4165
4476
|
]
|
|
4166
4477
|
|
|
4167
4478
|
[[package]]
|
|
4168
4479
|
name = "rustls-platform-verifier"
|
|
4169
|
-
version = "0.
|
|
4480
|
+
version = "0.7.0"
|
|
4170
4481
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4171
|
-
checksum = "
|
|
4482
|
+
checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
4172
4483
|
dependencies = [
|
|
4173
4484
|
"core-foundation",
|
|
4174
4485
|
"core-foundation-sys",
|
|
@@ -4236,7 +4547,7 @@ dependencies = [
|
|
|
4236
4547
|
"nix",
|
|
4237
4548
|
"radix_trie",
|
|
4238
4549
|
"unicode-segmentation",
|
|
4239
|
-
"unicode-width",
|
|
4550
|
+
"unicode-width 0.2.2",
|
|
4240
4551
|
"utf8parse",
|
|
4241
4552
|
"windows-sys 0.61.2",
|
|
4242
4553
|
]
|
|
@@ -4309,6 +4620,12 @@ dependencies = [
|
|
|
4309
4620
|
"syn",
|
|
4310
4621
|
]
|
|
4311
4622
|
|
|
4623
|
+
[[package]]
|
|
4624
|
+
name = "scoped-tls"
|
|
4625
|
+
version = "1.0.1"
|
|
4626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4627
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
4628
|
+
|
|
4312
4629
|
[[package]]
|
|
4313
4630
|
name = "scopeguard"
|
|
4314
4631
|
version = "1.2.0"
|
|
@@ -4317,12 +4634,12 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
4317
4634
|
|
|
4318
4635
|
[[package]]
|
|
4319
4636
|
name = "scrypt"
|
|
4320
|
-
version = "0.12.0
|
|
4637
|
+
version = "0.12.0"
|
|
4321
4638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4322
|
-
checksum = "
|
|
4639
|
+
checksum = "d87af57419b594aa23fa95f09f0e06d80d84ba01c26148c43844cad6ff4485f0"
|
|
4323
4640
|
dependencies = [
|
|
4324
4641
|
"cfg-if",
|
|
4325
|
-
"pbkdf2 0.13.0
|
|
4642
|
+
"pbkdf2 0.13.0",
|
|
4326
4643
|
"salsa20",
|
|
4327
4644
|
"sha2 0.11.0",
|
|
4328
4645
|
]
|
|
@@ -4500,6 +4817,12 @@ dependencies = [
|
|
|
4500
4817
|
"digest 0.11.2",
|
|
4501
4818
|
]
|
|
4502
4819
|
|
|
4820
|
+
[[package]]
|
|
4821
|
+
name = "sha1_smol"
|
|
4822
|
+
version = "1.0.1"
|
|
4823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4824
|
+
checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
|
|
4825
|
+
|
|
4503
4826
|
[[package]]
|
|
4504
4827
|
name = "sha2"
|
|
4505
4828
|
version = "0.10.9"
|
|
@@ -4532,12 +4855,41 @@ dependencies = [
|
|
|
4532
4855
|
"keccak",
|
|
4533
4856
|
]
|
|
4534
4857
|
|
|
4858
|
+
[[package]]
|
|
4859
|
+
name = "sharded-slab"
|
|
4860
|
+
version = "0.1.7"
|
|
4861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4862
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
4863
|
+
dependencies = [
|
|
4864
|
+
"lazy_static",
|
|
4865
|
+
]
|
|
4866
|
+
|
|
4535
4867
|
[[package]]
|
|
4536
4868
|
name = "shlex"
|
|
4537
4869
|
version = "1.3.0"
|
|
4538
4870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4539
4871
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
4540
4872
|
|
|
4873
|
+
[[package]]
|
|
4874
|
+
name = "shuttle"
|
|
4875
|
+
version = "0.8.1"
|
|
4876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4877
|
+
checksum = "2ab17edba38d63047f46780cf7360acf7467fec2c048928689a5c1dd1c2b4e31"
|
|
4878
|
+
dependencies = [
|
|
4879
|
+
"assoc",
|
|
4880
|
+
"bitvec",
|
|
4881
|
+
"cfg-if",
|
|
4882
|
+
"generator",
|
|
4883
|
+
"hex",
|
|
4884
|
+
"owo-colors 3.5.0",
|
|
4885
|
+
"rand 0.8.6",
|
|
4886
|
+
"rand_core 0.6.4",
|
|
4887
|
+
"rand_pcg",
|
|
4888
|
+
"scoped-tls",
|
|
4889
|
+
"smallvec",
|
|
4890
|
+
"tracing",
|
|
4891
|
+
]
|
|
4892
|
+
|
|
4541
4893
|
[[package]]
|
|
4542
4894
|
name = "signal-hook"
|
|
4543
4895
|
version = "0.4.4"
|
|
@@ -4583,12 +4935,37 @@ version = "0.3.9"
|
|
|
4583
4935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4584
4936
|
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
4585
4937
|
|
|
4938
|
+
[[package]]
|
|
4939
|
+
name = "simd_cesu8"
|
|
4940
|
+
version = "1.1.1"
|
|
4941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4942
|
+
checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
|
|
4943
|
+
dependencies = [
|
|
4944
|
+
"rustc_version",
|
|
4945
|
+
"simdutf8",
|
|
4946
|
+
]
|
|
4947
|
+
|
|
4948
|
+
[[package]]
|
|
4949
|
+
name = "simdutf8"
|
|
4950
|
+
version = "0.1.5"
|
|
4951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4952
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
4953
|
+
|
|
4586
4954
|
[[package]]
|
|
4587
4955
|
name = "similar"
|
|
4588
4956
|
version = "2.7.0"
|
|
4589
4957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4590
4958
|
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
4591
4959
|
|
|
4960
|
+
[[package]]
|
|
4961
|
+
name = "simsimd"
|
|
4962
|
+
version = "6.5.16"
|
|
4963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4964
|
+
checksum = "f4fb3bc3cdce07a7d7d4caa4c54f8aa967f6be41690482b54b24100a2253fa70"
|
|
4965
|
+
dependencies = [
|
|
4966
|
+
"cc",
|
|
4967
|
+
]
|
|
4968
|
+
|
|
4592
4969
|
[[package]]
|
|
4593
4970
|
name = "siphasher"
|
|
4594
4971
|
version = "1.0.2"
|
|
@@ -4626,6 +5003,12 @@ dependencies = [
|
|
|
4626
5003
|
"windows-sys 0.61.2",
|
|
4627
5004
|
]
|
|
4628
5005
|
|
|
5006
|
+
[[package]]
|
|
5007
|
+
name = "softaes"
|
|
5008
|
+
version = "0.1.3"
|
|
5009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5010
|
+
checksum = "fef461faaeb36c340b6c887167a9054a034f6acfc50a014ead26a02b4356b3de"
|
|
5011
|
+
|
|
4629
5012
|
[[package]]
|
|
4630
5013
|
name = "speedate"
|
|
4631
5014
|
version = "0.17.0"
|
|
@@ -4633,8 +5016,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4633
5016
|
checksum = "aba069c070b5e213f2a094deb7e5ed50ecb092be36102a4f4042e8d2056d060e"
|
|
4634
5017
|
dependencies = [
|
|
4635
5018
|
"lexical-parse-float",
|
|
4636
|
-
"strum",
|
|
4637
|
-
"strum_macros",
|
|
5019
|
+
"strum 0.27.2",
|
|
5020
|
+
"strum_macros 0.27.2",
|
|
4638
5021
|
]
|
|
4639
5022
|
|
|
4640
5023
|
[[package]]
|
|
@@ -4658,9 +5041,9 @@ dependencies = [
|
|
|
4658
5041
|
|
|
4659
5042
|
[[package]]
|
|
4660
5043
|
name = "spki"
|
|
4661
|
-
version = "0.8.0"
|
|
5044
|
+
version = "0.8.0-rc.4"
|
|
4662
5045
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4663
|
-
checksum = "
|
|
5046
|
+
checksum = "8baeff88f34ed0691978ec34440140e1572b68c7dd4a495fd14a3dc1944daa80"
|
|
4664
5047
|
dependencies = [
|
|
4665
5048
|
"base64ct",
|
|
4666
5049
|
"der 0.8.0",
|
|
@@ -4713,13 +5096,35 @@ version = "0.11.1"
|
|
|
4713
5096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4714
5097
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
4715
5098
|
|
|
5099
|
+
[[package]]
|
|
5100
|
+
name = "strum"
|
|
5101
|
+
version = "0.26.3"
|
|
5102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5103
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
5104
|
+
dependencies = [
|
|
5105
|
+
"strum_macros 0.26.4",
|
|
5106
|
+
]
|
|
5107
|
+
|
|
4716
5108
|
[[package]]
|
|
4717
5109
|
name = "strum"
|
|
4718
5110
|
version = "0.27.2"
|
|
4719
5111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4720
5112
|
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
4721
5113
|
dependencies = [
|
|
4722
|
-
"strum_macros",
|
|
5114
|
+
"strum_macros 0.27.2",
|
|
5115
|
+
]
|
|
5116
|
+
|
|
5117
|
+
[[package]]
|
|
5118
|
+
name = "strum_macros"
|
|
5119
|
+
version = "0.26.4"
|
|
5120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5121
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
5122
|
+
dependencies = [
|
|
5123
|
+
"heck",
|
|
5124
|
+
"proc-macro2",
|
|
5125
|
+
"quote",
|
|
5126
|
+
"rustversion",
|
|
5127
|
+
"syn",
|
|
4723
5128
|
]
|
|
4724
5129
|
|
|
4725
5130
|
[[package]]
|
|
@@ -4836,7 +5241,7 @@ version = "0.3.0"
|
|
|
4836
5241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4837
5242
|
checksum = "0f8daae29995a24f65619e19d8d31dea5b389f3d853d8bf297bbf607cd0014cc"
|
|
4838
5243
|
dependencies = [
|
|
4839
|
-
"unicode-width",
|
|
5244
|
+
"unicode-width 0.2.2",
|
|
4840
5245
|
]
|
|
4841
5246
|
|
|
4842
5247
|
[[package]]
|
|
@@ -4847,7 +5252,7 @@ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
|
|
|
4847
5252
|
dependencies = [
|
|
4848
5253
|
"smawk",
|
|
4849
5254
|
"unicode-linebreak",
|
|
4850
|
-
"unicode-width",
|
|
5255
|
+
"unicode-width 0.2.2",
|
|
4851
5256
|
]
|
|
4852
5257
|
|
|
4853
5258
|
[[package]]
|
|
@@ -4890,6 +5295,15 @@ dependencies = [
|
|
|
4890
5295
|
"syn",
|
|
4891
5296
|
]
|
|
4892
5297
|
|
|
5298
|
+
[[package]]
|
|
5299
|
+
name = "thread_local"
|
|
5300
|
+
version = "1.1.9"
|
|
5301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5302
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
5303
|
+
dependencies = [
|
|
5304
|
+
"cfg-if",
|
|
5305
|
+
]
|
|
5306
|
+
|
|
4893
5307
|
[[package]]
|
|
4894
5308
|
name = "tinystr"
|
|
4895
5309
|
version = "0.8.3"
|
|
@@ -5071,6 +5485,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5071
5485
|
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
5072
5486
|
dependencies = [
|
|
5073
5487
|
"once_cell",
|
|
5488
|
+
"valuable",
|
|
5489
|
+
]
|
|
5490
|
+
|
|
5491
|
+
[[package]]
|
|
5492
|
+
name = "tracing-log"
|
|
5493
|
+
version = "0.2.0"
|
|
5494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5495
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
5496
|
+
dependencies = [
|
|
5497
|
+
"log",
|
|
5498
|
+
"once_cell",
|
|
5499
|
+
"tracing-core",
|
|
5500
|
+
]
|
|
5501
|
+
|
|
5502
|
+
[[package]]
|
|
5503
|
+
name = "tracing-subscriber"
|
|
5504
|
+
version = "0.3.23"
|
|
5505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5506
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
5507
|
+
dependencies = [
|
|
5508
|
+
"matchers",
|
|
5509
|
+
"nu-ansi-term",
|
|
5510
|
+
"once_cell",
|
|
5511
|
+
"regex-automata",
|
|
5512
|
+
"sharded-slab",
|
|
5513
|
+
"smallvec",
|
|
5514
|
+
"thread_local",
|
|
5515
|
+
"tracing",
|
|
5516
|
+
"tracing-core",
|
|
5517
|
+
"tracing-log",
|
|
5074
5518
|
]
|
|
5075
5519
|
|
|
5076
5520
|
[[package]]
|
|
@@ -5079,6 +5523,116 @@ version = "0.2.5"
|
|
|
5079
5523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5080
5524
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
5081
5525
|
|
|
5526
|
+
[[package]]
|
|
5527
|
+
name = "turso_core"
|
|
5528
|
+
version = "0.5.3"
|
|
5529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5530
|
+
checksum = "81fac73a12b91b569f4671d63d65912876c11e6312597c996dac40494f9f9b39"
|
|
5531
|
+
dependencies = [
|
|
5532
|
+
"aegis",
|
|
5533
|
+
"aes 0.8.4",
|
|
5534
|
+
"aes-gcm 0.10.3",
|
|
5535
|
+
"antithesis_sdk",
|
|
5536
|
+
"arc-swap",
|
|
5537
|
+
"bigdecimal",
|
|
5538
|
+
"bitflags",
|
|
5539
|
+
"branches",
|
|
5540
|
+
"built",
|
|
5541
|
+
"bumpalo",
|
|
5542
|
+
"bytemuck",
|
|
5543
|
+
"cfg_block",
|
|
5544
|
+
"chrono",
|
|
5545
|
+
"crc32c",
|
|
5546
|
+
"crossbeam-skiplist",
|
|
5547
|
+
"either",
|
|
5548
|
+
"fallible-iterator",
|
|
5549
|
+
"fastbloom",
|
|
5550
|
+
"hex",
|
|
5551
|
+
"intrusive-collections",
|
|
5552
|
+
"libc",
|
|
5553
|
+
"libloading 0.8.9",
|
|
5554
|
+
"libm",
|
|
5555
|
+
"loom",
|
|
5556
|
+
"miette",
|
|
5557
|
+
"num-bigint",
|
|
5558
|
+
"num-traits",
|
|
5559
|
+
"pack1",
|
|
5560
|
+
"parking_lot",
|
|
5561
|
+
"paste",
|
|
5562
|
+
"polling",
|
|
5563
|
+
"rand 0.9.4",
|
|
5564
|
+
"rapidhash",
|
|
5565
|
+
"regex",
|
|
5566
|
+
"regex-syntax",
|
|
5567
|
+
"roaring",
|
|
5568
|
+
"rustc-hash",
|
|
5569
|
+
"rustix",
|
|
5570
|
+
"ryu",
|
|
5571
|
+
"serde_json",
|
|
5572
|
+
"shuttle",
|
|
5573
|
+
"simsimd",
|
|
5574
|
+
"smallvec",
|
|
5575
|
+
"strum 0.26.3",
|
|
5576
|
+
"strum_macros 0.26.4",
|
|
5577
|
+
"tempfile",
|
|
5578
|
+
"thiserror 2.0.18",
|
|
5579
|
+
"tracing",
|
|
5580
|
+
"tracing-subscriber",
|
|
5581
|
+
"turso_ext",
|
|
5582
|
+
"turso_macros",
|
|
5583
|
+
"turso_parser",
|
|
5584
|
+
"twox-hash",
|
|
5585
|
+
"uncased",
|
|
5586
|
+
"uuid",
|
|
5587
|
+
"windows-sys 0.61.2",
|
|
5588
|
+
]
|
|
5589
|
+
|
|
5590
|
+
[[package]]
|
|
5591
|
+
name = "turso_ext"
|
|
5592
|
+
version = "0.5.3"
|
|
5593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5594
|
+
checksum = "bdd7410a02a3a4cebd48a5bc0db74940d1157dc9c05ad42d48ee5156dd31edd1"
|
|
5595
|
+
dependencies = [
|
|
5596
|
+
"chrono",
|
|
5597
|
+
"getrandom 0.3.4",
|
|
5598
|
+
"turso_macros",
|
|
5599
|
+
]
|
|
5600
|
+
|
|
5601
|
+
[[package]]
|
|
5602
|
+
name = "turso_macros"
|
|
5603
|
+
version = "0.5.3"
|
|
5604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5605
|
+
checksum = "9c846c30c3cb085884a8bbaba7760bdcc406ff2176cbde1e51d41b6057171fd4"
|
|
5606
|
+
dependencies = [
|
|
5607
|
+
"proc-macro2",
|
|
5608
|
+
"quote",
|
|
5609
|
+
"syn",
|
|
5610
|
+
]
|
|
5611
|
+
|
|
5612
|
+
[[package]]
|
|
5613
|
+
name = "turso_parser"
|
|
5614
|
+
version = "0.5.3"
|
|
5615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5616
|
+
checksum = "8402ba98c236e3e6d6ed6a43557a9a0b3a682f86a37fcafe02b659b9e6c06b82"
|
|
5617
|
+
dependencies = [
|
|
5618
|
+
"bitflags",
|
|
5619
|
+
"memchr",
|
|
5620
|
+
"miette",
|
|
5621
|
+
"strum 0.26.3",
|
|
5622
|
+
"strum_macros 0.26.4",
|
|
5623
|
+
"thiserror 2.0.18",
|
|
5624
|
+
"turso_macros",
|
|
5625
|
+
]
|
|
5626
|
+
|
|
5627
|
+
[[package]]
|
|
5628
|
+
name = "twox-hash"
|
|
5629
|
+
version = "2.1.2"
|
|
5630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5631
|
+
checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
|
|
5632
|
+
dependencies = [
|
|
5633
|
+
"rand 0.9.4",
|
|
5634
|
+
]
|
|
5635
|
+
|
|
5082
5636
|
[[package]]
|
|
5083
5637
|
name = "typed-arena"
|
|
5084
5638
|
version = "2.0.2"
|
|
@@ -5087,9 +5641,9 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
|
5087
5641
|
|
|
5088
5642
|
[[package]]
|
|
5089
5643
|
name = "typenum"
|
|
5090
|
-
version = "1.
|
|
5644
|
+
version = "1.20.0"
|
|
5091
5645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5092
|
-
checksum = "
|
|
5646
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
5093
5647
|
|
|
5094
5648
|
[[package]]
|
|
5095
5649
|
name = "unarray"
|
|
@@ -5097,6 +5651,15 @@ version = "0.1.4"
|
|
|
5097
5651
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5098
5652
|
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
5099
5653
|
|
|
5654
|
+
[[package]]
|
|
5655
|
+
name = "uncased"
|
|
5656
|
+
version = "0.9.10"
|
|
5657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5658
|
+
checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
|
|
5659
|
+
dependencies = [
|
|
5660
|
+
"version_check",
|
|
5661
|
+
]
|
|
5662
|
+
|
|
5100
5663
|
[[package]]
|
|
5101
5664
|
name = "unicode-id-start"
|
|
5102
5665
|
version = "1.4.0"
|
|
@@ -5130,6 +5693,12 @@ version = "1.13.2"
|
|
|
5130
5693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5131
5694
|
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
5132
5695
|
|
|
5696
|
+
[[package]]
|
|
5697
|
+
name = "unicode-width"
|
|
5698
|
+
version = "0.1.14"
|
|
5699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5700
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
5701
|
+
|
|
5133
5702
|
[[package]]
|
|
5134
5703
|
name = "unicode-width"
|
|
5135
5704
|
version = "0.2.2"
|
|
@@ -5226,6 +5795,24 @@ version = "0.2.2"
|
|
|
5226
5795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5227
5796
|
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
5228
5797
|
|
|
5798
|
+
[[package]]
|
|
5799
|
+
name = "uuid"
|
|
5800
|
+
version = "1.23.1"
|
|
5801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5802
|
+
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
|
|
5803
|
+
dependencies = [
|
|
5804
|
+
"getrandom 0.4.2",
|
|
5805
|
+
"js-sys",
|
|
5806
|
+
"sha1_smol",
|
|
5807
|
+
"wasm-bindgen",
|
|
5808
|
+
]
|
|
5809
|
+
|
|
5810
|
+
[[package]]
|
|
5811
|
+
name = "valuable"
|
|
5812
|
+
version = "0.1.1"
|
|
5813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5814
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
5815
|
+
|
|
5229
5816
|
[[package]]
|
|
5230
5817
|
name = "version_check"
|
|
5231
5818
|
version = "0.9.5"
|
|
@@ -5268,11 +5855,11 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
5268
5855
|
|
|
5269
5856
|
[[package]]
|
|
5270
5857
|
name = "wasip2"
|
|
5271
|
-
version = "1.0.
|
|
5858
|
+
version = "1.0.3+wasi-0.2.9"
|
|
5272
5859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5273
|
-
checksum = "
|
|
5860
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
5274
5861
|
dependencies = [
|
|
5275
|
-
"wit-bindgen",
|
|
5862
|
+
"wit-bindgen 0.57.1",
|
|
5276
5863
|
]
|
|
5277
5864
|
|
|
5278
5865
|
[[package]]
|
|
@@ -5281,14 +5868,14 @@ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
|
5281
5868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5282
5869
|
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
5283
5870
|
dependencies = [
|
|
5284
|
-
"wit-bindgen",
|
|
5871
|
+
"wit-bindgen 0.51.0",
|
|
5285
5872
|
]
|
|
5286
5873
|
|
|
5287
5874
|
[[package]]
|
|
5288
5875
|
name = "wasm-bindgen"
|
|
5289
|
-
version = "0.2.
|
|
5876
|
+
version = "0.2.120"
|
|
5290
5877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5291
|
-
checksum = "
|
|
5878
|
+
checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
|
|
5292
5879
|
dependencies = [
|
|
5293
5880
|
"cfg-if",
|
|
5294
5881
|
"once_cell",
|
|
@@ -5299,9 +5886,9 @@ dependencies = [
|
|
|
5299
5886
|
|
|
5300
5887
|
[[package]]
|
|
5301
5888
|
name = "wasm-bindgen-futures"
|
|
5302
|
-
version = "0.4.
|
|
5889
|
+
version = "0.4.70"
|
|
5303
5890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5304
|
-
checksum = "
|
|
5891
|
+
checksum = "af934872acec734c2d80e6617bbb5ff4f12b052dd8e6332b0817bce889516084"
|
|
5305
5892
|
dependencies = [
|
|
5306
5893
|
"js-sys",
|
|
5307
5894
|
"wasm-bindgen",
|
|
@@ -5309,9 +5896,9 @@ dependencies = [
|
|
|
5309
5896
|
|
|
5310
5897
|
[[package]]
|
|
5311
5898
|
name = "wasm-bindgen-macro"
|
|
5312
|
-
version = "0.2.
|
|
5899
|
+
version = "0.2.120"
|
|
5313
5900
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5314
|
-
checksum = "
|
|
5901
|
+
checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
|
|
5315
5902
|
dependencies = [
|
|
5316
5903
|
"quote",
|
|
5317
5904
|
"wasm-bindgen-macro-support",
|
|
@@ -5319,9 +5906,9 @@ dependencies = [
|
|
|
5319
5906
|
|
|
5320
5907
|
[[package]]
|
|
5321
5908
|
name = "wasm-bindgen-macro-support"
|
|
5322
|
-
version = "0.2.
|
|
5909
|
+
version = "0.2.120"
|
|
5323
5910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5324
|
-
checksum = "
|
|
5911
|
+
checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
|
|
5325
5912
|
dependencies = [
|
|
5326
5913
|
"bumpalo",
|
|
5327
5914
|
"proc-macro2",
|
|
@@ -5332,9 +5919,9 @@ dependencies = [
|
|
|
5332
5919
|
|
|
5333
5920
|
[[package]]
|
|
5334
5921
|
name = "wasm-bindgen-shared"
|
|
5335
|
-
version = "0.2.
|
|
5922
|
+
version = "0.2.120"
|
|
5336
5923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5337
|
-
checksum = "
|
|
5924
|
+
checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
|
|
5338
5925
|
dependencies = [
|
|
5339
5926
|
"unicode-ident",
|
|
5340
5927
|
]
|
|
@@ -5388,9 +5975,9 @@ dependencies = [
|
|
|
5388
5975
|
|
|
5389
5976
|
[[package]]
|
|
5390
5977
|
name = "web-sys"
|
|
5391
|
-
version = "0.3.
|
|
5978
|
+
version = "0.3.97"
|
|
5392
5979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5393
|
-
checksum = "
|
|
5980
|
+
checksum = "2eadbac71025cd7b0834f20d1fe8472e8495821b4e9801eb0a60bd1f19827602"
|
|
5394
5981
|
dependencies = [
|
|
5395
5982
|
"js-sys",
|
|
5396
5983
|
"wasm-bindgen",
|
|
@@ -5398,9 +5985,9 @@ dependencies = [
|
|
|
5398
5985
|
|
|
5399
5986
|
[[package]]
|
|
5400
5987
|
name = "webpki-root-certs"
|
|
5401
|
-
version = "1.0.
|
|
5988
|
+
version = "1.0.7"
|
|
5402
5989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5403
|
-
checksum = "
|
|
5990
|
+
checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
|
|
5404
5991
|
dependencies = [
|
|
5405
5992
|
"rustls-pki-types",
|
|
5406
5993
|
]
|
|
@@ -5537,22 +6124,13 @@ dependencies = [
|
|
|
5537
6124
|
"windows-link",
|
|
5538
6125
|
]
|
|
5539
6126
|
|
|
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
6127
|
[[package]]
|
|
5550
6128
|
name = "windows-sys"
|
|
5551
6129
|
version = "0.52.0"
|
|
5552
6130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5553
6131
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
5554
6132
|
dependencies = [
|
|
5555
|
-
"windows-targets
|
|
6133
|
+
"windows-targets",
|
|
5556
6134
|
]
|
|
5557
6135
|
|
|
5558
6136
|
[[package]]
|
|
@@ -5564,35 +6142,20 @@ dependencies = [
|
|
|
5564
6142
|
"windows-link",
|
|
5565
6143
|
]
|
|
5566
6144
|
|
|
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
6145
|
[[package]]
|
|
5583
6146
|
name = "windows-targets"
|
|
5584
6147
|
version = "0.52.6"
|
|
5585
6148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5586
6149
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
5587
6150
|
dependencies = [
|
|
5588
|
-
"windows_aarch64_gnullvm
|
|
5589
|
-
"windows_aarch64_msvc
|
|
5590
|
-
"windows_i686_gnu
|
|
6151
|
+
"windows_aarch64_gnullvm",
|
|
6152
|
+
"windows_aarch64_msvc",
|
|
6153
|
+
"windows_i686_gnu",
|
|
5591
6154
|
"windows_i686_gnullvm",
|
|
5592
|
-
"windows_i686_msvc
|
|
5593
|
-
"windows_x86_64_gnu
|
|
5594
|
-
"windows_x86_64_gnullvm
|
|
5595
|
-
"windows_x86_64_msvc
|
|
6155
|
+
"windows_i686_msvc",
|
|
6156
|
+
"windows_x86_64_gnu",
|
|
6157
|
+
"windows_x86_64_gnullvm",
|
|
6158
|
+
"windows_x86_64_msvc",
|
|
5596
6159
|
]
|
|
5597
6160
|
|
|
5598
6161
|
[[package]]
|
|
@@ -5604,36 +6167,18 @@ dependencies = [
|
|
|
5604
6167
|
"windows-link",
|
|
5605
6168
|
]
|
|
5606
6169
|
|
|
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
6170
|
[[package]]
|
|
5614
6171
|
name = "windows_aarch64_gnullvm"
|
|
5615
6172
|
version = "0.52.6"
|
|
5616
6173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5617
6174
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
5618
6175
|
|
|
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
6176
|
[[package]]
|
|
5626
6177
|
name = "windows_aarch64_msvc"
|
|
5627
6178
|
version = "0.52.6"
|
|
5628
6179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5629
6180
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
5630
6181
|
|
|
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
6182
|
[[package]]
|
|
5638
6183
|
name = "windows_i686_gnu"
|
|
5639
6184
|
version = "0.52.6"
|
|
@@ -5646,48 +6191,24 @@ version = "0.52.6"
|
|
|
5646
6191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5647
6192
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
5648
6193
|
|
|
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
6194
|
[[package]]
|
|
5656
6195
|
name = "windows_i686_msvc"
|
|
5657
6196
|
version = "0.52.6"
|
|
5658
6197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5659
6198
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
5660
6199
|
|
|
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
6200
|
[[package]]
|
|
5668
6201
|
name = "windows_x86_64_gnu"
|
|
5669
6202
|
version = "0.52.6"
|
|
5670
6203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5671
6204
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
5672
6205
|
|
|
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
6206
|
[[package]]
|
|
5680
6207
|
name = "windows_x86_64_gnullvm"
|
|
5681
6208
|
version = "0.52.6"
|
|
5682
6209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5683
6210
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
5684
6211
|
|
|
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
6212
|
[[package]]
|
|
5692
6213
|
name = "windows_x86_64_msvc"
|
|
5693
6214
|
version = "0.52.6"
|
|
@@ -5703,6 +6224,12 @@ dependencies = [
|
|
|
5703
6224
|
"wit-bindgen-rust-macro",
|
|
5704
6225
|
]
|
|
5705
6226
|
|
|
6227
|
+
[[package]]
|
|
6228
|
+
name = "wit-bindgen"
|
|
6229
|
+
version = "0.57.1"
|
|
6230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6231
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
6232
|
+
|
|
5706
6233
|
[[package]]
|
|
5707
6234
|
name = "wit-bindgen-core"
|
|
5708
6235
|
version = "0.51.0"
|