sentry-cli 3.4.1__tar.gz → 3.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/Cargo.lock +1116 -777
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/Cargo.toml +5 -3
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/PKG-INFO +6 -1
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/README.md +5 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/sentry_cli.egg-info/PKG-INFO +6 -1
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/sentry_cli.egg-info/SOURCES.txt +8 -1
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/data_types/snapshots.rs +35 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/mod.rs +62 -14
- sentry_cli-3.5.0/src/api/updating.rs +80 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/bashsupport.sh +3 -3
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/bash_hook.rs +44 -26
- sentry_cli-3.5.0/src/commands/build/mod.rs +58 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/mod.rs +2 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/react_native/xcode.rs +7 -2
- sentry_cli-3.5.0/src/commands/releases/propose_version.rs +19 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/send_event.rs +9 -2
- sentry_cli-3.5.0/src/commands/snapshots/diff.rs +528 -0
- sentry_cli-3.5.0/src/commands/snapshots/download.rs +139 -0
- {sentry_cli-3.4.1/src/commands/build → sentry_cli-3.5.0/src/commands/snapshots}/mod.rs +6 -10
- sentry_cli-3.4.1/src/commands/build/snapshots.rs → sentry_cli-3.5.0/src/commands/snapshots/upload.rs +194 -46
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/config.rs +51 -11
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/args.rs +10 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/file_upload.rs +6 -14
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/fs.rs +2 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/mod.rs +1 -0
- sentry_cli-3.5.0/src/utils/odiff/binary.rs +121 -0
- sentry_cli-3.5.0/src/utils/odiff/mod.rs +2 -0
- sentry_cli-3.5.0/src/utils/odiff/server.rs +232 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/releases.rs +10 -6
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/update.rs +29 -4
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/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.0}/LICENSE +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/MANIFEST.in +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/apple-catalog-parsing/AGENTS.md +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/apple-catalog-parsing/CLAUDE.md +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/apple-catalog-parsing/Cargo.toml +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/apple-catalog-parsing/build.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/apple-catalog-parsing/native/swift/AssetCatalogParser/Package.swift +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/apple-catalog-parsing/native/swift/AssetCatalogParser/Sources/AssetCatalogParser/AssetCatalogReader.swift +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/apple-catalog-parsing/native/swift/AssetCatalogParser/Sources/ObjcSupport/include/safeValueForKey.h +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/apple-catalog-parsing/native/swift/AssetCatalogParser/Sources/ObjcSupport/safeValueForKey.m +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/apple-catalog-parsing/native/swift/AssetCatalogParser/Tests/AssetCatalogParserTests/AssetCatalogParserTests.swift +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/apple-catalog-parsing/native/swift/AssetCatalogParser/Tests/AssetCatalogParserTests/Resources/test.xcarchive/Info.plist +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/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.0}/apple-catalog-parsing/src/asset_catalog.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/apple-catalog-parsing/src/lib.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/build.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/pyproject.toml +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/sentry_cli.egg-info/dependency_links.txt +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/sentry_cli.egg-info/top_level.txt +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/setup.cfg +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/setup.py +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/AGENTS.md +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/CLAUDE.md +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/connection_manager.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/data_types/chunking/artifact.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/data_types/chunking/build.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/data_types/chunking/compression.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/data_types/chunking/dif.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/data_types/chunking/file_state.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/data_types/chunking/hash_algorithm.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/data_types/chunking/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/data_types/chunking/upload/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/data_types/chunking/upload/options.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/data_types/code_mappings.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/data_types/deploy.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/data_types/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/encoding.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/envelopes_api.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/errors/api_error.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/errors/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/errors/sentry_error.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/pagination.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/api/serialization.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/build/download.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/build/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/code_mappings/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/code_mappings/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/dart_symbol_map/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/dart_symbol_map/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/debug_files/bundle_jvm.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/debug_files/bundle_sources.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/debug_files/check.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/debug_files/find.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/debug_files/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/debug_files/print_sources.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/debug_files/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/deploys/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/deploys/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/deploys/new.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/derive_parser.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/events/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/events/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/info.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/issues/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/issues/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/issues/mute.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/issues/resolve.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/issues/unresolve.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/login.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/logs/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/logs/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/monitors/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/monitors/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/monitors/run.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/organizations/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/organizations/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/proguard/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/proguard/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/proguard/uuid.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/projects/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/projects/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/react_native/gradle.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/react_native/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/releases/archive.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/releases/delete.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/releases/finalize.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/releases/info.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/releases/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/releases/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/releases/new.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/releases/restore.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/releases/set_commits.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/repos/list.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/repos/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/send_envelope.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/send_metric/common_args.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/send_metric/increment.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/send_metric/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/send_metric/set.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/sourcemaps/inject.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/sourcemaps/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/sourcemaps/resolve.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/sourcemaps/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/uninstall.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/update.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/upload_dif.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/upload_dsym.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/commands/upload_proguard.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/constants.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/main.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/android.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/auth_token/auth_token_impl.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/auth_token/error.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/auth_token/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/auth_token/org_auth_token.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/auth_token/redacting.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/auth_token/test.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/auth_token/user_auth_token.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/build/apple.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/build/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/build/normalize.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/build/validation.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/build_vcs.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/chunks/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/chunks/options.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/chunks/types.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/chunks/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/ci.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/cordova.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/dif.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/dif_upload/error.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/dif_upload/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/event.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/file_search.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/formatting.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/http.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/logging.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/non_empty.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/progress.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/proguard/mapping.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/proguard/mod.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/proguard/upload.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/retry.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/snapshots/sentry_cli__utils__vcs__tests__generate_patch_default_twenty.snap +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/snapshots/sentry_cli__utils__vcs__tests__generate_patch_ignore_missing.snap +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/snapshots/sentry_cli__utils__vcs__tests__generate_patch_set_base.snap +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/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.0}/src/utils/snapshots/sentry_cli__utils__vcs__tests__get_commits_from_git.snap +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/source_bundle.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/sourcemaps/inject.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/sourcemaps.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/system.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/ui.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/src/utils/value_parsers.rs +0 -0
- {sentry_cli-3.4.1 → sentry_cli-3.5.0}/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,241 @@ 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.9"
|
|
2507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2508
|
+
checksum = "754d0120cf9036efad549de3d65223998b5b7ab00943686dd96acdb926a0cfe6"
|
|
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
|
+
]
|
|
2526
|
+
|
|
2527
|
+
[[package]]
|
|
2528
|
+
name = "objectstore-types"
|
|
2529
|
+
version = "0.1.9"
|
|
2530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
+
checksum = "75d2e3c60712032c880ec7fc56cd01856eb438968957b4c136acd4e6d66f3580"
|
|
2532
|
+
dependencies = [
|
|
2533
|
+
"http",
|
|
2534
|
+
"humantime",
|
|
2535
|
+
"mediatype",
|
|
2536
|
+
"serde",
|
|
2537
|
+
"thiserror 2.0.18",
|
|
2538
|
+
]
|
|
2539
|
+
|
|
2540
|
+
[[package]]
|
|
2541
|
+
name = "once_cell"
|
|
2542
|
+
version = "1.21.4"
|
|
2543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2544
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
2545
|
+
|
|
2546
|
+
[[package]]
|
|
2547
|
+
name = "once_cell_polyfill"
|
|
2548
|
+
version = "1.70.2"
|
|
2549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2550
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
2551
|
+
|
|
2552
|
+
[[package]]
|
|
2553
|
+
name = "open"
|
|
2554
|
+
version = "3.2.0"
|
|
2555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2556
|
+
checksum = "2078c0039e6a54a0c42c28faa984e115fb4c2d5bf2208f77d1961002df8576f8"
|
|
2557
|
+
dependencies = [
|
|
2558
|
+
"pathdiff",
|
|
2559
|
+
"windows-sys 0.42.0",
|
|
2560
|
+
]
|
|
2561
|
+
|
|
2562
|
+
[[package]]
|
|
2563
|
+
name = "openssl"
|
|
2564
|
+
version = "0.10.80"
|
|
2565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2566
|
+
checksum = "a45fa2aa886c42762255da344f0a0d313e254066c46aad76f300c3d3da62d967"
|
|
2567
|
+
dependencies = [
|
|
2568
|
+
"bitflags 2.11.1",
|
|
2569
|
+
"cfg-if",
|
|
2570
|
+
"foreign-types",
|
|
2571
|
+
"libc",
|
|
2370
2572
|
"openssl-macros",
|
|
2371
2573
|
"openssl-sys",
|
|
2372
2574
|
]
|
|
@@ -2388,20 +2590,26 @@ version = "0.1.6"
|
|
|
2388
2590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2389
2591
|
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
2390
2592
|
|
|
2593
|
+
[[package]]
|
|
2594
|
+
name = "openssl-probe"
|
|
2595
|
+
version = "0.2.1"
|
|
2596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2597
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
2598
|
+
|
|
2391
2599
|
[[package]]
|
|
2392
2600
|
name = "openssl-src"
|
|
2393
|
-
version = "300.
|
|
2601
|
+
version = "300.6.0+3.6.2"
|
|
2394
2602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2395
|
-
checksum = "
|
|
2603
|
+
checksum = "a8e8cbfd3a4a8c8f089147fd7aaa33cf8c7450c4d09f8f80698a0cf093abeff4"
|
|
2396
2604
|
dependencies = [
|
|
2397
2605
|
"cc",
|
|
2398
2606
|
]
|
|
2399
2607
|
|
|
2400
2608
|
[[package]]
|
|
2401
2609
|
name = "openssl-sys"
|
|
2402
|
-
version = "0.9.
|
|
2610
|
+
version = "0.9.116"
|
|
2403
2611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2404
|
-
checksum = "
|
|
2612
|
+
checksum = "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4"
|
|
2405
2613
|
dependencies = [
|
|
2406
2614
|
"cc",
|
|
2407
2615
|
"libc",
|
|
@@ -2422,24 +2630,28 @@ dependencies = [
|
|
|
2422
2630
|
|
|
2423
2631
|
[[package]]
|
|
2424
2632
|
name = "os_info"
|
|
2425
|
-
version = "3.
|
|
2633
|
+
version = "3.15.0"
|
|
2426
2634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2427
|
-
checksum = "
|
|
2635
|
+
checksum = "9cf20a545b305cf1da722b236b5155c9bb35f1d5ceb28c048bd96ca842f41b5b"
|
|
2428
2636
|
dependencies = [
|
|
2637
|
+
"android_system_properties",
|
|
2429
2638
|
"log",
|
|
2430
|
-
"
|
|
2639
|
+
"nix",
|
|
2640
|
+
"objc2",
|
|
2641
|
+
"objc2-foundation",
|
|
2642
|
+
"objc2-ui-kit",
|
|
2431
2643
|
"serde",
|
|
2432
|
-
"windows-sys 0.
|
|
2644
|
+
"windows-sys 0.61.2",
|
|
2433
2645
|
]
|
|
2434
2646
|
|
|
2435
2647
|
[[package]]
|
|
2436
2648
|
name = "os_pipe"
|
|
2437
|
-
version = "1.2.
|
|
2649
|
+
version = "1.2.3"
|
|
2438
2650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2439
|
-
checksum = "
|
|
2651
|
+
checksum = "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967"
|
|
2440
2652
|
dependencies = [
|
|
2441
2653
|
"libc",
|
|
2442
|
-
"windows-sys 0.
|
|
2654
|
+
"windows-sys 0.61.2",
|
|
2443
2655
|
]
|
|
2444
2656
|
|
|
2445
2657
|
[[package]]
|
|
@@ -2474,9 +2686,9 @@ dependencies = [
|
|
|
2474
2686
|
|
|
2475
2687
|
[[package]]
|
|
2476
2688
|
name = "parking_lot"
|
|
2477
|
-
version = "0.12.
|
|
2689
|
+
version = "0.12.5"
|
|
2478
2690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2479
|
-
checksum = "
|
|
2691
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2480
2692
|
dependencies = [
|
|
2481
2693
|
"lock_api",
|
|
2482
2694
|
"parking_lot_core",
|
|
@@ -2484,15 +2696,15 @@ dependencies = [
|
|
|
2484
2696
|
|
|
2485
2697
|
[[package]]
|
|
2486
2698
|
name = "parking_lot_core"
|
|
2487
|
-
version = "0.9.
|
|
2699
|
+
version = "0.9.12"
|
|
2488
2700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2489
|
-
checksum = "
|
|
2701
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2490
2702
|
dependencies = [
|
|
2491
2703
|
"cfg-if",
|
|
2492
2704
|
"libc",
|
|
2493
|
-
"redox_syscall",
|
|
2705
|
+
"redox_syscall 0.5.18",
|
|
2494
2706
|
"smallvec",
|
|
2495
|
-
"windows-
|
|
2707
|
+
"windows-link",
|
|
2496
2708
|
]
|
|
2497
2709
|
|
|
2498
2710
|
[[package]]
|
|
@@ -2572,20 +2784,19 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
|
2572
2784
|
|
|
2573
2785
|
[[package]]
|
|
2574
2786
|
name = "pest"
|
|
2575
|
-
version = "2.8.
|
|
2787
|
+
version = "2.8.6"
|
|
2576
2788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2577
|
-
checksum = "
|
|
2789
|
+
checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
|
|
2578
2790
|
dependencies = [
|
|
2579
2791
|
"memchr",
|
|
2580
|
-
"thiserror 2.0.17",
|
|
2581
2792
|
"ucd-trie",
|
|
2582
2793
|
]
|
|
2583
2794
|
|
|
2584
2795
|
[[package]]
|
|
2585
2796
|
name = "pest_derive"
|
|
2586
|
-
version = "2.8.
|
|
2797
|
+
version = "2.8.6"
|
|
2587
2798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2588
|
-
checksum = "
|
|
2799
|
+
checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
|
|
2589
2800
|
dependencies = [
|
|
2590
2801
|
"pest",
|
|
2591
2802
|
"pest_generator",
|
|
@@ -2593,9 +2804,9 @@ dependencies = [
|
|
|
2593
2804
|
|
|
2594
2805
|
[[package]]
|
|
2595
2806
|
name = "pest_generator"
|
|
2596
|
-
version = "2.8.
|
|
2807
|
+
version = "2.8.6"
|
|
2597
2808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2598
|
-
checksum = "
|
|
2809
|
+
checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
|
|
2599
2810
|
dependencies = [
|
|
2600
2811
|
"pest",
|
|
2601
2812
|
"pest_meta",
|
|
@@ -2606,9 +2817,9 @@ dependencies = [
|
|
|
2606
2817
|
|
|
2607
2818
|
[[package]]
|
|
2608
2819
|
name = "pest_meta"
|
|
2609
|
-
version = "2.8.
|
|
2820
|
+
version = "2.8.6"
|
|
2610
2821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2611
|
-
checksum = "
|
|
2822
|
+
checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
|
|
2612
2823
|
dependencies = [
|
|
2613
2824
|
"pest",
|
|
2614
2825
|
"sha2",
|
|
@@ -2640,7 +2851,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2640
2851
|
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2641
2852
|
dependencies = [
|
|
2642
2853
|
"phf_shared",
|
|
2643
|
-
"rand 0.8.
|
|
2854
|
+
"rand 0.8.6",
|
|
2644
2855
|
]
|
|
2645
2856
|
|
|
2646
2857
|
[[package]]
|
|
@@ -2654,15 +2865,9 @@ dependencies = [
|
|
|
2654
2865
|
|
|
2655
2866
|
[[package]]
|
|
2656
2867
|
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"
|
|
2868
|
+
version = "0.2.17"
|
|
2664
2869
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2665
|
-
checksum = "
|
|
2870
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2666
2871
|
|
|
2667
2872
|
[[package]]
|
|
2668
2873
|
name = "pkcs1"
|
|
@@ -2687,9 +2892,9 @@ dependencies = [
|
|
|
2687
2892
|
|
|
2688
2893
|
[[package]]
|
|
2689
2894
|
name = "pkg-config"
|
|
2690
|
-
version = "0.3.
|
|
2895
|
+
version = "0.3.33"
|
|
2691
2896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2692
|
-
checksum = "
|
|
2897
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
2693
2898
|
|
|
2694
2899
|
[[package]]
|
|
2695
2900
|
name = "plain"
|
|
@@ -2699,9 +2904,9 @@ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
|
2699
2904
|
|
|
2700
2905
|
[[package]]
|
|
2701
2906
|
name = "plist"
|
|
2702
|
-
version = "1.
|
|
2907
|
+
version = "1.9.0"
|
|
2703
2908
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2704
|
-
checksum = "
|
|
2909
|
+
checksum = "092791278e026273c1b65bbdcfbba3a300f2994c896bd01ab01da613c29c46f1"
|
|
2705
2910
|
dependencies = [
|
|
2706
2911
|
"base64 0.22.1",
|
|
2707
2912
|
"indexmap",
|
|
@@ -2712,9 +2917,9 @@ dependencies = [
|
|
|
2712
2917
|
|
|
2713
2918
|
[[package]]
|
|
2714
2919
|
name = "potential_utf"
|
|
2715
|
-
version = "0.1.
|
|
2920
|
+
version = "0.1.5"
|
|
2716
2921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2717
|
-
checksum = "
|
|
2922
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
2718
2923
|
dependencies = [
|
|
2719
2924
|
"zerovec",
|
|
2720
2925
|
]
|
|
@@ -2742,9 +2947,9 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
|
2742
2947
|
|
|
2743
2948
|
[[package]]
|
|
2744
2949
|
name = "predicates"
|
|
2745
|
-
version = "3.1.
|
|
2950
|
+
version = "3.1.4"
|
|
2746
2951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2747
|
-
checksum = "
|
|
2952
|
+
checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
|
|
2748
2953
|
dependencies = [
|
|
2749
2954
|
"anstyle",
|
|
2750
2955
|
"difflib",
|
|
@@ -2753,20 +2958,30 @@ dependencies = [
|
|
|
2753
2958
|
|
|
2754
2959
|
[[package]]
|
|
2755
2960
|
name = "predicates-core"
|
|
2756
|
-
version = "1.0.
|
|
2961
|
+
version = "1.0.10"
|
|
2757
2962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2758
|
-
checksum = "
|
|
2963
|
+
checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
|
|
2759
2964
|
|
|
2760
2965
|
[[package]]
|
|
2761
2966
|
name = "predicates-tree"
|
|
2762
|
-
version = "1.0.
|
|
2967
|
+
version = "1.0.13"
|
|
2763
2968
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2764
|
-
checksum = "
|
|
2969
|
+
checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
|
|
2765
2970
|
dependencies = [
|
|
2766
2971
|
"predicates-core",
|
|
2767
2972
|
"termtree",
|
|
2768
2973
|
]
|
|
2769
2974
|
|
|
2975
|
+
[[package]]
|
|
2976
|
+
name = "prettyplease"
|
|
2977
|
+
version = "0.2.37"
|
|
2978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2979
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2980
|
+
dependencies = [
|
|
2981
|
+
"proc-macro2",
|
|
2982
|
+
"syn",
|
|
2983
|
+
]
|
|
2984
|
+
|
|
2770
2985
|
[[package]]
|
|
2771
2986
|
name = "prettytable-rs"
|
|
2772
2987
|
version = "0.10.0"
|
|
@@ -2792,40 +3007,40 @@ dependencies = [
|
|
|
2792
3007
|
|
|
2793
3008
|
[[package]]
|
|
2794
3009
|
name = "proc-macro2"
|
|
2795
|
-
version = "1.0.
|
|
3010
|
+
version = "1.0.106"
|
|
2796
3011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2797
|
-
checksum = "
|
|
3012
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
2798
3013
|
dependencies = [
|
|
2799
3014
|
"unicode-ident",
|
|
2800
3015
|
]
|
|
2801
3016
|
|
|
2802
3017
|
[[package]]
|
|
2803
3018
|
name = "proguard"
|
|
2804
|
-
version = "5.
|
|
3019
|
+
version = "5.10.3"
|
|
2805
3020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2806
|
-
checksum = "
|
|
3021
|
+
checksum = "a1000670719a375fcecd479087740ad350d217e761c135436c06c16e0e4307ee"
|
|
2807
3022
|
dependencies = [
|
|
2808
3023
|
"serde",
|
|
2809
3024
|
"serde_json",
|
|
2810
|
-
"thiserror
|
|
3025
|
+
"thiserror 2.0.18",
|
|
2811
3026
|
"uuid",
|
|
2812
3027
|
"watto",
|
|
2813
3028
|
]
|
|
2814
3029
|
|
|
2815
3030
|
[[package]]
|
|
2816
3031
|
name = "quick-xml"
|
|
2817
|
-
version = "0.
|
|
3032
|
+
version = "0.39.4"
|
|
2818
3033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2819
|
-
checksum = "
|
|
3034
|
+
checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e"
|
|
2820
3035
|
dependencies = [
|
|
2821
3036
|
"memchr",
|
|
2822
3037
|
]
|
|
2823
3038
|
|
|
2824
3039
|
[[package]]
|
|
2825
3040
|
name = "quote"
|
|
2826
|
-
version = "1.0.
|
|
3041
|
+
version = "1.0.45"
|
|
2827
3042
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2828
|
-
checksum = "
|
|
3043
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
2829
3044
|
dependencies = [
|
|
2830
3045
|
"proc-macro2",
|
|
2831
3046
|
]
|
|
@@ -2836,6 +3051,12 @@ version = "5.3.0"
|
|
|
2836
3051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2837
3052
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2838
3053
|
|
|
3054
|
+
[[package]]
|
|
3055
|
+
name = "r-efi"
|
|
3056
|
+
version = "6.0.0"
|
|
3057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3058
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
3059
|
+
|
|
2839
3060
|
[[package]]
|
|
2840
3061
|
name = "r2d2"
|
|
2841
3062
|
version = "0.8.10"
|
|
@@ -2855,9 +3076,9 @@ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
|
2855
3076
|
|
|
2856
3077
|
[[package]]
|
|
2857
3078
|
name = "rand"
|
|
2858
|
-
version = "0.8.
|
|
3079
|
+
version = "0.8.6"
|
|
2859
3080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2860
|
-
checksum = "
|
|
3081
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
2861
3082
|
dependencies = [
|
|
2862
3083
|
"libc",
|
|
2863
3084
|
"rand_chacha 0.3.1",
|
|
@@ -2866,12 +3087,12 @@ dependencies = [
|
|
|
2866
3087
|
|
|
2867
3088
|
[[package]]
|
|
2868
3089
|
name = "rand"
|
|
2869
|
-
version = "0.9.
|
|
3090
|
+
version = "0.9.4"
|
|
2870
3091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2871
|
-
checksum = "
|
|
3092
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2872
3093
|
dependencies = [
|
|
2873
3094
|
"rand_chacha 0.9.0",
|
|
2874
|
-
"rand_core 0.9.
|
|
3095
|
+
"rand_core 0.9.5",
|
|
2875
3096
|
]
|
|
2876
3097
|
|
|
2877
3098
|
[[package]]
|
|
@@ -2891,7 +3112,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2891
3112
|
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2892
3113
|
dependencies = [
|
|
2893
3114
|
"ppv-lite86",
|
|
2894
|
-
"rand_core 0.9.
|
|
3115
|
+
"rand_core 0.9.5",
|
|
2895
3116
|
]
|
|
2896
3117
|
|
|
2897
3118
|
[[package]]
|
|
@@ -2900,16 +3121,16 @@ version = "0.6.4"
|
|
|
2900
3121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2901
3122
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2902
3123
|
dependencies = [
|
|
2903
|
-
"getrandom 0.2.
|
|
3124
|
+
"getrandom 0.2.17",
|
|
2904
3125
|
]
|
|
2905
3126
|
|
|
2906
3127
|
[[package]]
|
|
2907
3128
|
name = "rand_core"
|
|
2908
|
-
version = "0.9.
|
|
3129
|
+
version = "0.9.5"
|
|
2909
3130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
-
checksum = "
|
|
3131
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2911
3132
|
dependencies = [
|
|
2912
|
-
"getrandom 0.3.
|
|
3133
|
+
"getrandom 0.3.4",
|
|
2913
3134
|
]
|
|
2914
3135
|
|
|
2915
3136
|
[[package]]
|
|
@@ -2925,9 +3146,9 @@ dependencies = [
|
|
|
2925
3146
|
|
|
2926
3147
|
[[package]]
|
|
2927
3148
|
name = "rayon"
|
|
2928
|
-
version = "1.
|
|
3149
|
+
version = "1.12.0"
|
|
2929
3150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2930
|
-
checksum = "
|
|
3151
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
2931
3152
|
dependencies = [
|
|
2932
3153
|
"either",
|
|
2933
3154
|
"rayon-core",
|
|
@@ -2945,11 +3166,20 @@ dependencies = [
|
|
|
2945
3166
|
|
|
2946
3167
|
[[package]]
|
|
2947
3168
|
name = "redox_syscall"
|
|
2948
|
-
version = "0.5.
|
|
3169
|
+
version = "0.5.18"
|
|
3170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3171
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
3172
|
+
dependencies = [
|
|
3173
|
+
"bitflags 2.11.1",
|
|
3174
|
+
]
|
|
3175
|
+
|
|
3176
|
+
[[package]]
|
|
3177
|
+
name = "redox_syscall"
|
|
3178
|
+
version = "0.8.0"
|
|
2949
3179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2950
|
-
checksum = "
|
|
3180
|
+
checksum = "7c7591fa2c6b601dfcfe5f043f65a1c39fcdf50efefcd7f1572e538c1f4b398d"
|
|
2951
3181
|
dependencies = [
|
|
2952
|
-
"bitflags 2.
|
|
3182
|
+
"bitflags 2.11.1",
|
|
2953
3183
|
]
|
|
2954
3184
|
|
|
2955
3185
|
[[package]]
|
|
@@ -2958,16 +3188,16 @@ version = "0.4.6"
|
|
|
2958
3188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2959
3189
|
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
2960
3190
|
dependencies = [
|
|
2961
|
-
"getrandom 0.2.
|
|
3191
|
+
"getrandom 0.2.17",
|
|
2962
3192
|
"libredox",
|
|
2963
3193
|
"thiserror 1.0.69",
|
|
2964
3194
|
]
|
|
2965
3195
|
|
|
2966
3196
|
[[package]]
|
|
2967
3197
|
name = "regex"
|
|
2968
|
-
version = "1.
|
|
3198
|
+
version = "1.12.3"
|
|
2969
3199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2970
|
-
checksum = "
|
|
3200
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
2971
3201
|
dependencies = [
|
|
2972
3202
|
"aho-corasick",
|
|
2973
3203
|
"memchr",
|
|
@@ -2977,9 +3207,9 @@ dependencies = [
|
|
|
2977
3207
|
|
|
2978
3208
|
[[package]]
|
|
2979
3209
|
name = "regex-automata"
|
|
2980
|
-
version = "0.4.
|
|
3210
|
+
version = "0.4.14"
|
|
2981
3211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2982
|
-
checksum = "
|
|
3212
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
2983
3213
|
dependencies = [
|
|
2984
3214
|
"aho-corasick",
|
|
2985
3215
|
"memchr",
|
|
@@ -2988,9 +3218,9 @@ dependencies = [
|
|
|
2988
3218
|
|
|
2989
3219
|
[[package]]
|
|
2990
3220
|
name = "regex-syntax"
|
|
2991
|
-
version = "0.8.
|
|
3221
|
+
version = "0.8.10"
|
|
2992
3222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2993
|
-
checksum = "
|
|
3223
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
2994
3224
|
|
|
2995
3225
|
[[package]]
|
|
2996
3226
|
name = "relative-path"
|
|
@@ -3000,9 +3230,9 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
|
|
3000
3230
|
|
|
3001
3231
|
[[package]]
|
|
3002
3232
|
name = "reqwest"
|
|
3003
|
-
version = "0.13.
|
|
3233
|
+
version = "0.13.4"
|
|
3004
3234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3005
|
-
checksum = "
|
|
3235
|
+
checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
|
|
3006
3236
|
dependencies = [
|
|
3007
3237
|
"base64 0.22.1",
|
|
3008
3238
|
"bytes",
|
|
@@ -3059,7 +3289,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
|
3059
3289
|
dependencies = [
|
|
3060
3290
|
"cc",
|
|
3061
3291
|
"cfg-if",
|
|
3062
|
-
"getrandom 0.2.
|
|
3292
|
+
"getrandom 0.2.17",
|
|
3063
3293
|
"libc",
|
|
3064
3294
|
"untrusted",
|
|
3065
3295
|
"windows-sys 0.52.0",
|
|
@@ -3138,15 +3368,15 @@ dependencies = [
|
|
|
3138
3368
|
|
|
3139
3369
|
[[package]]
|
|
3140
3370
|
name = "rustc-demangle"
|
|
3141
|
-
version = "0.1.
|
|
3371
|
+
version = "0.1.27"
|
|
3142
3372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3143
|
-
checksum = "
|
|
3373
|
+
checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
|
|
3144
3374
|
|
|
3145
3375
|
[[package]]
|
|
3146
3376
|
name = "rustc-hash"
|
|
3147
|
-
version = "2.1.
|
|
3377
|
+
version = "2.1.2"
|
|
3148
3378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3149
|
-
checksum = "
|
|
3379
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
3150
3380
|
|
|
3151
3381
|
[[package]]
|
|
3152
3382
|
name = "rustc_version"
|
|
@@ -3163,7 +3393,7 @@ version = "0.38.44"
|
|
|
3163
3393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3164
3394
|
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
3165
3395
|
dependencies = [
|
|
3166
|
-
"bitflags 2.
|
|
3396
|
+
"bitflags 2.11.1",
|
|
3167
3397
|
"errno",
|
|
3168
3398
|
"libc",
|
|
3169
3399
|
"linux-raw-sys 0.4.15",
|
|
@@ -3172,22 +3402,22 @@ dependencies = [
|
|
|
3172
3402
|
|
|
3173
3403
|
[[package]]
|
|
3174
3404
|
name = "rustix"
|
|
3175
|
-
version = "1.1.
|
|
3405
|
+
version = "1.1.4"
|
|
3176
3406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3177
|
-
checksum = "
|
|
3407
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
3178
3408
|
dependencies = [
|
|
3179
|
-
"bitflags 2.
|
|
3409
|
+
"bitflags 2.11.1",
|
|
3180
3410
|
"errno",
|
|
3181
3411
|
"libc",
|
|
3182
|
-
"linux-raw-sys 0.
|
|
3183
|
-
"windows-sys 0.61.
|
|
3412
|
+
"linux-raw-sys 0.12.1",
|
|
3413
|
+
"windows-sys 0.61.2",
|
|
3184
3414
|
]
|
|
3185
3415
|
|
|
3186
3416
|
[[package]]
|
|
3187
3417
|
name = "rustls"
|
|
3188
|
-
version = "0.23.
|
|
3418
|
+
version = "0.23.40"
|
|
3189
3419
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3190
|
-
checksum = "
|
|
3420
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
3191
3421
|
dependencies = [
|
|
3192
3422
|
"once_cell",
|
|
3193
3423
|
"rustls-pki-types",
|
|
@@ -3198,18 +3428,18 @@ dependencies = [
|
|
|
3198
3428
|
|
|
3199
3429
|
[[package]]
|
|
3200
3430
|
name = "rustls-pki-types"
|
|
3201
|
-
version = "1.
|
|
3431
|
+
version = "1.14.1"
|
|
3202
3432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3203
|
-
checksum = "
|
|
3433
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
3204
3434
|
dependencies = [
|
|
3205
3435
|
"zeroize",
|
|
3206
3436
|
]
|
|
3207
3437
|
|
|
3208
3438
|
[[package]]
|
|
3209
3439
|
name = "rustls-webpki"
|
|
3210
|
-
version = "0.103.
|
|
3440
|
+
version = "0.103.13"
|
|
3211
3441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3212
|
-
checksum = "
|
|
3442
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
3213
3443
|
dependencies = [
|
|
3214
3444
|
"ring",
|
|
3215
3445
|
"rustls-pki-types",
|
|
@@ -3224,9 +3454,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
|
3224
3454
|
|
|
3225
3455
|
[[package]]
|
|
3226
3456
|
name = "ryu"
|
|
3227
|
-
version = "1.0.
|
|
3457
|
+
version = "1.0.23"
|
|
3228
3458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3229
|
-
checksum = "
|
|
3459
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
3230
3460
|
|
|
3231
3461
|
[[package]]
|
|
3232
3462
|
name = "same-file"
|
|
@@ -3237,22 +3467,13 @@ dependencies = [
|
|
|
3237
3467
|
"winapi-util",
|
|
3238
3468
|
]
|
|
3239
3469
|
|
|
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
3470
|
[[package]]
|
|
3250
3471
|
name = "schannel"
|
|
3251
|
-
version = "0.1.
|
|
3472
|
+
version = "0.1.29"
|
|
3252
3473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3253
|
-
checksum = "
|
|
3474
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
3254
3475
|
dependencies = [
|
|
3255
|
-
"windows-sys 0.61.
|
|
3476
|
+
"windows-sys 0.61.2",
|
|
3256
3477
|
]
|
|
3257
3478
|
|
|
3258
3479
|
[[package]]
|
|
@@ -3282,7 +3503,16 @@ version = "0.12.0"
|
|
|
3282
3503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3283
3504
|
checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6"
|
|
3284
3505
|
dependencies = [
|
|
3285
|
-
"scroll_derive",
|
|
3506
|
+
"scroll_derive 0.12.1",
|
|
3507
|
+
]
|
|
3508
|
+
|
|
3509
|
+
[[package]]
|
|
3510
|
+
name = "scroll"
|
|
3511
|
+
version = "0.13.0"
|
|
3512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3513
|
+
checksum = "c1257cd4248b4132760d6524d6dda4e053bc648c9070b960929bf50cfb1e7add"
|
|
3514
|
+
dependencies = [
|
|
3515
|
+
"scroll_derive 0.13.1",
|
|
3286
3516
|
]
|
|
3287
3517
|
|
|
3288
3518
|
[[package]]
|
|
@@ -3297,10 +3527,15 @@ dependencies = [
|
|
|
3297
3527
|
]
|
|
3298
3528
|
|
|
3299
3529
|
[[package]]
|
|
3300
|
-
name = "
|
|
3301
|
-
version = "
|
|
3530
|
+
name = "scroll_derive"
|
|
3531
|
+
version = "0.13.1"
|
|
3302
3532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3303
|
-
checksum = "
|
|
3533
|
+
checksum = "ed76efe62313ab6610570951494bdaa81568026e0318eaa55f167de70eeea67d"
|
|
3534
|
+
dependencies = [
|
|
3535
|
+
"proc-macro2",
|
|
3536
|
+
"quote",
|
|
3537
|
+
"syn",
|
|
3538
|
+
]
|
|
3304
3539
|
|
|
3305
3540
|
[[package]]
|
|
3306
3541
|
name = "sec1"
|
|
@@ -3328,12 +3563,12 @@ dependencies = [
|
|
|
3328
3563
|
|
|
3329
3564
|
[[package]]
|
|
3330
3565
|
name = "security-framework"
|
|
3331
|
-
version = "
|
|
3566
|
+
version = "3.7.0"
|
|
3332
3567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3333
|
-
checksum = "
|
|
3568
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
3334
3569
|
dependencies = [
|
|
3335
|
-
"bitflags 2.
|
|
3336
|
-
"core-foundation",
|
|
3570
|
+
"bitflags 2.11.1",
|
|
3571
|
+
"core-foundation 0.10.1",
|
|
3337
3572
|
"core-foundation-sys",
|
|
3338
3573
|
"libc",
|
|
3339
3574
|
"security-framework-sys",
|
|
@@ -3341,9 +3576,9 @@ dependencies = [
|
|
|
3341
3576
|
|
|
3342
3577
|
[[package]]
|
|
3343
3578
|
name = "security-framework-sys"
|
|
3344
|
-
version = "2.
|
|
3579
|
+
version = "2.17.0"
|
|
3345
3580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3346
|
-
checksum = "
|
|
3581
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
3347
3582
|
dependencies = [
|
|
3348
3583
|
"core-foundation-sys",
|
|
3349
3584
|
"libc",
|
|
@@ -3351,48 +3586,49 @@ dependencies = [
|
|
|
3351
3586
|
|
|
3352
3587
|
[[package]]
|
|
3353
3588
|
name = "semver"
|
|
3354
|
-
version = "1.0.
|
|
3589
|
+
version = "1.0.28"
|
|
3355
3590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3356
|
-
checksum = "
|
|
3591
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
3357
3592
|
|
|
3358
3593
|
[[package]]
|
|
3359
3594
|
name = "sentry"
|
|
3360
|
-
version = "0.46.
|
|
3595
|
+
version = "0.46.2"
|
|
3361
3596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3362
|
-
checksum = "
|
|
3597
|
+
checksum = "d92d893ba7469d361a6958522fa440e4e2bc8bf4c5803cd1bf40b9af63f8f9a8"
|
|
3363
3598
|
dependencies = [
|
|
3599
|
+
"cfg_aliases",
|
|
3364
3600
|
"curl",
|
|
3365
3601
|
"httpdate",
|
|
3366
3602
|
"sentry-anyhow",
|
|
3367
3603
|
"sentry-contexts",
|
|
3368
|
-
"sentry-core",
|
|
3604
|
+
"sentry-core 0.46.2",
|
|
3369
3605
|
]
|
|
3370
3606
|
|
|
3371
3607
|
[[package]]
|
|
3372
3608
|
name = "sentry-anyhow"
|
|
3373
|
-
version = "0.46.
|
|
3609
|
+
version = "0.46.2"
|
|
3374
3610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3375
|
-
checksum = "
|
|
3611
|
+
checksum = "b6924ad794a4786c26739816afc9b54b31c13cad479698f53c0398c5f6400954"
|
|
3376
3612
|
dependencies = [
|
|
3377
3613
|
"anyhow",
|
|
3378
3614
|
"sentry-backtrace",
|
|
3379
|
-
"sentry-core",
|
|
3615
|
+
"sentry-core 0.46.2",
|
|
3380
3616
|
]
|
|
3381
3617
|
|
|
3382
3618
|
[[package]]
|
|
3383
3619
|
name = "sentry-backtrace"
|
|
3384
|
-
version = "0.46.
|
|
3620
|
+
version = "0.46.2"
|
|
3385
3621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3386
|
-
checksum = "
|
|
3622
|
+
checksum = "5f8784d0a27b5cd4b5f75769ffc84f0b7580e3c35e1af9cd83cb90b612d769cc"
|
|
3387
3623
|
dependencies = [
|
|
3388
3624
|
"backtrace",
|
|
3389
3625
|
"regex",
|
|
3390
|
-
"sentry-core",
|
|
3626
|
+
"sentry-core 0.46.2",
|
|
3391
3627
|
]
|
|
3392
3628
|
|
|
3393
3629
|
[[package]]
|
|
3394
3630
|
name = "sentry-cli"
|
|
3395
|
-
version = "3.
|
|
3631
|
+
version = "3.5.0"
|
|
3396
3632
|
dependencies = [
|
|
3397
3633
|
"anyhow",
|
|
3398
3634
|
"anylog",
|
|
@@ -3411,6 +3647,7 @@ dependencies = [
|
|
|
3411
3647
|
"dotenvy",
|
|
3412
3648
|
"elementtree",
|
|
3413
3649
|
"flate2",
|
|
3650
|
+
"futures-util",
|
|
3414
3651
|
"git2",
|
|
3415
3652
|
"glob",
|
|
3416
3653
|
"http",
|
|
@@ -3430,7 +3667,7 @@ dependencies = [
|
|
|
3430
3667
|
"mockito",
|
|
3431
3668
|
"objectstore-client",
|
|
3432
3669
|
"open",
|
|
3433
|
-
"openssl-probe",
|
|
3670
|
+
"openssl-probe 0.1.6",
|
|
3434
3671
|
"parking_lot",
|
|
3435
3672
|
"percent-encoding",
|
|
3436
3673
|
"plist",
|
|
@@ -3462,48 +3699,78 @@ dependencies = [
|
|
|
3462
3699
|
"which",
|
|
3463
3700
|
"whoami",
|
|
3464
3701
|
"windows-sys 0.59.0",
|
|
3465
|
-
"zip",
|
|
3702
|
+
"zip 2.4.2",
|
|
3466
3703
|
]
|
|
3467
3704
|
|
|
3468
3705
|
[[package]]
|
|
3469
3706
|
name = "sentry-contexts"
|
|
3470
|
-
version = "0.46.
|
|
3707
|
+
version = "0.46.2"
|
|
3471
3708
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3472
|
-
checksum = "
|
|
3709
|
+
checksum = "0e5eb42f4cd4f9fdfec9e3b07b25a4c9769df83d218a7e846658984d5948ad3e"
|
|
3473
3710
|
dependencies = [
|
|
3474
3711
|
"hostname",
|
|
3475
3712
|
"libc",
|
|
3476
3713
|
"os_info",
|
|
3477
3714
|
"rustc_version",
|
|
3478
|
-
"sentry-core",
|
|
3715
|
+
"sentry-core 0.46.2",
|
|
3479
3716
|
"uname",
|
|
3480
3717
|
]
|
|
3481
3718
|
|
|
3482
3719
|
[[package]]
|
|
3483
3720
|
name = "sentry-core"
|
|
3484
|
-
version = "0.46.
|
|
3721
|
+
version = "0.46.2"
|
|
3722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3723
|
+
checksum = "b0b1e7ca40f965db239da279bf278d87b7407469b98835f27f0c8e59ed189b06"
|
|
3724
|
+
dependencies = [
|
|
3725
|
+
"rand 0.9.4",
|
|
3726
|
+
"sentry-types 0.46.2",
|
|
3727
|
+
"serde",
|
|
3728
|
+
"serde_json",
|
|
3729
|
+
"url",
|
|
3730
|
+
]
|
|
3731
|
+
|
|
3732
|
+
[[package]]
|
|
3733
|
+
name = "sentry-core"
|
|
3734
|
+
version = "0.48.2"
|
|
3735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3736
|
+
checksum = "545dc562b6758d646ac19e1407f4ebc26d452111386743e03323464bc48bb2e0"
|
|
3737
|
+
dependencies = [
|
|
3738
|
+
"rand 0.9.4",
|
|
3739
|
+
"sentry-types 0.48.2",
|
|
3740
|
+
"serde",
|
|
3741
|
+
"serde_json",
|
|
3742
|
+
"url",
|
|
3743
|
+
]
|
|
3744
|
+
|
|
3745
|
+
[[package]]
|
|
3746
|
+
name = "sentry-types"
|
|
3747
|
+
version = "0.46.2"
|
|
3485
3748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3486
|
-
checksum = "
|
|
3749
|
+
checksum = "567711f01f86a842057e1fc17779eba33a336004227e1a1e7e6cc2599e22e259"
|
|
3487
3750
|
dependencies = [
|
|
3488
|
-
"
|
|
3489
|
-
"
|
|
3751
|
+
"debugid",
|
|
3752
|
+
"hex",
|
|
3753
|
+
"rand 0.9.4",
|
|
3490
3754
|
"serde",
|
|
3491
3755
|
"serde_json",
|
|
3756
|
+
"thiserror 2.0.18",
|
|
3757
|
+
"time",
|
|
3492
3758
|
"url",
|
|
3759
|
+
"uuid",
|
|
3493
3760
|
]
|
|
3494
3761
|
|
|
3495
3762
|
[[package]]
|
|
3496
3763
|
name = "sentry-types"
|
|
3497
|
-
version = "0.
|
|
3764
|
+
version = "0.48.2"
|
|
3498
3765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3499
|
-
checksum = "
|
|
3766
|
+
checksum = "041359745a44dd2e14fe21b7510fe7ca8b5beffce6636a0b52e5bc7d5f736887"
|
|
3500
3767
|
dependencies = [
|
|
3501
3768
|
"debugid",
|
|
3502
3769
|
"hex",
|
|
3503
|
-
"rand 0.9.
|
|
3770
|
+
"rand 0.9.4",
|
|
3504
3771
|
"serde",
|
|
3505
3772
|
"serde_json",
|
|
3506
|
-
"thiserror 2.0.
|
|
3773
|
+
"thiserror 2.0.18",
|
|
3507
3774
|
"time",
|
|
3508
3775
|
"url",
|
|
3509
3776
|
"uuid",
|
|
@@ -3541,15 +3808,15 @@ dependencies = [
|
|
|
3541
3808
|
|
|
3542
3809
|
[[package]]
|
|
3543
3810
|
name = "serde_json"
|
|
3544
|
-
version = "1.0.
|
|
3811
|
+
version = "1.0.150"
|
|
3545
3812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3546
|
-
checksum = "
|
|
3813
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
3547
3814
|
dependencies = [
|
|
3548
3815
|
"itoa",
|
|
3549
3816
|
"memchr",
|
|
3550
|
-
"ryu",
|
|
3551
3817
|
"serde",
|
|
3552
3818
|
"serde_core",
|
|
3819
|
+
"zmij",
|
|
3553
3820
|
]
|
|
3554
3821
|
|
|
3555
3822
|
[[package]]
|
|
@@ -3575,23 +3842,23 @@ dependencies = [
|
|
|
3575
3842
|
|
|
3576
3843
|
[[package]]
|
|
3577
3844
|
name = "serial_test"
|
|
3578
|
-
version = "3.
|
|
3845
|
+
version = "3.5.0"
|
|
3579
3846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3580
|
-
checksum = "
|
|
3847
|
+
checksum = "699f4197115b8a7e7ff19c9a315a4bd6fffec26cc4626ef45ecaea389e081c6d"
|
|
3581
3848
|
dependencies = [
|
|
3582
|
-
"futures",
|
|
3849
|
+
"futures-executor",
|
|
3850
|
+
"futures-util",
|
|
3583
3851
|
"log",
|
|
3584
3852
|
"once_cell",
|
|
3585
3853
|
"parking_lot",
|
|
3586
|
-
"scc",
|
|
3587
3854
|
"serial_test_derive",
|
|
3588
3855
|
]
|
|
3589
3856
|
|
|
3590
3857
|
[[package]]
|
|
3591
3858
|
name = "serial_test_derive"
|
|
3592
|
-
version = "3.
|
|
3859
|
+
version = "3.5.0"
|
|
3593
3860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3594
|
-
checksum = "
|
|
3861
|
+
checksum = "94e153fc76e1c6a068703d6d29c508a0b15c061c4b7e43da59cc097bc342673c"
|
|
3595
3862
|
dependencies = [
|
|
3596
3863
|
"proc-macro2",
|
|
3597
3864
|
"quote",
|
|
@@ -3635,6 +3902,12 @@ version = "1.3.0"
|
|
|
3635
3902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3636
3903
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3637
3904
|
|
|
3905
|
+
[[package]]
|
|
3906
|
+
name = "shlex"
|
|
3907
|
+
version = "2.0.1"
|
|
3908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3909
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
3910
|
+
|
|
3638
3911
|
[[package]]
|
|
3639
3912
|
name = "signature"
|
|
3640
3913
|
version = "2.2.0"
|
|
@@ -3647,9 +3920,9 @@ dependencies = [
|
|
|
3647
3920
|
|
|
3648
3921
|
[[package]]
|
|
3649
3922
|
name = "simd-adler32"
|
|
3650
|
-
version = "0.3.
|
|
3923
|
+
version = "0.3.9"
|
|
3651
3924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3652
|
-
checksum = "
|
|
3925
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
3653
3926
|
|
|
3654
3927
|
[[package]]
|
|
3655
3928
|
name = "similar"
|
|
@@ -3659,27 +3932,27 @@ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
|
3659
3932
|
|
|
3660
3933
|
[[package]]
|
|
3661
3934
|
name = "simple_asn1"
|
|
3662
|
-
version = "0.6.
|
|
3935
|
+
version = "0.6.4"
|
|
3663
3936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3664
|
-
checksum = "
|
|
3937
|
+
checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d"
|
|
3665
3938
|
dependencies = [
|
|
3666
3939
|
"num-bigint",
|
|
3667
3940
|
"num-traits",
|
|
3668
|
-
"thiserror 2.0.
|
|
3941
|
+
"thiserror 2.0.18",
|
|
3669
3942
|
"time",
|
|
3670
3943
|
]
|
|
3671
3944
|
|
|
3672
3945
|
[[package]]
|
|
3673
3946
|
name = "siphasher"
|
|
3674
|
-
version = "1.0.
|
|
3947
|
+
version = "1.0.3"
|
|
3675
3948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3676
|
-
checksum = "
|
|
3949
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
3677
3950
|
|
|
3678
3951
|
[[package]]
|
|
3679
3952
|
name = "slab"
|
|
3680
|
-
version = "0.4.
|
|
3953
|
+
version = "0.4.12"
|
|
3681
3954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3682
|
-
checksum = "
|
|
3955
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
3683
3956
|
|
|
3684
3957
|
[[package]]
|
|
3685
3958
|
name = "smallvec"
|
|
@@ -3720,19 +3993,19 @@ dependencies = [
|
|
|
3720
3993
|
|
|
3721
3994
|
[[package]]
|
|
3722
3995
|
name = "socket2"
|
|
3723
|
-
version = "0.6.
|
|
3996
|
+
version = "0.6.4"
|
|
3724
3997
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3725
|
-
checksum = "
|
|
3998
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
3726
3999
|
dependencies = [
|
|
3727
4000
|
"libc",
|
|
3728
|
-
"windows-sys 0.
|
|
4001
|
+
"windows-sys 0.61.2",
|
|
3729
4002
|
]
|
|
3730
4003
|
|
|
3731
4004
|
[[package]]
|
|
3732
4005
|
name = "sourcemap"
|
|
3733
|
-
version = "9.3.
|
|
4006
|
+
version = "9.3.2"
|
|
3734
4007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3735
|
-
checksum = "
|
|
4008
|
+
checksum = "314d62a489431668f719ada776ca1d49b924db951b7450f8974c9ae51ab05ad7"
|
|
3736
4009
|
dependencies = [
|
|
3737
4010
|
"base64-simd",
|
|
3738
4011
|
"bitvec",
|
|
@@ -3763,11 +4036,21 @@ dependencies = [
|
|
|
3763
4036
|
"der",
|
|
3764
4037
|
]
|
|
3765
4038
|
|
|
4039
|
+
[[package]]
|
|
4040
|
+
name = "srcsrv"
|
|
4041
|
+
version = "0.2.3"
|
|
4042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4043
|
+
checksum = "85cd3e3828fb4dd5ba0e7091777edb6c3db3cd2d6fc10547b29b40f6949a29be"
|
|
4044
|
+
dependencies = [
|
|
4045
|
+
"memchr",
|
|
4046
|
+
"thiserror 2.0.18",
|
|
4047
|
+
]
|
|
4048
|
+
|
|
3766
4049
|
[[package]]
|
|
3767
4050
|
name = "stable_deref_trait"
|
|
3768
|
-
version = "1.2.
|
|
4051
|
+
version = "1.2.1"
|
|
3769
4052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3770
|
-
checksum = "
|
|
4053
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
3771
4054
|
|
|
3772
4055
|
[[package]]
|
|
3773
4056
|
name = "string_cache"
|
|
@@ -3796,9 +4079,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
3796
4079
|
|
|
3797
4080
|
[[package]]
|
|
3798
4081
|
name = "symbolic"
|
|
3799
|
-
version = "
|
|
4082
|
+
version = "13.1.1"
|
|
3800
4083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3801
|
-
checksum = "
|
|
4084
|
+
checksum = "728ee0b430d939eebd0c80ae35af32d8bd85fc8352dc6def44f5d432945f9c4e"
|
|
3802
4085
|
dependencies = [
|
|
3803
4086
|
"symbolic-common",
|
|
3804
4087
|
"symbolic-debuginfo",
|
|
@@ -3808,9 +4091,9 @@ dependencies = [
|
|
|
3808
4091
|
|
|
3809
4092
|
[[package]]
|
|
3810
4093
|
name = "symbolic-common"
|
|
3811
|
-
version = "
|
|
4094
|
+
version = "13.1.1"
|
|
3812
4095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3813
|
-
checksum = "
|
|
4096
|
+
checksum = "0c30da69ccd7ab2780ce5309791f3cd2ef9716262c07a0a29096226d4235a979"
|
|
3814
4097
|
dependencies = [
|
|
3815
4098
|
"debugid",
|
|
3816
4099
|
"memmap2",
|
|
@@ -3821,41 +4104,42 @@ dependencies = [
|
|
|
3821
4104
|
|
|
3822
4105
|
[[package]]
|
|
3823
4106
|
name = "symbolic-debuginfo"
|
|
3824
|
-
version = "
|
|
4107
|
+
version = "13.1.1"
|
|
3825
4108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3826
|
-
checksum = "
|
|
4109
|
+
checksum = "798d435a1b31dad4b5e7e82a6d9463cd3aaa508d70f3a7366eaf5d58ca2ef2fc"
|
|
3827
4110
|
dependencies = [
|
|
3828
4111
|
"debugid",
|
|
3829
4112
|
"elementtree",
|
|
3830
4113
|
"elsa",
|
|
3831
4114
|
"fallible-iterator 0.3.0",
|
|
3832
4115
|
"flate2",
|
|
3833
|
-
"gimli",
|
|
4116
|
+
"gimli 0.33.0",
|
|
3834
4117
|
"goblin",
|
|
3835
|
-
"
|
|
4118
|
+
"memchr",
|
|
3836
4119
|
"nom",
|
|
3837
4120
|
"nom-supreme",
|
|
3838
4121
|
"once_cell",
|
|
3839
4122
|
"parking_lot",
|
|
3840
4123
|
"pdb-addr2line",
|
|
3841
4124
|
"regex",
|
|
3842
|
-
"scroll 0.
|
|
4125
|
+
"scroll 0.13.0",
|
|
3843
4126
|
"serde",
|
|
3844
4127
|
"serde_json",
|
|
3845
4128
|
"smallvec",
|
|
4129
|
+
"srcsrv",
|
|
3846
4130
|
"symbolic-common",
|
|
3847
4131
|
"symbolic-ppdb",
|
|
3848
|
-
"thiserror
|
|
3849
|
-
"wasmparser",
|
|
3850
|
-
"zip",
|
|
4132
|
+
"thiserror 2.0.18",
|
|
4133
|
+
"wasmparser 0.243.0",
|
|
4134
|
+
"zip 7.2.0",
|
|
3851
4135
|
"zstd",
|
|
3852
4136
|
]
|
|
3853
4137
|
|
|
3854
4138
|
[[package]]
|
|
3855
4139
|
name = "symbolic-il2cpp"
|
|
3856
|
-
version = "
|
|
4140
|
+
version = "13.1.1"
|
|
3857
4141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3858
|
-
checksum = "
|
|
4142
|
+
checksum = "111bd3b91a9c4bf40f358d16fbe78b1345911b2dc80fa3fdca3d360019e0e637"
|
|
3859
4143
|
dependencies = [
|
|
3860
4144
|
"indexmap",
|
|
3861
4145
|
"serde_json",
|
|
@@ -3865,40 +4149,40 @@ dependencies = [
|
|
|
3865
4149
|
|
|
3866
4150
|
[[package]]
|
|
3867
4151
|
name = "symbolic-ppdb"
|
|
3868
|
-
version = "
|
|
4152
|
+
version = "13.1.1"
|
|
3869
4153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3870
|
-
checksum = "
|
|
4154
|
+
checksum = "456cc8f7fce011b397d20ab686939ce9d98dfc763cc54ea9a8f489f1968454e7"
|
|
3871
4155
|
dependencies = [
|
|
3872
4156
|
"flate2",
|
|
3873
4157
|
"indexmap",
|
|
3874
4158
|
"serde",
|
|
3875
4159
|
"serde_json",
|
|
3876
4160
|
"symbolic-common",
|
|
3877
|
-
"thiserror
|
|
4161
|
+
"thiserror 2.0.18",
|
|
3878
4162
|
"uuid",
|
|
3879
4163
|
"watto",
|
|
3880
4164
|
]
|
|
3881
4165
|
|
|
3882
4166
|
[[package]]
|
|
3883
4167
|
name = "symbolic-symcache"
|
|
3884
|
-
version = "
|
|
4168
|
+
version = "13.1.1"
|
|
3885
4169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3886
|
-
checksum = "
|
|
4170
|
+
checksum = "446e091ef4476cb9322d1f96cb69499848c20d31da3128ed609dfc3f71170c14"
|
|
3887
4171
|
dependencies = [
|
|
3888
4172
|
"indexmap",
|
|
3889
4173
|
"symbolic-common",
|
|
3890
4174
|
"symbolic-debuginfo",
|
|
3891
4175
|
"symbolic-il2cpp",
|
|
3892
|
-
"thiserror
|
|
4176
|
+
"thiserror 2.0.18",
|
|
3893
4177
|
"tracing",
|
|
3894
4178
|
"watto",
|
|
3895
4179
|
]
|
|
3896
4180
|
|
|
3897
4181
|
[[package]]
|
|
3898
4182
|
name = "syn"
|
|
3899
|
-
version = "2.0.
|
|
4183
|
+
version = "2.0.117"
|
|
3900
4184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3901
|
-
checksum = "
|
|
4185
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
3902
4186
|
dependencies = [
|
|
3903
4187
|
"proc-macro2",
|
|
3904
4188
|
"quote",
|
|
@@ -3927,12 +4211,12 @@ dependencies = [
|
|
|
3927
4211
|
|
|
3928
4212
|
[[package]]
|
|
3929
4213
|
name = "system-configuration"
|
|
3930
|
-
version = "0.
|
|
4214
|
+
version = "0.7.0"
|
|
3931
4215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3932
|
-
checksum = "
|
|
4216
|
+
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
3933
4217
|
dependencies = [
|
|
3934
|
-
"bitflags 2.
|
|
3935
|
-
"core-foundation",
|
|
4218
|
+
"bitflags 2.11.1",
|
|
4219
|
+
"core-foundation 0.9.4",
|
|
3936
4220
|
"system-configuration-sys",
|
|
3937
4221
|
]
|
|
3938
4222
|
|
|
@@ -3954,15 +4238,15 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
|
3954
4238
|
|
|
3955
4239
|
[[package]]
|
|
3956
4240
|
name = "tempfile"
|
|
3957
|
-
version = "3.
|
|
4241
|
+
version = "3.27.0"
|
|
3958
4242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3959
|
-
checksum = "
|
|
4243
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
3960
4244
|
dependencies = [
|
|
3961
4245
|
"fastrand",
|
|
3962
|
-
"getrandom 0.
|
|
4246
|
+
"getrandom 0.4.2",
|
|
3963
4247
|
"once_cell",
|
|
3964
|
-
"rustix 1.1.
|
|
3965
|
-
"windows-sys 0.61.
|
|
4248
|
+
"rustix 1.1.4",
|
|
4249
|
+
"windows-sys 0.61.2",
|
|
3966
4250
|
]
|
|
3967
4251
|
|
|
3968
4252
|
[[package]]
|
|
@@ -3978,12 +4262,12 @@ dependencies = [
|
|
|
3978
4262
|
|
|
3979
4263
|
[[package]]
|
|
3980
4264
|
name = "terminal_size"
|
|
3981
|
-
version = "0.4.
|
|
4265
|
+
version = "0.4.4"
|
|
3982
4266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3983
|
-
checksum = "
|
|
4267
|
+
checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
|
|
3984
4268
|
dependencies = [
|
|
3985
|
-
"rustix 1.1.
|
|
3986
|
-
"windows-sys 0.
|
|
4269
|
+
"rustix 1.1.4",
|
|
4270
|
+
"windows-sys 0.61.2",
|
|
3987
4271
|
]
|
|
3988
4272
|
|
|
3989
4273
|
[[package]]
|
|
@@ -4003,11 +4287,11 @@ dependencies = [
|
|
|
4003
4287
|
|
|
4004
4288
|
[[package]]
|
|
4005
4289
|
name = "thiserror"
|
|
4006
|
-
version = "2.0.
|
|
4290
|
+
version = "2.0.18"
|
|
4007
4291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4008
|
-
checksum = "
|
|
4292
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
4009
4293
|
dependencies = [
|
|
4010
|
-
"thiserror-impl 2.0.
|
|
4294
|
+
"thiserror-impl 2.0.18",
|
|
4011
4295
|
]
|
|
4012
4296
|
|
|
4013
4297
|
[[package]]
|
|
@@ -4023,9 +4307,9 @@ dependencies = [
|
|
|
4023
4307
|
|
|
4024
4308
|
[[package]]
|
|
4025
4309
|
name = "thiserror-impl"
|
|
4026
|
-
version = "2.0.
|
|
4310
|
+
version = "2.0.18"
|
|
4027
4311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4028
|
-
checksum = "
|
|
4312
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
4029
4313
|
dependencies = [
|
|
4030
4314
|
"proc-macro2",
|
|
4031
4315
|
"quote",
|
|
@@ -4065,9 +4349,9 @@ dependencies = [
|
|
|
4065
4349
|
|
|
4066
4350
|
[[package]]
|
|
4067
4351
|
name = "tinystr"
|
|
4068
|
-
version = "0.8.
|
|
4352
|
+
version = "0.8.3"
|
|
4069
4353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4070
|
-
checksum = "
|
|
4354
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
4071
4355
|
dependencies = [
|
|
4072
4356
|
"displaydoc",
|
|
4073
4357
|
"zerovec",
|
|
@@ -4075,20 +4359,17 @@ dependencies = [
|
|
|
4075
4359
|
|
|
4076
4360
|
[[package]]
|
|
4077
4361
|
name = "tokio"
|
|
4078
|
-
version = "1.
|
|
4362
|
+
version = "1.52.3"
|
|
4079
4363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4080
|
-
checksum = "
|
|
4364
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
4081
4365
|
dependencies = [
|
|
4082
|
-
"backtrace",
|
|
4083
4366
|
"bytes",
|
|
4084
|
-
"io-uring",
|
|
4085
4367
|
"libc",
|
|
4086
4368
|
"mio",
|
|
4087
4369
|
"parking_lot",
|
|
4088
4370
|
"pin-project-lite",
|
|
4089
|
-
"slab",
|
|
4090
4371
|
"socket2",
|
|
4091
|
-
"windows-sys 0.
|
|
4372
|
+
"windows-sys 0.61.2",
|
|
4092
4373
|
]
|
|
4093
4374
|
|
|
4094
4375
|
[[package]]
|
|
@@ -4113,9 +4394,9 @@ dependencies = [
|
|
|
4113
4394
|
|
|
4114
4395
|
[[package]]
|
|
4115
4396
|
name = "tokio-util"
|
|
4116
|
-
version = "0.7.
|
|
4397
|
+
version = "0.7.18"
|
|
4117
4398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4118
|
-
checksum = "
|
|
4399
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
4119
4400
|
dependencies = [
|
|
4120
4401
|
"bytes",
|
|
4121
4402
|
"futures-core",
|
|
@@ -4156,9 +4437,9 @@ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
|
4156
4437
|
|
|
4157
4438
|
[[package]]
|
|
4158
4439
|
name = "tower"
|
|
4159
|
-
version = "0.5.
|
|
4440
|
+
version = "0.5.3"
|
|
4160
4441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4161
|
-
checksum = "
|
|
4442
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
4162
4443
|
dependencies = [
|
|
4163
4444
|
"futures-core",
|
|
4164
4445
|
"futures-util",
|
|
@@ -4171,20 +4452,20 @@ dependencies = [
|
|
|
4171
4452
|
|
|
4172
4453
|
[[package]]
|
|
4173
4454
|
name = "tower-http"
|
|
4174
|
-
version = "0.6.
|
|
4455
|
+
version = "0.6.11"
|
|
4175
4456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4176
|
-
checksum = "
|
|
4457
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
4177
4458
|
dependencies = [
|
|
4178
|
-
"bitflags 2.
|
|
4459
|
+
"bitflags 2.11.1",
|
|
4179
4460
|
"bytes",
|
|
4180
4461
|
"futures-util",
|
|
4181
4462
|
"http",
|
|
4182
4463
|
"http-body",
|
|
4183
|
-
"iri-string",
|
|
4184
4464
|
"pin-project-lite",
|
|
4185
4465
|
"tower",
|
|
4186
4466
|
"tower-layer",
|
|
4187
4467
|
"tower-service",
|
|
4468
|
+
"url",
|
|
4188
4469
|
]
|
|
4189
4470
|
|
|
4190
4471
|
[[package]]
|
|
@@ -4201,9 +4482,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
|
4201
4482
|
|
|
4202
4483
|
[[package]]
|
|
4203
4484
|
name = "tracing"
|
|
4204
|
-
version = "0.1.
|
|
4485
|
+
version = "0.1.44"
|
|
4205
4486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4206
|
-
checksum = "
|
|
4487
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
4207
4488
|
dependencies = [
|
|
4208
4489
|
"pin-project-lite",
|
|
4209
4490
|
"tracing-attributes",
|
|
@@ -4212,9 +4493,9 @@ dependencies = [
|
|
|
4212
4493
|
|
|
4213
4494
|
[[package]]
|
|
4214
4495
|
name = "tracing-attributes"
|
|
4215
|
-
version = "0.1.
|
|
4496
|
+
version = "0.1.31"
|
|
4216
4497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4217
|
-
checksum = "
|
|
4498
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
4218
4499
|
dependencies = [
|
|
4219
4500
|
"proc-macro2",
|
|
4220
4501
|
"quote",
|
|
@@ -4223,9 +4504,9 @@ dependencies = [
|
|
|
4223
4504
|
|
|
4224
4505
|
[[package]]
|
|
4225
4506
|
name = "tracing-core"
|
|
4226
|
-
version = "0.1.
|
|
4507
|
+
version = "0.1.36"
|
|
4227
4508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4228
|
-
checksum = "
|
|
4509
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
4229
4510
|
dependencies = [
|
|
4230
4511
|
"once_cell",
|
|
4231
4512
|
]
|
|
@@ -4247,16 +4528,22 @@ dependencies = [
|
|
|
4247
4528
|
"humantime-serde",
|
|
4248
4529
|
"rayon",
|
|
4249
4530
|
"serde",
|
|
4250
|
-
"shlex",
|
|
4531
|
+
"shlex 1.3.0",
|
|
4251
4532
|
"snapbox",
|
|
4252
4533
|
"toml_edit",
|
|
4253
4534
|
]
|
|
4254
4535
|
|
|
4536
|
+
[[package]]
|
|
4537
|
+
name = "typed-path"
|
|
4538
|
+
version = "0.12.3"
|
|
4539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4540
|
+
checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
|
|
4541
|
+
|
|
4255
4542
|
[[package]]
|
|
4256
4543
|
name = "typenum"
|
|
4257
|
-
version = "1.
|
|
4544
|
+
version = "1.20.1"
|
|
4258
4545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4259
|
-
checksum = "
|
|
4546
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
4260
4547
|
|
|
4261
4548
|
[[package]]
|
|
4262
4549
|
name = "ucd-trie"
|
|
@@ -4287,9 +4574,9 @@ checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
|
|
|
4287
4574
|
|
|
4288
4575
|
[[package]]
|
|
4289
4576
|
name = "unicode-ident"
|
|
4290
|
-
version = "1.0.
|
|
4577
|
+
version = "1.0.24"
|
|
4291
4578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4292
|
-
checksum = "
|
|
4579
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
4293
4580
|
|
|
4294
4581
|
[[package]]
|
|
4295
4582
|
name = "unicode-width"
|
|
@@ -4299,9 +4586,15 @@ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
|
4299
4586
|
|
|
4300
4587
|
[[package]]
|
|
4301
4588
|
name = "unicode-width"
|
|
4302
|
-
version = "0.2.
|
|
4589
|
+
version = "0.2.2"
|
|
4303
4590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4304
|
-
checksum = "
|
|
4591
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
4592
|
+
|
|
4593
|
+
[[package]]
|
|
4594
|
+
name = "unicode-xid"
|
|
4595
|
+
version = "0.2.6"
|
|
4596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4597
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
4305
4598
|
|
|
4306
4599
|
[[package]]
|
|
4307
4600
|
name = "untrusted"
|
|
@@ -4311,14 +4604,15 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
4311
4604
|
|
|
4312
4605
|
[[package]]
|
|
4313
4606
|
name = "url"
|
|
4314
|
-
version = "2.5.
|
|
4607
|
+
version = "2.5.8"
|
|
4315
4608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4316
|
-
checksum = "
|
|
4609
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
4317
4610
|
dependencies = [
|
|
4318
4611
|
"form_urlencoded",
|
|
4319
4612
|
"idna",
|
|
4320
4613
|
"percent-encoding",
|
|
4321
4614
|
"serde",
|
|
4615
|
+
"serde_derive",
|
|
4322
4616
|
]
|
|
4323
4617
|
|
|
4324
4618
|
[[package]]
|
|
@@ -4335,13 +4629,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
4335
4629
|
|
|
4336
4630
|
[[package]]
|
|
4337
4631
|
name = "uuid"
|
|
4338
|
-
version = "1.
|
|
4632
|
+
version = "1.23.2"
|
|
4339
4633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4340
|
-
checksum = "
|
|
4634
|
+
checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
|
|
4341
4635
|
dependencies = [
|
|
4342
|
-
"getrandom 0.
|
|
4636
|
+
"getrandom 0.4.2",
|
|
4343
4637
|
"js-sys",
|
|
4344
|
-
"
|
|
4638
|
+
"serde_core",
|
|
4345
4639
|
"sha1_smol",
|
|
4346
4640
|
"wasm-bindgen",
|
|
4347
4641
|
]
|
|
@@ -4405,21 +4699,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4405
4699
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
4406
4700
|
|
|
4407
4701
|
[[package]]
|
|
4408
|
-
name = "
|
|
4409
|
-
version = "0.
|
|
4702
|
+
name = "wasip2"
|
|
4703
|
+
version = "1.0.3+wasi-0.2.9"
|
|
4410
4704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4411
|
-
checksum = "
|
|
4705
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
4412
4706
|
dependencies = [
|
|
4413
|
-
"
|
|
4707
|
+
"wit-bindgen 0.57.1",
|
|
4414
4708
|
]
|
|
4415
4709
|
|
|
4416
4710
|
[[package]]
|
|
4417
|
-
name = "
|
|
4418
|
-
version = "
|
|
4711
|
+
name = "wasip3"
|
|
4712
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
4419
4713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4420
|
-
checksum = "
|
|
4714
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
4421
4715
|
dependencies = [
|
|
4422
|
-
"wit-bindgen",
|
|
4716
|
+
"wit-bindgen 0.51.0",
|
|
4423
4717
|
]
|
|
4424
4718
|
|
|
4425
4719
|
[[package]]
|
|
@@ -4430,9 +4724,9 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
|
|
|
4430
4724
|
|
|
4431
4725
|
[[package]]
|
|
4432
4726
|
name = "wasm-bindgen"
|
|
4433
|
-
version = "0.2.
|
|
4727
|
+
version = "0.2.122"
|
|
4434
4728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4435
|
-
checksum = "
|
|
4729
|
+
checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
|
|
4436
4730
|
dependencies = [
|
|
4437
4731
|
"cfg-if",
|
|
4438
4732
|
"once_cell",
|
|
@@ -4443,23 +4737,19 @@ dependencies = [
|
|
|
4443
4737
|
|
|
4444
4738
|
[[package]]
|
|
4445
4739
|
name = "wasm-bindgen-futures"
|
|
4446
|
-
version = "0.4.
|
|
4740
|
+
version = "0.4.72"
|
|
4447
4741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4448
|
-
checksum = "
|
|
4742
|
+
checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
|
|
4449
4743
|
dependencies = [
|
|
4450
|
-
"cfg-if",
|
|
4451
|
-
"futures-util",
|
|
4452
4744
|
"js-sys",
|
|
4453
|
-
"once_cell",
|
|
4454
4745
|
"wasm-bindgen",
|
|
4455
|
-
"web-sys",
|
|
4456
4746
|
]
|
|
4457
4747
|
|
|
4458
4748
|
[[package]]
|
|
4459
4749
|
name = "wasm-bindgen-macro"
|
|
4460
|
-
version = "0.2.
|
|
4750
|
+
version = "0.2.122"
|
|
4461
4751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4462
|
-
checksum = "
|
|
4752
|
+
checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
|
|
4463
4753
|
dependencies = [
|
|
4464
4754
|
"quote",
|
|
4465
4755
|
"wasm-bindgen-macro-support",
|
|
@@ -4467,9 +4757,9 @@ dependencies = [
|
|
|
4467
4757
|
|
|
4468
4758
|
[[package]]
|
|
4469
4759
|
name = "wasm-bindgen-macro-support"
|
|
4470
|
-
version = "0.2.
|
|
4760
|
+
version = "0.2.122"
|
|
4471
4761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4472
|
-
checksum = "
|
|
4762
|
+
checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
|
|
4473
4763
|
dependencies = [
|
|
4474
4764
|
"bumpalo",
|
|
4475
4765
|
"proc-macro2",
|
|
@@ -4480,13 +4770,35 @@ dependencies = [
|
|
|
4480
4770
|
|
|
4481
4771
|
[[package]]
|
|
4482
4772
|
name = "wasm-bindgen-shared"
|
|
4483
|
-
version = "0.2.
|
|
4773
|
+
version = "0.2.122"
|
|
4484
4774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4485
|
-
checksum = "
|
|
4775
|
+
checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
|
|
4486
4776
|
dependencies = [
|
|
4487
4777
|
"unicode-ident",
|
|
4488
4778
|
]
|
|
4489
4779
|
|
|
4780
|
+
[[package]]
|
|
4781
|
+
name = "wasm-encoder"
|
|
4782
|
+
version = "0.244.0"
|
|
4783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4784
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
4785
|
+
dependencies = [
|
|
4786
|
+
"leb128fmt",
|
|
4787
|
+
"wasmparser 0.244.0",
|
|
4788
|
+
]
|
|
4789
|
+
|
|
4790
|
+
[[package]]
|
|
4791
|
+
name = "wasm-metadata"
|
|
4792
|
+
version = "0.244.0"
|
|
4793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4794
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
4795
|
+
dependencies = [
|
|
4796
|
+
"anyhow",
|
|
4797
|
+
"indexmap",
|
|
4798
|
+
"wasm-encoder",
|
|
4799
|
+
"wasmparser 0.244.0",
|
|
4800
|
+
]
|
|
4801
|
+
|
|
4490
4802
|
[[package]]
|
|
4491
4803
|
name = "wasm-streams"
|
|
4492
4804
|
version = "0.5.0"
|
|
@@ -4502,33 +4814,45 @@ dependencies = [
|
|
|
4502
4814
|
|
|
4503
4815
|
[[package]]
|
|
4504
4816
|
name = "wasmparser"
|
|
4505
|
-
version = "0.
|
|
4817
|
+
version = "0.243.0"
|
|
4506
4818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4507
|
-
checksum = "
|
|
4819
|
+
checksum = "f6d8db401b0528ec316dfbe579e6ab4152d61739cfe076706d2009127970159d"
|
|
4508
4820
|
dependencies = [
|
|
4509
|
-
"
|
|
4510
|
-
"
|
|
4511
|
-
"hashbrown 0.14.5",
|
|
4821
|
+
"bitflags 2.11.1",
|
|
4822
|
+
"hashbrown 0.15.5",
|
|
4512
4823
|
"indexmap",
|
|
4513
4824
|
"semver",
|
|
4514
4825
|
"serde",
|
|
4515
4826
|
]
|
|
4516
4827
|
|
|
4828
|
+
[[package]]
|
|
4829
|
+
name = "wasmparser"
|
|
4830
|
+
version = "0.244.0"
|
|
4831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4832
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
4833
|
+
dependencies = [
|
|
4834
|
+
"bitflags 2.11.1",
|
|
4835
|
+
"hashbrown 0.15.5",
|
|
4836
|
+
"indexmap",
|
|
4837
|
+
"semver",
|
|
4838
|
+
]
|
|
4839
|
+
|
|
4517
4840
|
[[package]]
|
|
4518
4841
|
name = "watto"
|
|
4519
|
-
version = "0.
|
|
4842
|
+
version = "0.2.0"
|
|
4520
4843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4521
|
-
checksum = "
|
|
4844
|
+
checksum = "bfbc1480663d640f8c9f7a1ac70922eea60ac16fea79df883177df3bc7bb8b49"
|
|
4522
4845
|
dependencies = [
|
|
4846
|
+
"hashbrown 0.15.5",
|
|
4523
4847
|
"leb128",
|
|
4524
|
-
"thiserror
|
|
4848
|
+
"thiserror 2.0.18",
|
|
4525
4849
|
]
|
|
4526
4850
|
|
|
4527
4851
|
[[package]]
|
|
4528
4852
|
name = "web-sys"
|
|
4529
|
-
version = "0.3.
|
|
4853
|
+
version = "0.3.99"
|
|
4530
4854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4531
|
-
checksum = "
|
|
4855
|
+
checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
|
|
4532
4856
|
dependencies = [
|
|
4533
4857
|
"js-sys",
|
|
4534
4858
|
"wasm-bindgen",
|
|
@@ -4579,7 +4903,7 @@ version = "0.1.11"
|
|
|
4579
4903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4580
4904
|
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
4581
4905
|
dependencies = [
|
|
4582
|
-
"windows-sys 0.61.
|
|
4906
|
+
"windows-sys 0.61.2",
|
|
4583
4907
|
]
|
|
4584
4908
|
|
|
4585
4909
|
[[package]]
|
|
@@ -4590,22 +4914,22 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
4590
4914
|
|
|
4591
4915
|
[[package]]
|
|
4592
4916
|
name = "windows-core"
|
|
4593
|
-
version = "0.62.
|
|
4917
|
+
version = "0.62.2"
|
|
4594
4918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4595
|
-
checksum = "
|
|
4919
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4596
4920
|
dependencies = [
|
|
4597
4921
|
"windows-implement",
|
|
4598
4922
|
"windows-interface",
|
|
4599
|
-
"windows-link
|
|
4600
|
-
"windows-result
|
|
4601
|
-
"windows-strings
|
|
4923
|
+
"windows-link",
|
|
4924
|
+
"windows-result",
|
|
4925
|
+
"windows-strings",
|
|
4602
4926
|
]
|
|
4603
4927
|
|
|
4604
4928
|
[[package]]
|
|
4605
4929
|
name = "windows-implement"
|
|
4606
|
-
version = "0.60.
|
|
4930
|
+
version = "0.60.2"
|
|
4607
4931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4608
|
-
checksum = "
|
|
4932
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
4609
4933
|
dependencies = [
|
|
4610
4934
|
"proc-macro2",
|
|
4611
4935
|
"quote",
|
|
@@ -4614,9 +4938,9 @@ dependencies = [
|
|
|
4614
4938
|
|
|
4615
4939
|
[[package]]
|
|
4616
4940
|
name = "windows-interface"
|
|
4617
|
-
version = "0.59.
|
|
4941
|
+
version = "0.59.3"
|
|
4618
4942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4619
|
-
checksum = "
|
|
4943
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
4620
4944
|
dependencies = [
|
|
4621
4945
|
"proc-macro2",
|
|
4622
4946
|
"quote",
|
|
@@ -4625,61 +4949,37 @@ dependencies = [
|
|
|
4625
4949
|
|
|
4626
4950
|
[[package]]
|
|
4627
4951
|
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"
|
|
4952
|
+
version = "0.2.1"
|
|
4635
4953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4636
|
-
checksum = "
|
|
4954
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
4637
4955
|
|
|
4638
4956
|
[[package]]
|
|
4639
4957
|
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"
|
|
4958
|
+
version = "0.6.1"
|
|
4652
4959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4653
|
-
checksum = "
|
|
4960
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
4654
4961
|
dependencies = [
|
|
4655
|
-
"windows-link
|
|
4962
|
+
"windows-link",
|
|
4963
|
+
"windows-result",
|
|
4964
|
+
"windows-strings",
|
|
4656
4965
|
]
|
|
4657
4966
|
|
|
4658
4967
|
[[package]]
|
|
4659
4968
|
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"
|
|
4969
|
+
version = "0.4.1"
|
|
4670
4970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4671
|
-
checksum = "
|
|
4971
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
4672
4972
|
dependencies = [
|
|
4673
|
-
"windows-link
|
|
4973
|
+
"windows-link",
|
|
4674
4974
|
]
|
|
4675
4975
|
|
|
4676
4976
|
[[package]]
|
|
4677
4977
|
name = "windows-strings"
|
|
4678
|
-
version = "0.5.
|
|
4978
|
+
version = "0.5.1"
|
|
4679
4979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4680
|
-
checksum = "
|
|
4980
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
4681
4981
|
dependencies = [
|
|
4682
|
-
"windows-link
|
|
4982
|
+
"windows-link",
|
|
4683
4983
|
]
|
|
4684
4984
|
|
|
4685
4985
|
[[package]]
|
|
@@ -4726,20 +5026,11 @@ dependencies = [
|
|
|
4726
5026
|
|
|
4727
5027
|
[[package]]
|
|
4728
5028
|
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"
|
|
5029
|
+
version = "0.61.2"
|
|
4739
5030
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4740
|
-
checksum = "
|
|
5031
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
4741
5032
|
dependencies = [
|
|
4742
|
-
"windows-link
|
|
5033
|
+
"windows-link",
|
|
4743
5034
|
]
|
|
4744
5035
|
|
|
4745
5036
|
[[package]]
|
|
@@ -4766,30 +5057,13 @@ dependencies = [
|
|
|
4766
5057
|
"windows_aarch64_gnullvm 0.52.6",
|
|
4767
5058
|
"windows_aarch64_msvc 0.52.6",
|
|
4768
5059
|
"windows_i686_gnu 0.52.6",
|
|
4769
|
-
"windows_i686_gnullvm
|
|
5060
|
+
"windows_i686_gnullvm",
|
|
4770
5061
|
"windows_i686_msvc 0.52.6",
|
|
4771
5062
|
"windows_x86_64_gnu 0.52.6",
|
|
4772
5063
|
"windows_x86_64_gnullvm 0.52.6",
|
|
4773
5064
|
"windows_x86_64_msvc 0.52.6",
|
|
4774
5065
|
]
|
|
4775
5066
|
|
|
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
5067
|
[[package]]
|
|
4794
5068
|
name = "windows_aarch64_gnullvm"
|
|
4795
5069
|
version = "0.42.2"
|
|
@@ -4808,12 +5082,6 @@ version = "0.52.6"
|
|
|
4808
5082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4809
5083
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4810
5084
|
|
|
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
5085
|
[[package]]
|
|
4818
5086
|
name = "windows_aarch64_msvc"
|
|
4819
5087
|
version = "0.42.2"
|
|
@@ -4832,12 +5100,6 @@ version = "0.52.6"
|
|
|
4832
5100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4833
5101
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4834
5102
|
|
|
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
5103
|
[[package]]
|
|
4842
5104
|
name = "windows_i686_gnu"
|
|
4843
5105
|
version = "0.42.2"
|
|
@@ -4856,24 +5118,12 @@ version = "0.52.6"
|
|
|
4856
5118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4857
5119
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4858
5120
|
|
|
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
5121
|
[[package]]
|
|
4866
5122
|
name = "windows_i686_gnullvm"
|
|
4867
5123
|
version = "0.52.6"
|
|
4868
5124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4869
5125
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4870
5126
|
|
|
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
5127
|
[[package]]
|
|
4878
5128
|
name = "windows_i686_msvc"
|
|
4879
5129
|
version = "0.42.2"
|
|
@@ -4892,12 +5142,6 @@ version = "0.52.6"
|
|
|
4892
5142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4893
5143
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4894
5144
|
|
|
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
5145
|
[[package]]
|
|
4902
5146
|
name = "windows_x86_64_gnu"
|
|
4903
5147
|
version = "0.42.2"
|
|
@@ -4916,12 +5160,6 @@ version = "0.52.6"
|
|
|
4916
5160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4917
5161
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4918
5162
|
|
|
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
5163
|
[[package]]
|
|
4926
5164
|
name = "windows_x86_64_gnullvm"
|
|
4927
5165
|
version = "0.42.2"
|
|
@@ -4940,12 +5178,6 @@ version = "0.52.6"
|
|
|
4940
5178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4941
5179
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4942
5180
|
|
|
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
5181
|
[[package]]
|
|
4950
5182
|
name = "windows_x86_64_msvc"
|
|
4951
5183
|
version = "0.42.2"
|
|
@@ -4965,31 +5197,113 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4965
5197
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4966
5198
|
|
|
4967
5199
|
[[package]]
|
|
4968
|
-
name = "
|
|
4969
|
-
version = "0.
|
|
5200
|
+
name = "winnow"
|
|
5201
|
+
version = "0.7.15"
|
|
4970
5202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4971
|
-
checksum = "
|
|
5203
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
5204
|
+
dependencies = [
|
|
5205
|
+
"memchr",
|
|
5206
|
+
]
|
|
4972
5207
|
|
|
4973
5208
|
[[package]]
|
|
4974
|
-
name = "
|
|
4975
|
-
version = "0.
|
|
5209
|
+
name = "wit-bindgen"
|
|
5210
|
+
version = "0.51.0"
|
|
4976
5211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4977
|
-
checksum = "
|
|
5212
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
4978
5213
|
dependencies = [
|
|
4979
|
-
"
|
|
5214
|
+
"wit-bindgen-rust-macro",
|
|
4980
5215
|
]
|
|
4981
5216
|
|
|
4982
5217
|
[[package]]
|
|
4983
5218
|
name = "wit-bindgen"
|
|
4984
|
-
version = "0.
|
|
5219
|
+
version = "0.57.1"
|
|
5220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5221
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
5222
|
+
|
|
5223
|
+
[[package]]
|
|
5224
|
+
name = "wit-bindgen-core"
|
|
5225
|
+
version = "0.51.0"
|
|
5226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5227
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
5228
|
+
dependencies = [
|
|
5229
|
+
"anyhow",
|
|
5230
|
+
"heck",
|
|
5231
|
+
"wit-parser",
|
|
5232
|
+
]
|
|
5233
|
+
|
|
5234
|
+
[[package]]
|
|
5235
|
+
name = "wit-bindgen-rust"
|
|
5236
|
+
version = "0.51.0"
|
|
5237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5238
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
5239
|
+
dependencies = [
|
|
5240
|
+
"anyhow",
|
|
5241
|
+
"heck",
|
|
5242
|
+
"indexmap",
|
|
5243
|
+
"prettyplease",
|
|
5244
|
+
"syn",
|
|
5245
|
+
"wasm-metadata",
|
|
5246
|
+
"wit-bindgen-core",
|
|
5247
|
+
"wit-component",
|
|
5248
|
+
]
|
|
5249
|
+
|
|
5250
|
+
[[package]]
|
|
5251
|
+
name = "wit-bindgen-rust-macro"
|
|
5252
|
+
version = "0.51.0"
|
|
4985
5253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4986
|
-
checksum = "
|
|
5254
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
5255
|
+
dependencies = [
|
|
5256
|
+
"anyhow",
|
|
5257
|
+
"prettyplease",
|
|
5258
|
+
"proc-macro2",
|
|
5259
|
+
"quote",
|
|
5260
|
+
"syn",
|
|
5261
|
+
"wit-bindgen-core",
|
|
5262
|
+
"wit-bindgen-rust",
|
|
5263
|
+
]
|
|
5264
|
+
|
|
5265
|
+
[[package]]
|
|
5266
|
+
name = "wit-component"
|
|
5267
|
+
version = "0.244.0"
|
|
5268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5269
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
5270
|
+
dependencies = [
|
|
5271
|
+
"anyhow",
|
|
5272
|
+
"bitflags 2.11.1",
|
|
5273
|
+
"indexmap",
|
|
5274
|
+
"log",
|
|
5275
|
+
"serde",
|
|
5276
|
+
"serde_derive",
|
|
5277
|
+
"serde_json",
|
|
5278
|
+
"wasm-encoder",
|
|
5279
|
+
"wasm-metadata",
|
|
5280
|
+
"wasmparser 0.244.0",
|
|
5281
|
+
"wit-parser",
|
|
5282
|
+
]
|
|
5283
|
+
|
|
5284
|
+
[[package]]
|
|
5285
|
+
name = "wit-parser"
|
|
5286
|
+
version = "0.244.0"
|
|
5287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5288
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
5289
|
+
dependencies = [
|
|
5290
|
+
"anyhow",
|
|
5291
|
+
"id-arena",
|
|
5292
|
+
"indexmap",
|
|
5293
|
+
"log",
|
|
5294
|
+
"semver",
|
|
5295
|
+
"serde",
|
|
5296
|
+
"serde_derive",
|
|
5297
|
+
"serde_json",
|
|
5298
|
+
"unicode-xid",
|
|
5299
|
+
"wasmparser 0.244.0",
|
|
5300
|
+
]
|
|
4987
5301
|
|
|
4988
5302
|
[[package]]
|
|
4989
5303
|
name = "writeable"
|
|
4990
|
-
version = "0.6.
|
|
5304
|
+
version = "0.6.3"
|
|
4991
5305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4992
|
-
checksum = "
|
|
5306
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
4993
5307
|
|
|
4994
5308
|
[[package]]
|
|
4995
5309
|
name = "wyz"
|
|
@@ -5011,11 +5325,10 @@ dependencies = [
|
|
|
5011
5325
|
|
|
5012
5326
|
[[package]]
|
|
5013
5327
|
name = "yoke"
|
|
5014
|
-
version = "0.8.
|
|
5328
|
+
version = "0.8.2"
|
|
5015
5329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5016
|
-
checksum = "
|
|
5330
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
5017
5331
|
dependencies = [
|
|
5018
|
-
"serde",
|
|
5019
5332
|
"stable_deref_trait",
|
|
5020
5333
|
"yoke-derive",
|
|
5021
5334
|
"zerofrom",
|
|
@@ -5023,9 +5336,9 @@ dependencies = [
|
|
|
5023
5336
|
|
|
5024
5337
|
[[package]]
|
|
5025
5338
|
name = "yoke-derive"
|
|
5026
|
-
version = "0.8.
|
|
5339
|
+
version = "0.8.2"
|
|
5027
5340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5028
|
-
checksum = "
|
|
5341
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
5029
5342
|
dependencies = [
|
|
5030
5343
|
"proc-macro2",
|
|
5031
5344
|
"quote",
|
|
@@ -5035,18 +5348,18 @@ dependencies = [
|
|
|
5035
5348
|
|
|
5036
5349
|
[[package]]
|
|
5037
5350
|
name = "zerocopy"
|
|
5038
|
-
version = "0.8.
|
|
5351
|
+
version = "0.8.50"
|
|
5039
5352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5040
|
-
checksum = "
|
|
5353
|
+
checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
|
|
5041
5354
|
dependencies = [
|
|
5042
5355
|
"zerocopy-derive",
|
|
5043
5356
|
]
|
|
5044
5357
|
|
|
5045
5358
|
[[package]]
|
|
5046
5359
|
name = "zerocopy-derive"
|
|
5047
|
-
version = "0.8.
|
|
5360
|
+
version = "0.8.50"
|
|
5048
5361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5049
|
-
checksum = "
|
|
5362
|
+
checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
|
|
5050
5363
|
dependencies = [
|
|
5051
5364
|
"proc-macro2",
|
|
5052
5365
|
"quote",
|
|
@@ -5055,18 +5368,18 @@ dependencies = [
|
|
|
5055
5368
|
|
|
5056
5369
|
[[package]]
|
|
5057
5370
|
name = "zerofrom"
|
|
5058
|
-
version = "0.1.
|
|
5371
|
+
version = "0.1.8"
|
|
5059
5372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5060
|
-
checksum = "
|
|
5373
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
5061
5374
|
dependencies = [
|
|
5062
5375
|
"zerofrom-derive",
|
|
5063
5376
|
]
|
|
5064
5377
|
|
|
5065
5378
|
[[package]]
|
|
5066
5379
|
name = "zerofrom-derive"
|
|
5067
|
-
version = "0.1.
|
|
5380
|
+
version = "0.1.7"
|
|
5068
5381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5069
|
-
checksum = "
|
|
5382
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
5070
5383
|
dependencies = [
|
|
5071
5384
|
"proc-macro2",
|
|
5072
5385
|
"quote",
|
|
@@ -5085,9 +5398,9 @@ dependencies = [
|
|
|
5085
5398
|
|
|
5086
5399
|
[[package]]
|
|
5087
5400
|
name = "zeroize_derive"
|
|
5088
|
-
version = "1.4.
|
|
5401
|
+
version = "1.4.3"
|
|
5089
5402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5090
|
-
checksum = "
|
|
5403
|
+
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
|
5091
5404
|
dependencies = [
|
|
5092
5405
|
"proc-macro2",
|
|
5093
5406
|
"quote",
|
|
@@ -5096,9 +5409,9 @@ dependencies = [
|
|
|
5096
5409
|
|
|
5097
5410
|
[[package]]
|
|
5098
5411
|
name = "zerotrie"
|
|
5099
|
-
version = "0.2.
|
|
5412
|
+
version = "0.2.4"
|
|
5100
5413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5101
|
-
checksum = "
|
|
5414
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
5102
5415
|
dependencies = [
|
|
5103
5416
|
"displaydoc",
|
|
5104
5417
|
"yoke",
|
|
@@ -5107,9 +5420,9 @@ dependencies = [
|
|
|
5107
5420
|
|
|
5108
5421
|
[[package]]
|
|
5109
5422
|
name = "zerovec"
|
|
5110
|
-
version = "0.11.
|
|
5423
|
+
version = "0.11.6"
|
|
5111
5424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5112
|
-
checksum = "
|
|
5425
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
5113
5426
|
dependencies = [
|
|
5114
5427
|
"yoke",
|
|
5115
5428
|
"zerofrom",
|
|
@@ -5118,9 +5431,9 @@ dependencies = [
|
|
|
5118
5431
|
|
|
5119
5432
|
[[package]]
|
|
5120
5433
|
name = "zerovec-derive"
|
|
5121
|
-
version = "0.11.
|
|
5434
|
+
version = "0.11.3"
|
|
5122
5435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5123
|
-
checksum = "
|
|
5436
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
5124
5437
|
dependencies = [
|
|
5125
5438
|
"proc-macro2",
|
|
5126
5439
|
"quote",
|
|
@@ -5142,14 +5455,14 @@ dependencies = [
|
|
|
5142
5455
|
"deflate64",
|
|
5143
5456
|
"displaydoc",
|
|
5144
5457
|
"flate2",
|
|
5145
|
-
"getrandom 0.3.
|
|
5458
|
+
"getrandom 0.3.4",
|
|
5146
5459
|
"hmac",
|
|
5147
5460
|
"indexmap",
|
|
5148
5461
|
"lzma-rs",
|
|
5149
5462
|
"memchr",
|
|
5150
5463
|
"pbkdf2",
|
|
5151
5464
|
"sha1",
|
|
5152
|
-
"thiserror 2.0.
|
|
5465
|
+
"thiserror 2.0.18",
|
|
5153
5466
|
"time",
|
|
5154
5467
|
"xz2",
|
|
5155
5468
|
"zeroize",
|
|
@@ -5157,11 +5470,37 @@ dependencies = [
|
|
|
5157
5470
|
"zstd",
|
|
5158
5471
|
]
|
|
5159
5472
|
|
|
5473
|
+
[[package]]
|
|
5474
|
+
name = "zip"
|
|
5475
|
+
version = "7.2.0"
|
|
5476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5477
|
+
checksum = "c42e33efc22a0650c311c2ef19115ce232583abbe80850bc8b66509ebef02de0"
|
|
5478
|
+
dependencies = [
|
|
5479
|
+
"crc32fast",
|
|
5480
|
+
"flate2",
|
|
5481
|
+
"indexmap",
|
|
5482
|
+
"memchr",
|
|
5483
|
+
"typed-path",
|
|
5484
|
+
"zopfli",
|
|
5485
|
+
]
|
|
5486
|
+
|
|
5487
|
+
[[package]]
|
|
5488
|
+
name = "zlib-rs"
|
|
5489
|
+
version = "0.6.3"
|
|
5490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5491
|
+
checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
|
|
5492
|
+
|
|
5493
|
+
[[package]]
|
|
5494
|
+
name = "zmij"
|
|
5495
|
+
version = "1.0.21"
|
|
5496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5497
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
5498
|
+
|
|
5160
5499
|
[[package]]
|
|
5161
5500
|
name = "zopfli"
|
|
5162
|
-
version = "0.8.
|
|
5501
|
+
version = "0.8.3"
|
|
5163
5502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5164
|
-
checksum = "
|
|
5503
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
5165
5504
|
dependencies = [
|
|
5166
5505
|
"bumpalo",
|
|
5167
5506
|
"crc32fast",
|