sentry-cli 3.4.1__tar.gz → 3.5.1__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.
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/Cargo.lock +1118 -777
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/Cargo.toml +5 -3
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/PKG-INFO +6 -1
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/README.md +5 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/sentry_cli.egg-info/PKG-INFO +6 -1
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/sentry_cli.egg-info/SOURCES.txt +8 -1
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/data_types/snapshots.rs +35 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/mod.rs +62 -14
- sentry_cli-3.5.1/src/api/updating.rs +80 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/bashsupport.sh +3 -3
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/bash_hook.rs +44 -26
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/build/download.rs +2 -9
- sentry_cli-3.5.1/src/commands/build/mod.rs +58 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/mod.rs +2 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/react_native/xcode.rs +7 -2
- sentry_cli-3.5.1/src/commands/releases/propose_version.rs +19 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/send_event.rs +9 -2
- sentry_cli-3.5.1/src/commands/snapshots/diff.rs +519 -0
- sentry_cli-3.5.1/src/commands/snapshots/download.rs +132 -0
- {sentry_cli-3.4.1/src/commands/build → sentry_cli-3.5.1/src/commands/snapshots}/mod.rs +6 -10
- sentry_cli-3.4.1/src/commands/build/snapshots.rs → sentry_cli-3.5.1/src/commands/snapshots/upload.rs +193 -52
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/config.rs +51 -11
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/args.rs +10 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/file_upload.rs +6 -14
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/fs.rs +2 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/mod.rs +1 -0
- sentry_cli-3.5.1/src/utils/odiff/binary.rs +121 -0
- sentry_cli-3.5.1/src/utils/odiff/mod.rs +2 -0
- sentry_cli-3.5.1/src/utils/odiff/server.rs +232 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/releases.rs +10 -6
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/update.rs +29 -4
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/xcode.rs +21 -8
- sentry_cli-3.4.1/src/commands/releases/propose_version.rs +0 -13
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/LICENSE +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/MANIFEST.in +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/apple-catalog-parsing/AGENTS.md +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/apple-catalog-parsing/CLAUDE.md +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/apple-catalog-parsing/Cargo.toml +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/apple-catalog-parsing/build.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/apple-catalog-parsing/native/swift/AssetCatalogParser/Package.swift +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/apple-catalog-parsing/native/swift/AssetCatalogParser/Sources/AssetCatalogParser/AssetCatalogReader.swift +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/apple-catalog-parsing/native/swift/AssetCatalogParser/Sources/ObjcSupport/include/safeValueForKey.h +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/apple-catalog-parsing/native/swift/AssetCatalogParser/Sources/ObjcSupport/safeValueForKey.m +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/apple-catalog-parsing/native/swift/AssetCatalogParser/Tests/AssetCatalogParserTests/AssetCatalogParserTests.swift +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/apple-catalog-parsing/native/swift/AssetCatalogParser/Tests/AssetCatalogParserTests/Resources/test.xcarchive/Info.plist +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/apple-catalog-parsing/native/swift/AssetCatalogParser/Tests/AssetCatalogParserTests/Resources/test.xcarchive/Products/Applications/DemoApp.app/Assets.car +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/apple-catalog-parsing/src/asset_catalog.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/apple-catalog-parsing/src/lib.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/build.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/pyproject.toml +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/sentry_cli.egg-info/dependency_links.txt +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/sentry_cli.egg-info/top_level.txt +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/setup.cfg +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/setup.py +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/AGENTS.md +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/CLAUDE.md +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/connection_manager.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/data_types/chunking/artifact.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/data_types/chunking/build.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/data_types/chunking/compression.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/data_types/chunking/dif.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/data_types/chunking/file_state.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/data_types/chunking/hash_algorithm.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/data_types/chunking/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/data_types/chunking/upload/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/data_types/chunking/upload/options.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/data_types/code_mappings.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/data_types/deploy.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/data_types/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/encoding.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/envelopes_api.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/errors/api_error.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/errors/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/errors/sentry_error.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/pagination.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/api/serialization.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/build/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/code_mappings/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/code_mappings/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/dart_symbol_map/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/dart_symbol_map/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/debug_files/bundle_jvm.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/debug_files/bundle_sources.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/debug_files/check.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/debug_files/find.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/debug_files/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/debug_files/print_sources.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/debug_files/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/deploys/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/deploys/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/deploys/new.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/derive_parser.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/events/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/events/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/info.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/issues/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/issues/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/issues/mute.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/issues/resolve.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/issues/unresolve.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/login.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/logs/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/logs/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/monitors/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/monitors/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/monitors/run.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/organizations/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/organizations/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/proguard/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/proguard/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/proguard/uuid.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/projects/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/projects/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/react_native/gradle.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/react_native/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/releases/archive.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/releases/delete.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/releases/finalize.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/releases/info.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/releases/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/releases/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/releases/new.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/releases/restore.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/releases/set_commits.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/repos/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/repos/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/send_envelope.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/send_metric/common_args.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/send_metric/increment.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/send_metric/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/send_metric/set.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/sourcemaps/inject.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/sourcemaps/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/sourcemaps/resolve.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/sourcemaps/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/uninstall.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/update.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/upload_dif.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/upload_dsym.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/commands/upload_proguard.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/constants.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/main.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/android.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/auth_token/auth_token_impl.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/auth_token/error.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/auth_token/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/auth_token/org_auth_token.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/auth_token/redacting.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/auth_token/test.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/auth_token/user_auth_token.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/build/apple.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/build/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/build/normalize.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/build/validation.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/build_vcs.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/chunks/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/chunks/options.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/chunks/types.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/chunks/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/ci.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/cordova.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/dif.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/dif_upload/error.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/dif_upload/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/event.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/file_search.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/formatting.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/http.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/logging.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/non_empty.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/progress.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/proguard/mapping.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/proguard/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/proguard/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/retry.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/snapshots/sentry_cli__utils__vcs__tests__generate_patch_default_twenty.snap +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/snapshots/sentry_cli__utils__vcs__tests__generate_patch_ignore_missing.snap +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/snapshots/sentry_cli__utils__vcs__tests__generate_patch_set_base.snap +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/snapshots/sentry_cli__utils__vcs__tests__generate_patch_set_previous_commit.snap +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/snapshots/sentry_cli__utils__vcs__tests__get_commits_from_git.snap +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/source_bundle.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/sourcemaps/inject.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/sourcemaps.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/system.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/ui.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/value_parsers.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.1}/src/utils/vcs.rs +0 -0
|
@@ -8,7 +8,7 @@ version = "0.25.1"
|
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
9
|
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"gimli",
|
|
11
|
+
"gimli 0.32.3",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[[package]]
|
|
@@ -34,28 +34,16 @@ version = "0.7.8"
|
|
|
34
34
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
35
|
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
|
36
36
|
dependencies = [
|
|
37
|
-
"getrandom 0.2.
|
|
37
|
+
"getrandom 0.2.17",
|
|
38
38
|
"once_cell",
|
|
39
39
|
"version_check",
|
|
40
40
|
]
|
|
41
41
|
|
|
42
|
-
[[package]]
|
|
43
|
-
name = "ahash"
|
|
44
|
-
version = "0.8.12"
|
|
45
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
-
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
47
|
-
dependencies = [
|
|
48
|
-
"cfg-if",
|
|
49
|
-
"once_cell",
|
|
50
|
-
"version_check",
|
|
51
|
-
"zerocopy",
|
|
52
|
-
]
|
|
53
|
-
|
|
54
42
|
[[package]]
|
|
55
43
|
name = "aho-corasick"
|
|
56
|
-
version = "1.1.
|
|
44
|
+
version = "1.1.4"
|
|
57
45
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
-
checksum = "
|
|
46
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
59
47
|
dependencies = [
|
|
60
48
|
"memchr",
|
|
61
49
|
]
|
|
@@ -77,9 +65,9 @@ dependencies = [
|
|
|
77
65
|
|
|
78
66
|
[[package]]
|
|
79
67
|
name = "anstream"
|
|
80
|
-
version = "0.6.
|
|
68
|
+
version = "0.6.21"
|
|
81
69
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
-
checksum = "
|
|
70
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
83
71
|
dependencies = [
|
|
84
72
|
"anstyle",
|
|
85
73
|
"anstyle-parse",
|
|
@@ -92,9 +80,9 @@ dependencies = [
|
|
|
92
80
|
|
|
93
81
|
[[package]]
|
|
94
82
|
name = "anstyle"
|
|
95
|
-
version = "1.0.
|
|
83
|
+
version = "1.0.14"
|
|
96
84
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
-
checksum = "
|
|
85
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
98
86
|
|
|
99
87
|
[[package]]
|
|
100
88
|
name = "anstyle-parse"
|
|
@@ -107,32 +95,29 @@ dependencies = [
|
|
|
107
95
|
|
|
108
96
|
[[package]]
|
|
109
97
|
name = "anstyle-query"
|
|
110
|
-
version = "1.1.
|
|
98
|
+
version = "1.1.5"
|
|
111
99
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
-
checksum = "
|
|
100
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
113
101
|
dependencies = [
|
|
114
|
-
"windows-sys 0.
|
|
102
|
+
"windows-sys 0.61.2",
|
|
115
103
|
]
|
|
116
104
|
|
|
117
105
|
[[package]]
|
|
118
106
|
name = "anstyle-wincon"
|
|
119
|
-
version = "3.0.
|
|
107
|
+
version = "3.0.11"
|
|
120
108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
-
checksum = "
|
|
109
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
122
110
|
dependencies = [
|
|
123
111
|
"anstyle",
|
|
124
112
|
"once_cell_polyfill",
|
|
125
|
-
"windows-sys 0.
|
|
113
|
+
"windows-sys 0.61.2",
|
|
126
114
|
]
|
|
127
115
|
|
|
128
116
|
[[package]]
|
|
129
117
|
name = "anyhow"
|
|
130
|
-
version = "1.0.
|
|
118
|
+
version = "1.0.102"
|
|
131
119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
-
checksum = "
|
|
133
|
-
dependencies = [
|
|
134
|
-
"backtrace",
|
|
135
|
-
]
|
|
120
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
136
121
|
|
|
137
122
|
[[package]]
|
|
138
123
|
name = "anylog"
|
|
@@ -149,7 +134,7 @@ dependencies = [
|
|
|
149
134
|
name = "apple-catalog-parsing"
|
|
150
135
|
version = "0.0.0"
|
|
151
136
|
dependencies = [
|
|
152
|
-
"thiserror 2.0.
|
|
137
|
+
"thiserror 2.0.18",
|
|
153
138
|
]
|
|
154
139
|
|
|
155
140
|
[[package]]
|
|
@@ -179,13 +164,12 @@ dependencies = [
|
|
|
179
164
|
|
|
180
165
|
[[package]]
|
|
181
166
|
name = "assert_cmd"
|
|
182
|
-
version = "2.
|
|
167
|
+
version = "2.2.2"
|
|
183
168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
-
checksum = "
|
|
169
|
+
checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
|
|
185
170
|
dependencies = [
|
|
186
171
|
"anstyle",
|
|
187
172
|
"bstr",
|
|
188
|
-
"doc-comment",
|
|
189
173
|
"libc",
|
|
190
174
|
"predicates",
|
|
191
175
|
"predicates-core",
|
|
@@ -195,13 +179,12 @@ dependencies = [
|
|
|
195
179
|
|
|
196
180
|
[[package]]
|
|
197
181
|
name = "async-compression"
|
|
198
|
-
version = "0.4.
|
|
182
|
+
version = "0.4.42"
|
|
199
183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
-
checksum = "
|
|
184
|
+
checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
|
|
201
185
|
dependencies = [
|
|
202
186
|
"compression-codecs",
|
|
203
187
|
"compression-core",
|
|
204
|
-
"futures-core",
|
|
205
188
|
"pin-project-lite",
|
|
206
189
|
"tokio",
|
|
207
190
|
]
|
|
@@ -214,15 +197,15 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
214
197
|
|
|
215
198
|
[[package]]
|
|
216
199
|
name = "autocfg"
|
|
217
|
-
version = "1.5.
|
|
200
|
+
version = "1.5.1"
|
|
218
201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
-
checksum = "
|
|
202
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
220
203
|
|
|
221
204
|
[[package]]
|
|
222
205
|
name = "backon"
|
|
223
|
-
version = "1.
|
|
206
|
+
version = "1.6.0"
|
|
224
207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
-
checksum = "
|
|
208
|
+
checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef"
|
|
226
209
|
dependencies = [
|
|
227
210
|
"fastrand",
|
|
228
211
|
"gloo-timers",
|
|
@@ -241,7 +224,7 @@ dependencies = [
|
|
|
241
224
|
"miniz_oxide",
|
|
242
225
|
"object",
|
|
243
226
|
"rustc-demangle",
|
|
244
|
-
"windows-link
|
|
227
|
+
"windows-link",
|
|
245
228
|
]
|
|
246
229
|
|
|
247
230
|
[[package]]
|
|
@@ -292,9 +275,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
292
275
|
|
|
293
276
|
[[package]]
|
|
294
277
|
name = "bitflags"
|
|
295
|
-
version = "2.
|
|
278
|
+
version = "2.11.1"
|
|
296
279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
-
checksum = "
|
|
280
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
298
281
|
|
|
299
282
|
[[package]]
|
|
300
283
|
name = "bitvec"
|
|
@@ -317,6 +300,15 @@ dependencies = [
|
|
|
317
300
|
"generic-array",
|
|
318
301
|
]
|
|
319
302
|
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "block2"
|
|
305
|
+
version = "0.6.2"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
308
|
+
dependencies = [
|
|
309
|
+
"objc2",
|
|
310
|
+
]
|
|
311
|
+
|
|
320
312
|
[[package]]
|
|
321
313
|
name = "brownstone"
|
|
322
314
|
version = "3.0.0"
|
|
@@ -328,9 +320,9 @@ dependencies = [
|
|
|
328
320
|
|
|
329
321
|
[[package]]
|
|
330
322
|
name = "bstr"
|
|
331
|
-
version = "1.12.
|
|
323
|
+
version = "1.12.1"
|
|
332
324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
-
checksum = "
|
|
325
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
334
326
|
dependencies = [
|
|
335
327
|
"memchr",
|
|
336
328
|
"regex-automata",
|
|
@@ -339,9 +331,9 @@ dependencies = [
|
|
|
339
331
|
|
|
340
332
|
[[package]]
|
|
341
333
|
name = "bumpalo"
|
|
342
|
-
version = "3.
|
|
334
|
+
version = "3.20.3"
|
|
343
335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
-
checksum = "
|
|
336
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
345
337
|
|
|
346
338
|
[[package]]
|
|
347
339
|
name = "bytecount"
|
|
@@ -382,34 +374,40 @@ dependencies = [
|
|
|
382
374
|
|
|
383
375
|
[[package]]
|
|
384
376
|
name = "cc"
|
|
385
|
-
version = "1.2.
|
|
377
|
+
version = "1.2.63"
|
|
386
378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
-
checksum = "
|
|
379
|
+
checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
|
|
388
380
|
dependencies = [
|
|
389
381
|
"find-msvc-tools",
|
|
390
382
|
"jobserver",
|
|
391
383
|
"libc",
|
|
392
|
-
"shlex",
|
|
384
|
+
"shlex 2.0.1",
|
|
393
385
|
]
|
|
394
386
|
|
|
395
387
|
[[package]]
|
|
396
388
|
name = "cfg-if"
|
|
397
|
-
version = "1.0.
|
|
389
|
+
version = "1.0.4"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "cfg_aliases"
|
|
395
|
+
version = "0.2.1"
|
|
398
396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
-
checksum = "
|
|
397
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
400
398
|
|
|
401
399
|
[[package]]
|
|
402
400
|
name = "chrono"
|
|
403
|
-
version = "0.4.
|
|
401
|
+
version = "0.4.44"
|
|
404
402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
-
checksum = "
|
|
403
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
406
404
|
dependencies = [
|
|
407
405
|
"iana-time-zone",
|
|
408
406
|
"js-sys",
|
|
409
407
|
"num-traits",
|
|
410
408
|
"serde",
|
|
411
409
|
"wasm-bindgen",
|
|
412
|
-
"windows-link
|
|
410
|
+
"windows-link",
|
|
413
411
|
]
|
|
414
412
|
|
|
415
413
|
[[package]]
|
|
@@ -446,9 +444,9 @@ dependencies = [
|
|
|
446
444
|
|
|
447
445
|
[[package]]
|
|
448
446
|
name = "clap"
|
|
449
|
-
version = "4.
|
|
447
|
+
version = "4.6.1"
|
|
450
448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
-
checksum = "
|
|
449
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
452
450
|
dependencies = [
|
|
453
451
|
"clap_builder",
|
|
454
452
|
"clap_derive",
|
|
@@ -456,9 +454,9 @@ dependencies = [
|
|
|
456
454
|
|
|
457
455
|
[[package]]
|
|
458
456
|
name = "clap_builder"
|
|
459
|
-
version = "4.
|
|
457
|
+
version = "4.6.0"
|
|
460
458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
-
checksum = "
|
|
459
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
462
460
|
dependencies = [
|
|
463
461
|
"anstyle",
|
|
464
462
|
"clap_lex",
|
|
@@ -468,18 +466,18 @@ dependencies = [
|
|
|
468
466
|
|
|
469
467
|
[[package]]
|
|
470
468
|
name = "clap_complete"
|
|
471
|
-
version = "4.5
|
|
469
|
+
version = "4.6.5"
|
|
472
470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
-
checksum = "
|
|
471
|
+
checksum = "e0a7a9bfdb35811f9e59832f0f05975114d2251b415fb534108e6f34060fd772"
|
|
474
472
|
dependencies = [
|
|
475
473
|
"clap",
|
|
476
474
|
]
|
|
477
475
|
|
|
478
476
|
[[package]]
|
|
479
477
|
name = "clap_derive"
|
|
480
|
-
version = "4.
|
|
478
|
+
version = "4.6.1"
|
|
481
479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
-
checksum = "
|
|
480
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
483
481
|
dependencies = [
|
|
484
482
|
"heck",
|
|
485
483
|
"proc-macro2",
|
|
@@ -489,30 +487,30 @@ dependencies = [
|
|
|
489
487
|
|
|
490
488
|
[[package]]
|
|
491
489
|
name = "clap_lex"
|
|
492
|
-
version = "
|
|
490
|
+
version = "1.1.0"
|
|
493
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
-
checksum = "
|
|
492
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
495
493
|
|
|
496
494
|
[[package]]
|
|
497
495
|
name = "colorchoice"
|
|
498
|
-
version = "1.0.
|
|
496
|
+
version = "1.0.5"
|
|
499
497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
-
checksum = "
|
|
498
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
501
499
|
|
|
502
500
|
[[package]]
|
|
503
501
|
name = "colored"
|
|
504
|
-
version = "3.
|
|
502
|
+
version = "3.1.1"
|
|
505
503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
-
checksum = "
|
|
504
|
+
checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
|
|
507
505
|
dependencies = [
|
|
508
|
-
"windows-sys 0.
|
|
506
|
+
"windows-sys 0.61.2",
|
|
509
507
|
]
|
|
510
508
|
|
|
511
509
|
[[package]]
|
|
512
510
|
name = "compression-codecs"
|
|
513
|
-
version = "0.4.
|
|
511
|
+
version = "0.4.38"
|
|
514
512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
-
checksum = "
|
|
513
|
+
checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
|
|
516
514
|
dependencies = [
|
|
517
515
|
"compression-core",
|
|
518
516
|
"zstd",
|
|
@@ -521,9 +519,9 @@ dependencies = [
|
|
|
521
519
|
|
|
522
520
|
[[package]]
|
|
523
521
|
name = "compression-core"
|
|
524
|
-
version = "0.4.
|
|
522
|
+
version = "0.4.32"
|
|
525
523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
-
checksum = "
|
|
524
|
+
checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
|
|
527
525
|
|
|
528
526
|
[[package]]
|
|
529
527
|
name = "console"
|
|
@@ -534,21 +532,20 @@ dependencies = [
|
|
|
534
532
|
"encode_unicode",
|
|
535
533
|
"libc",
|
|
536
534
|
"once_cell",
|
|
537
|
-
"unicode-width 0.2.
|
|
535
|
+
"unicode-width 0.2.2",
|
|
538
536
|
"windows-sys 0.59.0",
|
|
539
537
|
]
|
|
540
538
|
|
|
541
539
|
[[package]]
|
|
542
540
|
name = "console"
|
|
543
|
-
version = "0.16.
|
|
541
|
+
version = "0.16.3"
|
|
544
542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
-
checksum = "
|
|
543
|
+
checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
|
|
546
544
|
dependencies = [
|
|
547
545
|
"encode_unicode",
|
|
548
546
|
"libc",
|
|
549
|
-
"
|
|
550
|
-
"
|
|
551
|
-
"windows-sys 0.61.1",
|
|
547
|
+
"unicode-width 0.2.2",
|
|
548
|
+
"windows-sys 0.61.2",
|
|
552
549
|
]
|
|
553
550
|
|
|
554
551
|
[[package]]
|
|
@@ -582,6 +579,16 @@ dependencies = [
|
|
|
582
579
|
"libc",
|
|
583
580
|
]
|
|
584
581
|
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "core-foundation"
|
|
584
|
+
version = "0.10.1"
|
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
587
|
+
dependencies = [
|
|
588
|
+
"core-foundation-sys",
|
|
589
|
+
"libc",
|
|
590
|
+
]
|
|
591
|
+
|
|
585
592
|
[[package]]
|
|
586
593
|
name = "core-foundation-sys"
|
|
587
594
|
version = "0.8.7"
|
|
@@ -599,18 +606,18 @@ dependencies = [
|
|
|
599
606
|
|
|
600
607
|
[[package]]
|
|
601
608
|
name = "crc"
|
|
602
|
-
version = "3.
|
|
609
|
+
version = "3.4.0"
|
|
603
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
-
checksum = "
|
|
611
|
+
checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
|
|
605
612
|
dependencies = [
|
|
606
613
|
"crc-catalog",
|
|
607
614
|
]
|
|
608
615
|
|
|
609
616
|
[[package]]
|
|
610
617
|
name = "crc-catalog"
|
|
611
|
-
version = "2.
|
|
618
|
+
version = "2.5.0"
|
|
612
619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
-
checksum = "
|
|
620
|
+
checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
|
|
614
621
|
|
|
615
622
|
[[package]]
|
|
616
623
|
name = "crc32fast"
|
|
@@ -670,21 +677,21 @@ dependencies = [
|
|
|
670
677
|
|
|
671
678
|
[[package]]
|
|
672
679
|
name = "csv"
|
|
673
|
-
version = "1.
|
|
680
|
+
version = "1.4.0"
|
|
674
681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
-
checksum = "
|
|
682
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
676
683
|
dependencies = [
|
|
677
684
|
"csv-core",
|
|
678
685
|
"itoa",
|
|
679
686
|
"ryu",
|
|
680
|
-
"
|
|
687
|
+
"serde_core",
|
|
681
688
|
]
|
|
682
689
|
|
|
683
690
|
[[package]]
|
|
684
691
|
name = "csv-core"
|
|
685
|
-
version = "0.1.
|
|
692
|
+
version = "0.1.13"
|
|
686
693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
-
checksum = "
|
|
694
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
688
695
|
dependencies = [
|
|
689
696
|
"memchr",
|
|
690
697
|
]
|
|
@@ -697,7 +704,7 @@ checksum = "79fc3b6dd0b87ba36e565715bf9a2ced221311db47bd18011676f24a6066edbc"
|
|
|
697
704
|
dependencies = [
|
|
698
705
|
"curl-sys",
|
|
699
706
|
"libc",
|
|
700
|
-
"openssl-probe",
|
|
707
|
+
"openssl-probe 0.1.6",
|
|
701
708
|
"openssl-sys",
|
|
702
709
|
"schannel",
|
|
703
710
|
"socket2",
|
|
@@ -706,9 +713,9 @@ dependencies = [
|
|
|
706
713
|
|
|
707
714
|
[[package]]
|
|
708
715
|
name = "curl-sys"
|
|
709
|
-
version = "0.4.
|
|
716
|
+
version = "0.4.88+curl-8.20.0"
|
|
710
717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
-
checksum = "
|
|
718
|
+
checksum = "644816de6547255eff4e491a1dda1c19b7237f00b62a61e6e64859ce4f2906d0"
|
|
712
719
|
dependencies = [
|
|
713
720
|
"cc",
|
|
714
721
|
"libc",
|
|
@@ -716,7 +723,7 @@ dependencies = [
|
|
|
716
723
|
"openssl-sys",
|
|
717
724
|
"pkg-config",
|
|
718
725
|
"vcpkg",
|
|
719
|
-
"windows-sys 0.
|
|
726
|
+
"windows-sys 0.61.2",
|
|
720
727
|
]
|
|
721
728
|
|
|
722
729
|
[[package]]
|
|
@@ -748,9 +755,9 @@ dependencies = [
|
|
|
748
755
|
|
|
749
756
|
[[package]]
|
|
750
757
|
name = "data-encoding"
|
|
751
|
-
version = "2.
|
|
758
|
+
version = "2.11.0"
|
|
752
759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
-
checksum = "
|
|
760
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
754
761
|
|
|
755
762
|
[[package]]
|
|
756
763
|
name = "debugid"
|
|
@@ -764,9 +771,9 @@ dependencies = [
|
|
|
764
771
|
|
|
765
772
|
[[package]]
|
|
766
773
|
name = "deflate64"
|
|
767
|
-
version = "0.1.
|
|
774
|
+
version = "0.1.12"
|
|
768
775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
-
checksum = "
|
|
776
|
+
checksum = "ac6b926516df9c60bfa16e107b21086399f8285a44ca9711344b9e553c5146e2"
|
|
770
777
|
|
|
771
778
|
[[package]]
|
|
772
779
|
name = "der"
|
|
@@ -781,9 +788,9 @@ dependencies = [
|
|
|
781
788
|
|
|
782
789
|
[[package]]
|
|
783
790
|
name = "deranged"
|
|
784
|
-
version = "0.5.
|
|
791
|
+
version = "0.5.8"
|
|
785
792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
-
checksum = "
|
|
793
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
787
794
|
dependencies = [
|
|
788
795
|
"powerfmt",
|
|
789
796
|
]
|
|
@@ -858,11 +865,21 @@ dependencies = [
|
|
|
858
865
|
"winapi",
|
|
859
866
|
]
|
|
860
867
|
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "dispatch2"
|
|
870
|
+
version = "0.3.1"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
|
873
|
+
dependencies = [
|
|
874
|
+
"bitflags 2.11.1",
|
|
875
|
+
"objc2",
|
|
876
|
+
]
|
|
877
|
+
|
|
861
878
|
[[package]]
|
|
862
879
|
name = "displaydoc"
|
|
863
|
-
version = "0.2.
|
|
880
|
+
version = "0.2.6"
|
|
864
881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
-
checksum = "
|
|
882
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
866
883
|
dependencies = [
|
|
867
884
|
"proc-macro2",
|
|
868
885
|
"quote",
|
|
@@ -875,12 +892,6 @@ version = "0.3.0"
|
|
|
875
892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
893
|
checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
|
|
877
894
|
|
|
878
|
-
[[package]]
|
|
879
|
-
name = "doc-comment"
|
|
880
|
-
version = "0.3.3"
|
|
881
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
-
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
883
|
-
|
|
884
895
|
[[package]]
|
|
885
896
|
name = "dotenvy"
|
|
886
897
|
version = "0.15.7"
|
|
@@ -933,9 +944,9 @@ dependencies = [
|
|
|
933
944
|
|
|
934
945
|
[[package]]
|
|
935
946
|
name = "either"
|
|
936
|
-
version = "1.
|
|
947
|
+
version = "1.16.0"
|
|
937
948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
-
checksum = "
|
|
949
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
939
950
|
|
|
940
951
|
[[package]]
|
|
941
952
|
name = "elementtree"
|
|
@@ -1004,7 +1015,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1004
1015
|
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1005
1016
|
dependencies = [
|
|
1006
1017
|
"libc",
|
|
1007
|
-
"windows-sys 0.61.
|
|
1018
|
+
"windows-sys 0.61.2",
|
|
1008
1019
|
]
|
|
1009
1020
|
|
|
1010
1021
|
[[package]]
|
|
@@ -1021,9 +1032,9 @@ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
|
1021
1032
|
|
|
1022
1033
|
[[package]]
|
|
1023
1034
|
name = "fastrand"
|
|
1024
|
-
version = "2.
|
|
1035
|
+
version = "2.4.1"
|
|
1025
1036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
-
checksum = "
|
|
1037
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
1027
1038
|
|
|
1028
1039
|
[[package]]
|
|
1029
1040
|
name = "ff"
|
|
@@ -1043,30 +1054,29 @@ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
|
1043
1054
|
|
|
1044
1055
|
[[package]]
|
|
1045
1056
|
name = "filetime"
|
|
1046
|
-
version = "0.2.
|
|
1057
|
+
version = "0.2.29"
|
|
1047
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
-
checksum = "
|
|
1059
|
+
checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
|
|
1049
1060
|
dependencies = [
|
|
1050
1061
|
"cfg-if",
|
|
1051
1062
|
"libc",
|
|
1052
|
-
"libredox",
|
|
1053
|
-
"windows-sys 0.60.2",
|
|
1054
1063
|
]
|
|
1055
1064
|
|
|
1056
1065
|
[[package]]
|
|
1057
1066
|
name = "find-msvc-tools"
|
|
1058
|
-
version = "0.1.
|
|
1067
|
+
version = "0.1.9"
|
|
1059
1068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
-
checksum = "
|
|
1069
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
1061
1070
|
|
|
1062
1071
|
[[package]]
|
|
1063
1072
|
name = "flate2"
|
|
1064
|
-
version = "1.1.
|
|
1073
|
+
version = "1.1.9"
|
|
1065
1074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
-
checksum = "
|
|
1075
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
1067
1076
|
dependencies = [
|
|
1068
1077
|
"crc32fast",
|
|
1069
1078
|
"miniz_oxide",
|
|
1079
|
+
"zlib-rs",
|
|
1070
1080
|
]
|
|
1071
1081
|
|
|
1072
1082
|
[[package]]
|
|
@@ -1075,6 +1085,12 @@ version = "1.0.7"
|
|
|
1075
1085
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
1086
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1077
1087
|
|
|
1088
|
+
[[package]]
|
|
1089
|
+
name = "foldhash"
|
|
1090
|
+
version = "0.1.5"
|
|
1091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1093
|
+
|
|
1078
1094
|
[[package]]
|
|
1079
1095
|
name = "foldhash"
|
|
1080
1096
|
version = "0.2.0"
|
|
@@ -1113,9 +1129,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
|
1113
1129
|
|
|
1114
1130
|
[[package]]
|
|
1115
1131
|
name = "futures"
|
|
1116
|
-
version = "0.3.
|
|
1132
|
+
version = "0.3.32"
|
|
1117
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
-
checksum = "
|
|
1134
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
1119
1135
|
dependencies = [
|
|
1120
1136
|
"futures-channel",
|
|
1121
1137
|
"futures-core",
|
|
@@ -1128,9 +1144,9 @@ dependencies = [
|
|
|
1128
1144
|
|
|
1129
1145
|
[[package]]
|
|
1130
1146
|
name = "futures-channel"
|
|
1131
|
-
version = "0.3.
|
|
1147
|
+
version = "0.3.32"
|
|
1132
1148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
-
checksum = "
|
|
1149
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
1134
1150
|
dependencies = [
|
|
1135
1151
|
"futures-core",
|
|
1136
1152
|
"futures-sink",
|
|
@@ -1138,15 +1154,15 @@ dependencies = [
|
|
|
1138
1154
|
|
|
1139
1155
|
[[package]]
|
|
1140
1156
|
name = "futures-core"
|
|
1141
|
-
version = "0.3.
|
|
1157
|
+
version = "0.3.32"
|
|
1142
1158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
-
checksum = "
|
|
1159
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
1144
1160
|
|
|
1145
1161
|
[[package]]
|
|
1146
1162
|
name = "futures-executor"
|
|
1147
|
-
version = "0.3.
|
|
1163
|
+
version = "0.3.32"
|
|
1148
1164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
-
checksum = "
|
|
1165
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
1150
1166
|
dependencies = [
|
|
1151
1167
|
"futures-core",
|
|
1152
1168
|
"futures-task",
|
|
@@ -1155,15 +1171,15 @@ dependencies = [
|
|
|
1155
1171
|
|
|
1156
1172
|
[[package]]
|
|
1157
1173
|
name = "futures-io"
|
|
1158
|
-
version = "0.3.
|
|
1174
|
+
version = "0.3.32"
|
|
1159
1175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
-
checksum = "
|
|
1176
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
1161
1177
|
|
|
1162
1178
|
[[package]]
|
|
1163
1179
|
name = "futures-macro"
|
|
1164
|
-
version = "0.3.
|
|
1180
|
+
version = "0.3.32"
|
|
1165
1181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
-
checksum = "
|
|
1182
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
1167
1183
|
dependencies = [
|
|
1168
1184
|
"proc-macro2",
|
|
1169
1185
|
"quote",
|
|
@@ -1172,27 +1188,27 @@ dependencies = [
|
|
|
1172
1188
|
|
|
1173
1189
|
[[package]]
|
|
1174
1190
|
name = "futures-sink"
|
|
1175
|
-
version = "0.3.
|
|
1191
|
+
version = "0.3.32"
|
|
1176
1192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
-
checksum = "
|
|
1193
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
1178
1194
|
|
|
1179
1195
|
[[package]]
|
|
1180
1196
|
name = "futures-task"
|
|
1181
|
-
version = "0.3.
|
|
1197
|
+
version = "0.3.32"
|
|
1182
1198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
-
checksum = "
|
|
1199
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
1184
1200
|
|
|
1185
1201
|
[[package]]
|
|
1186
1202
|
name = "futures-timer"
|
|
1187
|
-
version = "3.0.
|
|
1203
|
+
version = "3.0.4"
|
|
1188
1204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
-
checksum = "
|
|
1205
|
+
checksum = "af43fadb8a98512d547e37b4e92e0ced13e205c061b87b4623eff01d918d6968"
|
|
1190
1206
|
|
|
1191
1207
|
[[package]]
|
|
1192
1208
|
name = "futures-util"
|
|
1193
|
-
version = "0.3.
|
|
1209
|
+
version = "0.3.32"
|
|
1194
1210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
-
checksum = "
|
|
1211
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
1196
1212
|
dependencies = [
|
|
1197
1213
|
"futures-channel",
|
|
1198
1214
|
"futures-core",
|
|
@@ -1202,15 +1218,14 @@ dependencies = [
|
|
|
1202
1218
|
"futures-task",
|
|
1203
1219
|
"memchr",
|
|
1204
1220
|
"pin-project-lite",
|
|
1205
|
-
"pin-utils",
|
|
1206
1221
|
"slab",
|
|
1207
1222
|
]
|
|
1208
1223
|
|
|
1209
1224
|
[[package]]
|
|
1210
1225
|
name = "generic-array"
|
|
1211
|
-
version = "0.14.
|
|
1226
|
+
version = "0.14.9"
|
|
1212
1227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
-
checksum = "
|
|
1228
|
+
checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
|
|
1214
1229
|
dependencies = [
|
|
1215
1230
|
"typenum",
|
|
1216
1231
|
"version_check",
|
|
@@ -1219,34 +1234,53 @@ dependencies = [
|
|
|
1219
1234
|
|
|
1220
1235
|
[[package]]
|
|
1221
1236
|
name = "getrandom"
|
|
1222
|
-
version = "0.2.
|
|
1237
|
+
version = "0.2.17"
|
|
1223
1238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
-
checksum = "
|
|
1239
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
1225
1240
|
dependencies = [
|
|
1226
1241
|
"cfg-if",
|
|
1227
1242
|
"libc",
|
|
1228
|
-
"wasi
|
|
1243
|
+
"wasi",
|
|
1229
1244
|
]
|
|
1230
1245
|
|
|
1231
1246
|
[[package]]
|
|
1232
1247
|
name = "getrandom"
|
|
1233
|
-
version = "0.3.
|
|
1248
|
+
version = "0.3.4"
|
|
1234
1249
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
-
checksum = "
|
|
1250
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1236
1251
|
dependencies = [
|
|
1237
1252
|
"cfg-if",
|
|
1238
1253
|
"js-sys",
|
|
1239
1254
|
"libc",
|
|
1240
|
-
"r-efi",
|
|
1241
|
-
"
|
|
1255
|
+
"r-efi 5.3.0",
|
|
1256
|
+
"wasip2",
|
|
1242
1257
|
"wasm-bindgen",
|
|
1243
1258
|
]
|
|
1244
1259
|
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "getrandom"
|
|
1262
|
+
version = "0.4.2"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
1265
|
+
dependencies = [
|
|
1266
|
+
"cfg-if",
|
|
1267
|
+
"libc",
|
|
1268
|
+
"r-efi 6.0.0",
|
|
1269
|
+
"wasip2",
|
|
1270
|
+
"wasip3",
|
|
1271
|
+
]
|
|
1272
|
+
|
|
1245
1273
|
[[package]]
|
|
1246
1274
|
name = "gimli"
|
|
1247
1275
|
version = "0.32.3"
|
|
1248
1276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
1277
|
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
1278
|
+
|
|
1279
|
+
[[package]]
|
|
1280
|
+
name = "gimli"
|
|
1281
|
+
version = "0.33.0"
|
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
+
checksum = "0bf7f043f89559805f8c7cacc432749b2fa0d0a0a9ee46ce47164ed5ba7f126c"
|
|
1250
1284
|
dependencies = [
|
|
1251
1285
|
"fallible-iterator 0.3.0",
|
|
1252
1286
|
"stable_deref_trait",
|
|
@@ -1258,7 +1292,7 @@ version = "0.20.4"
|
|
|
1258
1292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1259
1293
|
checksum = "7b88256088d75a56f8ecfa070513a775dd9107f6530ef14919dac831af9cfe2b"
|
|
1260
1294
|
dependencies = [
|
|
1261
|
-
"bitflags 2.
|
|
1295
|
+
"bitflags 2.11.1",
|
|
1262
1296
|
"libc",
|
|
1263
1297
|
"libgit2-sys",
|
|
1264
1298
|
"log",
|
|
@@ -1273,9 +1307,9 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
|
1273
1307
|
|
|
1274
1308
|
[[package]]
|
|
1275
1309
|
name = "globset"
|
|
1276
|
-
version = "0.4.
|
|
1310
|
+
version = "0.4.18"
|
|
1277
1311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
-
checksum = "
|
|
1312
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
1279
1313
|
dependencies = [
|
|
1280
1314
|
"aho-corasick",
|
|
1281
1315
|
"bstr",
|
|
@@ -1298,13 +1332,13 @@ dependencies = [
|
|
|
1298
1332
|
|
|
1299
1333
|
[[package]]
|
|
1300
1334
|
name = "goblin"
|
|
1301
|
-
version = "0.
|
|
1335
|
+
version = "0.10.7"
|
|
1302
1336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
-
checksum = "
|
|
1337
|
+
checksum = "17582616a7718cca54cec18e534a76c7c4aec11a8b9a85695712f262fd15a4c8"
|
|
1304
1338
|
dependencies = [
|
|
1305
1339
|
"log",
|
|
1306
1340
|
"plain",
|
|
1307
|
-
"scroll 0.
|
|
1341
|
+
"scroll 0.13.0",
|
|
1308
1342
|
]
|
|
1309
1343
|
|
|
1310
1344
|
[[package]]
|
|
@@ -1320,9 +1354,9 @@ dependencies = [
|
|
|
1320
1354
|
|
|
1321
1355
|
[[package]]
|
|
1322
1356
|
name = "h2"
|
|
1323
|
-
version = "0.4.
|
|
1357
|
+
version = "0.4.14"
|
|
1324
1358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
-
checksum = "
|
|
1359
|
+
checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
|
|
1326
1360
|
dependencies = [
|
|
1327
1361
|
"atomic-waker",
|
|
1328
1362
|
"bytes",
|
|
@@ -1343,30 +1377,38 @@ version = "0.12.3"
|
|
|
1343
1377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1344
1378
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1345
1379
|
dependencies = [
|
|
1346
|
-
"ahash
|
|
1380
|
+
"ahash",
|
|
1347
1381
|
]
|
|
1348
1382
|
|
|
1349
1383
|
[[package]]
|
|
1350
1384
|
name = "hashbrown"
|
|
1351
|
-
version = "0.
|
|
1385
|
+
version = "0.15.5"
|
|
1352
1386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1353
|
-
checksum = "
|
|
1387
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1354
1388
|
dependencies = [
|
|
1355
|
-
"
|
|
1389
|
+
"allocator-api2",
|
|
1390
|
+
"equivalent",
|
|
1391
|
+
"foldhash 0.1.5",
|
|
1356
1392
|
"serde",
|
|
1357
1393
|
]
|
|
1358
1394
|
|
|
1359
1395
|
[[package]]
|
|
1360
1396
|
name = "hashbrown"
|
|
1361
|
-
version = "0.16.
|
|
1397
|
+
version = "0.16.1"
|
|
1362
1398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
-
checksum = "
|
|
1399
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1364
1400
|
dependencies = [
|
|
1365
1401
|
"allocator-api2",
|
|
1366
1402
|
"equivalent",
|
|
1367
|
-
"foldhash",
|
|
1403
|
+
"foldhash 0.2.0",
|
|
1368
1404
|
]
|
|
1369
1405
|
|
|
1406
|
+
[[package]]
|
|
1407
|
+
name = "hashbrown"
|
|
1408
|
+
version = "0.17.1"
|
|
1409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1411
|
+
|
|
1370
1412
|
[[package]]
|
|
1371
1413
|
name = "heck"
|
|
1372
1414
|
version = "0.5.0"
|
|
@@ -1405,29 +1447,29 @@ dependencies = [
|
|
|
1405
1447
|
|
|
1406
1448
|
[[package]]
|
|
1407
1449
|
name = "home"
|
|
1408
|
-
version = "0.5.
|
|
1450
|
+
version = "0.5.12"
|
|
1409
1451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
-
checksum = "
|
|
1452
|
+
checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
|
|
1411
1453
|
dependencies = [
|
|
1412
|
-
"windows-sys 0.
|
|
1454
|
+
"windows-sys 0.61.2",
|
|
1413
1455
|
]
|
|
1414
1456
|
|
|
1415
1457
|
[[package]]
|
|
1416
1458
|
name = "hostname"
|
|
1417
|
-
version = "0.4.
|
|
1459
|
+
version = "0.4.2"
|
|
1418
1460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1419
|
-
checksum = "
|
|
1461
|
+
checksum = "617aaa3557aef3810a6369d0a99fac8a080891b68bd9f9812a1eeda0c0730cbd"
|
|
1420
1462
|
dependencies = [
|
|
1421
1463
|
"cfg-if",
|
|
1422
1464
|
"libc",
|
|
1423
|
-
"windows-link
|
|
1465
|
+
"windows-link",
|
|
1424
1466
|
]
|
|
1425
1467
|
|
|
1426
1468
|
[[package]]
|
|
1427
1469
|
name = "http"
|
|
1428
|
-
version = "1.4.
|
|
1470
|
+
version = "1.4.1"
|
|
1429
1471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
-
checksum = "
|
|
1472
|
+
checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
|
|
1431
1473
|
dependencies = [
|
|
1432
1474
|
"bytes",
|
|
1433
1475
|
"itoa",
|
|
@@ -1486,9 +1528,9 @@ dependencies = [
|
|
|
1486
1528
|
|
|
1487
1529
|
[[package]]
|
|
1488
1530
|
name = "hyper"
|
|
1489
|
-
version = "1.
|
|
1531
|
+
version = "1.10.1"
|
|
1490
1532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
-
checksum = "
|
|
1533
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
1492
1534
|
dependencies = [
|
|
1493
1535
|
"atomic-waker",
|
|
1494
1536
|
"bytes",
|
|
@@ -1501,7 +1543,6 @@ dependencies = [
|
|
|
1501
1543
|
"httpdate",
|
|
1502
1544
|
"itoa",
|
|
1503
1545
|
"pin-project-lite",
|
|
1504
|
-
"pin-utils",
|
|
1505
1546
|
"smallvec",
|
|
1506
1547
|
"tokio",
|
|
1507
1548
|
"want",
|
|
@@ -1509,15 +1550,14 @@ dependencies = [
|
|
|
1509
1550
|
|
|
1510
1551
|
[[package]]
|
|
1511
1552
|
name = "hyper-rustls"
|
|
1512
|
-
version = "0.27.
|
|
1553
|
+
version = "0.27.9"
|
|
1513
1554
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
|
-
checksum = "
|
|
1555
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
1515
1556
|
dependencies = [
|
|
1516
1557
|
"http",
|
|
1517
1558
|
"hyper",
|
|
1518
1559
|
"hyper-util",
|
|
1519
1560
|
"rustls",
|
|
1520
|
-
"rustls-pki-types",
|
|
1521
1561
|
"tokio",
|
|
1522
1562
|
"tokio-rustls",
|
|
1523
1563
|
"tower-service",
|
|
@@ -1541,14 +1581,13 @@ dependencies = [
|
|
|
1541
1581
|
|
|
1542
1582
|
[[package]]
|
|
1543
1583
|
name = "hyper-util"
|
|
1544
|
-
version = "0.1.
|
|
1584
|
+
version = "0.1.20"
|
|
1545
1585
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
-
checksum = "
|
|
1586
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
1547
1587
|
dependencies = [
|
|
1548
1588
|
"base64 0.22.1",
|
|
1549
1589
|
"bytes",
|
|
1550
1590
|
"futures-channel",
|
|
1551
|
-
"futures-core",
|
|
1552
1591
|
"futures-util",
|
|
1553
1592
|
"http",
|
|
1554
1593
|
"http-body",
|
|
@@ -1567,9 +1606,9 @@ dependencies = [
|
|
|
1567
1606
|
|
|
1568
1607
|
[[package]]
|
|
1569
1608
|
name = "iana-time-zone"
|
|
1570
|
-
version = "0.1.
|
|
1609
|
+
version = "0.1.65"
|
|
1571
1610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
-
checksum = "
|
|
1611
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
1573
1612
|
dependencies = [
|
|
1574
1613
|
"android_system_properties",
|
|
1575
1614
|
"core-foundation-sys",
|
|
@@ -1591,12 +1630,13 @@ dependencies = [
|
|
|
1591
1630
|
|
|
1592
1631
|
[[package]]
|
|
1593
1632
|
name = "icu_collections"
|
|
1594
|
-
version = "2.
|
|
1633
|
+
version = "2.2.0"
|
|
1595
1634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
-
checksum = "
|
|
1635
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
1597
1636
|
dependencies = [
|
|
1598
1637
|
"displaydoc",
|
|
1599
1638
|
"potential_utf",
|
|
1639
|
+
"utf8_iter",
|
|
1600
1640
|
"yoke",
|
|
1601
1641
|
"zerofrom",
|
|
1602
1642
|
"zerovec",
|
|
@@ -1604,9 +1644,9 @@ dependencies = [
|
|
|
1604
1644
|
|
|
1605
1645
|
[[package]]
|
|
1606
1646
|
name = "icu_locale_core"
|
|
1607
|
-
version = "2.
|
|
1647
|
+
version = "2.2.0"
|
|
1608
1648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
-
checksum = "
|
|
1649
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
1610
1650
|
dependencies = [
|
|
1611
1651
|
"displaydoc",
|
|
1612
1652
|
"litemap",
|
|
@@ -1617,11 +1657,10 @@ dependencies = [
|
|
|
1617
1657
|
|
|
1618
1658
|
[[package]]
|
|
1619
1659
|
name = "icu_normalizer"
|
|
1620
|
-
version = "2.
|
|
1660
|
+
version = "2.2.0"
|
|
1621
1661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
-
checksum = "
|
|
1662
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1623
1663
|
dependencies = [
|
|
1624
|
-
"displaydoc",
|
|
1625
1664
|
"icu_collections",
|
|
1626
1665
|
"icu_normalizer_data",
|
|
1627
1666
|
"icu_properties",
|
|
@@ -1632,42 +1671,38 @@ dependencies = [
|
|
|
1632
1671
|
|
|
1633
1672
|
[[package]]
|
|
1634
1673
|
name = "icu_normalizer_data"
|
|
1635
|
-
version = "2.
|
|
1674
|
+
version = "2.2.0"
|
|
1636
1675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1637
|
-
checksum = "
|
|
1676
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1638
1677
|
|
|
1639
1678
|
[[package]]
|
|
1640
1679
|
name = "icu_properties"
|
|
1641
|
-
version = "2.0
|
|
1680
|
+
version = "2.2.0"
|
|
1642
1681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
|
-
checksum = "
|
|
1682
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1644
1683
|
dependencies = [
|
|
1645
|
-
"displaydoc",
|
|
1646
1684
|
"icu_collections",
|
|
1647
1685
|
"icu_locale_core",
|
|
1648
1686
|
"icu_properties_data",
|
|
1649
1687
|
"icu_provider",
|
|
1650
|
-
"potential_utf",
|
|
1651
1688
|
"zerotrie",
|
|
1652
1689
|
"zerovec",
|
|
1653
1690
|
]
|
|
1654
1691
|
|
|
1655
1692
|
[[package]]
|
|
1656
1693
|
name = "icu_properties_data"
|
|
1657
|
-
version = "2.0
|
|
1694
|
+
version = "2.2.0"
|
|
1658
1695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
-
checksum = "
|
|
1696
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1660
1697
|
|
|
1661
1698
|
[[package]]
|
|
1662
1699
|
name = "icu_provider"
|
|
1663
|
-
version = "2.
|
|
1700
|
+
version = "2.2.0"
|
|
1664
1701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
-
checksum = "
|
|
1702
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1666
1703
|
dependencies = [
|
|
1667
1704
|
"displaydoc",
|
|
1668
1705
|
"icu_locale_core",
|
|
1669
|
-
"stable_deref_trait",
|
|
1670
|
-
"tinystr",
|
|
1671
1706
|
"writeable",
|
|
1672
1707
|
"yoke",
|
|
1673
1708
|
"zerofrom",
|
|
@@ -1675,6 +1710,12 @@ dependencies = [
|
|
|
1675
1710
|
"zerovec",
|
|
1676
1711
|
]
|
|
1677
1712
|
|
|
1713
|
+
[[package]]
|
|
1714
|
+
name = "id-arena"
|
|
1715
|
+
version = "2.3.0"
|
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1717
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1718
|
+
|
|
1678
1719
|
[[package]]
|
|
1679
1720
|
name = "idna"
|
|
1680
1721
|
version = "1.1.0"
|
|
@@ -1688,9 +1729,9 @@ dependencies = [
|
|
|
1688
1729
|
|
|
1689
1730
|
[[package]]
|
|
1690
1731
|
name = "idna_adapter"
|
|
1691
|
-
version = "1.2.
|
|
1732
|
+
version = "1.2.2"
|
|
1692
1733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1693
|
-
checksum = "
|
|
1734
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1694
1735
|
dependencies = [
|
|
1695
1736
|
"icu_normalizer",
|
|
1696
1737
|
"icu_properties",
|
|
@@ -1704,9 +1745,9 @@ checksum = "cd62e6b5e86ea8eeeb8db1de02880a6abc01a397b2ebb64b5d74ac255318f5cb"
|
|
|
1704
1745
|
|
|
1705
1746
|
[[package]]
|
|
1706
1747
|
name = "ignore"
|
|
1707
|
-
version = "0.4.
|
|
1748
|
+
version = "0.4.25"
|
|
1708
1749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1709
|
-
checksum = "
|
|
1750
|
+
checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
|
|
1710
1751
|
dependencies = [
|
|
1711
1752
|
"crossbeam-deque",
|
|
1712
1753
|
"globset",
|
|
@@ -1732,12 +1773,12 @@ checksum = "0cfe9645a18782869361d9c8732246be7b410ad4e919d3609ebabdac00ba12c3"
|
|
|
1732
1773
|
|
|
1733
1774
|
[[package]]
|
|
1734
1775
|
name = "indexmap"
|
|
1735
|
-
version = "2.
|
|
1776
|
+
version = "2.14.0"
|
|
1736
1777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
-
checksum = "
|
|
1778
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1738
1779
|
dependencies = [
|
|
1739
1780
|
"equivalent",
|
|
1740
|
-
"hashbrown 0.
|
|
1781
|
+
"hashbrown 0.17.1",
|
|
1741
1782
|
"serde",
|
|
1742
1783
|
"serde_core",
|
|
1743
1784
|
]
|
|
@@ -1748,7 +1789,7 @@ version = "0.14.0"
|
|
|
1748
1789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
1790
|
checksum = "49a68371cf417889c9d7f98235b7102ea7c54fc59bcbd22f3dea785be9d27e40"
|
|
1750
1791
|
dependencies = [
|
|
1751
|
-
"console 0.16.
|
|
1792
|
+
"console 0.16.3",
|
|
1752
1793
|
"lazy_static",
|
|
1753
1794
|
"number_prefix",
|
|
1754
1795
|
"regex",
|
|
@@ -1780,61 +1821,41 @@ dependencies = [
|
|
|
1780
1821
|
|
|
1781
1822
|
[[package]]
|
|
1782
1823
|
name = "insta"
|
|
1783
|
-
version = "1.
|
|
1824
|
+
version = "1.47.2"
|
|
1784
1825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
-
checksum = "
|
|
1826
|
+
checksum = "7b4a6248eb93a4401ed2f37dfe8ea592d3cf05b7cf4f8efa867b6895af7e094e"
|
|
1786
1827
|
dependencies = [
|
|
1787
|
-
"console 0.
|
|
1828
|
+
"console 0.16.3",
|
|
1788
1829
|
"once_cell",
|
|
1789
1830
|
"pest",
|
|
1790
1831
|
"pest_derive",
|
|
1791
1832
|
"serde",
|
|
1792
1833
|
"similar",
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
[[package]]
|
|
1796
|
-
name = "io-uring"
|
|
1797
|
-
version = "0.7.10"
|
|
1798
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
-
checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b"
|
|
1800
|
-
dependencies = [
|
|
1801
|
-
"bitflags 2.9.4",
|
|
1802
|
-
"cfg-if",
|
|
1803
|
-
"libc",
|
|
1834
|
+
"tempfile",
|
|
1804
1835
|
]
|
|
1805
1836
|
|
|
1806
1837
|
[[package]]
|
|
1807
1838
|
name = "ipnet"
|
|
1808
|
-
version = "2.
|
|
1809
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
-
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1811
|
-
|
|
1812
|
-
[[package]]
|
|
1813
|
-
name = "iri-string"
|
|
1814
|
-
version = "0.7.9"
|
|
1839
|
+
version = "2.12.0"
|
|
1815
1840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
-
checksum = "
|
|
1817
|
-
dependencies = [
|
|
1818
|
-
"memchr",
|
|
1819
|
-
"serde",
|
|
1820
|
-
]
|
|
1841
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1821
1842
|
|
|
1822
1843
|
[[package]]
|
|
1823
1844
|
name = "is-terminal"
|
|
1824
|
-
version = "0.4.
|
|
1845
|
+
version = "0.4.17"
|
|
1825
1846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
-
checksum = "
|
|
1847
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1827
1848
|
dependencies = [
|
|
1828
1849
|
"hermit-abi",
|
|
1829
1850
|
"libc",
|
|
1830
|
-
"windows-sys 0.
|
|
1851
|
+
"windows-sys 0.61.2",
|
|
1831
1852
|
]
|
|
1832
1853
|
|
|
1833
1854
|
[[package]]
|
|
1834
1855
|
name = "is_terminal_polyfill"
|
|
1835
|
-
version = "1.70.
|
|
1856
|
+
version = "1.70.2"
|
|
1836
1857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
-
checksum = "
|
|
1858
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1838
1859
|
|
|
1839
1860
|
[[package]]
|
|
1840
1861
|
name = "itertools"
|
|
@@ -1847,9 +1868,9 @@ dependencies = [
|
|
|
1847
1868
|
|
|
1848
1869
|
[[package]]
|
|
1849
1870
|
name = "itoa"
|
|
1850
|
-
version = "1.0.
|
|
1871
|
+
version = "1.0.18"
|
|
1851
1872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1852
|
-
checksum = "
|
|
1873
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1853
1874
|
|
|
1854
1875
|
[[package]]
|
|
1855
1876
|
name = "java-properties"
|
|
@@ -1868,7 +1889,7 @@ version = "0.1.34"
|
|
|
1868
1889
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
1890
|
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1870
1891
|
dependencies = [
|
|
1871
|
-
"getrandom 0.3.
|
|
1892
|
+
"getrandom 0.3.4",
|
|
1872
1893
|
"libc",
|
|
1873
1894
|
]
|
|
1874
1895
|
|
|
@@ -1880,35 +1901,38 @@ checksum = "72167d68f5fce3b8655487b8038691a3c9984ee769590f93f2a631f4ad64e4f5"
|
|
|
1880
1901
|
|
|
1881
1902
|
[[package]]
|
|
1882
1903
|
name = "js-sys"
|
|
1883
|
-
version = "0.3.
|
|
1904
|
+
version = "0.3.99"
|
|
1884
1905
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1885
|
-
checksum = "
|
|
1906
|
+
checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
|
|
1886
1907
|
dependencies = [
|
|
1908
|
+
"cfg-if",
|
|
1909
|
+
"futures-util",
|
|
1887
1910
|
"once_cell",
|
|
1888
1911
|
"wasm-bindgen",
|
|
1889
1912
|
]
|
|
1890
1913
|
|
|
1891
1914
|
[[package]]
|
|
1892
1915
|
name = "jsonwebtoken"
|
|
1893
|
-
version = "10.
|
|
1916
|
+
version = "10.4.0"
|
|
1894
1917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
-
checksum = "
|
|
1918
|
+
checksum = "eba32bfb4ffdeaca3e34431072faf01745c9b26d25504aa7a6cf5684334fc4fc"
|
|
1896
1919
|
dependencies = [
|
|
1897
1920
|
"base64 0.22.1",
|
|
1898
1921
|
"ed25519-dalek",
|
|
1899
|
-
"getrandom 0.2.
|
|
1922
|
+
"getrandom 0.2.17",
|
|
1900
1923
|
"hmac",
|
|
1901
1924
|
"js-sys",
|
|
1902
1925
|
"p256",
|
|
1903
1926
|
"p384",
|
|
1904
1927
|
"pem",
|
|
1905
|
-
"rand 0.8.
|
|
1928
|
+
"rand 0.8.6",
|
|
1906
1929
|
"rsa",
|
|
1907
1930
|
"serde",
|
|
1908
1931
|
"serde_json",
|
|
1909
1932
|
"sha2",
|
|
1910
1933
|
"signature",
|
|
1911
1934
|
"simple_asn1",
|
|
1935
|
+
"zeroize",
|
|
1912
1936
|
]
|
|
1913
1937
|
|
|
1914
1938
|
[[package]]
|
|
@@ -1922,21 +1946,27 @@ dependencies = [
|
|
|
1922
1946
|
|
|
1923
1947
|
[[package]]
|
|
1924
1948
|
name = "leb128"
|
|
1925
|
-
version = "0.2.
|
|
1949
|
+
version = "0.2.6"
|
|
1950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1951
|
+
checksum = "6cc46bac87ef8093eed6f272babb833b6443374399985ac8ed28471ee0918545"
|
|
1952
|
+
|
|
1953
|
+
[[package]]
|
|
1954
|
+
name = "leb128fmt"
|
|
1955
|
+
version = "0.1.0"
|
|
1926
1956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
|
-
checksum = "
|
|
1957
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1928
1958
|
|
|
1929
1959
|
[[package]]
|
|
1930
1960
|
name = "libc"
|
|
1931
|
-
version = "0.2.
|
|
1961
|
+
version = "0.2.186"
|
|
1932
1962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
-
checksum = "
|
|
1963
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1934
1964
|
|
|
1935
1965
|
[[package]]
|
|
1936
1966
|
name = "libgit2-sys"
|
|
1937
|
-
version = "0.18.
|
|
1967
|
+
version = "0.18.5+1.9.4"
|
|
1938
1968
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
-
checksum = "
|
|
1969
|
+
checksum = "005d6ae6eac1912906073e069f7db60b1fa98e052a68227824afe3e3a1c59ca2"
|
|
1940
1970
|
dependencies = [
|
|
1941
1971
|
"cc",
|
|
1942
1972
|
"libc",
|
|
@@ -1952,20 +1982,21 @@ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
|
1952
1982
|
|
|
1953
1983
|
[[package]]
|
|
1954
1984
|
name = "libredox"
|
|
1955
|
-
version = "0.1.
|
|
1985
|
+
version = "0.1.17"
|
|
1956
1986
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1957
|
-
checksum = "
|
|
1987
|
+
checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
|
|
1958
1988
|
dependencies = [
|
|
1959
|
-
"bitflags 2.
|
|
1989
|
+
"bitflags 2.11.1",
|
|
1960
1990
|
"libc",
|
|
1961
|
-
"
|
|
1991
|
+
"plain",
|
|
1992
|
+
"redox_syscall 0.8.0",
|
|
1962
1993
|
]
|
|
1963
1994
|
|
|
1964
1995
|
[[package]]
|
|
1965
1996
|
name = "libz-sys"
|
|
1966
|
-
version = "1.1.
|
|
1997
|
+
version = "1.1.29"
|
|
1967
1998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1968
|
-
checksum = "
|
|
1999
|
+
checksum = "85bc9657773828b90eeb625adff10eeac83cc21bbfd8e23a03eaa8a33c9e28d9"
|
|
1969
2000
|
dependencies = [
|
|
1970
2001
|
"cc",
|
|
1971
2002
|
"libc",
|
|
@@ -1981,39 +2012,38 @@ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
|
1981
2012
|
|
|
1982
2013
|
[[package]]
|
|
1983
2014
|
name = "linux-raw-sys"
|
|
1984
|
-
version = "0.
|
|
2015
|
+
version = "0.12.1"
|
|
1985
2016
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1986
|
-
checksum = "
|
|
2017
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1987
2018
|
|
|
1988
2019
|
[[package]]
|
|
1989
2020
|
name = "litemap"
|
|
1990
|
-
version = "0.8.
|
|
2021
|
+
version = "0.8.2"
|
|
1991
2022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1992
|
-
checksum = "
|
|
2023
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1993
2024
|
|
|
1994
2025
|
[[package]]
|
|
1995
2026
|
name = "lock_api"
|
|
1996
|
-
version = "0.4.
|
|
2027
|
+
version = "0.4.14"
|
|
1997
2028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1998
|
-
checksum = "
|
|
2029
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1999
2030
|
dependencies = [
|
|
2000
|
-
"autocfg",
|
|
2001
2031
|
"scopeguard",
|
|
2002
2032
|
]
|
|
2003
2033
|
|
|
2004
2034
|
[[package]]
|
|
2005
2035
|
name = "log"
|
|
2006
|
-
version = "0.4.
|
|
2036
|
+
version = "0.4.30"
|
|
2007
2037
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2008
|
-
checksum = "
|
|
2038
|
+
checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
|
|
2009
2039
|
|
|
2010
2040
|
[[package]]
|
|
2011
2041
|
name = "lru"
|
|
2012
|
-
version = "0.16.
|
|
2042
|
+
version = "0.16.4"
|
|
2013
2043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2014
|
-
checksum = "
|
|
2044
|
+
checksum = "7f66e8d5d03f609abc3a39e6f08e4164ebf1447a732906d39eb9b99b7919ef39"
|
|
2015
2045
|
dependencies = [
|
|
2016
|
-
"hashbrown 0.16.
|
|
2046
|
+
"hashbrown 0.16.1",
|
|
2017
2047
|
]
|
|
2018
2048
|
|
|
2019
2049
|
[[package]]
|
|
@@ -2073,15 +2103,15 @@ checksum = "120fa187be19d9962f0926633453784691731018a2bf936ddb4e29101b79c4a7"
|
|
|
2073
2103
|
|
|
2074
2104
|
[[package]]
|
|
2075
2105
|
name = "memchr"
|
|
2076
|
-
version = "2.
|
|
2106
|
+
version = "2.8.1"
|
|
2077
2107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2078
|
-
checksum = "
|
|
2108
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
2079
2109
|
|
|
2080
2110
|
[[package]]
|
|
2081
2111
|
name = "memmap2"
|
|
2082
|
-
version = "0.9.
|
|
2112
|
+
version = "0.9.10"
|
|
2083
2113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2084
|
-
checksum = "
|
|
2114
|
+
checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
|
|
2085
2115
|
dependencies = [
|
|
2086
2116
|
"libc",
|
|
2087
2117
|
]
|
|
@@ -2115,36 +2145,38 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2115
2145
|
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
2116
2146
|
dependencies = [
|
|
2117
2147
|
"adler2",
|
|
2148
|
+
"simd-adler32",
|
|
2118
2149
|
]
|
|
2119
2150
|
|
|
2120
2151
|
[[package]]
|
|
2121
2152
|
name = "mio"
|
|
2122
|
-
version = "1.
|
|
2153
|
+
version = "1.2.1"
|
|
2123
2154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2124
|
-
checksum = "
|
|
2155
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
2125
2156
|
dependencies = [
|
|
2126
2157
|
"libc",
|
|
2127
|
-
"wasi
|
|
2128
|
-
"windows-sys 0.
|
|
2158
|
+
"wasi",
|
|
2159
|
+
"windows-sys 0.61.2",
|
|
2129
2160
|
]
|
|
2130
2161
|
|
|
2131
2162
|
[[package]]
|
|
2132
2163
|
name = "mockito"
|
|
2133
|
-
version = "1.7.
|
|
2164
|
+
version = "1.7.2"
|
|
2134
2165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2135
|
-
checksum = "
|
|
2166
|
+
checksum = "90820618712cab19cfc46b274c6c22546a82affcb3c3bdf0f29e3db8e1bb92c0"
|
|
2136
2167
|
dependencies = [
|
|
2137
2168
|
"assert-json-diff",
|
|
2138
2169
|
"bytes",
|
|
2139
2170
|
"colored",
|
|
2140
|
-
"futures-
|
|
2171
|
+
"futures-core",
|
|
2141
2172
|
"http",
|
|
2142
2173
|
"http-body",
|
|
2143
2174
|
"http-body-util",
|
|
2144
2175
|
"hyper",
|
|
2145
2176
|
"hyper-util",
|
|
2146
2177
|
"log",
|
|
2147
|
-
"
|
|
2178
|
+
"pin-project-lite",
|
|
2179
|
+
"rand 0.9.4",
|
|
2148
2180
|
"regex",
|
|
2149
2181
|
"serde_json",
|
|
2150
2182
|
"serde_urlencoded",
|
|
@@ -2171,14 +2203,14 @@ dependencies = [
|
|
|
2171
2203
|
|
|
2172
2204
|
[[package]]
|
|
2173
2205
|
name = "native-tls"
|
|
2174
|
-
version = "0.2.
|
|
2206
|
+
version = "0.2.18"
|
|
2175
2207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2176
|
-
checksum = "
|
|
2208
|
+
checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
|
|
2177
2209
|
dependencies = [
|
|
2178
2210
|
"libc",
|
|
2179
2211
|
"log",
|
|
2180
2212
|
"openssl",
|
|
2181
|
-
"openssl-probe",
|
|
2213
|
+
"openssl-probe 0.2.1",
|
|
2182
2214
|
"openssl-sys",
|
|
2183
2215
|
"schannel",
|
|
2184
2216
|
"security-framework",
|
|
@@ -2192,6 +2224,18 @@ version = "1.0.6"
|
|
|
2192
2224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2193
2225
|
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
2194
2226
|
|
|
2227
|
+
[[package]]
|
|
2228
|
+
name = "nix"
|
|
2229
|
+
version = "0.31.3"
|
|
2230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2231
|
+
checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
|
|
2232
|
+
dependencies = [
|
|
2233
|
+
"bitflags 2.11.1",
|
|
2234
|
+
"cfg-if",
|
|
2235
|
+
"cfg_aliases",
|
|
2236
|
+
"libc",
|
|
2237
|
+
]
|
|
2238
|
+
|
|
2195
2239
|
[[package]]
|
|
2196
2240
|
name = "nom"
|
|
2197
2241
|
version = "7.1.3"
|
|
@@ -2242,16 +2286,16 @@ dependencies = [
|
|
|
2242
2286
|
"num-integer",
|
|
2243
2287
|
"num-iter",
|
|
2244
2288
|
"num-traits",
|
|
2245
|
-
"rand 0.8.
|
|
2289
|
+
"rand 0.8.6",
|
|
2246
2290
|
"smallvec",
|
|
2247
2291
|
"zeroize",
|
|
2248
2292
|
]
|
|
2249
2293
|
|
|
2250
2294
|
[[package]]
|
|
2251
2295
|
name = "num-conv"
|
|
2252
|
-
version = "0.2.
|
|
2296
|
+
version = "0.2.2"
|
|
2253
2297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2254
|
-
checksum = "
|
|
2298
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
2255
2299
|
|
|
2256
2300
|
[[package]]
|
|
2257
2301
|
name = "num-integer"
|
|
@@ -2290,83 +2334,243 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2290
2334
|
checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a"
|
|
2291
2335
|
|
|
2292
2336
|
[[package]]
|
|
2293
|
-
name = "
|
|
2294
|
-
version = "0.
|
|
2337
|
+
name = "objc2"
|
|
2338
|
+
version = "0.6.4"
|
|
2295
2339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2296
|
-
checksum = "
|
|
2340
|
+
checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
|
|
2297
2341
|
dependencies = [
|
|
2298
|
-
"
|
|
2342
|
+
"objc2-encode",
|
|
2299
2343
|
]
|
|
2300
2344
|
|
|
2301
2345
|
[[package]]
|
|
2302
|
-
name = "
|
|
2303
|
-
version = "0.
|
|
2346
|
+
name = "objc2-cloud-kit"
|
|
2347
|
+
version = "0.3.2"
|
|
2304
2348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2305
|
-
checksum = "
|
|
2349
|
+
checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c"
|
|
2306
2350
|
dependencies = [
|
|
2307
|
-
"
|
|
2308
|
-
"
|
|
2309
|
-
"
|
|
2310
|
-
"infer",
|
|
2311
|
-
"jsonwebtoken",
|
|
2312
|
-
"multer",
|
|
2313
|
-
"objectstore-types",
|
|
2314
|
-
"percent-encoding",
|
|
2315
|
-
"reqwest",
|
|
2316
|
-
"sentry-core",
|
|
2317
|
-
"serde",
|
|
2318
|
-
"thiserror 2.0.17",
|
|
2319
|
-
"tokio",
|
|
2320
|
-
"tokio-util",
|
|
2321
|
-
"url",
|
|
2351
|
+
"bitflags 2.11.1",
|
|
2352
|
+
"objc2",
|
|
2353
|
+
"objc2-foundation",
|
|
2322
2354
|
]
|
|
2323
2355
|
|
|
2324
2356
|
[[package]]
|
|
2325
|
-
name = "
|
|
2326
|
-
version = "0.
|
|
2357
|
+
name = "objc2-core-data"
|
|
2358
|
+
version = "0.3.2"
|
|
2327
2359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2328
|
-
checksum = "
|
|
2360
|
+
checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa"
|
|
2329
2361
|
dependencies = [
|
|
2330
|
-
"
|
|
2331
|
-
"
|
|
2332
|
-
"mediatype",
|
|
2333
|
-
"serde",
|
|
2334
|
-
"thiserror 2.0.17",
|
|
2362
|
+
"objc2",
|
|
2363
|
+
"objc2-foundation",
|
|
2335
2364
|
]
|
|
2336
2365
|
|
|
2337
2366
|
[[package]]
|
|
2338
|
-
name = "
|
|
2339
|
-
version = "
|
|
2367
|
+
name = "objc2-core-foundation"
|
|
2368
|
+
version = "0.3.2"
|
|
2340
2369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
-
checksum = "
|
|
2370
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
2371
|
+
dependencies = [
|
|
2372
|
+
"bitflags 2.11.1",
|
|
2373
|
+
"dispatch2",
|
|
2374
|
+
"objc2",
|
|
2375
|
+
]
|
|
2342
2376
|
|
|
2343
2377
|
[[package]]
|
|
2344
|
-
name = "
|
|
2345
|
-
version = "
|
|
2378
|
+
name = "objc2-core-graphics"
|
|
2379
|
+
version = "0.3.2"
|
|
2346
2380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2347
|
-
checksum = "
|
|
2381
|
+
checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
|
|
2382
|
+
dependencies = [
|
|
2383
|
+
"bitflags 2.11.1",
|
|
2384
|
+
"dispatch2",
|
|
2385
|
+
"objc2",
|
|
2386
|
+
"objc2-core-foundation",
|
|
2387
|
+
"objc2-io-surface",
|
|
2388
|
+
]
|
|
2348
2389
|
|
|
2349
2390
|
[[package]]
|
|
2350
|
-
name = "
|
|
2351
|
-
version = "3.2
|
|
2391
|
+
name = "objc2-core-image"
|
|
2392
|
+
version = "0.3.2"
|
|
2352
2393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
|
-
checksum = "
|
|
2394
|
+
checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006"
|
|
2354
2395
|
dependencies = [
|
|
2355
|
-
"
|
|
2356
|
-
"
|
|
2396
|
+
"objc2",
|
|
2397
|
+
"objc2-foundation",
|
|
2357
2398
|
]
|
|
2358
2399
|
|
|
2359
2400
|
[[package]]
|
|
2360
|
-
name = "
|
|
2361
|
-
version = "0.
|
|
2401
|
+
name = "objc2-core-location"
|
|
2402
|
+
version = "0.3.2"
|
|
2362
2403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2363
|
-
checksum = "
|
|
2404
|
+
checksum = "ca347214e24bc973fc025fd0d36ebb179ff30536ed1f80252706db19ee452009"
|
|
2364
2405
|
dependencies = [
|
|
2365
|
-
"
|
|
2366
|
-
"
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2406
|
+
"objc2",
|
|
2407
|
+
"objc2-foundation",
|
|
2408
|
+
]
|
|
2409
|
+
|
|
2410
|
+
[[package]]
|
|
2411
|
+
name = "objc2-core-text"
|
|
2412
|
+
version = "0.3.2"
|
|
2413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2414
|
+
checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d"
|
|
2415
|
+
dependencies = [
|
|
2416
|
+
"bitflags 2.11.1",
|
|
2417
|
+
"objc2",
|
|
2418
|
+
"objc2-core-foundation",
|
|
2419
|
+
"objc2-core-graphics",
|
|
2420
|
+
]
|
|
2421
|
+
|
|
2422
|
+
[[package]]
|
|
2423
|
+
name = "objc2-encode"
|
|
2424
|
+
version = "4.1.0"
|
|
2425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2426
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
2427
|
+
|
|
2428
|
+
[[package]]
|
|
2429
|
+
name = "objc2-foundation"
|
|
2430
|
+
version = "0.3.2"
|
|
2431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
+
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
2433
|
+
dependencies = [
|
|
2434
|
+
"bitflags 2.11.1",
|
|
2435
|
+
"block2",
|
|
2436
|
+
"libc",
|
|
2437
|
+
"objc2",
|
|
2438
|
+
"objc2-core-foundation",
|
|
2439
|
+
]
|
|
2440
|
+
|
|
2441
|
+
[[package]]
|
|
2442
|
+
name = "objc2-io-surface"
|
|
2443
|
+
version = "0.3.2"
|
|
2444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2445
|
+
checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
|
|
2446
|
+
dependencies = [
|
|
2447
|
+
"bitflags 2.11.1",
|
|
2448
|
+
"objc2",
|
|
2449
|
+
"objc2-core-foundation",
|
|
2450
|
+
]
|
|
2451
|
+
|
|
2452
|
+
[[package]]
|
|
2453
|
+
name = "objc2-quartz-core"
|
|
2454
|
+
version = "0.3.2"
|
|
2455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2456
|
+
checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
|
|
2457
|
+
dependencies = [
|
|
2458
|
+
"bitflags 2.11.1",
|
|
2459
|
+
"objc2",
|
|
2460
|
+
"objc2-core-foundation",
|
|
2461
|
+
"objc2-foundation",
|
|
2462
|
+
]
|
|
2463
|
+
|
|
2464
|
+
[[package]]
|
|
2465
|
+
name = "objc2-ui-kit"
|
|
2466
|
+
version = "0.3.2"
|
|
2467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2468
|
+
checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22"
|
|
2469
|
+
dependencies = [
|
|
2470
|
+
"bitflags 2.11.1",
|
|
2471
|
+
"block2",
|
|
2472
|
+
"objc2",
|
|
2473
|
+
"objc2-cloud-kit",
|
|
2474
|
+
"objc2-core-data",
|
|
2475
|
+
"objc2-core-foundation",
|
|
2476
|
+
"objc2-core-graphics",
|
|
2477
|
+
"objc2-core-image",
|
|
2478
|
+
"objc2-core-location",
|
|
2479
|
+
"objc2-core-text",
|
|
2480
|
+
"objc2-foundation",
|
|
2481
|
+
"objc2-quartz-core",
|
|
2482
|
+
"objc2-user-notifications",
|
|
2483
|
+
]
|
|
2484
|
+
|
|
2485
|
+
[[package]]
|
|
2486
|
+
name = "objc2-user-notifications"
|
|
2487
|
+
version = "0.3.2"
|
|
2488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2489
|
+
checksum = "9df9128cbbfef73cda168416ccf7f837b62737d748333bfe9ab71c245d76613e"
|
|
2490
|
+
dependencies = [
|
|
2491
|
+
"objc2",
|
|
2492
|
+
"objc2-foundation",
|
|
2493
|
+
]
|
|
2494
|
+
|
|
2495
|
+
[[package]]
|
|
2496
|
+
name = "object"
|
|
2497
|
+
version = "0.37.3"
|
|
2498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2499
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
2500
|
+
dependencies = [
|
|
2501
|
+
"memchr",
|
|
2502
|
+
]
|
|
2503
|
+
|
|
2504
|
+
[[package]]
|
|
2505
|
+
name = "objectstore-client"
|
|
2506
|
+
version = "0.1.12"
|
|
2507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2508
|
+
checksum = "2713028097b2f0f00696d7d389a877f7370c02813548124c4422941f669732f3"
|
|
2509
|
+
dependencies = [
|
|
2510
|
+
"async-compression",
|
|
2511
|
+
"bytes",
|
|
2512
|
+
"futures-util",
|
|
2513
|
+
"infer",
|
|
2514
|
+
"jsonwebtoken",
|
|
2515
|
+
"multer",
|
|
2516
|
+
"objectstore-types",
|
|
2517
|
+
"percent-encoding",
|
|
2518
|
+
"reqwest",
|
|
2519
|
+
"sentry-core 0.48.2",
|
|
2520
|
+
"serde",
|
|
2521
|
+
"thiserror 2.0.18",
|
|
2522
|
+
"tokio",
|
|
2523
|
+
"tokio-util",
|
|
2524
|
+
"url",
|
|
2525
|
+
"zstd-safe",
|
|
2526
|
+
]
|
|
2527
|
+
|
|
2528
|
+
[[package]]
|
|
2529
|
+
name = "objectstore-types"
|
|
2530
|
+
version = "0.1.12"
|
|
2531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2532
|
+
checksum = "c83aedfcc050322caefbfdba0372518f316624995f04f97a1f00cafb08ce1d0c"
|
|
2533
|
+
dependencies = [
|
|
2534
|
+
"http",
|
|
2535
|
+
"humantime",
|
|
2536
|
+
"humantime-serde",
|
|
2537
|
+
"mediatype",
|
|
2538
|
+
"serde",
|
|
2539
|
+
"thiserror 2.0.18",
|
|
2540
|
+
]
|
|
2541
|
+
|
|
2542
|
+
[[package]]
|
|
2543
|
+
name = "once_cell"
|
|
2544
|
+
version = "1.21.4"
|
|
2545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2546
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
2547
|
+
|
|
2548
|
+
[[package]]
|
|
2549
|
+
name = "once_cell_polyfill"
|
|
2550
|
+
version = "1.70.2"
|
|
2551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
2553
|
+
|
|
2554
|
+
[[package]]
|
|
2555
|
+
name = "open"
|
|
2556
|
+
version = "3.2.0"
|
|
2557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2558
|
+
checksum = "2078c0039e6a54a0c42c28faa984e115fb4c2d5bf2208f77d1961002df8576f8"
|
|
2559
|
+
dependencies = [
|
|
2560
|
+
"pathdiff",
|
|
2561
|
+
"windows-sys 0.42.0",
|
|
2562
|
+
]
|
|
2563
|
+
|
|
2564
|
+
[[package]]
|
|
2565
|
+
name = "openssl"
|
|
2566
|
+
version = "0.10.80"
|
|
2567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2568
|
+
checksum = "a45fa2aa886c42762255da344f0a0d313e254066c46aad76f300c3d3da62d967"
|
|
2569
|
+
dependencies = [
|
|
2570
|
+
"bitflags 2.11.1",
|
|
2571
|
+
"cfg-if",
|
|
2572
|
+
"foreign-types",
|
|
2573
|
+
"libc",
|
|
2370
2574
|
"openssl-macros",
|
|
2371
2575
|
"openssl-sys",
|
|
2372
2576
|
]
|
|
@@ -2388,20 +2592,26 @@ version = "0.1.6"
|
|
|
2388
2592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2389
2593
|
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
2390
2594
|
|
|
2595
|
+
[[package]]
|
|
2596
|
+
name = "openssl-probe"
|
|
2597
|
+
version = "0.2.1"
|
|
2598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2599
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
2600
|
+
|
|
2391
2601
|
[[package]]
|
|
2392
2602
|
name = "openssl-src"
|
|
2393
|
-
version = "300.
|
|
2603
|
+
version = "300.6.0+3.6.2"
|
|
2394
2604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2395
|
-
checksum = "
|
|
2605
|
+
checksum = "a8e8cbfd3a4a8c8f089147fd7aaa33cf8c7450c4d09f8f80698a0cf093abeff4"
|
|
2396
2606
|
dependencies = [
|
|
2397
2607
|
"cc",
|
|
2398
2608
|
]
|
|
2399
2609
|
|
|
2400
2610
|
[[package]]
|
|
2401
2611
|
name = "openssl-sys"
|
|
2402
|
-
version = "0.9.
|
|
2612
|
+
version = "0.9.116"
|
|
2403
2613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2404
|
-
checksum = "
|
|
2614
|
+
checksum = "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4"
|
|
2405
2615
|
dependencies = [
|
|
2406
2616
|
"cc",
|
|
2407
2617
|
"libc",
|
|
@@ -2422,24 +2632,28 @@ dependencies = [
|
|
|
2422
2632
|
|
|
2423
2633
|
[[package]]
|
|
2424
2634
|
name = "os_info"
|
|
2425
|
-
version = "3.
|
|
2635
|
+
version = "3.15.0"
|
|
2426
2636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2427
|
-
checksum = "
|
|
2637
|
+
checksum = "9cf20a545b305cf1da722b236b5155c9bb35f1d5ceb28c048bd96ca842f41b5b"
|
|
2428
2638
|
dependencies = [
|
|
2639
|
+
"android_system_properties",
|
|
2429
2640
|
"log",
|
|
2430
|
-
"
|
|
2641
|
+
"nix",
|
|
2642
|
+
"objc2",
|
|
2643
|
+
"objc2-foundation",
|
|
2644
|
+
"objc2-ui-kit",
|
|
2431
2645
|
"serde",
|
|
2432
|
-
"windows-sys 0.
|
|
2646
|
+
"windows-sys 0.61.2",
|
|
2433
2647
|
]
|
|
2434
2648
|
|
|
2435
2649
|
[[package]]
|
|
2436
2650
|
name = "os_pipe"
|
|
2437
|
-
version = "1.2.
|
|
2651
|
+
version = "1.2.3"
|
|
2438
2652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2439
|
-
checksum = "
|
|
2653
|
+
checksum = "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967"
|
|
2440
2654
|
dependencies = [
|
|
2441
2655
|
"libc",
|
|
2442
|
-
"windows-sys 0.
|
|
2656
|
+
"windows-sys 0.61.2",
|
|
2443
2657
|
]
|
|
2444
2658
|
|
|
2445
2659
|
[[package]]
|
|
@@ -2474,9 +2688,9 @@ dependencies = [
|
|
|
2474
2688
|
|
|
2475
2689
|
[[package]]
|
|
2476
2690
|
name = "parking_lot"
|
|
2477
|
-
version = "0.12.
|
|
2691
|
+
version = "0.12.5"
|
|
2478
2692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2479
|
-
checksum = "
|
|
2693
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2480
2694
|
dependencies = [
|
|
2481
2695
|
"lock_api",
|
|
2482
2696
|
"parking_lot_core",
|
|
@@ -2484,15 +2698,15 @@ dependencies = [
|
|
|
2484
2698
|
|
|
2485
2699
|
[[package]]
|
|
2486
2700
|
name = "parking_lot_core"
|
|
2487
|
-
version = "0.9.
|
|
2701
|
+
version = "0.9.12"
|
|
2488
2702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2489
|
-
checksum = "
|
|
2703
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2490
2704
|
dependencies = [
|
|
2491
2705
|
"cfg-if",
|
|
2492
2706
|
"libc",
|
|
2493
|
-
"redox_syscall",
|
|
2707
|
+
"redox_syscall 0.5.18",
|
|
2494
2708
|
"smallvec",
|
|
2495
|
-
"windows-
|
|
2709
|
+
"windows-link",
|
|
2496
2710
|
]
|
|
2497
2711
|
|
|
2498
2712
|
[[package]]
|
|
@@ -2572,20 +2786,19 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
|
2572
2786
|
|
|
2573
2787
|
[[package]]
|
|
2574
2788
|
name = "pest"
|
|
2575
|
-
version = "2.8.
|
|
2789
|
+
version = "2.8.6"
|
|
2576
2790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2577
|
-
checksum = "
|
|
2791
|
+
checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
|
|
2578
2792
|
dependencies = [
|
|
2579
2793
|
"memchr",
|
|
2580
|
-
"thiserror 2.0.17",
|
|
2581
2794
|
"ucd-trie",
|
|
2582
2795
|
]
|
|
2583
2796
|
|
|
2584
2797
|
[[package]]
|
|
2585
2798
|
name = "pest_derive"
|
|
2586
|
-
version = "2.8.
|
|
2799
|
+
version = "2.8.6"
|
|
2587
2800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2588
|
-
checksum = "
|
|
2801
|
+
checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
|
|
2589
2802
|
dependencies = [
|
|
2590
2803
|
"pest",
|
|
2591
2804
|
"pest_generator",
|
|
@@ -2593,9 +2806,9 @@ dependencies = [
|
|
|
2593
2806
|
|
|
2594
2807
|
[[package]]
|
|
2595
2808
|
name = "pest_generator"
|
|
2596
|
-
version = "2.8.
|
|
2809
|
+
version = "2.8.6"
|
|
2597
2810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2598
|
-
checksum = "
|
|
2811
|
+
checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
|
|
2599
2812
|
dependencies = [
|
|
2600
2813
|
"pest",
|
|
2601
2814
|
"pest_meta",
|
|
@@ -2606,9 +2819,9 @@ dependencies = [
|
|
|
2606
2819
|
|
|
2607
2820
|
[[package]]
|
|
2608
2821
|
name = "pest_meta"
|
|
2609
|
-
version = "2.8.
|
|
2822
|
+
version = "2.8.6"
|
|
2610
2823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2611
|
-
checksum = "
|
|
2824
|
+
checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
|
|
2612
2825
|
dependencies = [
|
|
2613
2826
|
"pest",
|
|
2614
2827
|
"sha2",
|
|
@@ -2640,7 +2853,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2640
2853
|
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2641
2854
|
dependencies = [
|
|
2642
2855
|
"phf_shared",
|
|
2643
|
-
"rand 0.8.
|
|
2856
|
+
"rand 0.8.6",
|
|
2644
2857
|
]
|
|
2645
2858
|
|
|
2646
2859
|
[[package]]
|
|
@@ -2654,15 +2867,9 @@ dependencies = [
|
|
|
2654
2867
|
|
|
2655
2868
|
[[package]]
|
|
2656
2869
|
name = "pin-project-lite"
|
|
2657
|
-
version = "0.2.
|
|
2658
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2659
|
-
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2660
|
-
|
|
2661
|
-
[[package]]
|
|
2662
|
-
name = "pin-utils"
|
|
2663
|
-
version = "0.1.0"
|
|
2870
|
+
version = "0.2.17"
|
|
2664
2871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2665
|
-
checksum = "
|
|
2872
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2666
2873
|
|
|
2667
2874
|
[[package]]
|
|
2668
2875
|
name = "pkcs1"
|
|
@@ -2687,9 +2894,9 @@ dependencies = [
|
|
|
2687
2894
|
|
|
2688
2895
|
[[package]]
|
|
2689
2896
|
name = "pkg-config"
|
|
2690
|
-
version = "0.3.
|
|
2897
|
+
version = "0.3.33"
|
|
2691
2898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2692
|
-
checksum = "
|
|
2899
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
2693
2900
|
|
|
2694
2901
|
[[package]]
|
|
2695
2902
|
name = "plain"
|
|
@@ -2699,9 +2906,9 @@ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
|
2699
2906
|
|
|
2700
2907
|
[[package]]
|
|
2701
2908
|
name = "plist"
|
|
2702
|
-
version = "1.
|
|
2909
|
+
version = "1.9.0"
|
|
2703
2910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2704
|
-
checksum = "
|
|
2911
|
+
checksum = "092791278e026273c1b65bbdcfbba3a300f2994c896bd01ab01da613c29c46f1"
|
|
2705
2912
|
dependencies = [
|
|
2706
2913
|
"base64 0.22.1",
|
|
2707
2914
|
"indexmap",
|
|
@@ -2712,9 +2919,9 @@ dependencies = [
|
|
|
2712
2919
|
|
|
2713
2920
|
[[package]]
|
|
2714
2921
|
name = "potential_utf"
|
|
2715
|
-
version = "0.1.
|
|
2922
|
+
version = "0.1.5"
|
|
2716
2923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2717
|
-
checksum = "
|
|
2924
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
2718
2925
|
dependencies = [
|
|
2719
2926
|
"zerovec",
|
|
2720
2927
|
]
|
|
@@ -2742,9 +2949,9 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
|
2742
2949
|
|
|
2743
2950
|
[[package]]
|
|
2744
2951
|
name = "predicates"
|
|
2745
|
-
version = "3.1.
|
|
2952
|
+
version = "3.1.4"
|
|
2746
2953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2747
|
-
checksum = "
|
|
2954
|
+
checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
|
|
2748
2955
|
dependencies = [
|
|
2749
2956
|
"anstyle",
|
|
2750
2957
|
"difflib",
|
|
@@ -2753,20 +2960,30 @@ dependencies = [
|
|
|
2753
2960
|
|
|
2754
2961
|
[[package]]
|
|
2755
2962
|
name = "predicates-core"
|
|
2756
|
-
version = "1.0.
|
|
2963
|
+
version = "1.0.10"
|
|
2757
2964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2758
|
-
checksum = "
|
|
2965
|
+
checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
|
|
2759
2966
|
|
|
2760
2967
|
[[package]]
|
|
2761
2968
|
name = "predicates-tree"
|
|
2762
|
-
version = "1.0.
|
|
2969
|
+
version = "1.0.13"
|
|
2763
2970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2764
|
-
checksum = "
|
|
2971
|
+
checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
|
|
2765
2972
|
dependencies = [
|
|
2766
2973
|
"predicates-core",
|
|
2767
2974
|
"termtree",
|
|
2768
2975
|
]
|
|
2769
2976
|
|
|
2977
|
+
[[package]]
|
|
2978
|
+
name = "prettyplease"
|
|
2979
|
+
version = "0.2.37"
|
|
2980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2981
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2982
|
+
dependencies = [
|
|
2983
|
+
"proc-macro2",
|
|
2984
|
+
"syn",
|
|
2985
|
+
]
|
|
2986
|
+
|
|
2770
2987
|
[[package]]
|
|
2771
2988
|
name = "prettytable-rs"
|
|
2772
2989
|
version = "0.10.0"
|
|
@@ -2792,40 +3009,40 @@ dependencies = [
|
|
|
2792
3009
|
|
|
2793
3010
|
[[package]]
|
|
2794
3011
|
name = "proc-macro2"
|
|
2795
|
-
version = "1.0.
|
|
3012
|
+
version = "1.0.106"
|
|
2796
3013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2797
|
-
checksum = "
|
|
3014
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
2798
3015
|
dependencies = [
|
|
2799
3016
|
"unicode-ident",
|
|
2800
3017
|
]
|
|
2801
3018
|
|
|
2802
3019
|
[[package]]
|
|
2803
3020
|
name = "proguard"
|
|
2804
|
-
version = "5.
|
|
3021
|
+
version = "5.10.3"
|
|
2805
3022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2806
|
-
checksum = "
|
|
3023
|
+
checksum = "a1000670719a375fcecd479087740ad350d217e761c135436c06c16e0e4307ee"
|
|
2807
3024
|
dependencies = [
|
|
2808
3025
|
"serde",
|
|
2809
3026
|
"serde_json",
|
|
2810
|
-
"thiserror
|
|
3027
|
+
"thiserror 2.0.18",
|
|
2811
3028
|
"uuid",
|
|
2812
3029
|
"watto",
|
|
2813
3030
|
]
|
|
2814
3031
|
|
|
2815
3032
|
[[package]]
|
|
2816
3033
|
name = "quick-xml"
|
|
2817
|
-
version = "0.
|
|
3034
|
+
version = "0.39.4"
|
|
2818
3035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2819
|
-
checksum = "
|
|
3036
|
+
checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e"
|
|
2820
3037
|
dependencies = [
|
|
2821
3038
|
"memchr",
|
|
2822
3039
|
]
|
|
2823
3040
|
|
|
2824
3041
|
[[package]]
|
|
2825
3042
|
name = "quote"
|
|
2826
|
-
version = "1.0.
|
|
3043
|
+
version = "1.0.45"
|
|
2827
3044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2828
|
-
checksum = "
|
|
3045
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
2829
3046
|
dependencies = [
|
|
2830
3047
|
"proc-macro2",
|
|
2831
3048
|
]
|
|
@@ -2836,6 +3053,12 @@ version = "5.3.0"
|
|
|
2836
3053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2837
3054
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2838
3055
|
|
|
3056
|
+
[[package]]
|
|
3057
|
+
name = "r-efi"
|
|
3058
|
+
version = "6.0.0"
|
|
3059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3060
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
3061
|
+
|
|
2839
3062
|
[[package]]
|
|
2840
3063
|
name = "r2d2"
|
|
2841
3064
|
version = "0.8.10"
|
|
@@ -2855,9 +3078,9 @@ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
|
2855
3078
|
|
|
2856
3079
|
[[package]]
|
|
2857
3080
|
name = "rand"
|
|
2858
|
-
version = "0.8.
|
|
3081
|
+
version = "0.8.6"
|
|
2859
3082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2860
|
-
checksum = "
|
|
3083
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
2861
3084
|
dependencies = [
|
|
2862
3085
|
"libc",
|
|
2863
3086
|
"rand_chacha 0.3.1",
|
|
@@ -2866,12 +3089,12 @@ dependencies = [
|
|
|
2866
3089
|
|
|
2867
3090
|
[[package]]
|
|
2868
3091
|
name = "rand"
|
|
2869
|
-
version = "0.9.
|
|
3092
|
+
version = "0.9.4"
|
|
2870
3093
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2871
|
-
checksum = "
|
|
3094
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2872
3095
|
dependencies = [
|
|
2873
3096
|
"rand_chacha 0.9.0",
|
|
2874
|
-
"rand_core 0.9.
|
|
3097
|
+
"rand_core 0.9.5",
|
|
2875
3098
|
]
|
|
2876
3099
|
|
|
2877
3100
|
[[package]]
|
|
@@ -2891,7 +3114,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2891
3114
|
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2892
3115
|
dependencies = [
|
|
2893
3116
|
"ppv-lite86",
|
|
2894
|
-
"rand_core 0.9.
|
|
3117
|
+
"rand_core 0.9.5",
|
|
2895
3118
|
]
|
|
2896
3119
|
|
|
2897
3120
|
[[package]]
|
|
@@ -2900,16 +3123,16 @@ version = "0.6.4"
|
|
|
2900
3123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2901
3124
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2902
3125
|
dependencies = [
|
|
2903
|
-
"getrandom 0.2.
|
|
3126
|
+
"getrandom 0.2.17",
|
|
2904
3127
|
]
|
|
2905
3128
|
|
|
2906
3129
|
[[package]]
|
|
2907
3130
|
name = "rand_core"
|
|
2908
|
-
version = "0.9.
|
|
3131
|
+
version = "0.9.5"
|
|
2909
3132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
-
checksum = "
|
|
3133
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2911
3134
|
dependencies = [
|
|
2912
|
-
"getrandom 0.3.
|
|
3135
|
+
"getrandom 0.3.4",
|
|
2913
3136
|
]
|
|
2914
3137
|
|
|
2915
3138
|
[[package]]
|
|
@@ -2925,9 +3148,9 @@ dependencies = [
|
|
|
2925
3148
|
|
|
2926
3149
|
[[package]]
|
|
2927
3150
|
name = "rayon"
|
|
2928
|
-
version = "1.
|
|
3151
|
+
version = "1.12.0"
|
|
2929
3152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2930
|
-
checksum = "
|
|
3153
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
2931
3154
|
dependencies = [
|
|
2932
3155
|
"either",
|
|
2933
3156
|
"rayon-core",
|
|
@@ -2945,11 +3168,20 @@ dependencies = [
|
|
|
2945
3168
|
|
|
2946
3169
|
[[package]]
|
|
2947
3170
|
name = "redox_syscall"
|
|
2948
|
-
version = "0.5.
|
|
3171
|
+
version = "0.5.18"
|
|
3172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3173
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
3174
|
+
dependencies = [
|
|
3175
|
+
"bitflags 2.11.1",
|
|
3176
|
+
]
|
|
3177
|
+
|
|
3178
|
+
[[package]]
|
|
3179
|
+
name = "redox_syscall"
|
|
3180
|
+
version = "0.8.0"
|
|
2949
3181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2950
|
-
checksum = "
|
|
3182
|
+
checksum = "7c7591fa2c6b601dfcfe5f043f65a1c39fcdf50efefcd7f1572e538c1f4b398d"
|
|
2951
3183
|
dependencies = [
|
|
2952
|
-
"bitflags 2.
|
|
3184
|
+
"bitflags 2.11.1",
|
|
2953
3185
|
]
|
|
2954
3186
|
|
|
2955
3187
|
[[package]]
|
|
@@ -2958,16 +3190,16 @@ version = "0.4.6"
|
|
|
2958
3190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2959
3191
|
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
2960
3192
|
dependencies = [
|
|
2961
|
-
"getrandom 0.2.
|
|
3193
|
+
"getrandom 0.2.17",
|
|
2962
3194
|
"libredox",
|
|
2963
3195
|
"thiserror 1.0.69",
|
|
2964
3196
|
]
|
|
2965
3197
|
|
|
2966
3198
|
[[package]]
|
|
2967
3199
|
name = "regex"
|
|
2968
|
-
version = "1.
|
|
3200
|
+
version = "1.12.3"
|
|
2969
3201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2970
|
-
checksum = "
|
|
3202
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
2971
3203
|
dependencies = [
|
|
2972
3204
|
"aho-corasick",
|
|
2973
3205
|
"memchr",
|
|
@@ -2977,9 +3209,9 @@ dependencies = [
|
|
|
2977
3209
|
|
|
2978
3210
|
[[package]]
|
|
2979
3211
|
name = "regex-automata"
|
|
2980
|
-
version = "0.4.
|
|
3212
|
+
version = "0.4.14"
|
|
2981
3213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2982
|
-
checksum = "
|
|
3214
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
2983
3215
|
dependencies = [
|
|
2984
3216
|
"aho-corasick",
|
|
2985
3217
|
"memchr",
|
|
@@ -2988,9 +3220,9 @@ dependencies = [
|
|
|
2988
3220
|
|
|
2989
3221
|
[[package]]
|
|
2990
3222
|
name = "regex-syntax"
|
|
2991
|
-
version = "0.8.
|
|
3223
|
+
version = "0.8.10"
|
|
2992
3224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2993
|
-
checksum = "
|
|
3225
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
2994
3226
|
|
|
2995
3227
|
[[package]]
|
|
2996
3228
|
name = "relative-path"
|
|
@@ -3000,9 +3232,9 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
|
|
3000
3232
|
|
|
3001
3233
|
[[package]]
|
|
3002
3234
|
name = "reqwest"
|
|
3003
|
-
version = "0.13.
|
|
3235
|
+
version = "0.13.4"
|
|
3004
3236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3005
|
-
checksum = "
|
|
3237
|
+
checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
|
|
3006
3238
|
dependencies = [
|
|
3007
3239
|
"base64 0.22.1",
|
|
3008
3240
|
"bytes",
|
|
@@ -3059,7 +3291,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
|
3059
3291
|
dependencies = [
|
|
3060
3292
|
"cc",
|
|
3061
3293
|
"cfg-if",
|
|
3062
|
-
"getrandom 0.2.
|
|
3294
|
+
"getrandom 0.2.17",
|
|
3063
3295
|
"libc",
|
|
3064
3296
|
"untrusted",
|
|
3065
3297
|
"windows-sys 0.52.0",
|
|
@@ -3138,15 +3370,15 @@ dependencies = [
|
|
|
3138
3370
|
|
|
3139
3371
|
[[package]]
|
|
3140
3372
|
name = "rustc-demangle"
|
|
3141
|
-
version = "0.1.
|
|
3373
|
+
version = "0.1.27"
|
|
3142
3374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3143
|
-
checksum = "
|
|
3375
|
+
checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
|
|
3144
3376
|
|
|
3145
3377
|
[[package]]
|
|
3146
3378
|
name = "rustc-hash"
|
|
3147
|
-
version = "2.1.
|
|
3379
|
+
version = "2.1.2"
|
|
3148
3380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3149
|
-
checksum = "
|
|
3381
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
3150
3382
|
|
|
3151
3383
|
[[package]]
|
|
3152
3384
|
name = "rustc_version"
|
|
@@ -3163,7 +3395,7 @@ version = "0.38.44"
|
|
|
3163
3395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3164
3396
|
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
3165
3397
|
dependencies = [
|
|
3166
|
-
"bitflags 2.
|
|
3398
|
+
"bitflags 2.11.1",
|
|
3167
3399
|
"errno",
|
|
3168
3400
|
"libc",
|
|
3169
3401
|
"linux-raw-sys 0.4.15",
|
|
@@ -3172,22 +3404,22 @@ dependencies = [
|
|
|
3172
3404
|
|
|
3173
3405
|
[[package]]
|
|
3174
3406
|
name = "rustix"
|
|
3175
|
-
version = "1.1.
|
|
3407
|
+
version = "1.1.4"
|
|
3176
3408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3177
|
-
checksum = "
|
|
3409
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
3178
3410
|
dependencies = [
|
|
3179
|
-
"bitflags 2.
|
|
3411
|
+
"bitflags 2.11.1",
|
|
3180
3412
|
"errno",
|
|
3181
3413
|
"libc",
|
|
3182
|
-
"linux-raw-sys 0.
|
|
3183
|
-
"windows-sys 0.61.
|
|
3414
|
+
"linux-raw-sys 0.12.1",
|
|
3415
|
+
"windows-sys 0.61.2",
|
|
3184
3416
|
]
|
|
3185
3417
|
|
|
3186
3418
|
[[package]]
|
|
3187
3419
|
name = "rustls"
|
|
3188
|
-
version = "0.23.
|
|
3420
|
+
version = "0.23.40"
|
|
3189
3421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3190
|
-
checksum = "
|
|
3422
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
3191
3423
|
dependencies = [
|
|
3192
3424
|
"once_cell",
|
|
3193
3425
|
"rustls-pki-types",
|
|
@@ -3198,18 +3430,18 @@ dependencies = [
|
|
|
3198
3430
|
|
|
3199
3431
|
[[package]]
|
|
3200
3432
|
name = "rustls-pki-types"
|
|
3201
|
-
version = "1.
|
|
3433
|
+
version = "1.14.1"
|
|
3202
3434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3203
|
-
checksum = "
|
|
3435
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
3204
3436
|
dependencies = [
|
|
3205
3437
|
"zeroize",
|
|
3206
3438
|
]
|
|
3207
3439
|
|
|
3208
3440
|
[[package]]
|
|
3209
3441
|
name = "rustls-webpki"
|
|
3210
|
-
version = "0.103.
|
|
3442
|
+
version = "0.103.13"
|
|
3211
3443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3212
|
-
checksum = "
|
|
3444
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
3213
3445
|
dependencies = [
|
|
3214
3446
|
"ring",
|
|
3215
3447
|
"rustls-pki-types",
|
|
@@ -3224,9 +3456,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
|
3224
3456
|
|
|
3225
3457
|
[[package]]
|
|
3226
3458
|
name = "ryu"
|
|
3227
|
-
version = "1.0.
|
|
3459
|
+
version = "1.0.23"
|
|
3228
3460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3229
|
-
checksum = "
|
|
3461
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
3230
3462
|
|
|
3231
3463
|
[[package]]
|
|
3232
3464
|
name = "same-file"
|
|
@@ -3237,22 +3469,13 @@ dependencies = [
|
|
|
3237
3469
|
"winapi-util",
|
|
3238
3470
|
]
|
|
3239
3471
|
|
|
3240
|
-
[[package]]
|
|
3241
|
-
name = "scc"
|
|
3242
|
-
version = "2.4.0"
|
|
3243
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3244
|
-
checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
|
|
3245
|
-
dependencies = [
|
|
3246
|
-
"sdd",
|
|
3247
|
-
]
|
|
3248
|
-
|
|
3249
3472
|
[[package]]
|
|
3250
3473
|
name = "schannel"
|
|
3251
|
-
version = "0.1.
|
|
3474
|
+
version = "0.1.29"
|
|
3252
3475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3253
|
-
checksum = "
|
|
3476
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
3254
3477
|
dependencies = [
|
|
3255
|
-
"windows-sys 0.61.
|
|
3478
|
+
"windows-sys 0.61.2",
|
|
3256
3479
|
]
|
|
3257
3480
|
|
|
3258
3481
|
[[package]]
|
|
@@ -3282,7 +3505,16 @@ version = "0.12.0"
|
|
|
3282
3505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3283
3506
|
checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6"
|
|
3284
3507
|
dependencies = [
|
|
3285
|
-
"scroll_derive",
|
|
3508
|
+
"scroll_derive 0.12.1",
|
|
3509
|
+
]
|
|
3510
|
+
|
|
3511
|
+
[[package]]
|
|
3512
|
+
name = "scroll"
|
|
3513
|
+
version = "0.13.0"
|
|
3514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3515
|
+
checksum = "c1257cd4248b4132760d6524d6dda4e053bc648c9070b960929bf50cfb1e7add"
|
|
3516
|
+
dependencies = [
|
|
3517
|
+
"scroll_derive 0.13.1",
|
|
3286
3518
|
]
|
|
3287
3519
|
|
|
3288
3520
|
[[package]]
|
|
@@ -3297,10 +3529,15 @@ dependencies = [
|
|
|
3297
3529
|
]
|
|
3298
3530
|
|
|
3299
3531
|
[[package]]
|
|
3300
|
-
name = "
|
|
3301
|
-
version = "
|
|
3532
|
+
name = "scroll_derive"
|
|
3533
|
+
version = "0.13.1"
|
|
3302
3534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3303
|
-
checksum = "
|
|
3535
|
+
checksum = "ed76efe62313ab6610570951494bdaa81568026e0318eaa55f167de70eeea67d"
|
|
3536
|
+
dependencies = [
|
|
3537
|
+
"proc-macro2",
|
|
3538
|
+
"quote",
|
|
3539
|
+
"syn",
|
|
3540
|
+
]
|
|
3304
3541
|
|
|
3305
3542
|
[[package]]
|
|
3306
3543
|
name = "sec1"
|
|
@@ -3328,12 +3565,12 @@ dependencies = [
|
|
|
3328
3565
|
|
|
3329
3566
|
[[package]]
|
|
3330
3567
|
name = "security-framework"
|
|
3331
|
-
version = "
|
|
3568
|
+
version = "3.7.0"
|
|
3332
3569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3333
|
-
checksum = "
|
|
3570
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
3334
3571
|
dependencies = [
|
|
3335
|
-
"bitflags 2.
|
|
3336
|
-
"core-foundation",
|
|
3572
|
+
"bitflags 2.11.1",
|
|
3573
|
+
"core-foundation 0.10.1",
|
|
3337
3574
|
"core-foundation-sys",
|
|
3338
3575
|
"libc",
|
|
3339
3576
|
"security-framework-sys",
|
|
@@ -3341,9 +3578,9 @@ dependencies = [
|
|
|
3341
3578
|
|
|
3342
3579
|
[[package]]
|
|
3343
3580
|
name = "security-framework-sys"
|
|
3344
|
-
version = "2.
|
|
3581
|
+
version = "2.17.0"
|
|
3345
3582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3346
|
-
checksum = "
|
|
3583
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
3347
3584
|
dependencies = [
|
|
3348
3585
|
"core-foundation-sys",
|
|
3349
3586
|
"libc",
|
|
@@ -3351,48 +3588,49 @@ dependencies = [
|
|
|
3351
3588
|
|
|
3352
3589
|
[[package]]
|
|
3353
3590
|
name = "semver"
|
|
3354
|
-
version = "1.0.
|
|
3591
|
+
version = "1.0.28"
|
|
3355
3592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3356
|
-
checksum = "
|
|
3593
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
3357
3594
|
|
|
3358
3595
|
[[package]]
|
|
3359
3596
|
name = "sentry"
|
|
3360
|
-
version = "0.46.
|
|
3597
|
+
version = "0.46.2"
|
|
3361
3598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3362
|
-
checksum = "
|
|
3599
|
+
checksum = "d92d893ba7469d361a6958522fa440e4e2bc8bf4c5803cd1bf40b9af63f8f9a8"
|
|
3363
3600
|
dependencies = [
|
|
3601
|
+
"cfg_aliases",
|
|
3364
3602
|
"curl",
|
|
3365
3603
|
"httpdate",
|
|
3366
3604
|
"sentry-anyhow",
|
|
3367
3605
|
"sentry-contexts",
|
|
3368
|
-
"sentry-core",
|
|
3606
|
+
"sentry-core 0.46.2",
|
|
3369
3607
|
]
|
|
3370
3608
|
|
|
3371
3609
|
[[package]]
|
|
3372
3610
|
name = "sentry-anyhow"
|
|
3373
|
-
version = "0.46.
|
|
3611
|
+
version = "0.46.2"
|
|
3374
3612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3375
|
-
checksum = "
|
|
3613
|
+
checksum = "b6924ad794a4786c26739816afc9b54b31c13cad479698f53c0398c5f6400954"
|
|
3376
3614
|
dependencies = [
|
|
3377
3615
|
"anyhow",
|
|
3378
3616
|
"sentry-backtrace",
|
|
3379
|
-
"sentry-core",
|
|
3617
|
+
"sentry-core 0.46.2",
|
|
3380
3618
|
]
|
|
3381
3619
|
|
|
3382
3620
|
[[package]]
|
|
3383
3621
|
name = "sentry-backtrace"
|
|
3384
|
-
version = "0.46.
|
|
3622
|
+
version = "0.46.2"
|
|
3385
3623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3386
|
-
checksum = "
|
|
3624
|
+
checksum = "5f8784d0a27b5cd4b5f75769ffc84f0b7580e3c35e1af9cd83cb90b612d769cc"
|
|
3387
3625
|
dependencies = [
|
|
3388
3626
|
"backtrace",
|
|
3389
3627
|
"regex",
|
|
3390
|
-
"sentry-core",
|
|
3628
|
+
"sentry-core 0.46.2",
|
|
3391
3629
|
]
|
|
3392
3630
|
|
|
3393
3631
|
[[package]]
|
|
3394
3632
|
name = "sentry-cli"
|
|
3395
|
-
version = "3.
|
|
3633
|
+
version = "3.5.1"
|
|
3396
3634
|
dependencies = [
|
|
3397
3635
|
"anyhow",
|
|
3398
3636
|
"anylog",
|
|
@@ -3411,6 +3649,7 @@ dependencies = [
|
|
|
3411
3649
|
"dotenvy",
|
|
3412
3650
|
"elementtree",
|
|
3413
3651
|
"flate2",
|
|
3652
|
+
"futures-util",
|
|
3414
3653
|
"git2",
|
|
3415
3654
|
"glob",
|
|
3416
3655
|
"http",
|
|
@@ -3430,7 +3669,7 @@ dependencies = [
|
|
|
3430
3669
|
"mockito",
|
|
3431
3670
|
"objectstore-client",
|
|
3432
3671
|
"open",
|
|
3433
|
-
"openssl-probe",
|
|
3672
|
+
"openssl-probe 0.1.6",
|
|
3434
3673
|
"parking_lot",
|
|
3435
3674
|
"percent-encoding",
|
|
3436
3675
|
"plist",
|
|
@@ -3462,31 +3701,44 @@ dependencies = [
|
|
|
3462
3701
|
"which",
|
|
3463
3702
|
"whoami",
|
|
3464
3703
|
"windows-sys 0.59.0",
|
|
3465
|
-
"zip",
|
|
3704
|
+
"zip 2.4.2",
|
|
3466
3705
|
]
|
|
3467
3706
|
|
|
3468
3707
|
[[package]]
|
|
3469
3708
|
name = "sentry-contexts"
|
|
3470
|
-
version = "0.46.
|
|
3709
|
+
version = "0.46.2"
|
|
3471
3710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3472
|
-
checksum = "
|
|
3711
|
+
checksum = "0e5eb42f4cd4f9fdfec9e3b07b25a4c9769df83d218a7e846658984d5948ad3e"
|
|
3473
3712
|
dependencies = [
|
|
3474
3713
|
"hostname",
|
|
3475
3714
|
"libc",
|
|
3476
3715
|
"os_info",
|
|
3477
3716
|
"rustc_version",
|
|
3478
|
-
"sentry-core",
|
|
3717
|
+
"sentry-core 0.46.2",
|
|
3479
3718
|
"uname",
|
|
3480
3719
|
]
|
|
3481
3720
|
|
|
3482
3721
|
[[package]]
|
|
3483
3722
|
name = "sentry-core"
|
|
3484
|
-
version = "0.46.
|
|
3723
|
+
version = "0.46.2"
|
|
3485
3724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3486
|
-
checksum = "
|
|
3725
|
+
checksum = "b0b1e7ca40f965db239da279bf278d87b7407469b98835f27f0c8e59ed189b06"
|
|
3487
3726
|
dependencies = [
|
|
3488
|
-
"rand 0.9.
|
|
3489
|
-
"sentry-types",
|
|
3727
|
+
"rand 0.9.4",
|
|
3728
|
+
"sentry-types 0.46.2",
|
|
3729
|
+
"serde",
|
|
3730
|
+
"serde_json",
|
|
3731
|
+
"url",
|
|
3732
|
+
]
|
|
3733
|
+
|
|
3734
|
+
[[package]]
|
|
3735
|
+
name = "sentry-core"
|
|
3736
|
+
version = "0.48.2"
|
|
3737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3738
|
+
checksum = "545dc562b6758d646ac19e1407f4ebc26d452111386743e03323464bc48bb2e0"
|
|
3739
|
+
dependencies = [
|
|
3740
|
+
"rand 0.9.4",
|
|
3741
|
+
"sentry-types 0.48.2",
|
|
3490
3742
|
"serde",
|
|
3491
3743
|
"serde_json",
|
|
3492
3744
|
"url",
|
|
@@ -3494,16 +3746,33 @@ dependencies = [
|
|
|
3494
3746
|
|
|
3495
3747
|
[[package]]
|
|
3496
3748
|
name = "sentry-types"
|
|
3497
|
-
version = "0.46.
|
|
3749
|
+
version = "0.46.2"
|
|
3498
3750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3499
|
-
checksum = "
|
|
3751
|
+
checksum = "567711f01f86a842057e1fc17779eba33a336004227e1a1e7e6cc2599e22e259"
|
|
3500
3752
|
dependencies = [
|
|
3501
3753
|
"debugid",
|
|
3502
3754
|
"hex",
|
|
3503
|
-
"rand 0.9.
|
|
3755
|
+
"rand 0.9.4",
|
|
3504
3756
|
"serde",
|
|
3505
3757
|
"serde_json",
|
|
3506
|
-
"thiserror 2.0.
|
|
3758
|
+
"thiserror 2.0.18",
|
|
3759
|
+
"time",
|
|
3760
|
+
"url",
|
|
3761
|
+
"uuid",
|
|
3762
|
+
]
|
|
3763
|
+
|
|
3764
|
+
[[package]]
|
|
3765
|
+
name = "sentry-types"
|
|
3766
|
+
version = "0.48.2"
|
|
3767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3768
|
+
checksum = "041359745a44dd2e14fe21b7510fe7ca8b5beffce6636a0b52e5bc7d5f736887"
|
|
3769
|
+
dependencies = [
|
|
3770
|
+
"debugid",
|
|
3771
|
+
"hex",
|
|
3772
|
+
"rand 0.9.4",
|
|
3773
|
+
"serde",
|
|
3774
|
+
"serde_json",
|
|
3775
|
+
"thiserror 2.0.18",
|
|
3507
3776
|
"time",
|
|
3508
3777
|
"url",
|
|
3509
3778
|
"uuid",
|
|
@@ -3541,15 +3810,15 @@ dependencies = [
|
|
|
3541
3810
|
|
|
3542
3811
|
[[package]]
|
|
3543
3812
|
name = "serde_json"
|
|
3544
|
-
version = "1.0.
|
|
3813
|
+
version = "1.0.150"
|
|
3545
3814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3546
|
-
checksum = "
|
|
3815
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
3547
3816
|
dependencies = [
|
|
3548
3817
|
"itoa",
|
|
3549
3818
|
"memchr",
|
|
3550
|
-
"ryu",
|
|
3551
3819
|
"serde",
|
|
3552
3820
|
"serde_core",
|
|
3821
|
+
"zmij",
|
|
3553
3822
|
]
|
|
3554
3823
|
|
|
3555
3824
|
[[package]]
|
|
@@ -3575,23 +3844,23 @@ dependencies = [
|
|
|
3575
3844
|
|
|
3576
3845
|
[[package]]
|
|
3577
3846
|
name = "serial_test"
|
|
3578
|
-
version = "3.
|
|
3847
|
+
version = "3.5.0"
|
|
3579
3848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3580
|
-
checksum = "
|
|
3849
|
+
checksum = "699f4197115b8a7e7ff19c9a315a4bd6fffec26cc4626ef45ecaea389e081c6d"
|
|
3581
3850
|
dependencies = [
|
|
3582
|
-
"futures",
|
|
3851
|
+
"futures-executor",
|
|
3852
|
+
"futures-util",
|
|
3583
3853
|
"log",
|
|
3584
3854
|
"once_cell",
|
|
3585
3855
|
"parking_lot",
|
|
3586
|
-
"scc",
|
|
3587
3856
|
"serial_test_derive",
|
|
3588
3857
|
]
|
|
3589
3858
|
|
|
3590
3859
|
[[package]]
|
|
3591
3860
|
name = "serial_test_derive"
|
|
3592
|
-
version = "3.
|
|
3861
|
+
version = "3.5.0"
|
|
3593
3862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3594
|
-
checksum = "
|
|
3863
|
+
checksum = "94e153fc76e1c6a068703d6d29c508a0b15c061c4b7e43da59cc097bc342673c"
|
|
3595
3864
|
dependencies = [
|
|
3596
3865
|
"proc-macro2",
|
|
3597
3866
|
"quote",
|
|
@@ -3635,6 +3904,12 @@ version = "1.3.0"
|
|
|
3635
3904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3636
3905
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3637
3906
|
|
|
3907
|
+
[[package]]
|
|
3908
|
+
name = "shlex"
|
|
3909
|
+
version = "2.0.1"
|
|
3910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3911
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
3912
|
+
|
|
3638
3913
|
[[package]]
|
|
3639
3914
|
name = "signature"
|
|
3640
3915
|
version = "2.2.0"
|
|
@@ -3647,9 +3922,9 @@ dependencies = [
|
|
|
3647
3922
|
|
|
3648
3923
|
[[package]]
|
|
3649
3924
|
name = "simd-adler32"
|
|
3650
|
-
version = "0.3.
|
|
3925
|
+
version = "0.3.9"
|
|
3651
3926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3652
|
-
checksum = "
|
|
3927
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
3653
3928
|
|
|
3654
3929
|
[[package]]
|
|
3655
3930
|
name = "similar"
|
|
@@ -3659,27 +3934,27 @@ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
|
3659
3934
|
|
|
3660
3935
|
[[package]]
|
|
3661
3936
|
name = "simple_asn1"
|
|
3662
|
-
version = "0.6.
|
|
3937
|
+
version = "0.6.4"
|
|
3663
3938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3664
|
-
checksum = "
|
|
3939
|
+
checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d"
|
|
3665
3940
|
dependencies = [
|
|
3666
3941
|
"num-bigint",
|
|
3667
3942
|
"num-traits",
|
|
3668
|
-
"thiserror 2.0.
|
|
3943
|
+
"thiserror 2.0.18",
|
|
3669
3944
|
"time",
|
|
3670
3945
|
]
|
|
3671
3946
|
|
|
3672
3947
|
[[package]]
|
|
3673
3948
|
name = "siphasher"
|
|
3674
|
-
version = "1.0.
|
|
3949
|
+
version = "1.0.3"
|
|
3675
3950
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3676
|
-
checksum = "
|
|
3951
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
3677
3952
|
|
|
3678
3953
|
[[package]]
|
|
3679
3954
|
name = "slab"
|
|
3680
|
-
version = "0.4.
|
|
3955
|
+
version = "0.4.12"
|
|
3681
3956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3682
|
-
checksum = "
|
|
3957
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
3683
3958
|
|
|
3684
3959
|
[[package]]
|
|
3685
3960
|
name = "smallvec"
|
|
@@ -3720,19 +3995,19 @@ dependencies = [
|
|
|
3720
3995
|
|
|
3721
3996
|
[[package]]
|
|
3722
3997
|
name = "socket2"
|
|
3723
|
-
version = "0.6.
|
|
3998
|
+
version = "0.6.4"
|
|
3724
3999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3725
|
-
checksum = "
|
|
4000
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
3726
4001
|
dependencies = [
|
|
3727
4002
|
"libc",
|
|
3728
|
-
"windows-sys 0.
|
|
4003
|
+
"windows-sys 0.61.2",
|
|
3729
4004
|
]
|
|
3730
4005
|
|
|
3731
4006
|
[[package]]
|
|
3732
4007
|
name = "sourcemap"
|
|
3733
|
-
version = "9.3.
|
|
4008
|
+
version = "9.3.2"
|
|
3734
4009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3735
|
-
checksum = "
|
|
4010
|
+
checksum = "314d62a489431668f719ada776ca1d49b924db951b7450f8974c9ae51ab05ad7"
|
|
3736
4011
|
dependencies = [
|
|
3737
4012
|
"base64-simd",
|
|
3738
4013
|
"bitvec",
|
|
@@ -3763,11 +4038,21 @@ dependencies = [
|
|
|
3763
4038
|
"der",
|
|
3764
4039
|
]
|
|
3765
4040
|
|
|
4041
|
+
[[package]]
|
|
4042
|
+
name = "srcsrv"
|
|
4043
|
+
version = "0.2.3"
|
|
4044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4045
|
+
checksum = "85cd3e3828fb4dd5ba0e7091777edb6c3db3cd2d6fc10547b29b40f6949a29be"
|
|
4046
|
+
dependencies = [
|
|
4047
|
+
"memchr",
|
|
4048
|
+
"thiserror 2.0.18",
|
|
4049
|
+
]
|
|
4050
|
+
|
|
3766
4051
|
[[package]]
|
|
3767
4052
|
name = "stable_deref_trait"
|
|
3768
|
-
version = "1.2.
|
|
4053
|
+
version = "1.2.1"
|
|
3769
4054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3770
|
-
checksum = "
|
|
4055
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
3771
4056
|
|
|
3772
4057
|
[[package]]
|
|
3773
4058
|
name = "string_cache"
|
|
@@ -3796,9 +4081,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
3796
4081
|
|
|
3797
4082
|
[[package]]
|
|
3798
4083
|
name = "symbolic"
|
|
3799
|
-
version = "
|
|
4084
|
+
version = "13.1.1"
|
|
3800
4085
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3801
|
-
checksum = "
|
|
4086
|
+
checksum = "728ee0b430d939eebd0c80ae35af32d8bd85fc8352dc6def44f5d432945f9c4e"
|
|
3802
4087
|
dependencies = [
|
|
3803
4088
|
"symbolic-common",
|
|
3804
4089
|
"symbolic-debuginfo",
|
|
@@ -3808,9 +4093,9 @@ dependencies = [
|
|
|
3808
4093
|
|
|
3809
4094
|
[[package]]
|
|
3810
4095
|
name = "symbolic-common"
|
|
3811
|
-
version = "
|
|
4096
|
+
version = "13.1.1"
|
|
3812
4097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3813
|
-
checksum = "
|
|
4098
|
+
checksum = "0c30da69ccd7ab2780ce5309791f3cd2ef9716262c07a0a29096226d4235a979"
|
|
3814
4099
|
dependencies = [
|
|
3815
4100
|
"debugid",
|
|
3816
4101
|
"memmap2",
|
|
@@ -3821,41 +4106,42 @@ dependencies = [
|
|
|
3821
4106
|
|
|
3822
4107
|
[[package]]
|
|
3823
4108
|
name = "symbolic-debuginfo"
|
|
3824
|
-
version = "
|
|
4109
|
+
version = "13.1.1"
|
|
3825
4110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3826
|
-
checksum = "
|
|
4111
|
+
checksum = "798d435a1b31dad4b5e7e82a6d9463cd3aaa508d70f3a7366eaf5d58ca2ef2fc"
|
|
3827
4112
|
dependencies = [
|
|
3828
4113
|
"debugid",
|
|
3829
4114
|
"elementtree",
|
|
3830
4115
|
"elsa",
|
|
3831
4116
|
"fallible-iterator 0.3.0",
|
|
3832
4117
|
"flate2",
|
|
3833
|
-
"gimli",
|
|
4118
|
+
"gimli 0.33.0",
|
|
3834
4119
|
"goblin",
|
|
3835
|
-
"
|
|
4120
|
+
"memchr",
|
|
3836
4121
|
"nom",
|
|
3837
4122
|
"nom-supreme",
|
|
3838
4123
|
"once_cell",
|
|
3839
4124
|
"parking_lot",
|
|
3840
4125
|
"pdb-addr2line",
|
|
3841
4126
|
"regex",
|
|
3842
|
-
"scroll 0.
|
|
4127
|
+
"scroll 0.13.0",
|
|
3843
4128
|
"serde",
|
|
3844
4129
|
"serde_json",
|
|
3845
4130
|
"smallvec",
|
|
4131
|
+
"srcsrv",
|
|
3846
4132
|
"symbolic-common",
|
|
3847
4133
|
"symbolic-ppdb",
|
|
3848
|
-
"thiserror
|
|
3849
|
-
"wasmparser",
|
|
3850
|
-
"zip",
|
|
4134
|
+
"thiserror 2.0.18",
|
|
4135
|
+
"wasmparser 0.243.0",
|
|
4136
|
+
"zip 7.2.0",
|
|
3851
4137
|
"zstd",
|
|
3852
4138
|
]
|
|
3853
4139
|
|
|
3854
4140
|
[[package]]
|
|
3855
4141
|
name = "symbolic-il2cpp"
|
|
3856
|
-
version = "
|
|
4142
|
+
version = "13.1.1"
|
|
3857
4143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3858
|
-
checksum = "
|
|
4144
|
+
checksum = "111bd3b91a9c4bf40f358d16fbe78b1345911b2dc80fa3fdca3d360019e0e637"
|
|
3859
4145
|
dependencies = [
|
|
3860
4146
|
"indexmap",
|
|
3861
4147
|
"serde_json",
|
|
@@ -3865,40 +4151,40 @@ dependencies = [
|
|
|
3865
4151
|
|
|
3866
4152
|
[[package]]
|
|
3867
4153
|
name = "symbolic-ppdb"
|
|
3868
|
-
version = "
|
|
4154
|
+
version = "13.1.1"
|
|
3869
4155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3870
|
-
checksum = "
|
|
4156
|
+
checksum = "456cc8f7fce011b397d20ab686939ce9d98dfc763cc54ea9a8f489f1968454e7"
|
|
3871
4157
|
dependencies = [
|
|
3872
4158
|
"flate2",
|
|
3873
4159
|
"indexmap",
|
|
3874
4160
|
"serde",
|
|
3875
4161
|
"serde_json",
|
|
3876
4162
|
"symbolic-common",
|
|
3877
|
-
"thiserror
|
|
4163
|
+
"thiserror 2.0.18",
|
|
3878
4164
|
"uuid",
|
|
3879
4165
|
"watto",
|
|
3880
4166
|
]
|
|
3881
4167
|
|
|
3882
4168
|
[[package]]
|
|
3883
4169
|
name = "symbolic-symcache"
|
|
3884
|
-
version = "
|
|
4170
|
+
version = "13.1.1"
|
|
3885
4171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3886
|
-
checksum = "
|
|
4172
|
+
checksum = "446e091ef4476cb9322d1f96cb69499848c20d31da3128ed609dfc3f71170c14"
|
|
3887
4173
|
dependencies = [
|
|
3888
4174
|
"indexmap",
|
|
3889
4175
|
"symbolic-common",
|
|
3890
4176
|
"symbolic-debuginfo",
|
|
3891
4177
|
"symbolic-il2cpp",
|
|
3892
|
-
"thiserror
|
|
4178
|
+
"thiserror 2.0.18",
|
|
3893
4179
|
"tracing",
|
|
3894
4180
|
"watto",
|
|
3895
4181
|
]
|
|
3896
4182
|
|
|
3897
4183
|
[[package]]
|
|
3898
4184
|
name = "syn"
|
|
3899
|
-
version = "2.0.
|
|
4185
|
+
version = "2.0.117"
|
|
3900
4186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3901
|
-
checksum = "
|
|
4187
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
3902
4188
|
dependencies = [
|
|
3903
4189
|
"proc-macro2",
|
|
3904
4190
|
"quote",
|
|
@@ -3927,12 +4213,12 @@ dependencies = [
|
|
|
3927
4213
|
|
|
3928
4214
|
[[package]]
|
|
3929
4215
|
name = "system-configuration"
|
|
3930
|
-
version = "0.
|
|
4216
|
+
version = "0.7.0"
|
|
3931
4217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3932
|
-
checksum = "
|
|
4218
|
+
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
3933
4219
|
dependencies = [
|
|
3934
|
-
"bitflags 2.
|
|
3935
|
-
"core-foundation",
|
|
4220
|
+
"bitflags 2.11.1",
|
|
4221
|
+
"core-foundation 0.9.4",
|
|
3936
4222
|
"system-configuration-sys",
|
|
3937
4223
|
]
|
|
3938
4224
|
|
|
@@ -3954,15 +4240,15 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
|
3954
4240
|
|
|
3955
4241
|
[[package]]
|
|
3956
4242
|
name = "tempfile"
|
|
3957
|
-
version = "3.
|
|
4243
|
+
version = "3.27.0"
|
|
3958
4244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3959
|
-
checksum = "
|
|
4245
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
3960
4246
|
dependencies = [
|
|
3961
4247
|
"fastrand",
|
|
3962
|
-
"getrandom 0.
|
|
4248
|
+
"getrandom 0.4.2",
|
|
3963
4249
|
"once_cell",
|
|
3964
|
-
"rustix 1.1.
|
|
3965
|
-
"windows-sys 0.61.
|
|
4250
|
+
"rustix 1.1.4",
|
|
4251
|
+
"windows-sys 0.61.2",
|
|
3966
4252
|
]
|
|
3967
4253
|
|
|
3968
4254
|
[[package]]
|
|
@@ -3978,12 +4264,12 @@ dependencies = [
|
|
|
3978
4264
|
|
|
3979
4265
|
[[package]]
|
|
3980
4266
|
name = "terminal_size"
|
|
3981
|
-
version = "0.4.
|
|
4267
|
+
version = "0.4.4"
|
|
3982
4268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3983
|
-
checksum = "
|
|
4269
|
+
checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
|
|
3984
4270
|
dependencies = [
|
|
3985
|
-
"rustix 1.1.
|
|
3986
|
-
"windows-sys 0.
|
|
4271
|
+
"rustix 1.1.4",
|
|
4272
|
+
"windows-sys 0.61.2",
|
|
3987
4273
|
]
|
|
3988
4274
|
|
|
3989
4275
|
[[package]]
|
|
@@ -4003,11 +4289,11 @@ dependencies = [
|
|
|
4003
4289
|
|
|
4004
4290
|
[[package]]
|
|
4005
4291
|
name = "thiserror"
|
|
4006
|
-
version = "2.0.
|
|
4292
|
+
version = "2.0.18"
|
|
4007
4293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4008
|
-
checksum = "
|
|
4294
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
4009
4295
|
dependencies = [
|
|
4010
|
-
"thiserror-impl 2.0.
|
|
4296
|
+
"thiserror-impl 2.0.18",
|
|
4011
4297
|
]
|
|
4012
4298
|
|
|
4013
4299
|
[[package]]
|
|
@@ -4023,9 +4309,9 @@ dependencies = [
|
|
|
4023
4309
|
|
|
4024
4310
|
[[package]]
|
|
4025
4311
|
name = "thiserror-impl"
|
|
4026
|
-
version = "2.0.
|
|
4312
|
+
version = "2.0.18"
|
|
4027
4313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4028
|
-
checksum = "
|
|
4314
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
4029
4315
|
dependencies = [
|
|
4030
4316
|
"proc-macro2",
|
|
4031
4317
|
"quote",
|
|
@@ -4065,9 +4351,9 @@ dependencies = [
|
|
|
4065
4351
|
|
|
4066
4352
|
[[package]]
|
|
4067
4353
|
name = "tinystr"
|
|
4068
|
-
version = "0.8.
|
|
4354
|
+
version = "0.8.3"
|
|
4069
4355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4070
|
-
checksum = "
|
|
4356
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
4071
4357
|
dependencies = [
|
|
4072
4358
|
"displaydoc",
|
|
4073
4359
|
"zerovec",
|
|
@@ -4075,20 +4361,17 @@ dependencies = [
|
|
|
4075
4361
|
|
|
4076
4362
|
[[package]]
|
|
4077
4363
|
name = "tokio"
|
|
4078
|
-
version = "1.
|
|
4364
|
+
version = "1.52.3"
|
|
4079
4365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4080
|
-
checksum = "
|
|
4366
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
4081
4367
|
dependencies = [
|
|
4082
|
-
"backtrace",
|
|
4083
4368
|
"bytes",
|
|
4084
|
-
"io-uring",
|
|
4085
4369
|
"libc",
|
|
4086
4370
|
"mio",
|
|
4087
4371
|
"parking_lot",
|
|
4088
4372
|
"pin-project-lite",
|
|
4089
|
-
"slab",
|
|
4090
4373
|
"socket2",
|
|
4091
|
-
"windows-sys 0.
|
|
4374
|
+
"windows-sys 0.61.2",
|
|
4092
4375
|
]
|
|
4093
4376
|
|
|
4094
4377
|
[[package]]
|
|
@@ -4113,9 +4396,9 @@ dependencies = [
|
|
|
4113
4396
|
|
|
4114
4397
|
[[package]]
|
|
4115
4398
|
name = "tokio-util"
|
|
4116
|
-
version = "0.7.
|
|
4399
|
+
version = "0.7.18"
|
|
4117
4400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4118
|
-
checksum = "
|
|
4401
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
4119
4402
|
dependencies = [
|
|
4120
4403
|
"bytes",
|
|
4121
4404
|
"futures-core",
|
|
@@ -4156,9 +4439,9 @@ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
|
4156
4439
|
|
|
4157
4440
|
[[package]]
|
|
4158
4441
|
name = "tower"
|
|
4159
|
-
version = "0.5.
|
|
4442
|
+
version = "0.5.3"
|
|
4160
4443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4161
|
-
checksum = "
|
|
4444
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
4162
4445
|
dependencies = [
|
|
4163
4446
|
"futures-core",
|
|
4164
4447
|
"futures-util",
|
|
@@ -4171,20 +4454,20 @@ dependencies = [
|
|
|
4171
4454
|
|
|
4172
4455
|
[[package]]
|
|
4173
4456
|
name = "tower-http"
|
|
4174
|
-
version = "0.6.
|
|
4457
|
+
version = "0.6.11"
|
|
4175
4458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4176
|
-
checksum = "
|
|
4459
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
4177
4460
|
dependencies = [
|
|
4178
|
-
"bitflags 2.
|
|
4461
|
+
"bitflags 2.11.1",
|
|
4179
4462
|
"bytes",
|
|
4180
4463
|
"futures-util",
|
|
4181
4464
|
"http",
|
|
4182
4465
|
"http-body",
|
|
4183
|
-
"iri-string",
|
|
4184
4466
|
"pin-project-lite",
|
|
4185
4467
|
"tower",
|
|
4186
4468
|
"tower-layer",
|
|
4187
4469
|
"tower-service",
|
|
4470
|
+
"url",
|
|
4188
4471
|
]
|
|
4189
4472
|
|
|
4190
4473
|
[[package]]
|
|
@@ -4201,9 +4484,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
|
4201
4484
|
|
|
4202
4485
|
[[package]]
|
|
4203
4486
|
name = "tracing"
|
|
4204
|
-
version = "0.1.
|
|
4487
|
+
version = "0.1.44"
|
|
4205
4488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4206
|
-
checksum = "
|
|
4489
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
4207
4490
|
dependencies = [
|
|
4208
4491
|
"pin-project-lite",
|
|
4209
4492
|
"tracing-attributes",
|
|
@@ -4212,9 +4495,9 @@ dependencies = [
|
|
|
4212
4495
|
|
|
4213
4496
|
[[package]]
|
|
4214
4497
|
name = "tracing-attributes"
|
|
4215
|
-
version = "0.1.
|
|
4498
|
+
version = "0.1.31"
|
|
4216
4499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4217
|
-
checksum = "
|
|
4500
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
4218
4501
|
dependencies = [
|
|
4219
4502
|
"proc-macro2",
|
|
4220
4503
|
"quote",
|
|
@@ -4223,9 +4506,9 @@ dependencies = [
|
|
|
4223
4506
|
|
|
4224
4507
|
[[package]]
|
|
4225
4508
|
name = "tracing-core"
|
|
4226
|
-
version = "0.1.
|
|
4509
|
+
version = "0.1.36"
|
|
4227
4510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4228
|
-
checksum = "
|
|
4511
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
4229
4512
|
dependencies = [
|
|
4230
4513
|
"once_cell",
|
|
4231
4514
|
]
|
|
@@ -4247,16 +4530,22 @@ dependencies = [
|
|
|
4247
4530
|
"humantime-serde",
|
|
4248
4531
|
"rayon",
|
|
4249
4532
|
"serde",
|
|
4250
|
-
"shlex",
|
|
4533
|
+
"shlex 1.3.0",
|
|
4251
4534
|
"snapbox",
|
|
4252
4535
|
"toml_edit",
|
|
4253
4536
|
]
|
|
4254
4537
|
|
|
4538
|
+
[[package]]
|
|
4539
|
+
name = "typed-path"
|
|
4540
|
+
version = "0.12.3"
|
|
4541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4542
|
+
checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
|
|
4543
|
+
|
|
4255
4544
|
[[package]]
|
|
4256
4545
|
name = "typenum"
|
|
4257
|
-
version = "1.
|
|
4546
|
+
version = "1.20.1"
|
|
4258
4547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4259
|
-
checksum = "
|
|
4548
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
4260
4549
|
|
|
4261
4550
|
[[package]]
|
|
4262
4551
|
name = "ucd-trie"
|
|
@@ -4287,9 +4576,9 @@ checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
|
|
|
4287
4576
|
|
|
4288
4577
|
[[package]]
|
|
4289
4578
|
name = "unicode-ident"
|
|
4290
|
-
version = "1.0.
|
|
4579
|
+
version = "1.0.24"
|
|
4291
4580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4292
|
-
checksum = "
|
|
4581
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
4293
4582
|
|
|
4294
4583
|
[[package]]
|
|
4295
4584
|
name = "unicode-width"
|
|
@@ -4299,9 +4588,15 @@ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
|
4299
4588
|
|
|
4300
4589
|
[[package]]
|
|
4301
4590
|
name = "unicode-width"
|
|
4302
|
-
version = "0.2.
|
|
4591
|
+
version = "0.2.2"
|
|
4592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4593
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
4594
|
+
|
|
4595
|
+
[[package]]
|
|
4596
|
+
name = "unicode-xid"
|
|
4597
|
+
version = "0.2.6"
|
|
4303
4598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4304
|
-
checksum = "
|
|
4599
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
4305
4600
|
|
|
4306
4601
|
[[package]]
|
|
4307
4602
|
name = "untrusted"
|
|
@@ -4311,14 +4606,15 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
4311
4606
|
|
|
4312
4607
|
[[package]]
|
|
4313
4608
|
name = "url"
|
|
4314
|
-
version = "2.5.
|
|
4609
|
+
version = "2.5.8"
|
|
4315
4610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4316
|
-
checksum = "
|
|
4611
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
4317
4612
|
dependencies = [
|
|
4318
4613
|
"form_urlencoded",
|
|
4319
4614
|
"idna",
|
|
4320
4615
|
"percent-encoding",
|
|
4321
4616
|
"serde",
|
|
4617
|
+
"serde_derive",
|
|
4322
4618
|
]
|
|
4323
4619
|
|
|
4324
4620
|
[[package]]
|
|
@@ -4335,13 +4631,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
4335
4631
|
|
|
4336
4632
|
[[package]]
|
|
4337
4633
|
name = "uuid"
|
|
4338
|
-
version = "1.
|
|
4634
|
+
version = "1.23.2"
|
|
4339
4635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4340
|
-
checksum = "
|
|
4636
|
+
checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
|
|
4341
4637
|
dependencies = [
|
|
4342
|
-
"getrandom 0.
|
|
4638
|
+
"getrandom 0.4.2",
|
|
4343
4639
|
"js-sys",
|
|
4344
|
-
"
|
|
4640
|
+
"serde_core",
|
|
4345
4641
|
"sha1_smol",
|
|
4346
4642
|
"wasm-bindgen",
|
|
4347
4643
|
]
|
|
@@ -4405,21 +4701,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4405
4701
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
4406
4702
|
|
|
4407
4703
|
[[package]]
|
|
4408
|
-
name = "
|
|
4409
|
-
version = "0.
|
|
4704
|
+
name = "wasip2"
|
|
4705
|
+
version = "1.0.3+wasi-0.2.9"
|
|
4410
4706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4411
|
-
checksum = "
|
|
4707
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
4412
4708
|
dependencies = [
|
|
4413
|
-
"
|
|
4709
|
+
"wit-bindgen 0.57.1",
|
|
4414
4710
|
]
|
|
4415
4711
|
|
|
4416
4712
|
[[package]]
|
|
4417
|
-
name = "
|
|
4418
|
-
version = "
|
|
4713
|
+
name = "wasip3"
|
|
4714
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
4419
4715
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4420
|
-
checksum = "
|
|
4716
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
4421
4717
|
dependencies = [
|
|
4422
|
-
"wit-bindgen",
|
|
4718
|
+
"wit-bindgen 0.51.0",
|
|
4423
4719
|
]
|
|
4424
4720
|
|
|
4425
4721
|
[[package]]
|
|
@@ -4430,9 +4726,9 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
|
|
|
4430
4726
|
|
|
4431
4727
|
[[package]]
|
|
4432
4728
|
name = "wasm-bindgen"
|
|
4433
|
-
version = "0.2.
|
|
4729
|
+
version = "0.2.122"
|
|
4434
4730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4435
|
-
checksum = "
|
|
4731
|
+
checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
|
|
4436
4732
|
dependencies = [
|
|
4437
4733
|
"cfg-if",
|
|
4438
4734
|
"once_cell",
|
|
@@ -4443,23 +4739,19 @@ dependencies = [
|
|
|
4443
4739
|
|
|
4444
4740
|
[[package]]
|
|
4445
4741
|
name = "wasm-bindgen-futures"
|
|
4446
|
-
version = "0.4.
|
|
4742
|
+
version = "0.4.72"
|
|
4447
4743
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4448
|
-
checksum = "
|
|
4744
|
+
checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
|
|
4449
4745
|
dependencies = [
|
|
4450
|
-
"cfg-if",
|
|
4451
|
-
"futures-util",
|
|
4452
4746
|
"js-sys",
|
|
4453
|
-
"once_cell",
|
|
4454
4747
|
"wasm-bindgen",
|
|
4455
|
-
"web-sys",
|
|
4456
4748
|
]
|
|
4457
4749
|
|
|
4458
4750
|
[[package]]
|
|
4459
4751
|
name = "wasm-bindgen-macro"
|
|
4460
|
-
version = "0.2.
|
|
4752
|
+
version = "0.2.122"
|
|
4461
4753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4462
|
-
checksum = "
|
|
4754
|
+
checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
|
|
4463
4755
|
dependencies = [
|
|
4464
4756
|
"quote",
|
|
4465
4757
|
"wasm-bindgen-macro-support",
|
|
@@ -4467,9 +4759,9 @@ dependencies = [
|
|
|
4467
4759
|
|
|
4468
4760
|
[[package]]
|
|
4469
4761
|
name = "wasm-bindgen-macro-support"
|
|
4470
|
-
version = "0.2.
|
|
4762
|
+
version = "0.2.122"
|
|
4471
4763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4472
|
-
checksum = "
|
|
4764
|
+
checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
|
|
4473
4765
|
dependencies = [
|
|
4474
4766
|
"bumpalo",
|
|
4475
4767
|
"proc-macro2",
|
|
@@ -4480,13 +4772,35 @@ dependencies = [
|
|
|
4480
4772
|
|
|
4481
4773
|
[[package]]
|
|
4482
4774
|
name = "wasm-bindgen-shared"
|
|
4483
|
-
version = "0.2.
|
|
4775
|
+
version = "0.2.122"
|
|
4484
4776
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4485
|
-
checksum = "
|
|
4777
|
+
checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
|
|
4486
4778
|
dependencies = [
|
|
4487
4779
|
"unicode-ident",
|
|
4488
4780
|
]
|
|
4489
4781
|
|
|
4782
|
+
[[package]]
|
|
4783
|
+
name = "wasm-encoder"
|
|
4784
|
+
version = "0.244.0"
|
|
4785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4786
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
4787
|
+
dependencies = [
|
|
4788
|
+
"leb128fmt",
|
|
4789
|
+
"wasmparser 0.244.0",
|
|
4790
|
+
]
|
|
4791
|
+
|
|
4792
|
+
[[package]]
|
|
4793
|
+
name = "wasm-metadata"
|
|
4794
|
+
version = "0.244.0"
|
|
4795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4796
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
4797
|
+
dependencies = [
|
|
4798
|
+
"anyhow",
|
|
4799
|
+
"indexmap",
|
|
4800
|
+
"wasm-encoder",
|
|
4801
|
+
"wasmparser 0.244.0",
|
|
4802
|
+
]
|
|
4803
|
+
|
|
4490
4804
|
[[package]]
|
|
4491
4805
|
name = "wasm-streams"
|
|
4492
4806
|
version = "0.5.0"
|
|
@@ -4502,33 +4816,45 @@ dependencies = [
|
|
|
4502
4816
|
|
|
4503
4817
|
[[package]]
|
|
4504
4818
|
name = "wasmparser"
|
|
4505
|
-
version = "0.
|
|
4819
|
+
version = "0.243.0"
|
|
4506
4820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4507
|
-
checksum = "
|
|
4821
|
+
checksum = "f6d8db401b0528ec316dfbe579e6ab4152d61739cfe076706d2009127970159d"
|
|
4508
4822
|
dependencies = [
|
|
4509
|
-
"
|
|
4510
|
-
"
|
|
4511
|
-
"hashbrown 0.14.5",
|
|
4823
|
+
"bitflags 2.11.1",
|
|
4824
|
+
"hashbrown 0.15.5",
|
|
4512
4825
|
"indexmap",
|
|
4513
4826
|
"semver",
|
|
4514
4827
|
"serde",
|
|
4515
4828
|
]
|
|
4516
4829
|
|
|
4830
|
+
[[package]]
|
|
4831
|
+
name = "wasmparser"
|
|
4832
|
+
version = "0.244.0"
|
|
4833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4834
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
4835
|
+
dependencies = [
|
|
4836
|
+
"bitflags 2.11.1",
|
|
4837
|
+
"hashbrown 0.15.5",
|
|
4838
|
+
"indexmap",
|
|
4839
|
+
"semver",
|
|
4840
|
+
]
|
|
4841
|
+
|
|
4517
4842
|
[[package]]
|
|
4518
4843
|
name = "watto"
|
|
4519
|
-
version = "0.
|
|
4844
|
+
version = "0.2.0"
|
|
4520
4845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4521
|
-
checksum = "
|
|
4846
|
+
checksum = "bfbc1480663d640f8c9f7a1ac70922eea60ac16fea79df883177df3bc7bb8b49"
|
|
4522
4847
|
dependencies = [
|
|
4848
|
+
"hashbrown 0.15.5",
|
|
4523
4849
|
"leb128",
|
|
4524
|
-
"thiserror
|
|
4850
|
+
"thiserror 2.0.18",
|
|
4525
4851
|
]
|
|
4526
4852
|
|
|
4527
4853
|
[[package]]
|
|
4528
4854
|
name = "web-sys"
|
|
4529
|
-
version = "0.3.
|
|
4855
|
+
version = "0.3.99"
|
|
4530
4856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4531
|
-
checksum = "
|
|
4857
|
+
checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
|
|
4532
4858
|
dependencies = [
|
|
4533
4859
|
"js-sys",
|
|
4534
4860
|
"wasm-bindgen",
|
|
@@ -4579,7 +4905,7 @@ version = "0.1.11"
|
|
|
4579
4905
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4580
4906
|
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
4581
4907
|
dependencies = [
|
|
4582
|
-
"windows-sys 0.61.
|
|
4908
|
+
"windows-sys 0.61.2",
|
|
4583
4909
|
]
|
|
4584
4910
|
|
|
4585
4911
|
[[package]]
|
|
@@ -4590,22 +4916,22 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
4590
4916
|
|
|
4591
4917
|
[[package]]
|
|
4592
4918
|
name = "windows-core"
|
|
4593
|
-
version = "0.62.
|
|
4919
|
+
version = "0.62.2"
|
|
4594
4920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4595
|
-
checksum = "
|
|
4921
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4596
4922
|
dependencies = [
|
|
4597
4923
|
"windows-implement",
|
|
4598
4924
|
"windows-interface",
|
|
4599
|
-
"windows-link
|
|
4600
|
-
"windows-result
|
|
4601
|
-
"windows-strings
|
|
4925
|
+
"windows-link",
|
|
4926
|
+
"windows-result",
|
|
4927
|
+
"windows-strings",
|
|
4602
4928
|
]
|
|
4603
4929
|
|
|
4604
4930
|
[[package]]
|
|
4605
4931
|
name = "windows-implement"
|
|
4606
|
-
version = "0.60.
|
|
4932
|
+
version = "0.60.2"
|
|
4607
4933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4608
|
-
checksum = "
|
|
4934
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
4609
4935
|
dependencies = [
|
|
4610
4936
|
"proc-macro2",
|
|
4611
4937
|
"quote",
|
|
@@ -4614,9 +4940,9 @@ dependencies = [
|
|
|
4614
4940
|
|
|
4615
4941
|
[[package]]
|
|
4616
4942
|
name = "windows-interface"
|
|
4617
|
-
version = "0.59.
|
|
4943
|
+
version = "0.59.3"
|
|
4618
4944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4619
|
-
checksum = "
|
|
4945
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
4620
4946
|
dependencies = [
|
|
4621
4947
|
"proc-macro2",
|
|
4622
4948
|
"quote",
|
|
@@ -4625,61 +4951,37 @@ dependencies = [
|
|
|
4625
4951
|
|
|
4626
4952
|
[[package]]
|
|
4627
4953
|
name = "windows-link"
|
|
4628
|
-
version = "0.1
|
|
4629
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4630
|
-
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
4631
|
-
|
|
4632
|
-
[[package]]
|
|
4633
|
-
name = "windows-link"
|
|
4634
|
-
version = "0.2.0"
|
|
4954
|
+
version = "0.2.1"
|
|
4635
4955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4636
|
-
checksum = "
|
|
4956
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
4637
4957
|
|
|
4638
4958
|
[[package]]
|
|
4639
4959
|
name = "windows-registry"
|
|
4640
|
-
version = "0.
|
|
4641
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4642
|
-
checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
|
|
4643
|
-
dependencies = [
|
|
4644
|
-
"windows-link 0.1.3",
|
|
4645
|
-
"windows-result 0.3.4",
|
|
4646
|
-
"windows-strings 0.4.2",
|
|
4647
|
-
]
|
|
4648
|
-
|
|
4649
|
-
[[package]]
|
|
4650
|
-
name = "windows-result"
|
|
4651
|
-
version = "0.3.4"
|
|
4960
|
+
version = "0.6.1"
|
|
4652
4961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4653
|
-
checksum = "
|
|
4962
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
4654
4963
|
dependencies = [
|
|
4655
|
-
"windows-link
|
|
4964
|
+
"windows-link",
|
|
4965
|
+
"windows-result",
|
|
4966
|
+
"windows-strings",
|
|
4656
4967
|
]
|
|
4657
4968
|
|
|
4658
4969
|
[[package]]
|
|
4659
4970
|
name = "windows-result"
|
|
4660
|
-
version = "0.4.
|
|
4661
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4662
|
-
checksum = "7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f"
|
|
4663
|
-
dependencies = [
|
|
4664
|
-
"windows-link 0.2.0",
|
|
4665
|
-
]
|
|
4666
|
-
|
|
4667
|
-
[[package]]
|
|
4668
|
-
name = "windows-strings"
|
|
4669
|
-
version = "0.4.2"
|
|
4971
|
+
version = "0.4.1"
|
|
4670
4972
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4671
|
-
checksum = "
|
|
4973
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
4672
4974
|
dependencies = [
|
|
4673
|
-
"windows-link
|
|
4975
|
+
"windows-link",
|
|
4674
4976
|
]
|
|
4675
4977
|
|
|
4676
4978
|
[[package]]
|
|
4677
4979
|
name = "windows-strings"
|
|
4678
|
-
version = "0.5.
|
|
4980
|
+
version = "0.5.1"
|
|
4679
4981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4680
|
-
checksum = "
|
|
4982
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
4681
4983
|
dependencies = [
|
|
4682
|
-
"windows-link
|
|
4984
|
+
"windows-link",
|
|
4683
4985
|
]
|
|
4684
4986
|
|
|
4685
4987
|
[[package]]
|
|
@@ -4726,20 +5028,11 @@ dependencies = [
|
|
|
4726
5028
|
|
|
4727
5029
|
[[package]]
|
|
4728
5030
|
name = "windows-sys"
|
|
4729
|
-
version = "0.
|
|
4730
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4731
|
-
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
4732
|
-
dependencies = [
|
|
4733
|
-
"windows-targets 0.53.4",
|
|
4734
|
-
]
|
|
4735
|
-
|
|
4736
|
-
[[package]]
|
|
4737
|
-
name = "windows-sys"
|
|
4738
|
-
version = "0.61.1"
|
|
5031
|
+
version = "0.61.2"
|
|
4739
5032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4740
|
-
checksum = "
|
|
5033
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
4741
5034
|
dependencies = [
|
|
4742
|
-
"windows-link
|
|
5035
|
+
"windows-link",
|
|
4743
5036
|
]
|
|
4744
5037
|
|
|
4745
5038
|
[[package]]
|
|
@@ -4766,30 +5059,13 @@ dependencies = [
|
|
|
4766
5059
|
"windows_aarch64_gnullvm 0.52.6",
|
|
4767
5060
|
"windows_aarch64_msvc 0.52.6",
|
|
4768
5061
|
"windows_i686_gnu 0.52.6",
|
|
4769
|
-
"windows_i686_gnullvm
|
|
5062
|
+
"windows_i686_gnullvm",
|
|
4770
5063
|
"windows_i686_msvc 0.52.6",
|
|
4771
5064
|
"windows_x86_64_gnu 0.52.6",
|
|
4772
5065
|
"windows_x86_64_gnullvm 0.52.6",
|
|
4773
5066
|
"windows_x86_64_msvc 0.52.6",
|
|
4774
5067
|
]
|
|
4775
5068
|
|
|
4776
|
-
[[package]]
|
|
4777
|
-
name = "windows-targets"
|
|
4778
|
-
version = "0.53.4"
|
|
4779
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4780
|
-
checksum = "2d42b7b7f66d2a06854650af09cfdf8713e427a439c97ad65a6375318033ac4b"
|
|
4781
|
-
dependencies = [
|
|
4782
|
-
"windows-link 0.2.0",
|
|
4783
|
-
"windows_aarch64_gnullvm 0.53.0",
|
|
4784
|
-
"windows_aarch64_msvc 0.53.0",
|
|
4785
|
-
"windows_i686_gnu 0.53.0",
|
|
4786
|
-
"windows_i686_gnullvm 0.53.0",
|
|
4787
|
-
"windows_i686_msvc 0.53.0",
|
|
4788
|
-
"windows_x86_64_gnu 0.53.0",
|
|
4789
|
-
"windows_x86_64_gnullvm 0.53.0",
|
|
4790
|
-
"windows_x86_64_msvc 0.53.0",
|
|
4791
|
-
]
|
|
4792
|
-
|
|
4793
5069
|
[[package]]
|
|
4794
5070
|
name = "windows_aarch64_gnullvm"
|
|
4795
5071
|
version = "0.42.2"
|
|
@@ -4808,12 +5084,6 @@ version = "0.52.6"
|
|
|
4808
5084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4809
5085
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4810
5086
|
|
|
4811
|
-
[[package]]
|
|
4812
|
-
name = "windows_aarch64_gnullvm"
|
|
4813
|
-
version = "0.53.0"
|
|
4814
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4815
|
-
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
4816
|
-
|
|
4817
5087
|
[[package]]
|
|
4818
5088
|
name = "windows_aarch64_msvc"
|
|
4819
5089
|
version = "0.42.2"
|
|
@@ -4832,12 +5102,6 @@ version = "0.52.6"
|
|
|
4832
5102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4833
5103
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4834
5104
|
|
|
4835
|
-
[[package]]
|
|
4836
|
-
name = "windows_aarch64_msvc"
|
|
4837
|
-
version = "0.53.0"
|
|
4838
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4839
|
-
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
4840
|
-
|
|
4841
5105
|
[[package]]
|
|
4842
5106
|
name = "windows_i686_gnu"
|
|
4843
5107
|
version = "0.42.2"
|
|
@@ -4856,24 +5120,12 @@ version = "0.52.6"
|
|
|
4856
5120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4857
5121
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4858
5122
|
|
|
4859
|
-
[[package]]
|
|
4860
|
-
name = "windows_i686_gnu"
|
|
4861
|
-
version = "0.53.0"
|
|
4862
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4863
|
-
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
4864
|
-
|
|
4865
5123
|
[[package]]
|
|
4866
5124
|
name = "windows_i686_gnullvm"
|
|
4867
5125
|
version = "0.52.6"
|
|
4868
5126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4869
5127
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4870
5128
|
|
|
4871
|
-
[[package]]
|
|
4872
|
-
name = "windows_i686_gnullvm"
|
|
4873
|
-
version = "0.53.0"
|
|
4874
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4875
|
-
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
4876
|
-
|
|
4877
5129
|
[[package]]
|
|
4878
5130
|
name = "windows_i686_msvc"
|
|
4879
5131
|
version = "0.42.2"
|
|
@@ -4892,12 +5144,6 @@ version = "0.52.6"
|
|
|
4892
5144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4893
5145
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4894
5146
|
|
|
4895
|
-
[[package]]
|
|
4896
|
-
name = "windows_i686_msvc"
|
|
4897
|
-
version = "0.53.0"
|
|
4898
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4899
|
-
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
4900
|
-
|
|
4901
5147
|
[[package]]
|
|
4902
5148
|
name = "windows_x86_64_gnu"
|
|
4903
5149
|
version = "0.42.2"
|
|
@@ -4916,12 +5162,6 @@ version = "0.52.6"
|
|
|
4916
5162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4917
5163
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4918
5164
|
|
|
4919
|
-
[[package]]
|
|
4920
|
-
name = "windows_x86_64_gnu"
|
|
4921
|
-
version = "0.53.0"
|
|
4922
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4923
|
-
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
4924
|
-
|
|
4925
5165
|
[[package]]
|
|
4926
5166
|
name = "windows_x86_64_gnullvm"
|
|
4927
5167
|
version = "0.42.2"
|
|
@@ -4940,12 +5180,6 @@ version = "0.52.6"
|
|
|
4940
5180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4941
5181
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4942
5182
|
|
|
4943
|
-
[[package]]
|
|
4944
|
-
name = "windows_x86_64_gnullvm"
|
|
4945
|
-
version = "0.53.0"
|
|
4946
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4947
|
-
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
4948
|
-
|
|
4949
5183
|
[[package]]
|
|
4950
5184
|
name = "windows_x86_64_msvc"
|
|
4951
5185
|
version = "0.42.2"
|
|
@@ -4965,31 +5199,113 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4965
5199
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4966
5200
|
|
|
4967
5201
|
[[package]]
|
|
4968
|
-
name = "
|
|
4969
|
-
version = "0.
|
|
5202
|
+
name = "winnow"
|
|
5203
|
+
version = "0.7.15"
|
|
4970
5204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4971
|
-
checksum = "
|
|
5205
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
5206
|
+
dependencies = [
|
|
5207
|
+
"memchr",
|
|
5208
|
+
]
|
|
4972
5209
|
|
|
4973
5210
|
[[package]]
|
|
4974
|
-
name = "
|
|
4975
|
-
version = "0.
|
|
5211
|
+
name = "wit-bindgen"
|
|
5212
|
+
version = "0.51.0"
|
|
4976
5213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4977
|
-
checksum = "
|
|
5214
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
4978
5215
|
dependencies = [
|
|
4979
|
-
"
|
|
5216
|
+
"wit-bindgen-rust-macro",
|
|
4980
5217
|
]
|
|
4981
5218
|
|
|
4982
5219
|
[[package]]
|
|
4983
5220
|
name = "wit-bindgen"
|
|
4984
|
-
version = "0.
|
|
5221
|
+
version = "0.57.1"
|
|
5222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5223
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
5224
|
+
|
|
5225
|
+
[[package]]
|
|
5226
|
+
name = "wit-bindgen-core"
|
|
5227
|
+
version = "0.51.0"
|
|
5228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5229
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
5230
|
+
dependencies = [
|
|
5231
|
+
"anyhow",
|
|
5232
|
+
"heck",
|
|
5233
|
+
"wit-parser",
|
|
5234
|
+
]
|
|
5235
|
+
|
|
5236
|
+
[[package]]
|
|
5237
|
+
name = "wit-bindgen-rust"
|
|
5238
|
+
version = "0.51.0"
|
|
5239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5240
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
5241
|
+
dependencies = [
|
|
5242
|
+
"anyhow",
|
|
5243
|
+
"heck",
|
|
5244
|
+
"indexmap",
|
|
5245
|
+
"prettyplease",
|
|
5246
|
+
"syn",
|
|
5247
|
+
"wasm-metadata",
|
|
5248
|
+
"wit-bindgen-core",
|
|
5249
|
+
"wit-component",
|
|
5250
|
+
]
|
|
5251
|
+
|
|
5252
|
+
[[package]]
|
|
5253
|
+
name = "wit-bindgen-rust-macro"
|
|
5254
|
+
version = "0.51.0"
|
|
4985
5255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4986
|
-
checksum = "
|
|
5256
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
5257
|
+
dependencies = [
|
|
5258
|
+
"anyhow",
|
|
5259
|
+
"prettyplease",
|
|
5260
|
+
"proc-macro2",
|
|
5261
|
+
"quote",
|
|
5262
|
+
"syn",
|
|
5263
|
+
"wit-bindgen-core",
|
|
5264
|
+
"wit-bindgen-rust",
|
|
5265
|
+
]
|
|
5266
|
+
|
|
5267
|
+
[[package]]
|
|
5268
|
+
name = "wit-component"
|
|
5269
|
+
version = "0.244.0"
|
|
5270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5271
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
5272
|
+
dependencies = [
|
|
5273
|
+
"anyhow",
|
|
5274
|
+
"bitflags 2.11.1",
|
|
5275
|
+
"indexmap",
|
|
5276
|
+
"log",
|
|
5277
|
+
"serde",
|
|
5278
|
+
"serde_derive",
|
|
5279
|
+
"serde_json",
|
|
5280
|
+
"wasm-encoder",
|
|
5281
|
+
"wasm-metadata",
|
|
5282
|
+
"wasmparser 0.244.0",
|
|
5283
|
+
"wit-parser",
|
|
5284
|
+
]
|
|
5285
|
+
|
|
5286
|
+
[[package]]
|
|
5287
|
+
name = "wit-parser"
|
|
5288
|
+
version = "0.244.0"
|
|
5289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5290
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
5291
|
+
dependencies = [
|
|
5292
|
+
"anyhow",
|
|
5293
|
+
"id-arena",
|
|
5294
|
+
"indexmap",
|
|
5295
|
+
"log",
|
|
5296
|
+
"semver",
|
|
5297
|
+
"serde",
|
|
5298
|
+
"serde_derive",
|
|
5299
|
+
"serde_json",
|
|
5300
|
+
"unicode-xid",
|
|
5301
|
+
"wasmparser 0.244.0",
|
|
5302
|
+
]
|
|
4987
5303
|
|
|
4988
5304
|
[[package]]
|
|
4989
5305
|
name = "writeable"
|
|
4990
|
-
version = "0.6.
|
|
5306
|
+
version = "0.6.3"
|
|
4991
5307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4992
|
-
checksum = "
|
|
5308
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
4993
5309
|
|
|
4994
5310
|
[[package]]
|
|
4995
5311
|
name = "wyz"
|
|
@@ -5011,11 +5327,10 @@ dependencies = [
|
|
|
5011
5327
|
|
|
5012
5328
|
[[package]]
|
|
5013
5329
|
name = "yoke"
|
|
5014
|
-
version = "0.8.
|
|
5330
|
+
version = "0.8.2"
|
|
5015
5331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5016
|
-
checksum = "
|
|
5332
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
5017
5333
|
dependencies = [
|
|
5018
|
-
"serde",
|
|
5019
5334
|
"stable_deref_trait",
|
|
5020
5335
|
"yoke-derive",
|
|
5021
5336
|
"zerofrom",
|
|
@@ -5023,9 +5338,9 @@ dependencies = [
|
|
|
5023
5338
|
|
|
5024
5339
|
[[package]]
|
|
5025
5340
|
name = "yoke-derive"
|
|
5026
|
-
version = "0.8.
|
|
5341
|
+
version = "0.8.2"
|
|
5027
5342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5028
|
-
checksum = "
|
|
5343
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
5029
5344
|
dependencies = [
|
|
5030
5345
|
"proc-macro2",
|
|
5031
5346
|
"quote",
|
|
@@ -5035,18 +5350,18 @@ dependencies = [
|
|
|
5035
5350
|
|
|
5036
5351
|
[[package]]
|
|
5037
5352
|
name = "zerocopy"
|
|
5038
|
-
version = "0.8.
|
|
5353
|
+
version = "0.8.50"
|
|
5039
5354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5040
|
-
checksum = "
|
|
5355
|
+
checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
|
|
5041
5356
|
dependencies = [
|
|
5042
5357
|
"zerocopy-derive",
|
|
5043
5358
|
]
|
|
5044
5359
|
|
|
5045
5360
|
[[package]]
|
|
5046
5361
|
name = "zerocopy-derive"
|
|
5047
|
-
version = "0.8.
|
|
5362
|
+
version = "0.8.50"
|
|
5048
5363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5049
|
-
checksum = "
|
|
5364
|
+
checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
|
|
5050
5365
|
dependencies = [
|
|
5051
5366
|
"proc-macro2",
|
|
5052
5367
|
"quote",
|
|
@@ -5055,18 +5370,18 @@ dependencies = [
|
|
|
5055
5370
|
|
|
5056
5371
|
[[package]]
|
|
5057
5372
|
name = "zerofrom"
|
|
5058
|
-
version = "0.1.
|
|
5373
|
+
version = "0.1.8"
|
|
5059
5374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5060
|
-
checksum = "
|
|
5375
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
5061
5376
|
dependencies = [
|
|
5062
5377
|
"zerofrom-derive",
|
|
5063
5378
|
]
|
|
5064
5379
|
|
|
5065
5380
|
[[package]]
|
|
5066
5381
|
name = "zerofrom-derive"
|
|
5067
|
-
version = "0.1.
|
|
5382
|
+
version = "0.1.7"
|
|
5068
5383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5069
|
-
checksum = "
|
|
5384
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
5070
5385
|
dependencies = [
|
|
5071
5386
|
"proc-macro2",
|
|
5072
5387
|
"quote",
|
|
@@ -5085,9 +5400,9 @@ dependencies = [
|
|
|
5085
5400
|
|
|
5086
5401
|
[[package]]
|
|
5087
5402
|
name = "zeroize_derive"
|
|
5088
|
-
version = "1.4.
|
|
5403
|
+
version = "1.4.3"
|
|
5089
5404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5090
|
-
checksum = "
|
|
5405
|
+
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
|
5091
5406
|
dependencies = [
|
|
5092
5407
|
"proc-macro2",
|
|
5093
5408
|
"quote",
|
|
@@ -5096,9 +5411,9 @@ dependencies = [
|
|
|
5096
5411
|
|
|
5097
5412
|
[[package]]
|
|
5098
5413
|
name = "zerotrie"
|
|
5099
|
-
version = "0.2.
|
|
5414
|
+
version = "0.2.4"
|
|
5100
5415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5101
|
-
checksum = "
|
|
5416
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
5102
5417
|
dependencies = [
|
|
5103
5418
|
"displaydoc",
|
|
5104
5419
|
"yoke",
|
|
@@ -5107,9 +5422,9 @@ dependencies = [
|
|
|
5107
5422
|
|
|
5108
5423
|
[[package]]
|
|
5109
5424
|
name = "zerovec"
|
|
5110
|
-
version = "0.11.
|
|
5425
|
+
version = "0.11.6"
|
|
5111
5426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5112
|
-
checksum = "
|
|
5427
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
5113
5428
|
dependencies = [
|
|
5114
5429
|
"yoke",
|
|
5115
5430
|
"zerofrom",
|
|
@@ -5118,9 +5433,9 @@ dependencies = [
|
|
|
5118
5433
|
|
|
5119
5434
|
[[package]]
|
|
5120
5435
|
name = "zerovec-derive"
|
|
5121
|
-
version = "0.11.
|
|
5436
|
+
version = "0.11.3"
|
|
5122
5437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5123
|
-
checksum = "
|
|
5438
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
5124
5439
|
dependencies = [
|
|
5125
5440
|
"proc-macro2",
|
|
5126
5441
|
"quote",
|
|
@@ -5142,14 +5457,14 @@ dependencies = [
|
|
|
5142
5457
|
"deflate64",
|
|
5143
5458
|
"displaydoc",
|
|
5144
5459
|
"flate2",
|
|
5145
|
-
"getrandom 0.3.
|
|
5460
|
+
"getrandom 0.3.4",
|
|
5146
5461
|
"hmac",
|
|
5147
5462
|
"indexmap",
|
|
5148
5463
|
"lzma-rs",
|
|
5149
5464
|
"memchr",
|
|
5150
5465
|
"pbkdf2",
|
|
5151
5466
|
"sha1",
|
|
5152
|
-
"thiserror 2.0.
|
|
5467
|
+
"thiserror 2.0.18",
|
|
5153
5468
|
"time",
|
|
5154
5469
|
"xz2",
|
|
5155
5470
|
"zeroize",
|
|
@@ -5157,11 +5472,37 @@ dependencies = [
|
|
|
5157
5472
|
"zstd",
|
|
5158
5473
|
]
|
|
5159
5474
|
|
|
5475
|
+
[[package]]
|
|
5476
|
+
name = "zip"
|
|
5477
|
+
version = "7.2.0"
|
|
5478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5479
|
+
checksum = "c42e33efc22a0650c311c2ef19115ce232583abbe80850bc8b66509ebef02de0"
|
|
5480
|
+
dependencies = [
|
|
5481
|
+
"crc32fast",
|
|
5482
|
+
"flate2",
|
|
5483
|
+
"indexmap",
|
|
5484
|
+
"memchr",
|
|
5485
|
+
"typed-path",
|
|
5486
|
+
"zopfli",
|
|
5487
|
+
]
|
|
5488
|
+
|
|
5489
|
+
[[package]]
|
|
5490
|
+
name = "zlib-rs"
|
|
5491
|
+
version = "0.6.3"
|
|
5492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5493
|
+
checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
|
|
5494
|
+
|
|
5495
|
+
[[package]]
|
|
5496
|
+
name = "zmij"
|
|
5497
|
+
version = "1.0.21"
|
|
5498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5499
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
5500
|
+
|
|
5160
5501
|
[[package]]
|
|
5161
5502
|
name = "zopfli"
|
|
5162
|
-
version = "0.8.
|
|
5503
|
+
version = "0.8.3"
|
|
5163
5504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5164
|
-
checksum = "
|
|
5505
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
5165
5506
|
dependencies = [
|
|
5166
5507
|
"bumpalo",
|
|
5167
5508
|
"crc32fast",
|